1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
  2. 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

PZ Day Trading 4.5

Discussion in 'Indicators dan Tools' started by rodrigosmyth, 01 Feb 2018.

  1. gui2015jnd

    gui2015jnd New Member

    Equity
    Credit
    Ref Point
    someone have this indicator to mt5 ??
     
  2. TOUFIK

    TOUFIK New Member

    Equity
    Credit
    Ref Point
    5/5,
    This is my review for this thread:
    It is working perfectly
     
  3. Sway Free

    Sway Free New Member

    Equity
    Credit
    Ref Point
    Great contribution.
     
  4. Sway Free

    Sway Free New Member

    Equity
    Credit
    Ref Point
    5/5,
    This is my review for this thread:
    I get most of my paid indicators for free on this telegram channel ymsinforex.
    If you are a serious forex trader you really have to join this channel. Parked with Lots of life-changing stuffs. Free indicators, Free robots and many more.
    Thank me later.
     
  5. gui2015jnd

    gui2015jnd New Member

    Equity
    Credit
    Ref Point
    this is a nice indicator, but i dont have a good filter to entry...... someone help me
     
  6. vanglai

    vanglai New Member Credit Hunter

    Equity
    Credit
    Ref Point
    4/5,
    This is my review for this thread:
    Good.
     
  7. Gigas

    Gigas New Member Credit Hunter

    Equity
    Credit
    Ref Point
    thanksssss
     
  8. AmDuong

    AmDuong New Member

    Equity
    Credit
    Ref Point
    5/5,
    This is my review for this thread:
    Great sharing thread.
     
  9. alij79

    alij79 Member Credit Hunter

    Equity
    Credit
    Ref Point
    thanks, much appreciated, does anyone have the version 6.0 ?
     
  10. yosi408

    yosi408 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Today for the first time I try it on 6 different pairs.
    All day it only gave 2 deals.
    One closed in sl.
    The second in tp.
    1H
    It's not as perfect as everyone's writing here.
     
  11. wadser

    wadser Member Credit Hunter

    Equity
    Credit
    Ref Point
    Thanks for this sir.,ill use this to auto trade using universal EA..that convert indicator to EA.,anyway about pz harmonic pattern indicator.,is there any way to put in the code that read more that two buffer?the universal Ea is working now for two buffer 1 for sell and 1 for buy.,,but somehow the pz harmonic indicator have 38buffer since it has 19 harmonic pattern..each pattern have 2 buffer.,sorry for english.,universal ea have sourve code to edit.,can u edit it sir so that it can read more than two buffer?ill attach the harmonic indi with list of buffer.,and ill attach also the EA that reads buffer of indicator.,together with the link of forum of EA..thanks hope u can read this request.,

    indicator to Ea link 1: https://soehoe.id/icustom-ea-indicator.t19208/
    indicator to Ea link 2: https://soehoe.id/universal-indicator-ea-expert-advisor-for-any-indicator.t17731/

    i attach the harmonic pattern indicator..it is giving me around 8 correct out 10 pattern signal...so i can tell it is very good since its based of harmonic pattern..its w8 for breakout after pattern form..so we can say its safe to trade when arrow show after pattern form..the prob is when it is use in indicator to ea is...the ea only coded with 2 buffer only.,its good for indicator with only 1 strategy so it means sell and buy buffer only..the harmonic i attach is 19 pattern.,so it need to code for 38 buffer.,so that when signal form it can read all pattern arrow.,thanks if you have time to input all buffer of harmonic..

    this is the buffer number of harmonic indicator i attach: from the author comment of page
    https://www.mql5.com/en/market/product/1418#!tab=comments&page=11
    //---- 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);
    }
     

    Attached Files:

  12. David Barna

    David Barna New Member

    Equity
    Credit
    Ref Point
    repaint??
     
  13. guddu

    guddu New Member

    Equity
    Credit
    Ref Point
    Thanks ji
     

Share This Page