Significant Pivot Points Reversal Strategy
Overview
This strategy optimizes the traditional pivot points reversal strategy by calculating the ATR and setting ATR filters to eliminate insignificant pivot points, only trading on truly significant ones.
Strategy Logic
The core logic is to identify significant peak and trough pivot points. The key steps to calculate significant peak pivots are:
- Calculate ATR and set the ATR filter factor atr_mult.
- Traverse a certain number of bars on the left (set by leftBars), if the peak pivot is higher than any high + ATR*atr_mult on the left, the pivot is invalid.
- Traverse a certain number of bars on the right (set by rightBars), if the peak pivot is higher than any high + ATR*atr_mult on the right, the pivot is invalid.
- If the peak pivot remains valid after the above tests, return it as an important peak pivot.
The logic for calculating significant trough pivots is similar.
After obtaining the significant pivots, go short when price breaks an important peak pivot, and go long when it breaks an important trough pivot.
Advantage Analysis
The main advantages of this strategy are:
- The ATR and atr_mult filter can eliminate insignificant fluctuations and only trade truly significant pivots, avoiding unnecessary trades.
- The dynamic ATR parameter can adjust the trading range automatically in volatile markets, preventing over-trading.
- Pivot points reversal itself has relatively high win rate and profitability.
Risk Analysis
The main risks are:
- Improper ATR parameters may filter out too many valid trades. If ATR is too high, valid pivots could be eliminated.
- Risk of being trapped still exists, need to set stop loss to control risk.
- Reversal strategies are sensitive to transaction costs, reasonable stop loss and take profit should be set.
To control the above risks, optimize from the following aspects:
- Optimize ATR parameters to ensure enough trading opportunities.
- Set reasonable stop loss and take profit ratios.
- Adjust position sizing to reduce transaction cost impact.
Optimization Directions
Further optimization directions include:
-
Combining with other indicators to determine market regime, avoiding trading reversals in trending markets. Consider MACD, KDJ etc.
-
Adding machine learning algorithms to auto-optimize parameters. Methods like genetic algorithms, random forest can be used to find optimum parameter sets.
-
Training models using quantitative data to find optimal ATR range. More historical data improves parameter selection accuracy.
-
Consider combining with other strategies, utilizing strengths of different strategy types. For example, combining with trend following strategy, reverse during ranging, trend-follow during sustained trends.
Conclusion
This significant pivot reversal strategy filters out meaningless minor fluctuations by calculating ATR and setting filters. Only trading reversals on significant pivots can effectively improve strategy profitability. Meanwhile, it also increases parameter optimization difficulty. The optimal parameters need to be found by comprehensive consideration of ATR range, stop loss/take profit ratios etc. If optimized thoroughly, it can become a highly efficient and stable short-term trading strategy.
- 1

