Hi~
How do I get the high and low of a specific bar, for example the 11am bar in the 15min chart?
Thanks,
anarco
How do I get the high and low of a specific bar, for example the 11am bar in the 15min chart?
Thanks,
anarco
if (hour(0) == 11 && minute(0) == 0) {
nHigh = high(0); // declare nHigh in the global scope
}
Comment