Open-High-Low Stop Loss Tracking Strategy
Overview
This strategy is designed based on the open, high and low data of candlestick charts to identify trend reversal points for entries. After entries, stop loss lines will be set based on the ATR indicator and tracked. Targets will also be calculated based on the risk-reward ratio. When price hits either the stop loss or profit target, orders will be sent to close positions.
Strategy Logic
The entry signals of this strategy come from the open, high and low prices. A buy signal is generated when the opening price equals the low of the candlestick, and a sell signal is generated when the opening price equals the high, indicating potential trend reversal opportunities.
After entry, dynamic trailing stop loss is calculated based on the ATR indicator. The long stop loss is set at the lowest low of recent N bars minus 1 ATR; the short stop loss is set at the highest high of recent N bars plus 1 ATR. The stop loss line will update dynamically to trail price moves.
Profit targets are calculated based on the risk-reward ratio setting. The long target is set at the entry price plus (the risk difference between entry price and stop loss multiplied by the risk-reward ratio); the short target is set at the entry price minus (the risk difference between stop loss and entry price multiplied by the risk-reward ratio).
When price hits either the stop loss or profit target, orders will be sent to flatten positions.
Advantage Analysis
The advantages of this strategy include:
-
Simple and clear entry signals, avoiding multiple whipsaws.
-
Dynamic ATR trailing stop locks in profits and prevents chasing highs and lows.
-
Risk-reward ratio control avoids leaving profits on table and over-trading.
-
Applicable to different products, easy to optimize.
Risk Analysis
There are also some risks of this strategy:
-
Entry signals may lag to some extent, missing best market entry.
-
Stop loss too tight or too loose, causing unnecessary stop loss or missing profits.
-
No trend determination, prone to being trapped in ranging markets.
-
Unable to handle overnight positions.
The optimization directions are:
-
Incorporate other indicators for trend bias to avoid whipsaws.
-
Fine tune ATR parameters or add volatility control for better stop loss.
-
Add trend filtering to reduce signal noise.
-
Add overnight position handling for certain products.
Conclusion
In conclusion, this is a simple and straightforward strategy with clear entry logic, reasonable stop loss methodology and good risk control. But there are some limitations like insufficient trend bias, signal lagging etc. These flaws also point out directions for future optimization. By incorporating more indicators filters and risk management modules, this strategy can be further enhanced and made more robust.
- 1

