This trading strategy identifies moments of trend expansion to enter trades. It uses a custom formula to detect when price range breaks out of a consolidation pattern, confirming the entry with the slope of a short-term moving average. The exit is managed in two parts: a fixed percentage take-profit/stop-loss for half the position, and a trailing exit for the remainder based on a reversal in the moving average's direction.
To trade this strategy manually :
- Indicators and Setup:
- Add a 5-period Simple Moving Average (SMA) to your chart.
- You need a custom indicator that calculates what we'll call "Fractal Range Strength" (FRS). Since this is not a standard indicator, you would need to code it in Pine Script or find a public one with this formula:
100 * (highest(high, 10) - lowest(low, 10)) / sum(high - low, 10). This formula measures the total 10-bar range against the sum of individual bar ranges.
- On this FRS indicator, draw a horizontal line at the 50 level.
- Long Entry Condition:
- Enter a long position when the FRS indicator line crosses above the 50 level.
- AND the 5-period SMA is angled up (its current value is higher than its value on the previous candle).
- Short Entry Condition:
- Enter a short position when the FRS indicator line crosses above the 50 level.
- AND the 5-period SMA is angled down (its current value is lower than its value on the previous candle).
- Exit Conditions:
- Immediately after entering, place orders to exit 50% of your position. Set a Take Profit at +2.5% from your entry price and a Stop Loss at -2.5% from your entry price.
- For the remaining 50% of your position:
- If in a long trade, close the position when the 5-period SMA angles down.
- If in a short trade, close the position when the 5-period SMA angles up.