Please.
Where is increment/decrement statement in for loop?
for(i=0;i<limit; ???? ) //
i=index1_h1+1; // move back to last day
hasayama:
Where is increment/decrement statement in for loop?
for(i=0;i<limit; ???? ) //
for(i=0;i<limit;) // { ...... i=index1_h1+1; // move back to last day ... }I deal with "for loop" like this for understanding easily
then use while not for
thanksssssssss........
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
/* Note:
draw 2 lines on H1 chart: high line and low line
1) high line is drawn by conneting Daily high,so need to find Daily high on H1 chart
2) low line is drawn by conneting Daily low, so need to find Daily low on H1 chart
*/
now it draw nothing,why ?