Type/to search

Multi-Indicator Bitcoin Daily Trading Strategy

Cryptocurrency
Created: 2023-10-30 10:37:58
Last modified: 3 years ago
1
Follow
1781
Followers

img

Overview

This strategy combines multiple indicators to identify trading opportunities within the daily time frame for Bitcoin. It mainly uses indicators like MACD, RSI, Stoch RSI, together with the direction of moving average to determine the current trend direction for generating buy and sell signals.

Strategy Logic

The strategy utilizes the following key indicators:

  1. MACD (Fast MA - Slow MA) and its signal line. MACD crossing above signal line gives buy signal, and crossing below 0 gives sell signal.

  2. RSI (Relative Strength Index). RSI crossing above a threshold gives buy signal.

  3. Stoch RSI. Stoch RSI shows overbought/oversold levels of RSI. Stoch RSI below threshold gives buy signal, while above threshold gives sell signal.

  4. Moving average direction. Close price crossing below MA gives sell signal.

According to these indicators, the trading signals are:

Buy Signal: When (Stoch RSI < Threshold) AND (MACD crossing above threshold OR RSI crossing above threshold)

Sell Signal: When (MACD crossing below 0) AND (Close below MA OR Stoch RSI > Threshold)

Using multiple indicators together can better determine the current trend direction and identify trend reversal points for entering trades.

Advantages

  1. Combining multiple indicators improves accuracy and avoids false signals from a single indicator.

  2. MACD shows trend direction and strength. RSI reflects overbought/oversold levels. Stoch RSI determines overbought/oversold of RSI. MA shows trend direction. These indicators verify each other.

  3. The buy/sell signals require a combination of multiple indicators, filtering out some false signals and avoiding unnecessary trades.

  4. Backtest starts from 2017/1/1, covering the huge bull run of Bitcoin at 2017 year end. Tests strategy performance in a real bull market.

  5. Stop loss is set to control loss in single trades.

Risks

  1. Although using multiple indicators improves accuracy, discrepancy between them can still lead to some wrong signals.

  2. The optimized stop loss level may need adjustments for different market situations. Stop loss too wide increases loss in single trades, while too tight may get stopped out prematurely.

  3. Daily timeframe prevents detailed operations in shorter time ranges. Unable to respond to sudden short-term big moves.

  4. Strategy is only backtested on limited historical data. Overfit risk exists. Requires further testing across longer timeframe and more markets.

Enhancement Opportunities

  1. Test more indicator combinations to find optimal multi-indicator strategies.

  2. Optimize parameters of the indicators for better values.

  3. Test different stop loss levels to find optimal risk/reward ratio.

  4. Conduct backtests across longer historical data to avoid overfitting.

  5. Explore applying strategy logic in higher frequency timeframes for more frequent trading.

Conclusion

This strategy combines MACD, RSI, Stoch RSI and other indicators to determine the bitcoin daily trend direction and identify trend reversals for trade entry. Stop loss is set to control trade risk. Backtest shows positive results but still requires further verification across longer timeframe and more markets to avoid overfit risks. Further optimizations on indicator parameters and stop loss/take profit levels can improve results. The strategy provides an initial idea of multi-indicator combination approach which is worth deeper exploration and enhancement.

Source
Pine
/*backtest
start: 2022-10-23 00:00:00
end: 2023-10-29 00:00:00
period: 1d
basePeriod: 1h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/

//@version=4
// Original code is from CredibleHulk and modified by bennef
strategy("BTC Daily Strategy BF", overlay=false, initial_capital=10000, default_qty_type=strategy.percent_of_equity, default_qty_value=100, commission_type=strategy.commission.percent, commission_value=0.075)
Strategy parameters
Strategy parameters
Backtest Start Year
Backtest Start Month
Backtest Start Day
Backtest Stop Year
Backtest Stop Month
Backtest Stop Day
rsi_threshold
rsi_length
srsi_length
srsi_smooth
srsi_sell_threshold
length
dma_signal_threshold
fastLength
slowlength
MACDLength
MACD_signal_threshold
short_loss_tol
long_loss_tol
Comment
All comments (0)
No data
No data
  • 1
iPhone Download
Forums
PINE Language
© 2015 - ∞ INVENTOR PTE LTD (SG)