OPEN-SOURCE SCRIPT

DMI with Trend Highlight

//version=5
indicator("DMI with Trend Highlight", overlay=false)

// Inputs
adxThreshold = input.int(25, title="ADX Threshold") // ADX threshold for trend detection
dmiLength = input.int(14, title="DMI Length")
adxSmoothing = input.int(14, title="ADX Smoothing")

// Calculate DMI
[diPlus, diMinus, adx] = ta.dmi(dmiLength, adxSmoothing)

// Plot DI+ and DI-
plot(diPlus, color=color.green, title="DI+ (Positive Directional Index)")
plot(diMinus, color=color.red, title="DI- (Negative Directional Index)")

// Plot ADX
plot(adx, color=color.blue, title="ADX (Trend Strength)")

// Background color based on ADX value
bgcolor(adx > adxThreshold ? color.new(color.green, 90) : color.new(color.red, 90), title="Trend/Ranging Highlight")

// Add a horizontal line for the threshold
hline(adxThreshold, "ADX Threshold", color=color.gray, linestyle=hline.style_dotted)
Trend Analysis

Mã nguồn mở

Theo tinh thần TradingView thực sự, tác giả của tập lệnh này đã xuất bản dưới dạng nguồn mở để các nhà giao dịch có thể hiểu và xác minh. Chúc mừng tác giả! Bạn có thể sử dụng miễn phí. Tuy nhiên, bạn cần sử dụng lại mã này theo Quy tắc nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?

Thông báo miễn trừ trách nhiệm