Overview This indicator utilizes the Directional Movement Index (DMI) combined with a for-loop to provide a robust trend analysis (ADX is not a part of this indicator).
Settings
DMI ForLoop Settings: Start Length (a): The initial length for DMI calculation (inclusive). End Length (b):The final length for DMI calculation (inclusive). EMA Length (c): The length for the Exponential Moving Average applied to the DMI values, in order so smoothen the signal.
Signal Settings: Signal Mode: Determines the mode of signal calculation. Options are "Fast", "Slow", "Thresholds Crossing", and "Fast Threshold". Default is "Fast". 1. Slow: is a simple crossing of the midline (0). 2. Fast: positive signal depends if the current "DMIema" is above "DMIema[1]" or above 0.99, otherwise the signal is negative. 3. Thresholds Crossing: simple ta.crossover and ta.crossunder of the user defined threshold for Long and Short. 4. Fast Threshold: signal changes if the value of "DMIema" changes by more than user defined threshold against the current signal.
Functionality The DMI ForLoop indicator calculates an array of DMI values over a specified range of lengths, then averages these values and applies an EMA for smoothing. The result is a dynamic trend indicator that adapts to market conditions.
DMI Calculation: The indicator iterates through lengths from Start Length to End Length, calculating the positive and negative directional movement (DM) for each period and calculates the average of all the signals at the end. A custom function version of the DMI is used here in order to use DMI with "series" inputs.
// Function to calculate an array of DMI values over a range of lengths DMIArray(a,b,c)=> // Initialize an array to store DMI values, with size based on the range (b - a + 1) vardmiArray=array.new_float(b-a+1,0.0) // Loop through each length from a to b forx=0to(b-a) // Calculate the smoothing factor alpha for the current length alpha=1.0/(a+x) // Initialize variables for positive and negative DM floatplus=na floatminus=na // Calculate the up and down movements up=ta.change(high) down=-ta.change(low) // Determine the positive DM (plusDM) plusDM=na(up)?na:(up>downandup>0?up:0) // Determine the negative DM (minusDM) minusDM=na(down)?na:(down>upanddown>0?down:0) // Calculate the smoothed positive DM using either SMA or EMA plus:=na(plus[1])?ta.sma(plusDM,(a+x)):alpha*plusDM+(1-alpha)*nz(plus[1]) // Calculate the smoothed negative DM using either SMA or EMA minus:=na(minus[1])?ta.sma(minusDM,(a+x)):alpha*minusDM+(1-alpha)*nz(minus[1]) // Determine the trend direction: 1 for positive trend, -1 for negative trend, 0 for no trend trend=plus>minus?1:plus<minus?-1:0 // Store the trend value in the DMI array array.set(dmiArray,x,trend) // Calculate the average of the DMI array dmiAvg=array.avg(dmiArray) // Apply an EMA to the average DMI value DMIema=ta.ema(dmiAvg,c) // Return the DMI array, its average, and the EMA of the average [dmiArray,dmiAvg,DMIema] // Call the DMIArray function with the input parameters and assign the results to variables [dmiArray,dmiAvg,DMIema]=DMIArray(a,b,c)
This indicator is versatile and can be tailored to fit various trading/investing strategies by adjusting the input parameters and signal modes.
릴리즈 노트
Update:
- option to choose different type of Moving Average
barconfirm=input.bool(false,"Wait for bar close for Alert?",group="Alert Settings") varintalertsignal=na ifdmicol==colup alertsignal:=1 ifdmicol==coldn alertsignal:=-1 Long=ta.crossover(alertsignal,0) Short=ta.crossunder(alertsignal,0) alertcondition(barconfirm?Long[1]:Long,"LONG","DMI ForLoop went Long") alertcondition(barconfirm?Short[1]:Short,"SHORT","DMI ForLoop went SHORT")
오픈 소스 스크립트
진정한 트레이딩뷰 정신에 따라 이 스크립트 작성자는 트레이더가 기능을 검토하고 검증할 수 있도록 오픈소스로 공개했습니다. 작성자에게 찬사를 보냅니다! 무료로 사용할 수 있지만 코드를 다시 게시할 경우 하우스 룰이 적용된다는 점을 기억하세요.
차트에서 빠르게 액세스하려면 이 스크립트를 즐겨찾기에 추가하세요 — 여기에서 자세히 알아보기.