ForceIndexCross

Force Index Cross
Description
Alexander Elder's Force Index smoothed with a fast and slow EMA
Category
Price Volume Indicators
Parameters
FASTPERIOD ( Default: 2 Min: 1 Max: 100 )
SLOWPERIOD ( Default: 13 Min: 1 Max: 100 )
Chart Script

FI:=V*(C-REF(C,1));
FAST:EMA(FI,FASTPERIOD);
SLOW:EMA(FI,SLOWPERIOD),COLORSTICK;
0;