SlowSTO
Slow Stochastic
Description
The Slow Stochastic applies further smoothing to
the Fast Stochastic oscillator, to reduce volatility and improve signal
accuracy.
Category
Momentum Indicators
Parameters
N ( Default: 14
Min: 1 Max: 100 )
M ( Default: 3
Min: 1 Max: 100 )
Chart Script
KFast:=(CLOSE-LLV(LOW,N))/(HHV(HIGH,N)-LLV(LOW,N))*100;
K:MA(KFast,3);
D:MA(K,M)