Type/to search

High Volume Low Breakout Compounded Position Sizing Strategy

Cryptocurrency
Created: 2024-02-18 15:43:02
Last modified: 2 years ago
1
Follow
1781
Followers

img

Overview

The core idea of this strategy is to track breakouts during high trading volume by using a compounded position sizing approach based on a defined risk percentage and 250x simulated leverage. It aims to capture potential reversal opportunities after heavy selling pressure.

Strategy Logic

Long entry signals are triggered when:

  1. Volume exceeds a user-defined threshold (volThreshold)
  2. The current bar's low is lower than the previous bar's low (lowLowerThanPrevBar)
  3. The current bar's close is negative but higher than the previous bar's close (negativeCloseWithHighVolume)
  4. There is no existing open long position (strategy.position_size == 0)

Position sizing is calculated as:

  1. Risk amount based on equity * risk percentage
  2. Risk amount * leverage (250x) to determine number of contracts/lots

Exit rules:

Close long position when profit percentage posProfitPct hits stop loss (-0.14%) or take profit (4.55%).

Advantage Analysis

Advantages of this strategy:

  1. Captures trend reversal opportunities from high trading volume
  2. Compounded position sizing allows for faster profit growth
  3. Reasonable stop loss and take profit helps control risk

Risk Analysis

Risks to consider:

  1. 250x leverage amplifies losses
  2. Does not account for slippage, commissions, margin requirements
  3. Requires robust backtesting and parameter optimization

Risk can be reduced by:

  1. Lowering leverage amount
  2. Increasing stop loss percentage
  3. Accounting for real-world trading costs

Optimization Opportunities

Areas for improvement:

  1. Dynamically adjust leverage level
  2. Optimize stop loss and take profit rules
  3. Add trend filter
  4. Customize parameters based on instrument

Conclusion

In summary, this is a fairly simple and straightforward strategy for capturing reversals and outsized gains. But risks exist and prudent real-world testing is essential. With optimization, it can be made more robust and practical.

Source
Pine
/*backtest
start: 2023-02-11 00:00:00
end: 2024-02-17 00:00:00
period: 1d
basePeriod: 1h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=5
strategy("High Volume Low Breakout (Compounded Position Size)", overlay=true, initial_capital=1000)

// Define input for volume threshold
Strategy parameters
Strategy parameters
Volume Threshold
Risk Percentage
Comment
All comments (0)
No data
No data
  • 1
iPhone Download
Forums
PINE Language
© 2015 - ∞ INVENTOR PTE LTD (SG)