Hello. In a backtesting script I've been developing, I found that use of the "highest" series causes pre-Main() to be called more than once.
vHigh = highest(5,high(),inv("D"));
It also causes main() to be called more than once with getBarState == BARSTATE_ALLBARS.
Is this correct behaviour? And if so, is there a work-around?
Thanks,
- Ian
vHigh = highest(5,high(),inv("D"));
It also causes main() to be called more than once with getBarState == BARSTATE_ALLBARS.
Is this correct behaviour? And if so, is there a work-around?
Thanks,
- Ian
Comment