1. Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)
    Dismiss Notice

Suggestion I will make a Free EA with your Indicator

Discussion in 'Expert Advisor atau Robot Forex' started by winidecorw, 12 Jan 2018.

  1. wadser

    wadser Member Credit Hunter

    Equity
    Credit
    Ref Point
    no its not only two.,cause the indicator has 19pattern.,each pattern has 2 buffer
     
  2. wadser

    wadser Member Credit Hunter

    Equity
    Credit
    Ref Point
    take a look at this from the author of indi
    How can i use this to i custom?.,pls guide me
    //---- Constants
    #define OP_BUY_FlyingFox 1
    #define OP_SELL_FlyingFox 2
    #define OP_BUY_Gartley 3
    #define OP_SELL_Gartley 4
    #define OP_BUY_Lobster 5
    #define OP_SELL_Lobster 6
    #define OP_BUY_Dragonfly 7
    #define OP_SELL_Dragonfly 8
    #define OP_BUY_BARRACUDA 9
    #define OP_SELL_BARRACUDA 10
    #define OP_BUY_CYPHER 11
    #define OP_SELL_CYPHER 12
    #define OP_BUY_ALTERNATE_FlyingFox 13
    #define OP_SELL_ALTERNATE_FlyingFox 14
    #define OP_BUY_DEEP_Lobster 15
    #define OP_SELL_DEEP_Lobster 16
    #define OP_BUY_WHITE_SWAN 17
    #define OP_SELL_WHITE_SWAN 18
    #define OP_BUY_BLACK_SWAN 19
    #define OP_SELL_BLACK_SWAN 20
    #define OP_BUY_MAX_FlyingFox 21
    #define OP_SELL_MAX_FlyingFox 25
    #define OP_BUY_MAX_Gartley 26
    #define OP_SELL_MAX_Gartley 27
    #define OP_BUY_MAX_Dragonfly 28
    #define OP_SELL_MAX_Dragonfly 29
    #define OP_BUY_A_Lobster 30
    #define OP_SELL_A_Lobster 31
    #define OP_BUY_A_Dragonfly 32
    #define OP_SELL_A_Dragonfly 33
    #define OP_BUY_A_FlyingFox 34
    #define OP_SELL_A_FlyingFox 35
    #define OP_BUY_A_Bartley 36
    #define OP_SELL_A_Bartley 37
    #define OP_BUY_SEA_PONY 38
    #define OP_SELL_SEA_PONEY 39
    #define OP_BUY_ALT_BARRACUDA 40
    #define OP_SELL_ALT_BARRACUDA 41

    //---- Step 2: Read values from the signal buffer
    int start()
    {

    // Read pattern and breakout buffer
    double pattern = iCustom(Symbol(), Period(), "Market\\PZ-Harmonacci", 0, 1);
    double breakout = iCustom(Symbol(), Period(), "Market\\PZ-Harmonacci", 1, 1);

    // Do something
    if(pattern == OP_BUY_FlyingFox) { /* Your code for bullish flying fox pattern */ }
    if(pattern == OP_SELL_FlyingBox) { /* Your code for bearish flying fox pattern */ }
    if(pattern == OP_BUY_Gartley) { /* Your code for bullish gartley pattern */ }
    if(pattern == OP_SELL_Gartley) { /* Your code for bearish gartley pattern */ }
    if(pattern == OP_BUY_Lobster) { /* Your code for bullish Lobster pattern */ }
    if(pattern == OP_SELL_Lobster) { /* Your code for bearish Lobster pattern */ }

    // Trade breakouts
    if(breakout == OP_BUY) { /* Your code for bullish breakout (blue arrow) */}
    if(breakout == OP_SELL) { /* Your code for bearish breakout (red arrow) */}

    // Do nothing
    if(pattern == EMPTY_VALUE && breakout == EMPTY_VALUE) { /* No pattern or breakout */}

    // Exit
    return(0);
    }
     
  3. stadevata

    stadevata Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    as i mention before .. u missunderstand about buffer
    in this case .. buffer is not pattern
    but you insist about ur opinion... thats why cannot help
     
  4. wadser

    wadser Member Credit Hunter

    Equity
    Credit
    Ref Point
    sorry what is the right term?in the page of author is stated thats it is the buffer value number..thats the one need to Ea to identify..if it not a buffer.can u clarify what is the term of the numbers?so that we dont misunderstood.anyway back to indicator..what ever ther term of that number..as u can see its has 19harmonic pattern in the indi..what number can i put in icustom as buy sell number?
     
  5. lorisnei007

    lorisnei007 Member

    Equity
    Credit
    Ref Point
    [QUOTE = "blastors, post: 397646, membro: 21973"] Pode compartilhar-, lo aqui o indicador? [/ QUOTE]
     

    Attached Files:

    • Useful Useful x 1
  6. Emerson Barbosa De Souza

    Emerson Barbosa De Souza Member Credit Hunter

    Equity
    Credit
    Ref Point
    Hello people! I use the OBV "on balance volume" indicator that you already have on mt4, will it be possible to create or modify the indicator so that the line does not move when you drag the graph screen to the right / left? and also the zoom. I wanted the line to be equal to RSI.

    note: I just want an indicator, not EA

    Thank you very much in advance.
     
  7. stadevata

    stadevata Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    if u use EA builder to make the ea that will not work
    this not simple indicator like ma or rsi which u can grab the buffer to determine buy and sell
    u need to code it manually

    eapz.jpg
     
  8. Ewiezy

    Ewiezy Member Credit Hunter

    Equity
    Credit
    Ref Point
    Would need the mql4 file to look at..
     
  9. wadser

    wadser Member Credit Hunter

    Equity
    Credit
    Ref Point
    i love harmonic pattern..its so accurate..,it gives me less time to always see charts.,this indicator will advance notify when pattern is forming,the when arrow appear thats the confirmation.,i can say its 80 t0 85% winrate., in 1 week for a pair it give 2to 3 signal..but its worth.,anyway.,ill stick to manual trade.,its almost imposible to make this ea haha.,thanks for clarification., :)
     
  10. stadevata

    stadevata Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    i already check the indicator ..
    if u just need the arrow its actually simple just use one buffer
    double breakout = iCustom(Symbol(), Period(), "Market\\PZ-Harmonacci", 1, 1);
    if(breakout == OP_BUY) { /* Your code for bullish breakout (blue arrow) */}
    if(breakout == OP_SELL) { /* Your code for bearish breakout (red arrow) */}


    but u still have problem about paramater input ,
    the indicator have too many input parameter

    iCustom(Symbol(), Period(), "Market\\PZ-Harmonacci", 1, 1) <<--- this code just load the indicator with default input parameter, default input parameter just have 10 pattern activate ... if u want to activate all pattern u need set all parameter pattern in indicator to true.. when code to ea the icustom will like ..
    iCustom(Symbol(), Period(), "Market\\PZ-Harmonacci", -----------here must be add 66 parameter------- ,1, 1) ;,
    and as i know icustom have max parameter(32 or 64 i think .. i forgot about the max limit).

    i think better to use pz harmonacci scanner an trade manually
    or make ea with those scanner

    :D
     
  11. wadser

    wadser Member Credit Hunter

    Equity
    Credit
    Ref Point
    yes sir..as of now.i can use it manually with give effort to watch every 4 hours., thanks..ill note your clue about parameter
     
  12. wadser

    wadser Member Credit Hunter

    Equity
    Credit
    Ref Point
    this is the Ea mq4 of the harmonic indicator.,made by other user in the other forum.,hope u like it., it is icustom..with more that 10 pattern.,it has delay on placing somtimes of trade..but i share mq4..so u can edit.,
     

    Attached Files:

  13. stadevata

    stadevata Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    glad to hear that .. :D
     
  14. wadser

    wadser Member Credit Hunter

    Equity
    Credit
    Ref Point
    I THANK U ALSO., ;)..but need a little edit.,on timing of placing trade.,may u can check it sir on back test.,some time it doest wait for arrow..it trade in advance
     
  15. IFIFILS

    IFIFILS New Member

    Equity
    Credit
    Ref Point
    Stadevata, good evening please can you help put together few indicators as ea for me, MA cross Fast Ma10, slow Ma20 with arrow alert indicator for buy and sell entry. Use the indicator posted below. Thanks
     

    Attached Files:

  16. petar

    petar Member Credit Hunter

    Equity
    Credit
    Ref Point
    It works very well.
    thank you !
    if you could add to close on opposite signal, would be good option to have.
    I try scalping 0.12 cents per 0.01 on 5 min chart, it's hit and miss.
    Some times it snaps profit instantly, the other times trade get's in positive well over that amount and comes back in negative, nothing happen.

    I've also tighten settings on indy, works well.
    thx!
     

    Attached Files:

    • Agree Agree x 1
  17. tom2016

    tom2016 New Member

    Equity
    Credit
    Ref Point
  18. raikofer

    raikofer Member Credit Hunter

    Equity
    Credit
    Ref Point
    after 1128 pages in this thread... Have we a EA winner as a most profitable EA?
     
  19. Gesa P

    Gesa P New Member

    Equity
    Credit
    Ref Point
    5/5,
    This is my review for this thread:
    good
     
  20. petar

    petar Member Credit Hunter

    Equity
    Credit
    Ref Point
    could some one please convert this indy to mq.4 file !
    thx!
     

    Attached Files:

Share This Page