Chiến lược này kết hợp các tín hiệu chéo MACD từ nhiều khung thời gian với các mức hỗ trợ và kháng cự năng động dựa trên mức cao và thấp 52 tuần. Nó xác nhận các tín hiệu giao dịch thông qua các giao dịch chéo MACD trên cả khung thời gian hàng tuần và hàng ngày trong khi sử dụng các đường hỗ trợ và kháng cự năng động được hình thành bởi mức cao và thấp 52 tuần để hỗ trợ phân tích xu hướng thị trường, cho phép đưa ra các quyết định giao dịch mạnh mẽ hơn. Chiến lược sử dụng một cơ chế dừng lỗ năng động để kiểm soát hiệu quả rủi ro trong khi đảm bảo lợi nhuận.
Chiến lược dựa trên logic cốt lõi sau:
Chiến lược này xây dựng một hệ thống giao dịch theo xu hướng hoàn chỉnh bằng cách kết hợp các tín hiệu chéo MACD nhiều khung thời gian với các đường hỗ trợ và kháng cự năng động dựa trên mức cao và thấp 52 tuần. Sức mạnh của nó nằm trong độ tin cậy xác nhận tín hiệu và kiểm soát rủi ro toàn diện, mặc dù phải chú ý đến các rủi ro thị trường và chậm trễ. Thông qua tối ưu hóa và cải thiện liên tục, chiến lược này cho thấy hứa hẹn để đạt được lợi nhuận ổn định trong các thị trường xu hướng.
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-25 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("MACD Bitcoin strategy con 52W High/Low (linee estese)", overlay=true) // === MACD SETTINGS === fastLength = 12 slowLength = 26 signalSmoothing = 9 // Funzione per ottenere i valori MACD getMACD(source, timeframe) => [macdLine, signalLine, _] = ta.macd(source, fastLength, slowLength, signalSmoothing) [macdLine, signalLine] // Valori MACD Settimanali [macdWeekly, signalWeekly] = request.security(syminfo.tickerid, "W", getMACD(close, "W"), lookahead=barmerge.lookahead_on) // Valori MACD Giornalieri [macdDaily, signalDaily] = getMACD(close, "D") // Variabile per lo stop loss var float lowOfSignalCandle = na // Condizione per l'ingresso longConditionWeekly = ta.crossover(macdWeekly, signalWeekly) exitConditionDaily = ta.crossunder(macdDaily, signalDaily) // Imposta Stop Loss sulla candela giornaliera if (exitConditionDaily) lowOfSignalCandle := low // Condizione di ingresso nel trade enterTradeCondition = macdWeekly > signalWeekly and ta.crossover(macdDaily, signalDaily) if (enterTradeCondition) strategy.entry("MACD Long", strategy.long) if (not na(lowOfSignalCandle)) strategy.exit("Stop Loss", "MACD Long", stop=lowOfSignalCandle) if (strategy.position_size == 0) lowOfSignalCandle := na // // === 52 WEEK HIGH/LOW SETTINGS === // // Input per selezionare tra Highs/Lows o Close // high_low_close = input.string(defval="Highs/Lows", title="Base 52 week values on candle:", options=["Highs/Lows", "Close"]) // // Calcolo dei valori delle 52 settimane // weekly_hh = request.security(syminfo.tickerid, "W", ta.highest(high, 52), lookahead=barmerge.lookahead_on) // weekly_ll = request.security(syminfo.tickerid, "W", ta.lowest(low, 52), lookahead=barmerge.lookahead_on) // weekly_hc = request.security(syminfo.tickerid, "W", ta.highest(close, 52), lookahead=barmerge.lookahead_on) // weekly_lc = request.security(syminfo.tickerid, "W", ta.lowest(close, 52), lookahead=barmerge.lookahead_on) // // Selezione dei valori in base all'input // high_plot = high_low_close == "Highs/Lows" ? weekly_hh : weekly_hc // low_plot = high_low_close == "Highs/Lows" ? weekly_ll : weekly_lc // // === LINEE ORIZZONTALI ESTESE FINO AL PREZZO ATTUALE === // var line highLine = na // var line lowLine = na // // Linea Orizzontale per il 52W High // if (na(highLine)) // highLine := line.new(bar_index, high_plot, bar_index + 1, high_plot, color=color.green, width=2, style=line.style_dashed, extend=extend.right) // else // line.set_y1(highLine, high_plot) // line.set_y2(highLine, high_plot) // // Linea Orizzontale per il 52W Low // if (na(lowLine)) // lowLine := line.new(bar_index, low_plot, bar_index + 1, low_plot, color=color.red, width=2, style=line.style_dashed, extend=extend.right) // else // line.set_y1(lowLine, low_plot) // line.set_y2(lowLine, low_plot) // // Etichette per le linee orizzontali // var label highLabel = na // var label lowLabel = na // if (na(highLabel)) // highLabel := label.new(bar_index, high_plot, "52W High", color=color.green, textcolor=color.white, style=label.style_label_down, size=size.small) // else // label.set_y(highLabel, high_plot) // label.set_x(highLabel, bar_index) // if (na(lowLabel)) // lowLabel := label.new(bar_index, low_plot, "52W Low", color=color.red, textcolor=color.white, style=label.style_label_up, size=size.small) // else // label.set_y(lowLabel, low_plot) // label.set_x(lowLabel, bar_index) // // Tracciamento delle Linee Estese // plot(high_plot, title="52W High", color=color.green, style=plot.style_linebr) // plot(low_plot, title="52W Low", color=color.red, style=plot.style_linebr)