Sorry, please find attached un protected file
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Help with Indicator Development
Collapse
X
-
-
Hello sandeshrai,
Thank you for your response.
Please remove the following lines from the Initilize() method and place them in the OnBarUpdate() method at the beginning:
Please let me know if I may be of further assistance.Code:protected override void OnBarUpdate() { if (CurrentBar < 200) return; indSMAFast = SMA(this.iSMAFast); indSMAFast.Plots[0].Pen.Color = Color.Purple; indSMAMedium = SMA(this.iSMAMedium); indSMAMedium.Plots[0].Pen.Color = Color.DarkBlue; indSMASlow = SMA(this.iSMASlow); indSMASlow.Plots[0].Pen.Color = Color.ForestGreen; indSMAVSlow = SMA(this.iSMAVSlow); indSMAVSlow.Plots[0].Pen.Color = Color.Red;
Comment
-
Your conditions are never being met, because you have only created your SMA's wiithout ever synchronizing them to any object or barSeries.Originally posted by sandeshrai View PostHi Patrick,
I added the Print statements, but that doesn ot print either. Additionally, I tried to have the SMA to be visible on the chart by adding the line :Add (indSMAFast);. I get the error messages
The best overloaded method match for 'NinjaTrader.Indicator.IndicatorBase.Add(NinjaTrad er.Gui.Chart.Line)' has some invalid arguments
and
Argument '1': cannot convert from 'NinjaTrader.Indicator.SMA' to 'NinjaTrader.Gui.Chart.Line'
I have attached a text file with the entire code
Move the code that you use to assign the named instances of SMA to their objects into OnStartUp().Last edited by koganam; 01-25-2014, 01:46 PM.
Comment
-
Updated code as per your suggestion
I updated the code as suggested by you. It still does not do what it is supposed to do.
Originally posted by NinjaTrader_PatrickH View PostHello sandeshrai,
Thank you for your response.
Please remove the following lines from the Initilize() method and place them in the OnBarUpdate() method at the beginning:
Please let me know if I may be of further assistance.Code:protected override void OnBarUpdate() { if (CurrentBar < 200) return; indSMAFast = SMA(this.iSMAFast); indSMAFast.Plots[0].Pen.Color = Color.Purple; indSMAMedium = SMA(this.iSMAMedium); indSMAMedium.Plots[0].Pen.Color = Color.DarkBlue; indSMASlow = SMA(this.iSMASlow); indSMASlow.Plots[0].Pen.Color = Color.ForestGreen; indSMAVSlow = SMA(this.iSMAVSlow); indSMAVSlow.Plots[0].Pen.Color = Color.Red;
Comment
-
-
Updated code attached
Here is the updated code attachedAttached Files
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
576 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment