Home › Forums › Prop Firms › Passing the FTMO Challenge › Reply To: Passing the FTMO Challenge
August 22, 2020 at 0:40
#57795
Anonymous
Inactive
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.