Page 139 of 201

Re: Bollinger Bands type indicators for MT4

Posted: Tue Nov 01, 2022 3:51 am
by mrtools
PumbaPLS wrote: Mon Oct 31, 2022 11:53 pm can we get an additional 3rd colour feature, which shows a grey (as example) colour when the MA is inside the bands?
Added the 3rd color.

Re: Bollinger Bands type indicators for MT4

Posted: Tue Nov 01, 2022 9:03 am
by Woodyz
[quote=mrtools post_id=1295494489 time=1667235065 user_id=4864807]
Added the 3rd color.

No 3rd color .....................?

Re: Bollinger Bands type indicators for MT4

Posted: Tue Nov 01, 2022 10:12 am
by mrtools
Woodyz wrote: Tue Nov 01, 2022 9:03 am
The picture you are showing is the 2 color version, the 3 color version is the post above yours the Mobo - average.

Re: Bollinger Bands type indicators for MT4

Posted: Tue Nov 01, 2022 5:47 pm
by PumbaPLS
mrtools wrote: Tue Nov 01, 2022 3:51 am Added the 3rd color.
thank you!

Re: Bollinger Bands type indicators for MT4

Posted: Thu Nov 03, 2022 7:30 am
by mrtools
berserkyjc wrote: Thu Nov 03, 2022 1:00 am Dearest MrTools,
do we have mt4 vison of this WPR with Bollinger bands.mq5?
I searched forum and didn't find any.
thank you
Hi Berserkyjc,

Think this is close to that version.

Re: Bollinger Bands type indicators for MT4

Posted: Thu Nov 03, 2022 1:36 pm
by berserkyjc
mrtools wrote: Thu Nov 03, 2022 7:30 am Hi Berserkyjc,

Think this is close to that version.
THANK YOU VERY MUCH!

you are my STAR!

Re: Bollinger Band type indicators for MT4

Posted: Fri Nov 04, 2022 1:27 am
by aadedare
Dimitri wrote: Tue Feb 14, 2017 7:39 pm Dear MrTools,
Welcome and Very Nice to see you here ...
I would like to know, possibly, the rest of indicators that appear on the chart .... if you can share the tpl file would be perfect.
Thank you in advance for your reaction ....
Best Regards
Dimitri
Dear Mr Tools
Thanks so much for this indicator

Re: Bollinger Bands type indicators for MT4

Posted: Fri Nov 04, 2022 8:08 am
by Woodyz
Mr Tools............. For the " ! Mobo - average bands histo (mtf + alerts + arrows) " can we please have an either-or option for full Histo or not
Will be muchly appreciated.

Re: Bollinger Bands type indicators for MT4

Posted: Sat Nov 05, 2022 4:19 am
by mrtools
Woodyz wrote: Fri Nov 04, 2022 8:08 am Mr Tools............. For the " ! Mobo - average bands histo (mtf + alerts + arrows) " can we please have an either-or option for full Histo or not
Will be muchly appreciated.
Woodyz sorry for the late answer, but how do you mean?

Re: Bollinger Bands type indicators for MT4

Posted: Sat Nov 05, 2022 6:08 am
by mrtools
MOBO Bands (Momentum Breakout Bands) updated with Averages Filters by Mladen

Thanks to Mladen this is an update of the mobo averages bands, now using (if I counted right) a choice of 45 averages for the dpo signal line and the mobo center ma. This is all the average types now:

Code: Select all

enum  enMaTypes
      {
            ma_adxvma,                                          // Adxvma
            ma_ahr,                                             // Ahrens moving average
            ma_alxma,                                           // Alexander moving average
            ma_dema,                                            // Double EMA (DEMA)
            ma_dscma,                                           // Deviation scaled ma
            ma_dsema,                                           // Double smoothed EMA
            ma_dsema2,                                          // Double smoothed EMA (variation)
            ma_emas,                                            // Ema derivative
            ma_ema,                                             // Exponential moving average
            ma_emaf,                                            // Fast EMA
            ma_frama,                                           // Fractal adaptive moving average
            ma_hull,                                            // Hull moving average
            ma_hulle,                                           // Hull (ema based) moving average
            ma_ie2,                                             // IE/2
            ma_ilinr,                                           // Integral of linear regression slope
            ma_itl,                                             // Instantaneous trendline
            ma_jur,                                             // Jurik
            ma_lagg,                                            // Laguerre filter
            ma_lead,                                            // Leader exponential moving average
            ma_linr,                                            // Linear regression value
            ma_lwma,                                            // Linear weighted moving average
            ma_mcg,                                             // McGinley Dynamic
            ma_mcma,                                            // McNicholl EMA
            ma_nlma,                                            // Non lag moving average
            ma_pwma,                                            // Parabolic weighted moving average
            ma_rmta,                                            // Recursive moving trendline
            ma_sma,                                             // Simple moving average
            ma_sid,                                             // Simple decycler
            ma_sine,                                            // Sine weighted moving average
            ma_slwma,                                           // Smoothed linear weighted ma 
            ma_smma,                                            // Smoothed moving average
            ma_smoo,                                            // Smoother
            ma_smoo2,                                           // Smoother JMA like
            ma_ssm,                                             // Super smoother
            ma_b3p,                                             // Three pole Ehlers Butterworth
            ma_s3p,                                             // Three pole Ehlers smoother
            ma_tma,                                             // Triangular moving average
            ma_tema,                                            // Triple EMA (TEMA)
            ma_tsema2,                                          // Triple smoothed EMA (variation)
            ma_b2p,                                             // Two pole Ehlers Butterworth
            ma_s2p,                                             // Two pole Ehlers smoother
            ma_vema,                                            // Volume weighted ema
            ma_vwma,                                            // Volume weighted moving average
            ma_zldema,                                          // Zero lag dema
            ma_zlma,                                            // Zero lag MA
            ma_zltema                                           // Zero lag tema
         };