Hi
Is it correct to do this?
thx
Is it correct to do this?
MQL5:
CLASS A { private: string p; ENUM_TIMEFRAMES t; puplic: A(){} void initialize(string s, ENUM_TIMEFRAMES et) { p = s; t = et; } }; A myArray[]; for(int x=0; x<7; x++) myArray[x].initialize(someName, somePeriod);
thx
Last edited by a moderator: