Page 54 of 56

Re: ADX DMI Indicators for MT4

Posted: Mon Sep 26, 2022 2:05 am
by mrtools
moey_dw wrote: Sun Sep 25, 2022 8:55 pm thank u transparenttrader i was going to ask this too...... seriously wish more info was provided or NOTED here sometimes cos here i was thinking "LR" was linear regression or something 😒😒😒

thanks mrtools for making it non-repainting & pls if in future its possible to explain what these advanced indicators do or any info would be so good for my sanity 🙇‍♂️🙇‍♂️🙇‍♂️
Yes, you are right the proper name should probably be called linear regression value or like you said linear regression, it is called by some people me included Lsma (Least square moving average), what is the correct name I have no idea. As far as removing the repainting not sure %100 if the original was repainting saw something in the code that looked like it might be but know the version, I posted isn't repainting. Anyone can place this version alongside a regular adx and see the smoothing, but in the future will try and include more information when posting. Below a simplified formula for lsma or linear regression value, this was revealed awhile back think it was on the mt5 forum.

Code: Select all

lsma[i]   = 3.0*iMA(_Symbol,_Period,LSMAPeriod,0,MODE_LWMA,LSMAPrice,i)-2.0*iMA(_Symbol,_Period,LSMAPeriod,0,MODE_SMA,LSMAPrice,i);

Could have used this in the above adx using iMAOnArray but it would have required an extra loop in the code and 3 more buffers. Mladen created a function that makes this whole thing easier, faster and uses less buffers, which I used in the above indicator code. Apologize for not providing more information, and hopefully this explanation helps.

Re: ADX DMI Indicators for MT4

Posted: Fri Oct 28, 2022 4:48 am
by mrtools
Ganesh wrote: Wed Oct 26, 2022 7:26 pm Hi, mrtools, kindly add candle color option to this ADX HISTOGRAM indicator.advanced adx.mq4
Hi Ganesh,

Made a candle version.

Re: ADX DMI Indicators for MT4

Posted: Fri Feb 03, 2023 4:28 am
by sal
mr.tools
is it possible to add EMA line on adx histogram for an experiment

Re: ADX DMI Indicators for MT4

Posted: Fri Feb 03, 2023 6:17 am
by mrtools
sal wrote: Fri Feb 03, 2023 4:28 am mr.tools
is it possible to add EMA line on adx histogram for an experiment
Added a ema line.

Re: ADX DMI Indicators for MT4

Posted: Tue Feb 07, 2023 6:21 am
by mrtools
Wilder Dmi with alerts and fill on diplus/diminus cross.

Re: ADX DMI Indicators for MT4

Posted: Tue Feb 07, 2023 8:04 pm
by TransparentTrader
mrtools wrote: Tue Feb 07, 2023 6:21 am Wilder Dmi with alerts and fill on diplus/diminus cross.
Image

Couple of questions:

1) Aside from the fill, what makes this indicator any different from the original Wilders DMI (Real ADX) indicator mentioned on page 1?

2) What's the moving average you are using on the charts?

3) What's the EA you are using to generate those offline mean/median renko charts?

Re: ADX DMI Indicators for MT4

Posted: Wed Feb 08, 2023 4:50 am
by mrtools
TransparentTrader wrote: Tue Feb 07, 2023 8:04 pm Couple of questions:

1) Aside from the fill, what makes this indicator any different from the original Wilders DMI (Real ADX) indicator mentioned on page 1?

2) What's the moving average you are using on the charts?

3) What's the EA you are using to generate those offline mean/median renko charts?
1) Nothing except the fill, in my old age, if I would have remembered about that version probably wouldn't have bothered with this version.
2) Arsi averages.
3) It's an indicator (attached)

Re: ADX DMI Indicators for MT4

Posted: Tue Feb 21, 2023 3:16 am
by talaate
kvak wrote: Fri Feb 11, 2022 2:28 am Found bug in indicator, here is corrected version...
Edid: redownload file...
Dear kvak
would you please add "alert notification" to this indicator and if you lately upgraded it you may guid me to the link
download/file.php?id=3409354
Thanks

Re: ADX DMI Indicators for MT4

Posted: Tue Feb 21, 2023 4:55 am
by kvak
talaate wrote: Tue Feb 21, 2023 3:16 am Dear kvak
would you please add "alert notification" to this indicator and if you lately upgraded it you may guid me to the link
download/file.php?id=3409354
Thanks
ADX indicator with E-Averages

Hello, little upgradded, code strict, average list and alerts....Test it...

Re: ADX DMI Indicators for MT4

Posted: Tue Feb 21, 2023 5:04 am
by talaate
kvak wrote: Tue Feb 21, 2023 4:55 am Hello, little upgradded, code strict, average list and alerts....Test it...
DearKvak
Many Thanks