I used both simultaneously in my own strategy, and I'm sharing my experience from my account statements below. Take this information as an idea, as this table may change depending on the strategy. Consider it as information regarding the trades I made using R-based Trailing Stop and Sequence-based Step Stop methods.
1. Classic Trailing Stop
This method makes the Stop Loss (SL) level follow the price continuously and fluidly as it moves in your favor.
1. Classic Trailing Stop
This method makes the Stop Loss (SL) level follow the price continuously and fluidly as it moves in your favor.
- Relevant Parameters:
- trSt (trail_start_R): The amount of profit required to start the trailing (in terms of R).
- trDi (trail_dist_R): The distance to maintain between the Price and the Stop Loss (in terms of R).
- How It Works:
- Let's look at the R_bP1 rule: trSt=1.2, trDi=0.6.
- When your profit reaches 1.2R, the tracking begins.
- The SL is moved to 0.6R behind the current price.
- For every 1 point the price moves up, the SL is instantly moved up by 1 point.
- Metaphor: It is like towing a car with a rope. As the car (price) moves forward, as long as the rope is taut, the load behind it (SL) moves at the same speed and without interruption. If the car moves back, the rope goes slack, and the load remains in place.
2. Step Stop
This method moves the Stop Loss not continuously, but in jumps (discrete steps) once the price completes specific intervals.
- Relevant Parameters:
- st (use_step_trail): Whether this feature is active (true/false).
- stI (step_interval_sk): The profit interval required to advance to a new step (in Sekanas).
- stS (step_size_sk): How much the SL will be moved up when a step is taken (in Sekanas).
- How It Works:
- Let's look at the R_0P2 rule: st=true, stI=5.0, stS=2.5.
- While the price rises, the SL remains stationary initially.
- When the profit increases by 5.0 Sekanas (Interval), the SL is moved up by 2.5 Sekanas (Size) in a single move.
- Even if the profit is 9.9 Sekanas, the SL does not budge. However, when it reaches 10.0 Sekanas (the 2nd Interval), the SL jumps up another 2.5 Sekanas.
- Metaphor: It is like climbing stairs. To move your foot (SL) to the next step, you must first lift your body (price) a certain amount. Your foot does not change position during the small movements in between.
The most rational approach might be to combine "Classic Trailing Stop and Step Stop" methods (Hybrid Model), which provides the most efficient protection at different phases of the trend.
The logic behind this approach is as follows:
Early Phase (between 1R and 2R): The trend is not yet mature. Pullbacks may occur. With Classic Trailing, you follow the price closely and in a "fluid" manner.
Mature Phase (after 2R): The trend has strengthened (momentum has likely increased). Step Stop can be used to avoid stop-loss orders during small corrections and to lock in profits in blocks.
I will now work on this topic.