Trend Following Strategy
Overview
Noro's trend following strategy is a simple trend trading strategy based on price channel, RSI and body filter. It identifies the overall trend using price channel, enters based on RSI overbought/oversold levels, and uses body filter for additional signal confirmation. The strategy suits trending instruments like indices and forex.
Strategy Logic
The key aspects are:
-
Price channel determines the overall trend. Channel formed by looking back high/low defines uptrend/downtrend.
-
RSI indicates overbought/oversold for entry timing. RSI above 60 is overbought, below 40 is oversold zone.
-
Body filter provides final signal. Trades only if candle body exceeds a threshold to avoid noise.
-
Entries based on combining trend, RSI signal and body filter. Long entries in uptrend on bullish signals, short entries in downtrend on bearish signals.
-
Optional background colors clearly visualize the trend.
-
Customizable trading time frames to selectively trade.
Multiple indicators align to create a relatively stable trend following system.
Advantages
The main advantages are:
-
Price channel intuitively identifies the overall trend direction.
-
RSI effectively detects overbought/oversold levels for timing entry.
-
Body filter enhances signal quality and avoids false signals.
-
Multi-indicator confirmation improves accuracy.
-
Simple indicators reduce curve fitting risks.
-
Customizable trading time frames add flexibility.
-
Easy to use with minimal parameters. Beginner friendly.
-
Background colors provide visual clarity.
Risks
Some risks to consider:
-
Price channel trend misidentification risk.
-
Inaccurate RSI signal risks.
-
Body filter eliminating valid signals.
-
Drawdown risk during trend corrections.
-
Optimization risk from bad parameter tuning.
-
Position sizing risk from default full allocation.
-
Instrument selection risk if applied on non-trending assets.
-
Trading time frame risks if improperly configured.
Enhancement Opportunities
Some enhancement possibilities:
-
Add stop loss strategy to control loss per trade.
-
Optimize parameters based on instrument behavior.
-
Incorporate position sizing rules based on trend strength.
-
Implement drawdown limits to contain losses.
-
Add volume price analysis for signal verification.
-
Introduce machine learning for parameter optimization.
-
Specialize parameters based on asset class.
-
Refine trading time frame logic for more flexibility.
Conclusion
Noro's trend following strategy integrates price channel, RSI and body filter into a simple and practical trend trading system. It can trade along the trends and avoid counter-trend trades. With parameter optimization, risk controls and other improvements, the strategy has potential to become a consistently profitable trend trading strategy.
/*backtest
start: 2023-08-25 00:00:00
end: 2023-09-24 00:00:00
period: 3h
basePeriod: 15m
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=2
strategy(title = "Noro's TrendMaster Strategy v1.0", shorttitle = "TrendMaster str 1.0", overlay = true, default_qty_type = strategy.percent_of_equity, default_qty_value = 100, pyramiding = 0)
//Settings- 1
