Type/to search

Stepped Trailing Stop with Partial Profit Taking Strategy

Cryptocurrency
Created: 2023-11-28 16:05:24
Last modified: 3 years ago
1
Follow
1779
Followers

img

Overview

This is an exit strategy that utilizes a stepped trailing stop with partial profit taking. It moves the stop loss to breakeven after reaching the first take profit level, and moves to the first take profit after reaching the second level. This allows locking in some profits while maintaining profit potential.

Strategy Logic

The key components of this strategy are:

  1. Setting a stop loss and 3 take profit levels in points.
  2. Defining functions to calculate current profit in points and stop loss price.
  3. Defining a function to determine current profit stage.
  4. Modifying stop loss price based on profit stage to trail price.

Specifically, it firstly sets a 100 point stop loss and take profits at 100/200/300 points. The curProfitInPts function calculates current profit based on current price and entry price. The calcStopLossPrice function calculates stop loss price based on point distance.

The key logic is within the getCurrentStage function which checks if there is a position and if profit has exceeded each take profit level, advancing the stage if true. For example stage 2 is reached after 100 point profit, and stage 3 after 200 point profit.

Finally, the stop loss is modified according to the stage. Stage 1 uses the original stop, stage 2 breakseven, and stage 3 trails the first take profit level.

Advantage Analysis

The advantages of this stepped trailing stop strategy:

  1. Allows locking in some profits while maintaining further profit potential.
  2. Trailing stop loss follows price and reduces chance of drawdown.
  3. Multi-step profit taking controls risk better than one take profit.
  4. Simple and clear logic.

Risk Analysis

There are some risks to consider:

  1. Stepped profit taking may miss better exit opportunities. Can optimize take profit levels.
  2. If trail stop distance too high, stop may trigger prematurely. Can test different distances.
  3. Inability to cut losses can also lead to larger losses. Consider fast stop loss in specific cases.

Optimization

Some ways this strategy can be improved:

  1. Test different profit and stop distances to optimize parameters.
  2. Consider fast stop loss mechanisms for specific situations.
  3. Use technical indicators to determine profit targets and stop levels.
  4. Balance profitable exits and stop distances.
Source
Pine
/*backtest
start: 2023-11-20 00:00:00
end: 2023-11-27 00:00:00
period: 3m
basePeriod: 1m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © adolgov

// @description
Strategy parameters
Strategy parameters
sl
tp1
tp2
tp3
Comment
All comments (0)
No data
No data
  • 1
iPhone Download
Forums
PINE Language
© 2015 - ∞ INVENTOR PTE LTD (SG)