Dynamic Pivot Point Backtest Strategy

Author: ChaoZhang, Date: 2023-12-29 15:50:57
Tags:

img

Overview

This strategy makes long or short positions based on the support and resistance levels calculated from the highest, lowest and closing prices of the previous trading day. It goes long when the price breaks through the upper resistance level R1 and goes short when the price breaks through the lower support level S1. The strategy belongs to the dynamic pivot point strategy.

Strategy Principle

  1. Calculate the support level S1, resistance level R1 and pivot point vPP of the current day based on the highest price xHigh, lowest price xLow and closing price xClose of the previous trading day.

    vPP = (xHigh+xLow+xClose) / 3

    vR1 = vPP+(vPP-xLow)

    vS1 = vPP-(xHigh - vPP)

  2. Determine if the price breaks through vR1 or vS1. Go long if the price breaks through vR1 and go short if the price breaks below vS1. POS records the long or short direction.

    pos = iff(close > vR1, 1, iff(close < vS1, -1, nz(pos[1], 0)))

  3. possig records the actual trading direction. If reverse trading is enabled with reverse=true, the trading signal is reversed.

  4. Go long when vR1 is broken and go short when vS1 is broken according to the possig signal.

Strategy Advantages

  1. The strategy utilizes dynamic support and resistance levels to capture trending moves.
  2. The support and resistance levels are updated daily, making them dynamic.
  3. Both long and short trades are configurable to suit different market environments.
  4. The strategy logic is simple and clean for easy understanding and implementation.
  5. Visualizations of support and resistance levels allow intuitive trend change detection.

Risk Analysis

  1. Unnecessary buy and sell signals may be triggered if the market is ranging.
  2. If extreme trending moves occur, the broken support/resistance may extend continuously resulting in losses.
  3. The pivot point and support/resistance calculation is simple and needs further optimization.

Risk Management:

  1. Adjust position sizing to limit single trade loss.
  2. Set stop loss to prevent losses exceeding maximum tolerable amount.
  3. Add filters based on other indicators to avoid over-trading in ranging markets.

Enhancement Opportunities

  1. Optimize support and resistance calculation to improve predictability.
  2. Incorporate trend and momentum indicators to avoid unnecessary trades.
  3. Add stop loss strategy to control single and maximum losses.
  4. Utilize machine learning to dynamically optimize support/resistance levels.

Summary

This strategy makes long or short trades based on price breaking dynamic support and resistance levels. The logic is simple to understand and implement while being able to effectively identify trend reversals. However, risks exist and further optimizations with additional indicators are needed to generate more reliable trading signals. Overall, the strategy serves well as an assistive indicator or a basic building block in quantitative trading systems.


//@version=2
////////////////////////////////////////////////////////////
//  Copyright by HPotter v1.0 14/06/2018
// This Pivot points is calculated on the current day.
// Pivot points simply took the high, low, and closing price from the previous period and 
// divided by 3 to find the pivot. From this pivot, traders would then base their 
// calculations for three support, and three resistance levels. The calculation for the most 
// basic flavor of pivot points, known as ‘floor-trader pivots’, along with their support and 
// resistance levels.
//
// You can change long to short in the Input Settings
// WARNING:
// - For purpose educate only
// - This script to change bars colors.
////////////////////////////////////////////////////////////
strategy(title="Dynamic Pivot Point Backtest", shorttitle="Dynamic Pivot Point", overlay = true)
reverse = input(false, title="Trade reverse")
xHigh  = request.security(syminfo.tickerid,"D", high[1])
xLow   = request.security(syminfo.tickerid,"D", low[1])
xClose = request.security(syminfo.tickerid,"D", close[1])
vPP = (xHigh+xLow+xClose) / 3
vR1 = vPP+(vPP-xLow)
vS1 = vPP-(xHigh - vPP)
pos = iff(close > vR1, 1,
       iff(close < vS1, -1, nz(pos[1], 0))) 
possig = iff(reverse and pos == 1, -1,
          iff(reverse and pos == -1, 1, pos))	   
if (possig == 1) 
    strategy.entry("Long", strategy.long)
if (possig == -1)
    strategy.entry("Short", strategy.short)	   	    
barcolor(possig == -1 ? red: possig == 1 ? green : blue ) 
plot(vS1, color=#ff0000, title="S1", style = circles, linewidth = 1)
plot(vR1, color=#009600, title="R1", style = circles, linewidth = 1)

More