+1 888 340 6572 GET STARTED

StochKreg

Article/Author: "Stochastics", Stuart Evens, S&C Magazine, Traders Tips, 09/1999

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));