Strategi ini adalah sistem perdagangan trend-mengikuti berdasarkan indikator Ichimoku Cloud. Ini mengidentifikasi tren pasar melalui crossover komponen awan dan menghasilkan sinyal perdagangan ketika harga melanggar tingkat teknis utama. Strategi ini menggunakan pendekatan non-repainting, dengan semua sinyal dikonfirmasi di bar dekat, secara efektif mengurangi risiko sinyal palsu.
Logika inti didasarkan pada tiga kondisi utama: 1. Penembusan harga di atas Garis Dasar, menunjukkan penguatan tren jangka pendek 2. Harga pecah di atas Lead Line A, mengkonfirmasi arah tren jangka menengah Harga tetap di atas Konversi Line, memvalidasi kontinuitas tren Ketika ketiga kondisi ini terpenuhi secara bersamaan, sistem menghasilkan sinyal beli di bar close. Kondisi yang berlawanan memicu sinyal keluar. Strategi ini juga menggunakan pengisian awan untuk visualisasi tren yang ditingkatkan, dengan awan hijau menunjukkan pasar bullish dan awan merah menunjukkan pasar bearish.
Strategi ini membangun sistem perdagangan trend-mengikuti yang dapat diandalkan melalui aplikasi inovatif dari indikator Ichimoku Cloud. Desain non-repainting dan beberapa mekanisme konfirmasi secara signifikan meningkatkan kualitas sinyal. Sementara kinerja mungkin suboptimal di pasar yang bergolak, arah optimasi yang disarankan dapat lebih meningkatkan stabilitas dan penerapan strategi. Strategi ini sangat cocok untuk melacak tren jangka menengah hingga panjang, menjadikannya pilihan yang sangat baik bagi pedagang yang mencari peluang trend-mengikuti.
/*backtest start: 2025-01-09 00:00:00 end: 2025-01-16 00:00:00 period: 10m basePeriod: 10m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ //@version=5 strategy("Ichimoku Cloud Buy Strategy (Non-Repainting)", overlay=true) // === Ichimoku Cloud Settings === lengthConversionLine = input(9, title="Conversion Line Length") lengthBaseLine = input(26, title="Baseline Length") lengthLeadLine = input(52, title="Lead Line Length") // === Calculate Ichimoku Cloud Components === conversionLine = ta.sma((high + low) / 2, lengthConversionLine) baseLine = ta.sma((high + low) / 2, lengthBaseLine) leadLineA = (conversionLine + baseLine) / 2 leadLineB = ta.sma((high + low) / 2, lengthLeadLine) // === Forward Projected Lead Lines (Fixes Ichimoku Calculation) === leadLineA_Future = leadLineA[lengthBaseLine] // Shift forward leadLineB_Future = leadLineB[lengthBaseLine] // === Define Buy and Sell Conditions (Confirmed at Bar Close) === buyCondition = ta.crossover(close, baseLine) and ta.crossover(close, leadLineA) and close > conversionLine and bar_index > bar_index[1] sellCondition = ta.crossunder(close, baseLine) and ta.crossunder(close, leadLineA) and close < conversionLine and bar_index > bar_index[1] // === Plot Buy and Sell Signals (Confirmed at Bar Close) === plotshape(buyCondition, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small, title="Buy Signal") plotshape(sellCondition, style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small, title="Sell Signal") // === Implement Strategy Logic (Trades at Bar Close) === if (buyCondition) strategy.entry("Buy", strategy.long) if (sellCondition) strategy.close("Buy") // === Plot Ichimoku Cloud Components with Future Projection === pConversionLine = plot(conversionLine, color=color.blue, title="Conversion Line") pBaseLine = plot(baseLine, color=color.red, title="Base Line") pLeadLineA = plot(leadLineA_Future, color=color.green, title="Lead Line A", offset=lengthBaseLine) pLeadLineB = plot(leadLineB_Future, color=color.orange, title="Lead Line B", offset=lengthBaseLine) // === Fill Ichimoku Cloud for Better Visualization === fill(pLeadLineA, pLeadLineB, color=leadLineA > leadLineB ? color.green : color.red, transp=80) // === Alert Conditions (Only Triggered on Confirmed Signals) === alertcondition(buyCondition, title="Ichimoku Cloud Buy Signal", message="Ichimoku Cloud Buy Signal Triggered") alertcondition(sellCondition, title="Ichimoku Cloud Sell Signal", message="Ichimoku Cloud Sell Signal Triggered")