Momentum Breakout Strategy Based on Internal Amplitude Stop Loss
Overview
This strategy identifies abnormally surging K-lines to judge whether there is a one-sided market with bursting volatility. When an abnormally surging K-line is identified, it will set a take profit limit order near the high of that K-line, while also setting a stop loss near the low of the previous K-line, forming a long position with high leverage risk control. The strategy continuously monitors the stop loss line, and will immediately cancel the order to stop loss if the price breaks below the stop loss line.
Strategy Principle
This strategy mainly judges the formation of abnormally surging K-lines. When a K-line with close>open and high<high[1] and low>low[1] appears, it believes there is a current period of abnormally surging market. A long entry signal will be generated, with entry price near the highest price of the current K-line. The stop loss price is also set near the lowest price of the previous K-line to form a high leverage risk control model. Risk control is achieved by continuously monitoring the price breakout of the stop loss line.
Advantage Analysis
The biggest advantage of this strategy is that it can capture short-term bursting volatility in the market to achieve ultra-high frequency trading. At the same time, by setting a larger stop loss range, high leverage can be used for risk-controlled trading to obtain greater returns. In addition, the strategy realizes automatic monitoring of the stop loss line. When the price breaks through the stop loss line downward, it can quickly stop loss to effectively control trading risks.
Risk Analysis
The main risk of this strategy is that the judgement of abnormal surging is inaccurate, and it is unable to effectively capture the bursting volatility of the market, resulting in a higher probability of misjudgment of trading signals. In addition, the setting of stop loss positions will also have a great impact on trading risks and returns. If the stop loss is too loose, the trading loss risk will increase. If the stop loss is too tight, it may not be able to effectively track the gains in the market. A large amount of backtesting is needed to optimize the stop loss position.
Optimization Directions
The strategy can be optimized in the following aspects:
-
The criteria for judging abnormal surges can introduce more indicators or deep learning models to assist in judgments to improve the accuracy of trading signal judgments in the strategy.
-
The setting of stop loss positions can undergo a large amount of statistical and optimization analysis to find better stop loss positions to balance trading risks and return levels.
-
More high-frequency trading risk control mechanisms can be introduced, such as transaction volume filtering, range breakout verification, etc., to avoid the probability of being trapped.
-
The entry criteria of the strategy can be adjusted and need not be limited to abnormal surging K-lines. More indicators and models can be combined to make judgments and form a multiple verification mechanism.
Summary
This strategy is a typical high-frequency trading strategy, belonging to a short-term breakout strategy. It captures the bursting volatility in market movements to achieve ultra-high frequency trading. At the same time, it uses stop loss risk control and high leverage mechanisms to control risks. The strategy has large room for optimization, and can be adjusted and optimized from multiple angles. The ultimate goal is to obtain higher returns from ultra-high frequency trading while controlling risks.
/*backtest
start: 2023-11-15 00:00:00
end: 2023-11-22 08:00:00
period: 3m
basePeriod: 1m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
// LOVE JOY PEACE PATIENCE KINDNESS GOODNESS FAITHFULNESS GENTLENESS SELF-CONTROL
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © JoshuaMcGowan
// I needed to test/verify the functionality for canceling an open limit order in a strategy and also work thru the pieces needed to set the position sizing so each loss is a set amount. - 1

