+ Reply to Thread
Results 1 to 5 of 5
 5 Attachment(s)    

Thread: Fractals MA EA

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

    Default Fractals MA EA



    Buy/sell when the price is between the two last fractals (up and down) and over/under MA. It is the reverse of a part of Your Lucky's logics.

    EU H4. On one year.

    Total net profit : 311.60%
    RDD : 28.81%
    Attached Images  
    Attached Files

  2. #2
    Junior Member
    Join Date
    Nov 2009
    Posts
    1

    Thumbs up

    Good, I like this EA.

  3. #3
    Junior Member
    Join Date
    Jan 2010
    Posts
    6

    Default

    hello,

    i have found the code to find the last Fractal data in this nice Ea:

    for(int a=1;a<Bars;a++)
    {
    if(iFractals(NULL,LowerTF,MODE_UPPER,a)!=0)
    {
    LastUpFractal=iFractals(NULL,LowerTF, MODE_UPPER,a);
    TimeOfLastUpFractal=Time[a];
    break;
    }
    }

    now i am searching a possibility to found also the data from the high low Fractal indicator before the last value, for example the value of the second high before the last high, is this possible?

    thank you in advance
    Zickzack

  4. #4
    Junior Member
    Join Date
    Nov 2010
    Posts
    2

    Default

    does the EA close trades,because i have many open trades which never get closed?

  5. #5
    Junior Member
    Join Date
    Nov 2010
    Posts
    2

    Default h

    since the ea doesnt close all the trades,when i get profit i use the close all open positions,today i had to close 30 positions manually,man that was annoying
    Attached Files

+ Reply to Thread

Posting Permissions

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