Here is an example:
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicators in Strategy Analyzer
Collapse
X
-
Indicators in Strategy Analyzer
Custom indicators when I add them to charts seem to work fine, but when I add them to a strategy using AddChartIndicator and run a back test in the Strategy Analyzer I get errors when I try to access bar information and receive "object reference not set to an instance of an object".
Here is an example:Tags: None
-
Try addingOriginally posted by GrumpyTrader View PostCustom indicators when I add them to charts seem to work fine, but when I add them to a strategy using AddChartIndicator and run a back test in the Strategy Analyzer I get errors when I try to access bar information and receive "object reference not set to an instance of an object".
to the State.Defaults of the Strategy and and see if that helps..Code:[COLOR=#080808]IsInstantiatedOnEachOptimizationIteration[/COLOR][COLOR=#000000] = [/COLOR][COLOR=#0000ff]true[/COLOR][COLOR=#000000];[/COLOR]
-
Hi Edge,
That actually didn't work. Not sure what else to try.Last edited by GrumpyTrader; 09-07-2015, 11:32 AM.
Comment
-
After debugging through this it seems the issue is where an indicator calls another indicator from a strategy.
To reproduce the problem:
a) import my example (include an indicator Gt_Vwap and a strategy _Tmp ) The only thing the strategy does is call AddChartIndicator (Gt_Vwap)
b) Run a back test in Strategy Analyzer on _Tmp strategy with the display set to Summary (should run fine)
c) After back test is completed switch to the Chart display in Strategy Analyzer ( you should see a bunch of errors come through the Control Center Log)
To correct the problem:
a) Modify Gt_Vwap indicator to use the Volume[0] object instead of VOL()[0] indicator
b) Solves the errors. Clearly they both should work.Last edited by GrumpyTrader; 09-07-2015, 12:11 PM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
660 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
375 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
110 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
579 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment