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 sjsj2732, Yesterday, 04:31 AM
|
0 responses
31 views
0 likes
|
Last Post
by sjsj2732
Yesterday, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
286 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
283 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
133 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
91 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment