Non-indior base EA system, revanded!
Page 1 of 736 123 ... LastLast
Results 1 to 10 of 360

Thread: Non-indior base EA system, revanded!

  1. #1
    FREE CODE GIVE AWAY FREE TO TEST AND USE FOR YOUR OWN

    Hello,

    I Am back again. (my prior development with this EA, some attempt on UDINE Rules' EA)

    I would like to share this with you all.

    This is my system

    Signal1If price is higher than highest highs of 3 pubs but less than highs of 20 bars market If price is lower compared to highs of 3 pubs but more than highs of 20 bars buy Condition 2if value from trend() function is less/more than -X and X value and price is less/more than cheapest lows/highest drops of last 20 bars then consider next condition Condition 2.1highest high of past 3 pub (or lowest low of past 3 pub) subtract by current price (Current price subtract above) is greater than X value (consider large move) then send 2 orders, BUYSTOP and SELLSTOP at specified offset from current price Condition 2.2Close price from past 2 pub subtract by current price (Current price subtract above) is less than X value (consider small move) then ship two orders, BUYSTOP and SELLSTOP at specified offset from current price BUYSTOP and SELLSTOP are sent. Default is 90 minutes.


    The EA is attached, source code also.
    Back evaluation on GBPUSD and placing are revealed in the egy report files.
    Usage timeframe is M15 just
    Pair, (I think any) not certain for JPY
    Not design for commodity
    if spread is more than 60 points (6 pips) you may need to adjust the setting.


    Notice:
    feb10_revamp_edited.zip - Repair issue EA stopped, or suspend. Show error array out of range

    2015.03.28
    Release variant that fix continuous error loop, unable to delete invalid pending order ticket.
    Update algorithm to reduce attraction down, with partial hedging with higher lot size.
    (download here)
    https://www.forexsoutheast.asia/atta...1515677236.zip
    https://www.forexsoutheast.asia/atta...5834118675.zip

  2. #2
    Will do, thanks!

    Running VPS using 9 distinct pairs - going to report if anything isn't working as planned.

    And once again, outstanding work!

  3. #3
    So ... ok ! Post that infant, also to give him a try and to have a look !

  4. #4

  5. #5
    UseAutoID is accurate when false, imply you have to type in your own Magic Number in order to run multiple chart with same pair

    e.g. GBPUSD1, GBPUSD2

    UserDefine_SpreadTooHigh if your broker gave you unfair disperse change this to a comfortable level, device is Points (10 points=1pip)

    init_lot_size lt;-- up to a account balance, see back evaluation drawndown original
    exponent is where's electricity total order and loion as new lot size when do averaging recovery
    squeeze_factor is percentage of 24hours average thru range (ATR) you think you can get out if averaging multiple positions out of split price
    atr_range is amount of pub use to calculate system's ATR
    Calm_candles, is amount of pub that use to calculate total range (highest to lowest)
    Calm_range, is your limit minimum range that the trading range have to exceed before another algorithm could be activated
    HoldMinutes, how many minute after position is closed, the ea will freeze until open new place
    neg_percentile, I experimentation from -30 to 20, default is 0
    barpercentile, the number of pub to calculate range then utilize that range to see where current price is (it is not z-score)
    bar1,bar2,bar3 default are 3,20,40 don't ask me why, you can try to modify
    I urge bar1 from 2 to 6, bar2 will be 3-10 times of bar1 then bar3 is double of bar2
    TrendValue -- we all will need to talk about it default is 30 points.
    MoveLarge Just how much transfer in bar1 pubs you think is large
    MoveRecent Just how much transfer in past 2 pub you think is fairly considerable


    Inserted Code enter bool UseAutoID=true; enter int User_define_Bot_ID=1000; enter int UserDefine_SpreadTooHigh=60; //Factors enter dual init_lot_size=0.1; enter dual exponent=1.44; enter dual squeeze_factor=0.3; enter int atr_range=24; enter int candles_range=12; lt;lt; I figure not utilize input int Calm_candles=8; enter string Calm_range_info=int in point; enter int Calm_range=200; enter int D1_atr_range=10; enter int HoldMinutes=60; enter int High_Or_Low_Diff=40; lt;lt; certain, not utilized but I submitted already input dual neg_percentile=0; enter int barpercentile=36; enter int bar1=3; enter int bar2=20; enter int bar3=40; enter int TrendValue=30; enter int MoveLarge=500; enter int MoveRecent=250;

  6. #6
    Quote Originally Posted by ;
    So ... fine ! Post that infant, to give him a try and to have a look !
    It has been awhile my friend

    now I am back

    with quite promising ea ever!!!

  7. #7
    Trend() function

    thought is straightforward

    I wish to read the tendency that going to take place in smaller tf (m5) earlier occur in 15 but giving confluence from same tf in different period. Calculate them and given a weight .
    Blend them together

    Hurrah -- fad's value

    and I use this number through out my system. It is consequence of monitoring

    Inserted Code double tendency() dual ma1=iMA(NULL,PERIOD_M5,5,0,MODE_EMA,PRICE_CLOSE,0) ; dual ma2=iMA(NULL,PERIOD_M5,10,0,MODE_EMA,PRICE_CLOSE,0 ); dual ma3=iMA(NULL,PERIOD_M5,20,0,MODE_EMA,PRICE_CLOSE,0 ); dual ma4=iMA(NULL,PERIOD_M5,40,0,MODE_EMA,PRICE_CLOSE,0 ); dual ma5=iMA(NULL,PERIOD_M15,5,0,MODE_EMA,PRICE_CLOSE,0 ); dual ma6=iMA(NULL,PERIOD_M15,10,0,MODE_EMA,PRICE_CLOSE, 0); dual ma7=iMA(NULL,PERIOD_M15,20,0,MODE_EMA,PRICE_CLOSE, 0); dual ma8=iMA(NULL,PERIOD_M15,40,0,MODE_EMA,PRICE_CLOSE, 0); dual magnitude1=0; dual magnitude2=0; magnitude1=magnitude1 0.5*(ma1-ma2) 0.35*(ma2-ma3) 0.15*(ma3-ma4); magnitude2=magnitude2 0.5*(ma5-ma6) 0.35*(ma6-ma7) 0.15*(ma7-ma8); return(0.3*magnitude1 0.7*magnitude2);

  8. #8
    Hi.First of all I'm sorry for my poor english.iamgotzaa I actually like this EA, but I really don`t understand where I must put all those documents /Lib , OA, Trade/.Is there a news filter? How many pips in loss EA close all orders? Have you got an idea I could honestly use the code / I can use only the ex.4 1_EXTENSIONks!

  9. #9
    Hi iamgotzaa

    Thank you for your Goodwill to share your EA together.

    I've an error when I attempt a BT with same range of date.


    From 01.01.2013 till 25.02.2015 no error.


    What I do wrong ?

  10. #10
    Quote Originally Posted by ;
    Hi.First of all I'm sorry for my poor english. I like this EA, however I don`t know where I must put these documents /Lib , OA_0_EXTENSION there a news filter? How many pips in reduction before this EA shut all orders? Do you have an idea I could honestly use the code / I will use the file/.Thanks!
    Simply use .ex4 file.put it in\MQL4\Experts\ folder

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.