Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
instructions on strategy
Collapse
X
-
designer,
Thank you for your post.
We do not have a video on how to make this particular strategy. However it is possible to nest within an indicator. From our Help Guide on ' How to use indicator inputs in other indicators'
You could do the same as above with a WMA and the CCI. Simply select the WMA frist series, then open the Input series and select the CCI and define the periods you wish to use for both.You can use indicators as input for other indicators... actually, you can nest indicators within indicators infinitely if you really wanted to!
The following example is an example of applying a simple moving average (SMA) to a 14 period ADX indicator and is one of many possible combinations.
1.Expand the Indicator category and select SMA indicator3.Select the ADX indicator and set any properties in the Parameters window
2.Set Input series to the ADX indicator by pressing the "..." button to open the Value window
Please let me know if you need further assistance.MatthewNinjaTrader Product Management
-
Hello,
You would not be able to plot a strategy in the 2nd panel. Any plots associated with the strategy will show up in the first panel.
I would suggest setting the strategy to not plot the indicators and then manually adding your indicators to the chart.MatthewNinjaTrader Product Management
Comment
-
Hello,
Not through the strategy wizard, however if you unlock the code you can apply this to the 2nd panel.
Please see our sample on adding indicators to strategies for more information:Code:protected override void Initialize() { WMA(ADX(14), 14).Panel = 2; Add(WMA(ADX(14), 14)); }
MatthewNinjaTrader Product Management
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
630 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
364 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 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
566 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
568 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment