该策略结合了多个移动平均线和相对强弱指数(RSI)来生成交易信号。它使用了9日、21日、25日和99日四个不同周期的移动平均线,通过它们之间的交叉来判断趋势的方向。同时,该策略还引入了RSI指标作为辅助判断,在市场超买或超卖时提供额外的交易信号。
该策略的主要思路是利用不同周期移动平均线的趋势特性,通过它们的多头排列和空头排列来判断市场的主要趋势。短期均线向上穿越长期均线被视为看涨信号,反之则被视为看跌信号。RSI指标则用于判断市场情绪,在市场超买或超卖时提供反转信号。
该策略通过结合不同周期的移动平均线和RSI指标,形成了一个趋势跟踪和情绪判断的交易策略。它的优势在于逻辑清晰、适应性强,通过多均线的配合能较好地把握市场趋势。但同时也存在参数敏感、趋势识别滞后、震荡市表现欠佳等风险。未来可以通过参数优化、信号过滤、仓位管理、止损止盈等方面的改进,进一步提升策略的性能和稳健性。
/*backtest start: 2023-04-24 00:00:00 end: 2024-04-29 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Estratégia de Médias Móveis e RSI (por Svitorino_trade)", shorttitle="Estratégia-Médias Móveis", overlay=true) len1 = input.int(9, minval=1, title="Length 1") len2 = input.int(21, minval=1, title="Length 2") len3 = input.int(25, minval=1, title="Length 3") len4 = input.int(99, minval=1, title="Length 4") rsi_length = input.int(14, minval=1, title="RSI Length") rsi_oversold = input.float(30, minval=0, maxval=100, title="RSI Oversold Level") rsi_overbought = input.float(70, minval=0, maxval=100, title="RSI Overbought Level") src = input(close, title="Source") ama(src, length) => sum = 0.0 for i = 0 to length - 1 sum := sum + src[i] sum / length avg1 = ama(src, len1) avg2 = ama(src, len2) avg3 = ama(src, len3) avg4 = ama(src, len4) rsi_value = ta.rsi(src, rsi_length) // Condições de entrada e saída para períodos de 9 e 21 cruzamento_9_21_acima = avg1 > avg2 and avg1[1] <= avg2[1] cruzamento_9_21_abaixo = avg1 < avg2 and avg1[1] >= avg2[1] // Condições de entrada e saída para períodos de 25 e 99 cruzamento_25_99_acima = avg3 > avg4 and avg3[1] <= avg4[1] cruzamento_25_99_abaixo = avg3 < avg4 and avg3[1] >= avg4[1] // Plotando os sinais de entrada e saída plotshape(series=cruzamento_9_21_acima, style=shape.triangleup, color=color.green, size=size.small, location=location.belowbar) plotshape(series=cruzamento_9_21_abaixo, style=shape.triangledown, color=color.red, size=size.small, location=location.abovebar) plotshape(series=cruzamento_25_99_acima, style=shape.triangleup, color=color.green, size=size.small, location=location.belowbar) plotshape(series=cruzamento_25_99_abaixo, style=shape.triangledown, color=color.red, size=size.small, location=location.abovebar) // Entradas e saídas para períodos de 9 e 21 if cruzamento_9_21_acima and rsi_value > rsi_overbought strategy.entry("Venda Curta", strategy.short) if cruzamento_9_21_abaixo and rsi_value < rsi_oversold strategy.entry("Compra Curta", strategy.long) if cruzamento_9_21_acima strategy.close("Compra Curta") if cruzamento_9_21_abaixo strategy.close("Venda Curta") // Entradas e saídas para períodos de 25 e 99 if cruzamento_25_99_acima and rsi_value > rsi_overbought strategy.entry("Compra Forte", strategy.long) if cruzamento_25_99_abaixo and rsi_value < rsi_oversold strategy.entry("Venda Forte", strategy.short) if cruzamento_25_99_acima strategy.close("Venda Forte") if cruzamento_25_99_abaixo strategy.close("Compra Forte")