@roar will this block go under onInit? Also, Will this be for for each symbol\TF combo I have? for ex
datetime time_arr[2]; // Creates an array sized 1
CopyTime("EURUSD", PERIOD_D1, 100, 1, time_arr);
CopyTime("EURUSD", PERIOD_H1, 100, 1, time_arr);
But since were looking to retrieve just history, would this be more appropriate?
datetime time_arr[4]; // Creates an array sized 1
CopyTime("EURUSD", PERIOD_D1, 100, 1, time_arr);
CopyTime("AUDUSD", PERIOD_D1, 100, 1, time_arr);
CopyTime("CADCHF", PERIOD_D1, 100, 1, time_arr);
CopyTime("GBPJPY", PERIOD_D1, 100, 1, time_arr);












