Home Forums Prop Firms Passing the FTMO Challenge Reply To: Passing the FTMO Challenge

#57795
User Avataraaronpriest
Participant

Oh, another observation, the EAs did NOT close out Friday trades properly at the time they were set. I double checked the EAs to be certain:

// Session time is set in seconds from 00:00
const int sessionSundayOpen = 0; // 00:00
const int sessionSundayClose = 86400; // 24:00
const int sessionMondayThursdayOpen = 300; // 00:05
const int sessionMondayThursdayClose = 86400; // 24:00
const int sessionFridayOpen = 300; // 00:05
const int sessionFridayClose = 86100; // 23:55
const bool sessionIgnoreSunday = true;
const bool sessionCloseAtSessionClose = false;
const bool sessionCloseAtFridayClose = true;

The broker closed at 23:59 and trades are still open.

Shopping Cart