该策略是一个基于多重技术指标的混合交易系统,结合了均线(EMA)、相对强弱指标(RSI)和超级趋势(SuperTrend)来捕捉市场趋势。策略采用固定参数设置,专门针对2小时时间周期进行了优化,通过21/55/200周期均线系统识别趋势,同时结合RSI(14)动量过滤器和SuperTrend(3,14)止损来管理风险。该策略还要求成交量出现1.5倍的突破,并通过ATR确认波动率,从而提高交易的可靠性。
策略的核心逻辑建立在多层技术分析框架之上: 1. 趋势识别系统使用三重均线(21/55/200周期),通过均线交叉和位置关系判断趋势方向 2. 动量确认系统采用RSI(14)指标,结合其均线来过滤假突破 3. 风险控制系统整合了SuperTrend指标作为动态止损,并设置了6小时的交易冷却期 4. 交易触发条件要求成交量超过20周期均量的1.5倍,同时ATR需高于其48周期均值
该策略通过多重技术指标的组合,构建了一个相对完整的交易系统。其优势在于能够有效捕捉市场趋势,并通过多重条件过滤提高交易的可靠性。虽然存在一些固有的风险,但通过优化和改进,策略的整体表现还有提升空间。策略特别适合在波动性较大的市场中使用,但需要注意市场环境的变化和风险控制。
/*backtest
start: 2024-02-19 00:00:00
end: 2025-02-16 08:00:00
period: 2h
basePeriod: 2h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=6
strategy("Hybrid Trend Momentum Strategy by Biege ver. 1.0", overlay=true)
// ———— SUPERTREND FIX ————
supertrendWrapper(factor, atrPeriod) =>
[stLine, stDir] = ta.supertrend(factor, atrPeriod)
[stLine, stDir]
// ———— GLOBAL EMA CALCULATIONS ————
fastEMA = ta.ema(close, 21)
slowEMA = ta.ema(close, 55)
trendEMA = ta.ema(close, 200)
atrVal = ta.atr(14)
atrEMA = ta.ema(atrVal, 48)
rsiVal = ta.rsi(close, 14)
rsiEMA = ta.ema(rsiVal, 14)
volumeEMA = ta.ema(volume, 20)
[supertrendLine, supertrendDir] = supertrendWrapper(3, 14)
// ———— TRADE THROTTLING SYSTEM ————
var int lastTradeTime = na
tradeCooldown = input.int(360, "Cooldown (minutes)", minval=60, step=15) * 60 * 1000
// ———— ENHANCED ENTRY CONDITIONS ————
entryCondition =
ta.crossover(fastEMA, slowEMA) and
rsiVal > rsiEMA + 10 and
close > supertrendLine and
close > trendEMA and
volume > volumeEMA * 1.5 and
atrVal > atrEMA and
(na(lastTradeTime) or time - lastTradeTime >= tradeCooldown)
// ———— ULTRA-OPTIMIZED EXIT CONDITIONS ————
exitCondition =
ta.crossunder(fastEMA, slowEMA) or // Main EMA cross remains
ta.crossunder(rsiVal, rsiEMA - 15) or // Increased from -10 to -15 (harder trigger)
ta.crossunder(close, supertrendLine * 0.98) // Changed from 1.01 to 0.98 (2% buffer below)
// ———— TRADE EXECUTION ————
if entryCondition
strategy.entry("Buy", strategy.long)
lastTradeTime := time
if exitCondition
strategy.close("Buy")
// ———— VISUALS ————
plot(fastEMA, "Fast EMA", color.new(#2962FF, 0), 2)
plot(slowEMA, "Slow EMA", color.new(#FF6D00, 0), 2)
plot(trendEMA, "Trend EMA", color.new(#AA00FF, 0), 2)
plot(supertrendLine, "SuperTrend", color.new(#00C853, 0), 2)
plotshape(entryCondition, "Buy", shape.triangleup,
location.belowbar, color.new(#00E676, 0), size=size.small)
plotshape(exitCondition, "Sell", shape.triangledown,
location.abovebar, color.new(#FF1744, 0), size=size.small)