1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
  2. 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 EVoss EA Night v1.0

Discussion in 'Expert Advisor atau Robot Forex' started by Edgae, 02 Feb 2018.

  1. Edgae

    Edgae Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    iRSI(NULL, 0, 6, PRICE_CLOSE, 0);
    iRSI(NULL, PERIOD_M1, 20, PRICE_CLOSE, 0);
    iMA(NULL, 0, 8, 0, MODE_SMA, PRICE_MEDIAN, 1);
     
  2. JK1368

    JK1368 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Thanks for your suggestion, the time on my VPS is always the same as the Broker Server Time.
     
  3. JK1368

    JK1368 Member Credit Hunter

    Equity
    Credit
    Ref Point
    care to save your settings for each pair into preset files and share here? Thanks.
     
  4. loverhh

    loverhh Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    ICmarkets ECN real postiv a the end and FXTM ECN real too
     
  5. Telac

    Telac Member Credit Hunter

    Equity
    Credit
    Ref Point
    Just using the same sets provided with GMT offset set to 1 as recommended by Edgae . Group 1 is for EURUSD, USDCAD and Group 2 is for GBPUSD, EURGBP, EURCHF, GBPCHF
     

    Attached Files:

    • Like Like x 3
  6. Edgae

    Edgae Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    Hello everyone,
    Report week 05/02/2018 to 09/02/2018
    [​IMG]
    Here is this week's report of tests, analyzes, adjustments.
    We had bad nights, good nights, lost operations, stoploss reached, operations won. But the most important positive in all the broker, some less, some more. It is already a matter of choosing the brokers that we like the most, and creating a portfolio with 2 or 3 brokers, as each broker has seen different operations.

    As a picture is worth a thousand words, see the images of the report of each broker.

    Note: Alpari was the lowest performer, this was because we had a very tight stoploss (a very low% with respect to the lot) these were reached 2 or 3 times, so let's increase the stoploss a little bit to leave it between 6 and 7 %.

    See you in real account, next week.

    Well, look at the report and give your conclusions ...

    Successes for all ... Happy weekend.
     

    Attached Files:

    • Like Like x 4
    • Winner Winner x 1
  7. Firmanullah Hasan

    Firmanullah Hasan New Member Credit Hunter

    Equity
    Credit
    Ref Point
    Bad day dream :(
     

    Attached Files:

  8. Firmanullah Hasan

    Firmanullah Hasan New Member Credit Hunter

    Equity
    Credit
    Ref Point
    Please specify the type of each broker, we need reference
     
  9. Krupakar Padige

    Krupakar Padige New Member Credit Hunter

    Equity
    Credit
    Ref Point
    fortfs today results
     

    Attached Files:

    • 9.png
      9.png
      File size:
      28.3 KB
      Views:
      224
    • Dumb Dumb x 1
  10. jozmik

    jozmik Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    IC Market real

    upload_2018-2-9_13-11-44.png
     
  11. Edgae

    Edgae Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    recommendation use GMT_offset = 1
    you avoid the losses, after 02:00
     
    • Like Like x 2
  12. reddevil

    reddevil New Member Credit Hunter

    Equity
    Credit
    Ref Point
    Edgae,
    Not every Broker starts at 00. There are brokers with GMT+0. So ICmarket is 0:00, then my broker is 22:00, Icmarket 01:00, my broker is 23:00.

    Why not have start hour and end hour as a input? That way it can be used for all brokers !

    Thanks
     
  13. freedom48

    freedom48 Member Credit Hunter

    Equity
    Credit
    Ref Point
    This would be a good idea if possible. My broker starts 1 hour before tokyo open and not exact at tokyo. So I had 2 nights of test . First night 200 Usd win, second night 300 Usd lost. Well seems like balanced for now. I used +1 gmt. But every broker uses another start time of 00.00... Which 00.00 should be used correct for the system? Is it Tokyo start? Should Tokyo start match with öy server 00:00? Then if so my is not so correct. The trade start time is very important for the EA operate beside spread, broker, TP and Sl factors. Am I wrong (?), please correct me.. Thanks
     
  14. blackking

    blackking Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    Look like very good trading result with all broker getting positive trading result
    maybe we also can trying on firewodfx broker, how then still profitable or not
     
  15. loverhh

    loverhh Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    Also I have good results with Fxtm and ICMarkets but I use for each one a VPS, eventually this execution of 2-10 ms is needed for the Boss/Evoss EA
     
  16. Edgae

    Edgae Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    the EA operates with base (Market Watch) at this time, from 00:00 to 1:50 if the parameter GMT_offset is 1
    if it is GMT_offset = 2. from 00:00 to 2:50
    this ICMarket
    [​IMG]
     

    Attached Files:

    • Like Like x 1
  17. reddevil

    reddevil New Member Credit Hunter

    Equity
    Credit
    Ref Point
    Edgae,
    I understand what you are saying but my broker is GMT +0, so I cannot put start time 22:00 (which is ICMarket 00:00). I need to put start hour= 22:00 and end hour 23:00 (this is same as Icmarket 00:00 to 1:00). Like loverhh above who has broker GMT+1, so he needs to put start hour= 23:00 to end hour= 00:00.
    I hope you can make the change.
    Thanks.
     
  18. reddevil

    reddevil New Member Credit Hunter

    Equity
    Credit
    Ref Point
    This is the code snippet:

    extern int GMT_offset = 2; // (for ICMarket)
    extern int GMTstartHour = 22;
    extern int GMTendHour = 23;

    .....
    serverStartHour = GMTstartHour + GMT_offset;
    serverEndHour = GMTendHour + GMT_offset;
    if(serverStartHour >=24)
    serverStartHour -= 24;
    if(serverEndHour >=24)
    serverEndHour -=24;

    bool tradeOK=false;
    if(serverStartHour < serverEndHour)
    {
    if(Hour() >=serverStartHour && Hour() <= serverEndHour)
    tradeOK=true;
    }
    else
    {
    if(Hour() >= serverStartHour || Hour() <= serverEndHour())
    tradeOK=true;
    }


    The above will work for all brokers if you adjust the GMT_offset correctly including daylight savings. I will use GMT_offset =0 for my broker and loverhh will use GMT_offset=1 and you will use GMT_offset=2 for ICMarket.
     
  19. power10

    power10 New Member

    Equity
    Credit
    Ref Point
    5/5,
    This is my review for this thread:
    Many Thank..
     
  20. Edgae

    Edgae Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    IC market Is GMT +2
    always starts when the market clock is at 00:00 not the GMT +2 clock
     

Share This Page