Chiến lược này là một hệ thống giao dịch toàn diện kết hợp nhiều chỉ số kỹ thuật chính, bao gồm hệ thống trung bình di chuyển đơn giản (SMA) kép, Divergence Convergence Divergence (MACD), Chỉ số sức mạnh tương đối (RSI) và phân tích mức độ kháng cự.
Chiến lược này sử dụng trung bình di chuyển đơn giản ngắn hạn (10 ngày) và dài hạn (30 ngày) làm hệ thống tín hiệu chính. Một tín hiệu mua được tạo ra khi SMA ngắn hạn vượt qua trên SMA dài hạn, và MACD cho thấy đà tăng (đường MACD trên đường tín hiệu). Điều kiện bán kết hợp phân tích mức kháng cự, kích hoạt đóng vị trí khi giá đạt mức cao nhất trong 20 giai đoạn qua và MACD cho thấy tín hiệu giảm. Ngoài ra, chỉ số RSI phục vụ như một bộ lọc tâm lý cho quản lý vị trí: thoát sớm khỏi lỗ khi RSI vượt quá 70, và giữ vị trí trên lợi nhuận khi RSI dưới 30.
Chiến lược này xây dựng một hệ thống giao dịch hoàn chỉnh bằng cách kết hợp nhiều chỉ số kỹ thuật cổ điển. Sức mạnh của nó nằm trong cơ chế xác nhận nhiều tín hiệu và hệ thống kiểm soát rủi ro toàn diện, mặc dù điều kiện thị trường ảnh hưởng đến hiệu suất chiến lược nên được theo dõi. Thông qua các hướng tối ưu hóa được đề xuất, tính ổn định và khả năng thích nghi của chiến lược có thể được tăng thêm. Trong giao dịch trực tiếp, các nhà đầu tư được khuyên phải điều chỉnh các tham số theo sở thích rủi ro và môi trường thị trường của họ trong khi duy trì sự chú ý đến các nguyên tắc cơ bản của thị trường.
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-11 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("XAUUSD SMA with MACD & Market Sentiment (Enhanced RR)", overlay=true) // Input parameters for moving averages shortSMA_length = input.int(10, title="Short SMA Length", minval=1) longSMA_length = input.int(30, title="Long SMA Length", minval=1) // MACD settings [macdLine, signalLine, _] = ta.macd(close, 12, 26, 9) // Lookback period for identifying major resistance (swing highs) resistance_lookback = input.int(20, title="Resistance Lookback Period", tooltip="Lookback period for identifying major resistance") // Calculate significant resistance (local swing highs over the lookback period) major_resistance = ta.highest(close, resistance_lookback) // Calculate SMAs shortSMA = ta.sma(close, shortSMA_length) longSMA = ta.sma(close, longSMA_length) // RSI for market sentiment rsiLength = input.int(14, title="RSI Length", minval=1) rsiOverbought = input.int(70, title="RSI Overbought Level", minval=50, maxval=100) rsiOversold = input.int(30, title="RSI Oversold Level", minval=0, maxval=50) rsi = ta.rsi(close, rsiLength) // Define buy condition based on SMA and MACD buyCondition = ta.crossover(shortSMA, longSMA) and macdLine > signalLine // Define sell condition: only sell if price is at or above the identified major resistance sellCondition = close >= major_resistance and macdLine < signalLine // Define sentiment-based exit conditions closeEarlyCondition = strategy.position_size < 0 and rsi > rsiOverbought // Close losing trade early if RSI is overbought holdWinningCondition = strategy.position_size > 0 and rsi < rsiOversold // Hold winning trade if RSI is oversold // Execute strategy: Enter long position when buy conditions are met if (buyCondition) strategy.entry("Buy", strategy.long) // Close the position when the sell condition is met (price at resistance) if (sellCondition and not holdWinningCondition) strategy.close("Buy") // Close losing trades early if sentiment is against us if (closeEarlyCondition) strategy.close("Buy") // Visual cues for buy and sell signals plotshape(series=buyCondition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY") plotshape(series=sellCondition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL") // Add alert for buy condition alertcondition(buyCondition, title="Buy Signal Activated", message="Buy signal activated: Short SMA has crossed above Long SMA and MACD is bullish.") // Add alert for sell condition to notify when price hits major resistance alertcondition(sellCondition, title="Sell at Major Resistance", message="Sell triggered at major resistance level.") // Add alert for early close condition (for losing trades) alertcondition(closeEarlyCondition, title="Close Losing Trade Early", message="Sentiment is against your position, close trade.") // Add alert for holding winning condition (optional) alertcondition(holdWinningCondition, title="Hold Winning Trade", message="RSI indicates oversold conditions, holding winning trade.")