+ Reply to Thread
Page 1 of 3 1 2 3 LastLast
Results 1 to 10 of 25
  10 10 Attachment(s)    

Thread: Double Parabolic SAR Expert Advisor

  1. #1
    Administrator funyoo's Avatar
    Join Date
    Sep 2008
    Posts
    7,453

    Default Double Parabolic SAR Expert Advisor



    Here is another version for the double parabolic sar expert advisor. We see a first psar, we enter in trade at a signal. Then we exit at the reverse signal on a second psar. You can use the same settings for the different psar indicators and use various timeframes (for example, H1 and H4 for the respective psar).

    EU H1. On one year.

    Total net profit : 15.31%
    RDD : 7.90%
    Attached Images  
    Attached Files

  2. #2
    Administrator funyoo's Avatar
    Join Date
    Sep 2008
    Posts
    7,453

    Default

    After some optimization :

    EU H1. On one year.

    Total net profit : 432.78%
    RDD : 29.93%
    Attached Images  
    Attached Files

  3. #3
    Junior Member
    Join Date
    Jan 2009
    Posts
    1

    Default

    dear funyoo
    would u please guide me due to a simple SAR trading expert.
    it is a while i am trying to create a expert base on Parabolic sar but i couldnt( please help me by writing a simple sar EA.
    Best Wishes

  4. #4
    Administrator funyoo's Avatar
    Join Date
    Sep 2008
    Posts
    7,453

    Default

    Quote Originally Posted by mani View Post
    dear funyoo
    would u please guide me due to a simple SAR trading expert.
    it is a while i am trying to create a expert base on Parabolic sar but i couldnt( please help me by writing a simple sar EA.
    Best Wishes
    Hi mani and welcome,

    I have not the time to teach programmation. I suggest you to learn on mql4.com. The best way to begin to code, is to study the basic moving average or sample macd expert advisor included in Metatrader. Then see in my experts the signal part to understand how we determine if a signal has been generated with the SAR. See especially this part :

    Code:
    double PSA1=iSAR(NULL,TimeFrame1,Step1,Maximum1,i+1);
    double PSA2=iSAR(NULL,TimeFrame1,Step1,Maximum1,i);
    double PSA3=iSAR(NULL,TimeFrame2,Step2,Maximum2,i+1);
    double PSA4=iSAR(NULL,TimeFrame2,Step2,Maximum2,i);
    string SBUY="false";string SSEL="false";
    if(PSA1>Open[i+1]&&PSA2<Open[i])SBUY="true";
    if(PSA1<Open[i+1]&&PSA2>Open[i])SSEL="true";

  5. #5
    Member
    Join Date
    Dec 2008
    Posts
    31

    Default

    Quote Originally Posted by mani View Post
    dear funyoo
    would u please guide me due to a simple SAR trading expert.
    it is a while i am trying to create a expert base on Parabolic sar but i couldnt( please help me by writing a simple sar EA.
    Best Wishes
    Try this one. It seems to be doing very well.
    Here are the settings:

    EURUSD
    M30 Chart
    Trade SHORT only
    Lot size 0.2

    The results are for the sar sample_2 ea.
    The sarv2 added stop loss, comment fix, and magic number.
    Attached Files

  6. #6
    Member
    Join Date
    Jan 2009
    Posts
    47

    Default

    Can we arrange this Psar expert like that:When buy order made with using Money management and closed at stop ,again buy if psar signal goes .Same with sell orders.
    I appreciate your works on forex and thank you so much .Nice years all of you

  7. #7
    Administrator funyoo's Avatar
    Join Date
    Sep 2008
    Posts
    7,453

    Default

    Quote Originally Posted by falanca View Post
    Can we arrange this Psar expert like that:When buy order made with using Money management and closed at stop ,again buy if psar signal goes .Same with sell orders.
    I appreciate your works on forex and thank you so much .Nice years all of you
    With what ea exactly ?

  8. #8
    Member
    Join Date
    Jan 2009
    Posts
    47

    Default

    With psar funyoo.İf you think this system with other EA that you suppose better ı will only appreciate you one more time.

  9. #9
    Administrator funyoo's Avatar
    Join Date
    Sep 2008
    Posts
    7,453

    Default

    Quote Originally Posted by falanca View Post
    With psar funyoo.İf you think this system with other EA that you suppose better ı will only appreciate you one more time.
    There is no ea of that name, I guess that you mean the first ea of this thread. This is already what does the code.

  10. #10
    Member
    Join Date
    Jan 2009
    Posts
    47

    Default

    System is to open another same type order again when closed by money management system till buy or sell logic change.İt can be with psar EA or other EAs

+ Reply to Thread
Page 1 of 3 1 2 3 LastLast

Similar Threads

  1. Double Stochastic Expert Advisor
    By funyoo in forum Expert advisors backtesting
    Replies: 4
    Last Post: 11-23-2010, 10:38
  2. Double Bottoms Double Tops Pattern
    By way2Freedom in forum Indicators
    Replies: 7
    Last Post: 11-22-2009, 02:53
  3. e-CA-5 Expert Advisor
    By funyoo in forum Expert advisors backtesting
    Replies: 3
    Last Post: 10-07-2009, 09:15
  4. Double Parabolic SAR Expert Advisor
    By funyoo in forum Expert advisors demo statements
    Replies: 0
    Last Post: 01-15-2009, 22:49
  5. i-CAi Expert Advisor
    By funyoo in forum Expert advisors demo statements
    Replies: 1
    Last Post: 12-02-2008, 09:58

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts