can some one point me to an example showing how to pass calculation results from an indicator file to a strategy? I need some advice. i have developed satisfactory detection & calculations with indicator. But my code is getting 500+ lines long. my gut says to pass decision values from indi to a strategy that only manages orders only. is this right thinking? what is the best way? thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
how to pass results from indicators to a strategy
Collapse
X
-
how to pass results from indicators to a strategy
ninjas:
can some one point me to an example showing how to pass calculation results from an indicator file to a strategy? I need some advice. i have developed satisfactory detection & calculations with indicator. But my code is getting 500+ lines long. my gut says to pass decision values from indi to a strategy that only manages orders only. is this right thinking? what is the best way? thanksTags: None
-
Thank you. I was able to pass a value from my indi to a strategy. A code chunk shown below. I have a followup question. I get the following error message after my code run successful.
'Error on calling 'CalculateMinMax' method on bar bla_bla. The calculation results in an unrenderable values.'
i think the plot doesn't work because a plot value of .01 when the ES = 4400 dont jibe? How can i make calculations public to a strategy without plot complications? thanks!
........
else if (State == State.Configure)
{
AddDataSeries(Data.BarsPeriodType.Tick, 216);
AddPlot(new Stroke(Brushes.Orange, 2), PlotStyle.Dot, "riskrewardplot");
}
protected override void OnBarUpdate()
{
Values[0] = calculation_bla_bla
}
#region Properties
[Browsable(false)]
[XmlIgnore]
public Series<double> rrratioplot
{
get { return Values[0]; }
}
#endregion
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
50 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
126 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
69 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment