I'm not familiar with the issue you present. If you can post a sample indicator and strategy file I will check it out here. Thank you.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Exposing Plot Values to Strategies
Collapse
X
-
Hi Ryan,
I am confused by your reply. I thought the question was fairly straight forward.
Anyways, suppose I have an indicator in which I do the following:
int[] bars = new int[] {1,3,5,7,9};
foreach(int i in bars)
{
myPlot.Set(100);
}
Clearly myPlot.ContainsValue() will be false for even bars less than 10.
Now assume I expose this indicator plot (myPlot) to a strategy. How can I test in the strategy if myPlot contains a set value? .ContainsValue() does not work in the strategy. Do I use
if(myPlotValue != null ) do something
or
if(MyPlotValue > 0) do something
Comment
-
Hi nailz420,
Thanks for your post. Your code is same as
int[] bars = new int[] {1,2,3,4,5,67,8,9};
foreach(int i in bars)
{ //if odd bar
if(i % 2==1) myPlot.Set(i, 100);
else myPlot.Reset();}
}
However, you are missing the point. The point is whether I need to do this Reset or dummy variable assign in the first place in order to distinguish between a set and dummy value in a strategy or whether a Plot that has not been set defaults to null or zero in the strategy.Last edited by Zeos6; 06-16-2011, 09:00 AM.
Comment
-
Okay. I think I have this figured out. For anyone who may be interested here it goes:
As far as I can tell, not setting a Plot value (or applying the Reset() to a Plot value) will cause the data series to hold a non-plottable value that is equal to the bar's close value. The .ContainsValue() will return a false for these bars.
In your strategy you can apply the .ContainsValue() method to determine if the exposed plot value for the bar is a valid set value. The syntax for the current bar is myPlot.ContainsValue(0). It will return a true or false depending on whether the value was set in your indicator. I hope this helps.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
161 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
308 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
349 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment