Download: Stoch.ela
File Includes:
Function - StochKreg
Function - StochDreg
Function - StochDslow
Function - StochKslow
Indicator - Stoch - Reg
Indicator - Stoch - Slow
Category: Function > StochKreg
Description:
Inputs:
EasyLanguage Code:
INPUT: LENGTH(NUMERIC);
VARIABLES: HH(0), LL(0);
HH = HIGHEST(HIGH, LENGTH);
LL = LOWEST(LOW, LENGTH);
STOCHKREG = 100 * ((CLOSE - LL) / (HH - LL));