Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Can't get Indicator Values in Strategy Builder
Collapse
X
-
Can't get Indicator Values in Strategy Builder
Hi, I'm trying to use the attached Wave Trend indicator in my strategy. But I can't get the values of the WTFast and WTSlow Plot from the indicator to do comparison. What do I need to add to the indicator script to be able to get this values to use?Tags: None
- Likes 1
-
Hello tjendra,
Are you adding the indicator directly to a chart and the WTFast plot and WTSlow plot are not appearing?
Or are you finding there isn't a public series to return Values[0] and Values[1]?
You can use directly use Values[0] and [1] from a hosted indicator.
For example:
Print(WaveTrendV2(10, 21).Values[0][0]);
Or you could add public series to return the plot series similar to the MACD indicator in the Properties region.Chelsea B.NinjaTrader Customer Service
-
I am trying to use the values in a strategy so I should add public series to return the plot series similar to the MACD indicator in the Properties region? Is it I just add this bottom code to the indicator and recompile?
[Browsable(false)]
[XmlIgnore]
public Series<double> Avg
{
get { return Values[1]; }
}
[Browsable(false)]
[XmlIgnore]
public Series<double> Default
{
get { return Values[0]; }
}
[Range(1, int.MaxValue), NinjaScriptProperty]
[Display(ResourceType = typeof(Custom.Resource), Name = "WTFast", GroupName = "NinjaScriptParameters", Order = 0)]
public int WTFast
{ get; set; }
[Range(1, int.MaxValue), NinjaScriptProperty]
[Display(ResourceType = typeof(Custom.Resource), Name = "WTSlow", GroupName = "NinjaScriptParameters", Order = 1)]
public int WTSlow
{ get; set; }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
91 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
137 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
121 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
72 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment