ForceIndex

Category: Indicators

The ForceIndex is a technical indicator used in financial markets to measure the strength of buying and selling pressure. It combines price movements with volume and can help identify potential reversals or confirm trends.

Syntax:

ForceIndex(price)

Calculation:

The Force Index is calculated using the formula:
Force Index = (Today's Close - Yesterday's Close) * Volume

Example:

To calculate the Force Index for a stock using its closing price, you can use the following code:

myForceIndex = ForceIndex(close)

Interpretation:

  • The Force Index is a momentum indicator. A positive value indicates buying pressure, while a negative value suggests selling pressure.
  • When the Force Index is above zero, it suggests that buyers are dominant; below zero indicates dominance by sellers.
  • Divergences between the Force Index and price movements can signal potential bullish or bearish reversals. For example, a bullish divergence occurs when the price hits new lows while the Force Index does not, suggesting weakening downward momentum.

To smooth out daily fluctuations and highlight longer-term trends, it is common to apply a moving average to the Force Index, such as the Wilder moving average.

This indicator is particularly useful in confirming trends and spotting reversals through divergence analysis, making it a valuable tool for traders analyzing market dynamics.

Logo Logo
Loading...