A estratégia de negociação de convergência de múltiplos indicadores combina sinais do RSI, TD Sequential, MACD e Bollinger Bands para identificar configurações de alta probabilidade durante tendências de mercado.
Estratégia lógica:
Calcule o RSI de 14 períodos. Use o parâmetro de diferença RSI como limiar para os sinais de compra/venda. RSI abaixo de (50 - diferença RSI) dá sinal de compra. RSI acima de (50 + diferença RSI) dá sinal de venda.
Calcule o indicador MACD. 5 barras de histograma MACD positivas consecutivas dão sinal de compra. 5 barras negativas consecutivas dão sinal de venda.
2 barras TD consecutivas para cima dão sinal de compra 2 barras TS consecutivas para baixo dão sinal de venda.
Calcule as Bandas de Bollinger de 20 períodos. O preço acima da banda superior sugere compra. O preço abaixo da banda inferior sugere venda.
Entrar em negociações apenas quando o RSI, o MACD e o TD Sequential concordarem na direção e as Bandas de Bollinger não se contradigirem.
Estabelecer metas de lucro e stop loss com base nos parâmetros de entrada.
Esta estratégia combina os pontos fortes de vários indicadores para evitar sinais falsos. As Bandas de Bollinger ajudam a filtrar configurações de alta probabilidade durante as tendências. No entanto, os parâmetros do indicador precisam de otimização completa e os sinais devem ser relativamente raros quando todos os 4 indicadores concordam em evitar excesso de negociação.
Em geral, esta estratégia multi-indicador pode capturar configurações de alta probabilidade durante tendências fortes, mas requer um ajuste cuidadoso dos parâmetros e um uso conservador dos sinais do indicador para evitar negociações excessivas.
/*backtest start: 2022-09-05 00:00:00 end: 2023-09-11 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=2 strategy("RSI, TD Seq, MACD, BB Strategy - Calculation",overlay=true) RSIDifference = input(-7, minval=-50, maxval=50, title="RSI Difference") TD = close > close[4] ?nz(TD[1])+1:0 TS = close < close[4] ?nz(TS[1])+1:0 TDUp = TD - valuewhen(TD < TD[1], TD , 1 ) TDDn = TS - valuewhen(TS < TS[1], TS , 1 ) TDcheckUP = iff(TD == 2, true, false) TDCheckDOWN = iff(TS == 2, true, false) [_, _, histLine] = macd(close, 12, 26, 9) MACDCheckDown = iff(histLine > 0 and histLine[1] > 0 and histLine[2] > 0 and histLine[3] > 0 and histLine[4] > 0, true, false) MACDCheckUp = iff(histLine < 0 and histLine[1] < 0 and histLine[2] < 0 and histLine[3] < 0 and histLine[4] < 0, true, false) RSICal = rsi(close, 14) RSICalNewUp = 50 + RSIDifference RSICalNewDown = 50 - RSIDifference RSICheckUp = iff(RSICal <= RSICalNewUp, true, false) RSICheckDown = iff(RSICal >= RSICalNewDown, true, false) basis = sma(close, 20) dev = 2 * stdev(close, 20) upperBB = basis + dev lowerBB = basis - dev BBCheckUp = iff(close > upperBB, true, false) BBCheckDown = iff(close < lowerBB, true, false) //BBCheckUp = false //BBCheckDown = false BuyCheck = iff(TDcheckUP == true and MACDCheckUp == true and RSICheckUp == true and BBCheckUp == false, true, false) SellCheck = iff(TDCheckDOWN == true and MACDCheckDown == true and RSICheckDown == true and BBCheckDown == false, true, false) ProfitStratA = input(50, minval=0, maxval=10000, title="Profit", step=0.5) useStopLoss = input(false, title="Use Stop Loss?") LossstratA = input(145, minval=0, maxval=10000, title="Stop Loss", step=0.5) ProfitStrat = ProfitStratA * 10 Lossstrat = useStopLoss ? LossstratA * 10 : 1000000 if (strategy.position_size > 0) strategy.exit("BuyClose", "Buy", profit=ProfitStrat, loss=Lossstrat) if (strategy.position_size < 0) strategy.exit("SellClose", "Sell", profit=ProfitStrat, loss=Lossstrat) if (BuyCheck == true and strategy.position_size == 0) strategy.entry("Buy", strategy.long, comment="Long Entry") if (SellCheck == true and strategy.position_size == 0) strategy.entry("Sell", strategy.short, comment="Short Entry") //plotshape(BuyCheck, color=blue, transp=0, style=shape.arrowup, text="Buy\n", location=location.belowbar) //plotshape(SellCheck, color=orange, transp=0, style=shape.arrowdown, text="Sell\n", location=location.abovebar)