Measuring the price acceleration can help you to detect the beginning of a large movement. You could open an entry at the best time and take a substantial gain. In this post, I will show you how to evaluate the acceleration of the market. I will give you the source code of an acceleration indicator that is runnable on the Prorealtime platform.

measure the market acceleration Prorealtime
measure the market acceleration Prorealtime

How to measure the acceleration?

Measuring market acceleration takes two steps. First, you evaluate the market direction, and second, you see if this direction is growing. Several ways allow for price acceleration evaluation. I will present some of them to you.

Linear regression slopes

The simplest way to evaluate the price acceleration is to compare the linear regression slope at a time with the linear regression slope at N-1 time. The interpretation of the result is very simple:

  1. If both slopes are positive and the subtraction is positive, then there is a positive acceleration.
  2. If both slopes are negative and the subtraction is negative, then there is a negative acceleration.

Price direction measuring

It’s very easy to measure price direction thanks to the linear regression slope on a period. The “LinearRegressionSlope” instruction on Prorealtime allows you to obtain this slope:

regSlop = LinearRegressionSlope[20](close)
Linear regression slope
Linear Regression Slope

The previous example’s linear regression slope is computed on price for 20 periods.

Price acceleration measuring

You can now easily measure price acceleration thanks to the difference between the slope variable’s actual value and her previous value. The result of this calculation is a kind of the second derivative. You can consider that as a “variation of variation” of price.

acceleration = regSlop[0] - regSlop[1]

If the acceleration variable is greater than zero, that would mean two things :

  • Price increases more and more strongly. There is a bullish acceleration
  • Price decreases less and less strongly. It is the end of the bearish trend

If the acceleration variable is less than zero, that would mean two things :

  • Price decreases more and more strongly. There is a bearish acceleration
  • Price increases less and less strongly. It is the end of the bullish trend

Price acceleration indicator

Here is the acceleration measuring indicator that I use :

regSlop = LinearRegressionSlope[20](close)
acceleration = (regSlop[0] - regSlop[1]) * 1000000
averageAcceleration = Average[3](acceleration)
ZERO = 0
RETURN averageAcceleration AS "Acceleration", ZERO AS "0"

Bullish acceleration example

Bullish acceleration example

Bearish acceleration example

bearish acceleration example

End of the trend detection

You can detect the end of the trend using the previous indicator. When the acceleration indicator crosses zero, there are two possible interpretations:

  • If the acceleration indicator crosses over zero, the bearish trend ends.
  • If the acceleration indicator crosses under zero, the bullish trend ends.

End of bullish trend example

end of bull market indicator

End of bearish trend example

end of bear market indicator

Acceleration oscillator

You can measure the price acceleration with the Awesome Oscillator (AO) and a Simple Moving Average (SMA). You can calculate the acceleration oscillator by subtracting a 5-period SMA of the AO from the AO.

Accelerator Oscillator Formula

AO - SMA5(AO)

Accelerator Oscillator source code

AwesomeOscillator = average[5](medianprice)-average[34](medianprice)
Acceleration = AwesomeOscillator - Average[5](AwesomeOscillator)

RETURN Acceleration AS "ACCELERATION", 0 COLOURED(50,50,50,50) 

Accelerator Oscillator example

Here is the Accelerator Oscillator run on the Nasdaq in the 1-month timeframe on the Prorealtime platform:

Accelerator Oscillator Prorealtime

Measure the acceleration on other indicators

This method of acceleration measurement, which we calculated based on price, can be transposed to any technical indicators. You need to replace “close” with your preferred indicator in the « LinearRegressionSlope[period](close) » instruction.

If you want to learn more about automated trading, please see our automated trading learning section. If you have any questions, please ask me in a comment. If this article pleased you, I would appreciate your sharing it.

This Post Has 2 Comments

  1. Hal

    Very interesting ! And useful, thanks for sharing.

    1. vivien

      Hi Hal, you’re welcome, thanks for the comment 🙂

Leave a Reply