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

New EA Can you change this EA profitable !!!

Discussion in 'Expert Advisor atau Robot Forex' started by nirvano, 16 Aug 2022.

  1. nirvano

    nirvano Member Credit Hunter

    Equity
    Credit
    Ref Point
    hello bros

    Can I find an answer on how to change the entry point in the expert advisor for zigzag
    What is required is for the expert to regress by a number of points or advance

    I want the entry to be before a number of points (I specify it in the settings) :mm:

    - send you the expert advisor and indicator below topic
     

    Attached Files:

    • Optimistic Optimistic x 1
  2. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    I give simple and profittable solution.
    Instead of using:

    Code:
    if(Open[0]<highest_zigzag && Close[0]>highest_zigzag && highest_zigzag!=0 && CheckFreshBreak("High",highest_zigzag) && Timee!=Time[0])
    
    to create signal.
    Better use this:

    Code:
    if(Close[1]>highest_zigzag && Timee!=Time[0])
    
    Then you will get this result:

    upload_2022-8-16_17-30-34.png

    Good luck and happy trading bro :)
     
  3. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    Oh ya .. above is function for BUY signal.
    This is the function for SELL signal.
    Instead of using:

    Code:
    if(Open[0]>lowest_zigzag && Close[0]<lowest_zigzag && lowest_zigzag!=0 && CheckFreshBreak("Low",lowest_zigzag) && Timee!=Time[0])
    
    Use this:

    Code:
    if(Close[1]<lowest_zigzag && Timee!=Time[0])
    
    OK .. Good luck and happy trading :)
     
  4. nirvano

    nirvano Member Credit Hunter

    Equity
    Credit
    Ref Point

    thank you so much Niguru I will give it a try right now :whew:
     
  5. nirvano

    nirvano Member Credit Hunter

    Equity
    Credit
    Ref Point
    Please can you send me the setting for this result
     
  6. blackking

    blackking Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    Zigzag indicator looks good
    But this is also repaint indicator, this one drawback.
     
  7. nirvano

    nirvano Member Credit Hunter

    Equity
    Credit
    Ref Point
    Indicator approved by the giant company hapy Forex and obtained in a smart wayRest assured that he does not repaint himself
     
  8. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    I use all default settings.

    upload_2022-8-17_5-40-41.png
     
    • Winner Winner x 1
  9. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    There are several corrections that you need to make so that the EA can work optimally.
    It's my habit to always add "#property strict" to EAs.

    upload_2022-8-17_5-48-11.png
     
    • Like Like x 1
  10. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    And here is the error that appears during the compilation process:

    upload_2022-8-17_5-51-33.png
     
    • Like Like x 1
  11. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    Apart from some errors that are displayed at compile time, there are some logical errors in some loops.
     
    • Like Like x 1
  12. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    I sent the file that I have revised, either in .mq4 format, or in .ex4 format (compiled).
    Hopefully it can be useful for SoeHoe members.

    Note that I moved the indicator placement to the "Market" folder. It has become my habit, so that special indicators are not mixed with standard indicators.

    upload_2022-8-17_6-17-53.png

    So there is a small change to the script.

    upload_2022-8-17_6-18-18.png

    Please download the following files, it's error free and no warnings at all:
     

    Attached Files:

    Last edited: 17 Aug 2022
    • Like Like x 2
    • Winner Winner x 1
  13. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    Use default settings, on H1 time frame.
    And here is the result:

    upload_2022-8-17_6-23-4.png

    Notes:
    The slight drawback of this EA is the slow backtest process, this is because the indicators work quite complexly.

    Good luck and happy trading .. Have a nice day :)
     
    • Like Like x 2
    • Winner Winner x 1
    • Friendly Friendly x 1
  14. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    There are several messages in my inbox, in Italian, Russian and Indian. :(
    For friends who send private messages, please use English or Indonesian.
     
    • Like Like x 1
  15. Jamil

    Jamil Member Credit Hunter

    Equity
    Credit
    Ref Point
    i can easily fix those errors and warnings.. but is this EA realy profitable?
     
  16. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    I have revised all the errors and some looping logic.
    The file I sent is error free and no warnings at all.

    This EA is profitable. As I show in the post above, it made 53% profit in July with 16% drawdown.

    Good luck and happy trading. :)
     
  17. Niguru

    Niguru Member Credit Hunter

    Equity
    Credit
    Ref Point
    BTW Jamil , I prefer the Ozymandias indicator you posted in another thread. :):ok:
     
  18. Jamil

    Jamil Member Credit Hunter

    Equity
    Credit
    Ref Point
    yeah its realy good.. currently using it in my EA building..i just dont know the best way to use it such as where i shud put SL TP n when the position shud be exit and trailing..
     
  19. nirvano

    nirvano Member Credit Hunter

    Equity
    Credit
    Ref Point

    I would like to thank and congratulate you for the great work you did :cool: and made the expert advisor very profitable :party:
    Accept my expressions of appreciation, brother :)
     
  20. markw118

    markw118 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Is this EA working in reversal mode? Looks like selling dips and buying tops...
    Default settings
    EURUSDH1.png
     

    Attached Files:

    • Funny Funny x 1

Share This Page