Is there a way to have it use weighted moving average?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
stochastic with WMA
Collapse
X
-
Hi politcat,
Yes, you can open up the Stochastics code, save it under a different name and change the 'SMA' in the last D.Set into a WMA to change the final smoothing in the indicator. If you also like to change the K.Set smoothing to WMA the programming becomes a bit more involved (not knowing how familiar you are with NinjaScript).
For some good tutorials on custom indicator coding, please take a look here - http://www.ninjatrader-support.com/H...verview18.html
-
Great to have you here, make sure then to check our sharing section out, there are a couple Stochastic variations posted - http://www.ninjatrader-support2.com/...chastic&desc=1
To import NinjaScript files, please see here - http://www.ninjatrader-support.com/H...6/Import1.html
Comment
-
I changed the D.Set line to WMA.
I would like to change the K.Set smoothing to WMA also, but I really don't know anything about programming
I couldn't find "k.set" in the help guide
can someone provide the WMA version of this:
K.Set(100 * SUM(nom, Smooth)[0] / (SUM(den, Smooth)[0] == 0 ? 1.0 : SUM(den, Smooth)[0]));
thx!
Comment
-
Hi politcat,
The K.Set is a DataSeries object in the code, like the one you edited already. To learn more about DataSeries objects in NinjaScript see here - http://www.ninjatrader-support.com/H...iesObject.html
Here is a link to NinjaScript consultants, should you need custom programming help - http://www.ninjatrader.com/webnew/pa...injaScript.htm
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
68 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
24 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
27 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
54 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

...i'll look at the tutorials
Comment