|
Description |
ssStoch() returns a smoothed Slow Stochastic. |
|
|
Syntax |
|
|
|
Parameters |
SERIES Use the SERIES parameter when you are referencing a study value. In chart windows, values are displayed in decimals. In quote windows, values are displayed in the units of the underlying instrument.
INPUT Use the INPUT parameter when you are referencing an overlay value.
periods The period parameter defines the number of bars to use in the calculation.
smooth Number of periods to smooth the Slow Stochastic.
smoothMore Number of periods to further smooth the Slow Stochastic.
<shift> Optional. A number, positive or negative, enclosed in brackets defining the number of bars (periods) to shift the formula line. Typically used only in formulas that will be displayed in chart windows. |
|
|
Return Value |
A smoothed Slow Stochastic value. |
|
|
Examples |
SSSTOCH_EX1(SERIES,PERIOD=14,smooth=.5,smoother=.2)=begin retval = SSSTOCH(SERIES,PERIOD,smooth,smoother) end
SSSTOCH_EX1(INPUT,PERIOD=14,smooth=.5,smoother=.2)=begin retval = SSSTOCH(INPUT,PERIOD,smooth,smoother) end |
|
|
Comments |
NA |