Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Difference of Two Indicators?
Collapse
X
-
Difference of Two Indicators?
HI, has anyone done an indicator to plot the difference of two indicators? What I've seen so far is spread stuff, that takes two instruments, but I want to take the running difference between two indicators, for instance RSI(14) and another indicator of 14 period or something like that. Thanks!Tags: None
-
Hello chinaexpert1a, thanks for your post.
That can be done like this:
Please let me know if I can assist any further.Code:public class TestRSI : Indicator { private SMA _SMA0; private RSI _RSI0; protected override void OnStateChange() { if (State == State.SetDefaults) { //... } else if (State == State.Configure) { } else if(State == State.DataLoaded) { _SMA0 = SMA(14); _RSI0 = RSI(14, 3); } } protected override void OnBarUpdate() { var diff = _SMA0[0] - _RSI0[0]; Print(diff); } }
-
Great! Thank you... so I see you have provided me with code, hehe, I'm....? noooooob
Chris, do I need to make a custom indicator? I do want to, you suggest the 7+Breaking or other route, hire a programmer. :/
lol
Thanks
Andrew
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
22 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
19 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
14 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
10 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
41 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment