Thanks!
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Enable or Disable Backtesting
Collapse
X
-
Enable or Disable Backtesting
Can someone tell where within a Ninjascript, I can find the line that enables or disables the strategy from being back-tested? I have a strategy, and it will not allow me to back-test for some reason. When I pull it up in Strategy Analyzer and try to run a back test, nothing happens. So there must be a line in the code preventing this. How can I get it to back-test. Can I just go in and edit the code to let me?
Thanks! -
Hello Corbett,
Thank you for your post.
Usually "if(Historical)return;" will prevent this, look for this at the beginning of the OnBarUpdate().
Otherwise, if the backtest still does not work or the line is not present please answer these questions:- Do you see results when running the same test on the SampleMaCrossOver strategy in NinjaTrader with the same settings as your strategy?
- Are you connected to your data feed provider when running this test?
- Do you have data in the Historical Data Manager (Tools > Historical Data Manager) for the instrument and period you are testing the strategy on?
- Do you see results when running the same test on the SampleMaCrossOver strategy in NinjaTrader with the same settings as your strategy?
-
Hello, thanks for the reply. So I found the section an line you were referring to. I have posted it below. I am fairly new, so how would I change it to enable back-testing.
#region OnBarUpdate
protected override void OnBarUpdate()
{
if (Historical && !HistoryVal) return;
Thanks!
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
46 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
14 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment