• 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 :)

New EA EVoss EA Night v1.0

please can you give me the idea from the source code which MA and RSI filter it is using. I assume those are some of the used paramters and maybe I can stick that on my chart and can decide manually to have to open the EA or avoid to use it on that day if the daily start not fits into my eyes. May then I can have more precise decisions to start the EA.
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);
 
I suppose this has something to do with your local GMT and server GMT.....In example on real time my country is 01:00 and server time 00.00. That should be the difference in compare with yours. Maybe

Thanks for your suggestion, the time on my VPS is always the same as the Broker Server Time.
 
Both my Pepperstone and ICMarkets accounts made profits today. There were 2 losers and 4 winners - the overall profit was small but the accounts did not loose. Please see attached

care to save your settings for each pair into preset files and share here? Thanks.
 
care to save your settings for each pair into preset files and share here? Thanks.
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
 

Attachments

Hello everyone,
Report week 05/02/2018 to 09/02/2018
report-png.37962

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.
 

Attachments

  • report.png
    report.png
    17.1 KB · Views: 1,175
  • icmarkets_final.png
    icmarkets_final.png
    302.2 KB · Views: 258
  • fxtm_final.png
    fxtm_final.png
    192.8 KB · Views: 218
  • fbs_final.png
    fbs_final.png
    281.5 KB · Views: 226
  • Alpari_final.png
    Alpari_final.png
    261.9 KB · Views: 209
Hello everyone,
Report week 05/02/2018 to 09/02/2018
report-png.37962

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.

Please specify the type of each broker, we need reference
 
recommendation use GMT_offset = 1
you avoid the losses, after 02:00
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
 
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
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
 
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
 
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
 
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
evoss_hours-png.38091
 

Attachments

  • evoss_hours.png
    evoss_hours.png
    383.2 KB · Views: 1,194
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
evoss_hours-png.38091
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.
 
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.
 
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.
IC market Is GMT +2
always starts when the market clock is at 00:00 not the GMT +2 clock
 
Back
Top