Esta estratégia projeta um sistema de negociação quantitativo baseado no indicador Ichimoku Cloud, principalmente para ativos com boas tendências.
A nuvem Ichimoku consiste em linha de conversão, linha de base, lead span 1, lead span 2 e gráficos de nuvem. Os sinais de negociação desta estratégia vêm da relação entre o preço e os gráficos de nuvem. Especificamente, um sinal de compra é gerado quando o preço cruza acima do lead span 1; Um sinal de venda é gerado quando o preço cruza abaixo do lead span 1. Além disso, o lead span 2 também serve como um indicador de julgamento auxiliar.
Esta estratégia também define stop loss e take profit com base no indicador ATR. O indicador ATR pode efetivamente capturar o grau de flutuação do mercado. O stop loss é definido em 2 vezes o ATR e o take profit é definido em 4 vezes o ATR. Isso pode efetivamente controlar a perda única e bloquear alguns lucros.
Finalmente, a estratégia adota um mecanismo de stop loss de trail. Especificamente, para posições longas, ele usará 2 vezes o ATR como a amplitude de callback para ajustar a linha de stop loss em tempo real para bloquear lucros; para posições curtas, ele usará 2 vezes o ATR como a amplitude de callback para ajustar a linha de stop loss em tempo real para bloquear lucros.
Soluções para os riscos correspondentes:
Em geral, esta estratégia é uma estratégia de rastreamento de tendência estável. Julgue a direção da tendência com base no indicador de nuvem de Ichimoku; defina stop loss e tire lucro usando o indicador ATR; use stop loss para bloquear lucros. As vantagens são lógica simples, fáceis de entender; perda única pode ser controlada; a tendência pode ser rastreada efetivamente. Mas também há alguns riscos de sensibilidade de parâmetros e perda de parada sendo quebrada. Ao otimizar continuamente os parâmetros e a própria estratégia, um melhor desempenho pode ser obtido.
/*backtest start: 2023-01-05 00:00:00 end: 2024-01-11 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Ichimoku Cloud Strategy with SL, TP, and Trailing Stop", overlay=true) conversionPeriods = input(9, "Conversion Line Length") basePeriods = input(26, "Base Line Length") laggingSpan2Periods = input(52, "Leading Span B Length") displacement = input(26, "Lagging Span") atrLength = input(14, title="ATR Length") donchian(len) => math.avg(ta.lowest(len), ta.highest(len)) conversionLine = donchian(conversionPeriods) baseLine = donchian(basePeriods) leadLine1 = math.avg(conversionLine, baseLine) leadLine2 = donchian(laggingSpan2Periods) // Plot the Ichimoku Cloud components plot(conversionLine, color=color.blue, title="Conversion Line") plot(baseLine, color=color.red, title="Base Line") plot(leadLine1, color=color.green, title="Leading Span A") plot(leadLine2, color=color.orange, title="Leading Span B") plot(leadLine1 > leadLine2 ? leadLine1 : leadLine2, color=color.green, title="Kumo Cloud Upper Line") plot(leadLine1 < leadLine2 ? leadLine1 : leadLine2, color=color.red, title="Kumo Cloud Lower Line") // ATR for stop loss and take profit atrValue = ta.atr(atrLength) stopLoss = atrValue * 2 takeProfit = atrValue * 4 // Strategy entry and exit conditions longCondition = ta.crossover(close, leadLine1) and close > leadLine2 shortCondition = ta.crossunder(close, leadLine1) and close < leadLine2 // Plot buy and sell signals plotshape(series=longCondition ? leadLine1 : na, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small) plotshape(series=shortCondition ? leadLine1 : na, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small) // Execute strategy orders with stop loss and take profit strategy.entry("Buy", strategy.long, when=longCondition) strategy.close("Buy", when=shortCondition) // Close buy position when sell condition is met strategy.entry("Sell", strategy.short, when=shortCondition) strategy.close("Sell", when=longCondition) // Close sell position when buy condition is met // Trailing stop strategy.cancel("Trailing Stop") var float trailingStopPrice = na if (longCondition) trailingStopPrice := math.max(trailingStopPrice, close - atrValue * 2) strategy.exit("Trailing Stop", from_entry="Buy", trail_offset=atrValue * 2, trail_price=trailingStopPrice) else if (shortCondition) trailingStopPrice := math.min(trailingStopPrice, close + atrValue * 2) strategy.exit("Trailing Stop", from_entry="Sell", trail_offset=atrValue * 2, trail_price=trailingStopPrice)