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 Mindset, Today, 06:46 AM
|
0 responses
11 views
0 likes
|
Last Post
by Mindset
Today, 06:46 AM
|
||
|
Started by M4ndoo, Yesterday, 05:21 PM
|
0 responses
17 views
0 likes
|
Last Post
by M4ndoo
Yesterday, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
15 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
82 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
48 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment