DH=TimeFrameGetPrice("H",inDaily,-1);
DL=TimeFrameGetPrice("L",inDaily,-1);
mycalc=(DayH-DayL);
TimeFrameGetPrice returns an array.
- How many values are there in the array DH and DL?
- How to subtract DH-DL in C++ (creating DLL) ?
How AFL subtract these two arrays? Each value in the array is subtracted and stored in the resulting array?
Result of the subtraction is an array or a single value?
Thanks