Page 1 of 3

Smoothed ADX indicator

PostPosted: Wed Oct 26, 2011 12:19 pm
by Alexander.Gettinger
This indicator is a ported MQL5 indicator from http://www.mql5.com/ru/code/546 (in Russian).

Formulas:
DIP[i]=Alpha2*DIP_Temp[i]+(1-Alpha2)*DIP[i-1],
DIM[i]=Alpha2*DIM_Temp[i]+(1-Alpha2)*DIM[i-1],
ADX[i]=Alpha2*ADX_Temp[i]+(1-Alpha2)*ADX[i-1], where
DIP_Temp[i]=2*DMI_P[i]+(Alpha1-2)*DMI_P[i-1]+(1-Alpha1)*DIP_Temp[i-1],
DIM_Temp[i]=2*DMI_M[i]+(Alpha1-2)*DMI_M[i-1]+(1-Alpha1)*DIM_Temp[i-1],
ADX_Temp[i]=2*ADX_I[i]+(Alpha1-2)*ADX_I[i-1]+(1-Alpha1)*ADX_Temp[i-1],
DMI_P, DMI_M - DMI+ and DMI-,
ADX_I - standard ADX indicator.

Smoothed_ADX.png


Download:
Smoothed_ADX.lua
(3.3 KiB) Downloaded 1549 times

Other Time Frame Smoothed_ADX.lua
(9.46 KiB) Downloaded 884 times

Custom Smoothed_ADX.lua
(8.88 KiB) Downloaded 1087 times


AUDNZD H4 (11-02-2017 2238).png

MTF MCP Custom Smoothed ADX Heat Map.lua
(12.06 KiB) Downloaded 959 times


Smoothed_ADX Overlay.lua
(5.13 KiB) Downloaded 682 times

Smoothed_ADX Overlay with Alert.lua
(17.3 KiB) Downloaded 724 times

Re: Smoothed ADX indicator

PostPosted: Sun Mar 19, 2017 10:33 am
by Apprentice
Indicator was revised and updated.

Re: Smoothed ADX indicator

PostPosted: Wed Sep 20, 2017 5:03 am
by Apprentice
Custom Smoothed_ADX.lua added.

Re: Smoothed ADX indicator

PostPosted: Tue Oct 17, 2017 5:15 am
by Apprentice
Custom Smoothed_ADX.lua update.

Re: Smoothed ADX indicator

PostPosted: Thu Nov 02, 2017 6:30 pm
by Apprentice
MTF MCP Custom Smoothed ADX Heat Map.lua added.

Re: Smoothed ADX indicator

PostPosted: Thu Mar 01, 2018 2:15 pm
by Apprentice
Other Time Frame Smoothed_ADX.lua added.

Re: Smoothed ADX indicator

PostPosted: Sun Mar 04, 2018 8:04 am
by jrichardson83
Apprentice wrote:Other Time Frame Smoothed_ADX.lua added.


Hey Apprentice, I don't think this is quite correct. What I was hoping for was the ability to select an n-value of days, for example, n=3 for a calculation based off the previous 3 days.

Re: Smoothed ADX indicator

PostPosted: Mon Mar 05, 2018 8:43 am
by Apprentice
Your request is added to the development list under Id Number 4060

Re: Smoothed ADX indicator

PostPosted: Thu Mar 08, 2018 4:10 pm
by Apprentice
Other Time Frame Smoothed_ADX.lua
(10.01 KiB) Downloaded 874 times


Something like this?
In this version, you can use some non-standard time frames like D3.

Re: Smoothed ADX indicator

PostPosted: Thu Mar 08, 2018 5:26 pm
by jrichardson83
Apprentice wrote:
Other Time Frame Smoothed_ADX.lua


Something like this?
In this version, you can use some non-standard time frames like D3.


I appreciate you guys working on this. Unfortunately, I'm still not seeing where to input the "n-value". I'm thinking that the parameters would look something like this

Indicator Time Frame D1
N-Multiplier 3


The indie is then calculated as 3x the chosen indicator time frame. Does that make sense or am I just confused, lol.