Chiến lược đảo ngược xu hướng xoáy sử dụng chỉ số xoáy để xác định các biến đổi xu hướng tiềm năng và nắm bắt các chuyển động thị trường thuận lợi. Bằng cách kết hợp thông minh chỉ số xoáy với đường trung bình động, chiến lược này nhằm mục đích xác định hiệu quả xu hướng thị trường và tạo ra tín hiệu giao dịch.
Chỉ số xoáy- Đánh giá xu hướng và sức mạnh bằng cách phân tích biến động giá tích cực và tiêu cực.
Trung bình di chuyển theo cấp số- Đơn giản hóa giá đóng cửa cho một dấu hiệu xu hướng lỏng lẻo hơn.
Chiến lược này tận dụng Chỉ số xoáy để xác định hướng xu hướng chính. Các tín hiệu giao dịch được tạo ra khi các đường chỉ số vượt qua giá trị ngưỡng. Với việc lọc thêm từ đường trung bình động, các tín hiệu sai có thể được tránh. Cụ thể, một tín hiệu mua được tạo ra khi Chỉ số xoáy vượt qua đường ngưỡng và giá vượt trên mức trung bình động; Một tín hiệu bán xảy ra khi chỉ số vượt dưới ngưỡng và giá dưới mức trung bình động.
Các bộ lọc bổ sung, xác minh chéo giữa các chỉ số, tối ưu hóa tham số và thực hiện stop loss thích hợp có thể giúp giải quyết các rủi ro trên.
Chiến lược đảo ngược xu hướng xoáy cho thấy sự mạnh mẽ trong việc nắm bắt các sự đảo ngược tiềm năng trong khi sở hữu khả năng lọc hợp lý. Với tối ưu hóa và quản lý rủi ro thích hợp, chiến lược này cho thấy hứa hẹn trong việc có được lợi nhuận điều chỉnh rủi ro mạnh mẽ. Các nhà giao dịch được khuyến khích kiểm tra kỹ lưỡng chiến lược này và khám phá các mở rộng sáng tạo dựa trên nó.
/*backtest start: 2024-01-01 00:00:00 end: 2024-01-31 23:59:59 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/ // © AstroHub //@version=5 strategy("Vortex Strategy [AstroHub]", shorttitle="VS [AstroHub]", overlay=true) // Vortex Indicator Settings length = input(14, title="Length", group ="AstroHub Vortex Strategy", tooltip="Number of bars used in the Vortex Indicator calculation. Higher values may result in smoother but slower responses to price changes.") mult = input(1.0, title="Multiplier", group ="AstroHub Vortex Strategy", tooltip="Multiplier for the Vortex Indicator calculation. Adjust to fine-tune the sensitivity of the indicator to price movements.") threshold = input(0.5, title="Threshold",group ="AstroHub Vortex Strategy", tooltip="Threshold level for determining the trend. Higher values increase the likelihood of a trend change being identified.") emaLength = input(20, title="EMA Length", group ="AstroHub Vortex Strategy", tooltip="Length of the Exponential Moving Average (EMA) used in the strategy. A longer EMA may provide a smoother trend indication.") // Calculate Vortex Indicator components a = math.abs(close - close[1]) b = close - ta.sma(close, length) shl = ta.ema(b, length) svl = ta.ema(a, length) // Determine trend direction upTrend = shl > svl downTrend = shl < svl // Define Buy and Sell signals buySignal = ta.crossover(shl, svl) and close > ta.ema(close, emaLength) and (upTrend != upTrend[1]) sellSignal = ta.crossunder(shl, svl) and close < ta.ema(close, emaLength) and (downTrend != downTrend[1]) // Execute strategy based on signals strategy.entry("Sell", strategy.short, when=buySignal) strategy.entry("Buy", strategy.long, when=sellSignal) // Background color based on the trend bgcolor(downTrend ? color.new(color.green, 90) : upTrend ? color.new(color.red, 90) : na) // Plot Buy and Sell signals with different shapes and colors buySignal1 = ta.crossover(shl, svl) and close > ta.ema(close, emaLength) sellSignal1 = ta.crossunder(shl, svl) and close < ta.ema(close, emaLength) plotshape(buySignal1, style=shape.square, color=color.new(color.green, 10), size=size.tiny, location=location.belowbar, title="Buy Signal") plotshape(sellSignal1, style=shape.square, color=color.new(color.red, 10), size=size.tiny, location=location.abovebar, title="Sell Signal") plotshape(buySignal1, style=shape.square, color=color.new(color.green, 90), size=size.small, location=location.belowbar, title="Buy Signal") plotshape(sellSignal1, style=shape.square, color=color.new(color.red, 90), size=size.small, location=location.abovebar, title="Sell Signal")