pragma64:
hello,
when a write
int CopyLow (string Low,ENUM_TIMEFRAMES PERIOD_M15,int 0,int Bars ,double low_array[]);
the compilation send me an error : '0' comma expected
i don t understand why
thanks for you help
Here is an example of using CopyLow() from here
double low_array[];
int count = 5; // number of elements to copy
ArraySetAsSeries(low_array,true);
CopyLow(_Symbol,_Period,0,count,low_array);
int count = 5; // number of elements to copy
ArraySetAsSeries(low_array,true);
CopyLow(_Symbol,_Period,0,count,low_array);

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
hello,
when a write
int CopyLow (string Low,ENUM_TIMEFRAMES PERIOD_M15,int 0,int Bars ,double low_array[]);
the compilation send me an error : '0' comma expected
i don t understand why
thanks for you help