Does NT have SlowStoch? I didn't see it. Also how would you go about making a standard deviation (1) channel around a 10 period moving average? Thanks!
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Slow Stoch & Standard Dev
Collapse
X
-
if (Stochastics(7,10,3).PeriodD > Stochastics(7,10,3).PeriodK)
BarColor = Color.Green;
else if (Stochastics(7,10,3).PeriodK > Stochastics(7,10,3).PeriodD)
BarColor = Color.Red;
Plot0.Set(Close[0]);
For that code, I am getting all red bars. Any suggestions?
Comment
-
Please take a look at the Help Guide for some tutorials on how to program custom indicators.
In terms of your code, you will want to first look for any errors. Then you will want to debug your code as per this tip: http://www.ninjatrader-support.com/v...ead.php?t=3418Josh P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
574 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
332 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