Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
changing the input series
Collapse
X
-
Hello,
Thank you for the post.
All indicators have an overload in which you can supply an input series to the indicator. Can you tell me, are you currently doing this in the chart and asking how to do this with Syntax instead?
If so, one example would be the following:
In this case, the EMA 12 is being passed as the input series for the SMA 14.Code:double sma = SMA(EMA(12), 14)[0];
I look forward to being of further assistance.
-
Thanks, Jesse. That is what I was looking for. While I have you here.....I have an indicator that paints the bar when an MA is rising or falling. I want to add another MA to the indicator, so it only paints the bar if both MA is rising or falling. How would add the second MA? Thanks
Comment
-
Hello,
Thank you for the reply.
This would largely depend on your current logic, but if you were using the Rising and Falling methods, you would just append another condition to your existing condition with the && operator.
Code:if(Rising(SMA(12)) && Rising(EMA(12)))
I look forward to being of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
175 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
331 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
253 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
356 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
183 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment