I am working on a backtest using the 1-min chart, and for some reason if I add a 15-min interval study it fails to run the backtest without any error notice.
For example:
xUpperBB15 = upperBB(20, 1, inv(15));
Everything backtests fine until I add the above line.
If I change it to
xUpperBB15 = upperBB(20, 1, inv("D"));
that works fine...
Any idea what I'm doing wrong or if there is some trick or is esignal having a jammer?
Thanks,
Robert
For example:
xUpperBB15 = upperBB(20, 1, inv(15));
Everything backtests fine until I add the above line.
If I change it to
xUpperBB15 = upperBB(20, 1, inv("D"));
that works fine...
Any idea what I'm doing wrong or if there is some trick or is esignal having a jammer?
Thanks,
Robert
Comment