Dynamic Two-way Add Position Strategy
Overview
This is a strategy that takes positions in both directions by using signals of strong breakthroughs in both directions. It will choose a direction to open positions after two consecutive strong candlesticks appear in the same direction, then set stop profit and stop loss for risk management.
Strategy Principle
This strategy judges market direction based on the signals of two consecutive strong candlesticks. Specifically, it calculates the increase/decrease percentage of each candlestick. When the increase/decrease percentage of two consecutive candlesticks both exceed the threshold set by user (such as 6%), it determines that the direction is strong, and opens long/short position in the third candlestick.
Long condition: The close prices of two consecutive candlesticks rise over 6% compared to previous close price
Short condition: The close prices of two consecutive candlesticks fall over 6% compared to previous close price
After opening positions, it will set stop profit and stop loss distances to control risks. The stop profit distance is input by user, and the stop loss distance is a multiple (such as 8 times) of the opening price.
This strategy also has some auxiliary functions to control risks, such as only allowing to open positions during specific time periods, setting maximum loss amount, etc.
Advantage Analysis
This is a relatively stable and reliable dual-direction trading strategy. The main advantages are:
-
Dual-direction trading can obtain profits when market goes up and down, improving stability.
-
Judging the trend based on two strong signals can effectively filter out noises and improve quality of opened positions.
-
The settings of stop profit and stop loss are reasonable, which is beneficial for risk control and limits losses.
-
The auxiliary functions are comprehensive, such as time control, maximum loss control, etc. They can control risks very well.
-
It is easy to backtest and optimize this strategy as the logic is simple and clear.
Risk Analysis
The main risks of this strategy are:
-
It is prone to suffering stop loss during market consolidation. We can properly adjust the parameter of first signal to ensure signal quality.
-
The probability of three consecutive super strong candlesticks is relatively small, which may lead to fewer opportunities to open positions. We can reduce the parameter appropriately but need to balance the signal quality.
-
Irrational behaviors caused by sudden events may lead to huge losses exceeding the stop loss distance. We need to set maximum loss amount to solve this problem.
-
For the implementation of dual-direction trading, we need to pay attention to the fund allocation problems, otherwise it may lead to making profits without stop losses.
Optimization Directions
This strategy can be further optimized in the following aspects:
-
Optimize the logic of first signal judgment to improve signal quality. More factors can be considered such as change of transaction volume, volatility rate etc.
-
Optimize standards of stop profit and stop loss. Adjust parameters based on different markets to make risk-reward ratio more reasonable. Stop loss distance can also be set as dynamic stop loss.
-
Add more risk control modules. For example, maximum daily loss, maximum consecutive loss etc. To ensure efficient and safe use of funds.
-
Optimize allocation ratio of funds, to make the capital allocation of dual-direction trading more reasonable, preventing making profits without stop losses.
-
Set different parameter combinations for backtesting optimization towards different trading varieties, to improve adaptability.
Summary
This strategy is a relatively robust dual-direction add position strategy. It has high signal quality and certain risk control capabilities. It also has large room for optimization to further improve profit stability. The strategy is suitable for mid-long term trending markets, and it can also seize opportunities during market consolidations.
- 1

