FullSTO
Full Stochastic
Description
The Full Stochastic is an advanced form of the fast
and slow stochastic indicators. It provides parameters to adjust the initial
number of periods to calculate the %K line, the smoothing period to plot that
line and a further smoothing period to plot the %D line. The full stochastic can
be used in place of the fast and slow stochastic provided these extra parameters
are given.
Category
Momentum Indicators
Parameters
N ( Default: 14
Min: 1 Max: 100 )
M1 ( Default: 3
Min: 1 Max: 100 )
M2 ( Default: 3
Min: 1 Max: 100 )
Chart Script
KFast:=(CLOSE-LLV(LOW,N))/(HHV(HIGH,N)-LLV(LOW,N))*100;
K:MA(KFast,M1);
D:MA(K,M2)