Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Backtest Time frame problem
Collapse
X
-
Backtest Time frame problem
I have similar problems for several different products and scripts, the problem emerged a few weeks ago. 1 minute bars, 20 minimum bars I run a ES backtest on script X from year 2000 to today. First trade is in 2000, there are several trades every year. Same product and script from year 2005 to today. Strangely the first trade is in 2011 and not in 2005. Starting year 2001, first trade is in 2011 again. Similar problem for CL.Tags: None
-
Hi markus1000,
The best next step would be to print the variable values that you are checking in your conditions to find why the strategy is behaving as it is.
In the print, include the time of the bar.
For example:
Print(Time[0]+" - Close[0]: "+Close[0]+" > Open[0]:"+Open[0]);
if (Close[0] > Open[0])
{
EnterLong();
}
Prints will go to the Output window. (Tools -> Output Window...)
http://www.ninjatrader.com/support/h.../nt7/print.htmChelsea B.NinjaTrader Customer Service
-
ok found the problem, the historical data of a stock i use for an indicator in the code was messed up.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
23 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
115 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
222 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
406 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|

Comment