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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
72 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
39 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
63 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
63 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
53 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

...i'll look at the tutorials
Comment