Elder Force Index

The Force Index, developed by Alexander Elder, is a trend indicator that attempts to determine the current buying and selling activity in a stock. Values above 0 indicate a current buying trend, while values below 0 indicate a selling trend.

The force index is calculated by subtracting yesterday's close from today's close (net change) and multiplying the result by today's volume. If closing prices are higher today than yesterday, the force is positive. If closing prices are lower than yesterday's, the force is negative. The strength of the force is determined either by a larger change in price or a larger volume; either situation can independently influence the value and the change in force index.

Since the Force Index only uses a two bar average, it forms a jagged plot.  This is smoothed out with the 13 period exponential moving average.  Use the 13 bar exponential average of price to determine the current trend and the 13 bar exponential average of the Force index to gauge the strenght of the trend.

Custom PCF Formula
Raw Value XAVG((C - C1) * V, x)
x=Smoothing, t=AverageType, m=MA_Period
Trigger or Signal Line tAVG(XAVG((C - C1) * V, x), m)

Where x is the Smoothing setting of the Force Index itself which must be an integer.

Where t is the Average Type of the Moving Average applied to the Force Index. Leave blank for Simple, X for Exponential, F for Front Weight, and H for Hull.

Where m is the Period of the Moving Average applied to the Force Index and must be an integer.

Examples

A 2 period Elder Force Index can be written as follows.

XAVG((C - C1) * V, 2)

A 13 period exponential moving average of a 2 period Elder Force Index to use as the trigger line can be written as follows.

XAVG(XAVG((C - C1) * V, 2), 13)

Read more about the Elder Force Index on Investopedia.