Chiến lược này là một hệ thống giao dịch phân tích kỹ thuật đa chiều kết hợp các chỉ số động lực (RSI, MACD), chỉ số xu hướng (EMA), chỉ số biến động (Bollinger Bands, ATR) và chỉ số cấu trúc giá (Fibonacci retracements) để nắm bắt các cơ hội thị trường thông qua sự phối hợp tín hiệu đa chiều.
Logic cốt lõi bao gồm các khía cạnh sau: 1. Xác nhận xu hướng: Sử dụng9⁄21thời gian EMA chéo để xác định hướng xu hướng 2. Kiểm tra Động lực: Kết hợp RSI mua quá/bán quá (55⁄45) và biểu đồ MACD để xác nhận động lượng 3. Đề xuất biến động: Sử dụng Bollinger Bands (20 giai đoạn, 2 độ lệch chuẩn) để đo biến động giá Hỗ trợ/Kháng cự: Fibonacci 0.382⁄0.618⁄0.786 mức tính từ 100 thời kỳ cao/ thấp 5. Quản lý rủi ro: 1,5 lần ATR stop-loss và 3 lần ATR take-profit dựa trên ATR 14 giai đoạn
Giao dịch chỉ xảy ra khi các tín hiệu đa chiều liên kết, cải thiện độ chính xác giao dịch.
Chiến lược này xây dựng một hệ thống giao dịch mạnh mẽ thông qua sự phối hợp của các chỉ số kỹ thuật đa chiều. Những lợi thế cốt lõi của nó nằm trong xác thực chéo tín hiệu và kiểm soát rủi ro động, nhưng phải chú ý đến tối ưu hóa tham số và khả năng thích nghi với môi trường thị trường.
/*backtest start: 2024-12-10 00:00:00 end: 2025-01-08 08:00:00 period: 1h basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ //@version=5 strategy("Optimized Advanced Strategy", overlay=true) // Bollinger Bandı length = input(20, title="Bollinger Band Length") src = close mult = input.float(2.0, title="Bollinger Band Multiplier") basis = ta.sma(src, length) dev = mult * ta.stdev(src, length) upper = basis + dev lower = basis - dev // RSI rsi = ta.rsi(close, 14) // MACD [macdLine, signalLine, _] = ta.macd(close, 12, 26, 9) // EMA emaFast = ta.ema(close, 9) emaSlow = ta.ema(close, 21) // ATR atr = ta.atr(14) // Fibonacci Seviyeleri lookback = input(100, title="Fibonacci Lookback Period") highPrice = ta.highest(high, lookback) lowPrice = ta.lowest(low, lookback) fiboLevel618 = lowPrice + (highPrice - lowPrice) * 0.618 fiboLevel382 = lowPrice + (highPrice - lowPrice) * 0.382 fiboLevel786 = lowPrice + (highPrice - lowPrice) * 0.786 // Kullanıcı Ayarlı Stop-Loss ve Take-Profit stopLossATR = atr * 1.5 takeProfitATR = atr * 3 // İşlem Koşulları longCondition = (rsi < 55) and (macdLine > signalLine) and (emaFast > emaSlow) and (close >= fiboLevel382 and close <= fiboLevel618) shortCondition = (rsi > 45) and (macdLine < signalLine) and (emaFast < emaSlow) and (close >= fiboLevel618 and close <= fiboLevel786) // İşlem Girişleri if (longCondition) strategy.entry("Long", strategy.long, stop=close - stopLossATR, limit=close + takeProfitATR, comment="LONG SIGNAL") if (shortCondition) strategy.entry("Short", strategy.short, stop=close + stopLossATR, limit=close - takeProfitATR, comment="SHORT SIGNAL") // Bollinger Bandını Çizdir plot(upper, color=color.red, title="Bollinger Upper Band") plot(basis, color=color.blue, title="Bollinger Basis") plot(lower, color=color.green, title="Bollinger Lower Band") // Fibonacci Seviyelerini Çizdir // line.new(x1=bar_index[1], y1=fiboLevel382, x2=bar_index, y2=fiboLevel382, color=color.blue, width=1, style=line.style_dotted) // line.new(x1=bar_index[1], y1=fiboLevel618, x2=bar_index, y2=fiboLevel618, color=color.orange, width=1, style=line.style_dotted) // line.new(x1=bar_index[1], y1=fiboLevel786, x2=bar_index, y2=fiboLevel786, color=color.purple, width=1, style=line.style_dotted) // Göstergeleri Görselleştir plot(macdLine, color=color.blue, title="MACD Line") plot(signalLine, color=color.orange, title="MACD Signal Line") plot(emaFast, color=color.green, title="EMA Fast (9)") plot(emaSlow, color=color.red, title="EMA Slow (21)") // İşlem İşaretleri plotshape(series=longCondition, location=location.belowbar, color=color.green, style=shape.labelup, title="Long Entry") plotshape(series=shortCondition, location=location.abovebar, color=color.red, style=shape.labeldown, title="Short Entry")