Guide
How does the Turtle System strategy work ?
The Turtle System strategy is derived from the classic trend-following methodology developed by Richard Dennis and William Eckhardt, formalized into a TradingView script. In essence, it capitalizes on market momentum by entering long positions on breakout points and exiting during market retracements or trend reversals.
- Long positions are initiated when the price exceeds the 20-day high (L1) or the 55-day high (L2), represented by an Up Arrow Green for the 20-day and Up Arrow Purple for the 55-day position entries.
- Positions are pyramid up, adding up to 5 additional buys (each 1N apart, where N is the Average True Range, ATR), thus leveraging on successful breakouts.
- A stop is placed 2N below the entry point, visualized by a Purple line. If this stop is hit, the strategy exits the position, indicated by a Down Arrow Red.
- In adherence to the original Turtle rules, the strategy skips entering a new trade if the preceding one was profitable, aiming to avoid overexposure after a gain.
- The strategy is flexible, with configurable settings for determining the high/low days for entry/exits and the stop and pyramid increments.
- Visual cues on the chart, like lines and arrows, help create a more intuitive trading experience, and the script notes provide guidance for understanding trade logic and adjustments.
While the script by default only supports long trades, it hints that it could be modified to cater to short positions as well.