Hello the ForceIndex indicator doesnt seem to be working for me. I have only recently returned to ProRealtime trading so I could be missing something obvious.
c6 = ForceIndex(close)<=0
Trying to add this into a ProRealtime automated trading strategy but whatever value I choose it has no impact on existing strategy, what am I doing wrong ? 🙂
Many Thanks
You can use this custom version:
// Force Index
//
// https://school.stockcharts.com/doku.php?id=technical_indicators:force_index
//
Periods = 15
Periods = max(1,min(999,Periods))
FI = ((close - close[1]) * volume)
FIema = Average[Periods,1](FI)
RETURN FI AS "Force Index",FIema AS "Signal",0 as "Zero"