The Breakthrough Callback Trading Strategy
Overview
The breakthrough callback trading strategy realizes breakthrough callback trading under specific trends by calculating the absolute strength index and MACD index of prices. It belongs to short-term trading strategies. This strategy integrates multiple indicators to judge major trends, medium-term trends and short-term trends. It conducts trend tracking transactions through trend-aligned and indicator-complementary confirmation signals.
Strategy Principle
This strategy mainly relies on the absolute strength index and MACD index of prices to implement breakthrough callback trading. Firstly, it calculates the 9-period, 21-period and 50-period EMAs of prices to judge the major trend direction; then it calculates the absolute strength index of prices to reflect the strength of short-term adjustments; finally it calculates the MACD index to judge the short-term trend direction. It buys when the major trend is upward and there is a short-term adjustment; it sells when the major trend is downward and there is a short-term rebound.
Specifically, the major upward trend of the variety requires the 9-day EMA to be higher than the 21-day EMA, and the 21-day EMA to be higher than the 50-day EMA. The criteria for judging short-term adjustments are that the difference of the absolute strength index is less than 0 and MACDDIFF is less than 0. The major downward trend of the variety requires the 9-day EMA to be lower than the 21-day EMA, and the 21-day EMA to be lower than the 50-day EMA. The criteria for judging short-term rebounds are that the difference of the absolute strength index is greater than 0 and MACDDIFF is greater than 0.
Advantage Analysis
The strategy has the following advantages:
- Combining major trends and short-term adjustments to avoid false breakouts
- Higher reliability with combination of multiple indicators
- The absolute strength index reflects the strength of adjustments to judge the quality of callbacks
- MACD can judge short-term trends and overbought/oversold areas
Risk Analysis
The strategy also has some risks:
- Wrong judgement of major trends may lead to trade failure
- Wrong judgement of callback time and strength may lead to invalid callback
- Divergence of indicators in extreme market conditions, resulting in wrong signals
In response to the above risks, methods such as optimizing parameters, judging indicators of different cycles, adjusting position rules to control single loss, combining more indicators to filter signals, and improving accuracy can be used to improve the strategy.
Optimization Directions
The strategy can be optimized in the following aspects:
- Test more indicator combinations to find more suitable trading strategies
- Optimize indicator parameters to improve indicator sensitivity
- Adjust stop loss methods to reduce maximum single loss
- Increase filtering conditions to issue signals in more effective areas
- Combine more time frame indicators to improve judgement accuracy
Summary
In summary, the breakthrough callback trading strategy is generally a relatively stable short-term trading strategy. It combines multi-timeframe trend judgments to avoid erroneous transactions in oscillating markets. At the same time, the combined use of indicators also improves the accuracy of judgments. Through subsequent testing and optimization, this strategy can become a stable strategy worth holding for the long term.
/*backtest
start: 2024-01-01 00:00:00
end: 2024-01-31 23:59:59
period: 1h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("Divergence Scalper [30MIN]", overlay=true , commission_value=0.04 )
message_long_entry = input("long entry message")
message_long_exit = input("long exit message") - 1

