diff --git a/OrderManagement.mqh b/OrderManagement.mqh index cc3f37b..d3ed70e 100644 --- a/OrderManagement.mqh +++ b/OrderManagement.mqh @@ -16,7 +16,6 @@ class OrderManagment : public CObject{ CPositionInfo m_position; COrderInfo m_order; - double stop_loss; double take_profit; ulong posTicket; diff --git a/TimeZones.mqh b/TimeZones.mqh index 340644c..1be9dbf 100644 --- a/TimeZones.mqh +++ b/TimeZones.mqh @@ -35,30 +35,6 @@ string TimeZones::get_date_string_from_datetime(datetime dt){ return dt_string; } -// bool TimeZones::trading_window(string time_zone, string start_time, string end_time){ -// // https://www.youtube.com/watch?v=V_qh7sTbl80 -// // e.g: -// // bool trade_window = trading_window(x,x,x); -// // bool long_in = trade_window -// // && close < ma[0]; - -// tz_time = get_timezone_time(time_zone, false); -// Print(tz_time); - -// // Get the current date for the required time zone: -// tz_date = get_date_string_from_datetime(tz_time); - -// // Define the start and end times on correct date: -// time_start = StringToTime(tz_date + start_time); -// time_end = StringToTime(tz_date + end_time); - -// if(time_start>time_end){ -// time_start = time_start - PeriodSeconds(PERIOD_D1); -// } -// is_time = tz_time >= time_start && tz_time < time_end; - -// return is_time; -// } datetime TimeZones::get_timezone_time(string time_zone, bool print_time){ // https://www.mql5.com/en/code/45287