Type/to search

Turtle Breakout Drawdown Adaptive Trading Strategy

Cryptocurrency
Created: 2023-12-08 11:54:02
Last modified: 3 years ago
1
Follow
1779
Followers

img

Overview

This strategy is mainly based on the trend breakout principle, combined with the channel breakout method, using fast and slow double rails to break through to determine the trend direction. The strategy has double protection of breakout entries and drawdown exits at the same time, which can effectively deal with sudden market changes. The biggest advantage of the strategy is that it can monitor the account drawdown in real time. When the drawdown exceeds a certain percentage, it will actively reduce the position size. This allows the strategy to effectively control market risk and account risk resistance.

Strategy Logic

  1. Fast and slow double rails: Fast and slow lines are used to build channels respectively. The fast line responds faster and the slow line is smoother. Determine the trend direction by combining double rail breakthroughs.

  2. Breakout entries: go long when the price breaks through the upward channel, and go short when it breaks through the downward channel. Use stop orders to reduce risk.

  3. Drawdown exits: Real-time monitoring of maximum drawdown. Once the drawdown exit point is reached, it will actively stop loss to close positions. The drawdown exit point can be adjusted according to market conditions.

  4. Adaptive position sizing: The number of positions is adjusted in real time based on account equity to avoid market risk. The smaller the account drawdown, the fewer positions held. Stronger risk resistance.

Advantages

  1. Double rail channel + breakout entries, more accurate trend judgment.

  2. Stop loss and take profit mechanism effectively controls single loss.

  3. Real-time monitoring of account drawdown and active adjustment of position size to reduce market risk.

  4. Position size is linked to account equity with strong risk resistance to cope with sudden market changes.

Risks

  1. Drawdown control may fail in volatile markets, leading to greater losses.

  2. Multiple invalid breakthrough signals may occur when the fast line enters the neutral zone.

  3. The slow line is too smooth to capture rapid reversal trends in time.

  4. There is a risk of lock-in with mixed long and short positions.

Optimization

  1. Set higher drawdown tolerance for volatile markets to avoid over stop loss.

  2. Add neutral zone filtering to avoid invalid signals.

  3. Optimize parameters of the slow channel to improve response speed to fast markets.

  4. Add opening order sorting rules to avoid lock-in with two-way positions.

Conclusion

Overall, this is an effective strategy suitable for medium and long term trend trading. The biggest advantage of the strategy is real-time drawdown monitoring and dynamic adjustment of positions. This allows the strategy to automatically adjust the position size with strong adaptability to the market. When there is a sharp market change or price fluctuation, the strategy can automatically reduce the position size to effectively prevent the loss from expanding. This is difficult for many traditional strategies. In general, the idea of this strategy is innovative with strong practicality. It is worth exploring and optimizing for application.

Source
Pine
//Noro
//2020

//Original idea from «Way of the Turtle: The Secret Methods that Turned Ordinary People into Legendary Traders» (2007, CURTIS FAITH, ISBN: 9780071486644) 

//@version=4
strategy("Noro's Turtles Strategy", shorttitle = "Turtles str", overlay = true, default_qty_type = strategy.percent_of_equity, initial_capital = 100, default_qty_value = 100, commission_value = 0.1)

//Settings
needlong = input(true, title = "Long")
needshort = input(false, title = "Short")
sizelong = input(100, defval = 100, minval = 1, maxval = 10000, title = "Lot long, %")
Strategy parameters
Strategy parameters
Long
Short
Lot long, %
Lot short, %
Fast
Slow
enter_fast
exit_fast
enter_slow
exit_slow
Show offset
Show lines
Show label
From Year
To Year
From Month
To Month
From day
To day
Comment
All comments (0)
No data
No data
  • 1
iPhone Download
Forums
PINE Language
© 2015 - ∞ INVENTOR PTE LTD (SG)