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

Question add indicator to luai ea pls

Discussion in 'Expert Advisor atau Robot Forex' started by marco85555, 09 Mar 2020.

  1. marco85555

    marco85555 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Hello dear coders
    can you add parabolic sar indicator to this attached ea ?
    parabolic settings step: 0,005 and max step: 0,05

    once 3 dots appeared for long the ea should open buy gradually for each bar.
    once 3 dots appeared for short the ea should open sell gradually for each bar and should close all opened buy trades.

    if this ea made, I will try to add a few more indicator to make more profitable.

    hope some good coders can help us.
     

    Attached Files:

  2. marco85555

    marco85555 Member Credit Hunter

    Equity
    Credit
    Ref Point
    We need a good volunteer to make it free for us.
     
  3. blackking

    blackking Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    Parabolic SAR is a good indicator but not all the time will work correctly
    here still need to strict in use risk management plan
     
  4. gelbcke

    gelbcke Member Credit Hunter

    Equity
    Credit
    Ref Point
    I can't test this now. But try this:

    if(iSAR(Symbol(),0,0.02,0.2,0) > Close[0])
    if(iSAR(Symbol(),0,0.02,0.2,1) > Close[1])
    if(iSAR(Symbol(),0,0.02,0.2,2) > Close[2])
    OpenSell()

    if(iSAR(Symbol(),0,0.02,0.2,0) < Close[0])
    if(iSAR(Symbol(),0,0.02,0.2,1) < Close[1])
    if(iSAR(Symbol(),0,0.02,0.2,2) < Close[2])
    OpenBuy()
     
  5. marco85555

    marco85555 Member Credit Hunter

    Equity
    Credit
    Ref Point
    how can test this on metatrader, can you convert this to ex4 file pls ?
     

Share This Page