I built an indicator, but I want to copy and paste the entire script into a strategy instead of adding the indicator as a private variable in the public class scope of the strategy. Is this possible?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Paste indictor script in Strategy
Collapse
X
-
Paste indictor script in Strategy
Good morning,
I built an indicator, but I want to copy and paste the entire script into a strategy instead of adding the indicator as a private variable in the public class scope of the strategy. Is this possible?Tags: None
-
AdeptistJune I do not think you really want to copy your code from an indicator to a strategy what you want to do is leverage your indicator in a strategy they will get out of sync quickly
Ninja Documentation
search AddChartIndicator()
Take the case of having an indicator with a name of IndicatorName
Create a reference to it
indicator named: MyIndicator
strategy named: MyStrategy
Under Public Class MyClass
private IndicatorNameMyIndicator;
under else if (State == State.DataLoaded)
MyIndicator = InicatorName(Period,StopTicks,Risk_Planned);
MyIndicator.Panel=2;
AddChartIndicator(MyIndicator);
In onBarUpdate
MyIndicator.Monitored_item[0]
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
164 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
85 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
127 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
207 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
185 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment