Page 208 of 210

Re: Bollinger Bands type indicators for MT4

Posted: Tue Jun 24, 2025 6:59 am
by simon_n3z
mrtools wrote: Sun Jun 22, 2025 9:18 pm Try this one.
Yes yes, very awesome,... thank you Mr.Tools :D :D

Re: Bollinger Bands type indicators for MT4

Posted: Tue Jul 01, 2025 4:34 pm
by qwepoi123
kvak wrote: Tue Sep 17, 2024 6:18 am FiBB (Fibonacci Bollinger Bands) with RMA's

Hello.
Like this?

For the more information on this indicator, please see:
@kvak,Dear friend kvak, may I ask if you can convert this metric to the EX5 version? I'm sorry to trouble you! thank you! If you have time, you can also convert another VWAPs 1.2.ex4 to ex5 version! thank you!

Re: Bollinger Bands type indicators for MT4

Posted: Wed Jul 02, 2025 9:08 am
by kvak
qwepoi123 wrote: Tue Jul 01, 2025 4:34 pm @kvak,Dear friend kvak, may I ask if you can convert this metric to the EX5 version? I'm sorry to trouble you! thank you! If you have time, you can also convert another VWAPs 1.2.ex4 to ex5 version! thank you!
Hello, not trouble for me, it is ok.
For RMAs I think it would be possible for me, but for WVAPs, I don't know if I can able transfer it to MT5.

Re: Bollinger Bands type indicators for MT4

Posted: Wed Jul 02, 2025 10:48 am
by qwepoi123
kvak wrote: Wed Jul 02, 2025 9:08 am Hello, not trouble for me, it is ok.
For RMAs I think it would be possible for me, but for WVAPs, I don't know if I can able transfer it to MT5.
Okay, as long as you have time to handle it, thank you very much

Re: Bollinger Bands type indicators for MT4

Posted: Thu Jul 03, 2025 9:14 am
by kvak
qwepoi123 wrote: Wed Jul 02, 2025 10:48 am Okay, as long as you have time to handle it, thank you very much
Hello, I am posted simple version of adaptive averages bands HERE
Test it.

Re: Bollinger Bands type indicators for MT4

Posted: Wed Jul 30, 2025 5:17 am
by kvak
PM request.
Updated version of bollinger bands.

Re: Bollinger Bands type indicators for MT4

Posted: Thu Jul 31, 2025 5:59 am
by kvak
PM request for Keltner channel average.
Here is universal channel indicator, you may choose between symetric/asymetric bands, for symetric bands you may choose atr/stdev inbuild/standart error and stdev with/without sample correction calculation.
Indicator have three bands with separate arrows/alerts and center line slope arrows/alerts.
I am open to further enhancements , just write

Re: Bollinger Bands type indicators for MT4

Posted: Thu Jul 31, 2025 2:52 pm
by BeatlemaniaSA
kvak wrote: Thu Jul 31, 2025 5:59 am PM request for Keltner channel average.
Here is universal channel indicator, you may choose between symetric/asymetric bands, for symetric bands you may choose atr/stdev inbuild/standart error and stdev with/without sample correction calculation.
Indicator have three bands with separate arrows/alerts and centre line slope arrows/alerts.
I am open to further enhancements, just write
Holy crap! The eAverages have evolved remarkably, and with this many to choose from, it will take me a day and a half just to test them all. :-D

Simply brilliant, kvak!

Would it be possible though to add a button to this indicator?

Regards,
Beatle 🪲

Re: Bollinger Bands type indicators for MT4

Posted: Fri Aug 01, 2025 5:02 am
by kvak
BeatlemaniaSA wrote: Thu Jul 31, 2025 2:52 pm Holy crap! The eAverages have evolved remarkably, and with this many to choose from, it will take me a day and a half just to test them all. :-D

Simply brilliant, kvak!

Would it be possible though to add a button to this indicator?

Regards,
Beatle 🪲
Hello my friend, welcome back :)
Here is buttoned version.

Re: Bollinger Bands type indicators for MT4

Posted: Wed Aug 20, 2025 3:06 am
by mrtools
TransparentTrader wrote: Sun Apr 14, 2024 11:17 am kvak, mrtools, or any of the master coders here, would it be possible to port this indicator to MT4/MT5?

The UltimateChannel2 pdf comes with Pinescript code for TradingView and I can't imagine it would be too difficult to convert it into MQL4/MQL5 code.

I'm sure PineCodersTASC on TradingView will eventually publish the code since they do so for every monthly magazine's featured indicator, but I've included the code to Ehler's Ultimate Smoother that was published in the April 2024 issue.

Hopefully that makes things easier for you!

Code: Select all

// This Pine Scriptâ„¢ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © PineCodersTASC

//  TASC Issue: April 2024 - Vol. 42, Issue 4
//     Article: The Ultimate Smoother.
//              Smoothing data with less lag.
//  Article By: John F. Ehlers
//    Language: TradingView's Pine Scriptâ„¢ v5
// Provided By: PineCoders, for tradingview.com


//@version=5
string title  = 'TASC 2024.04 The Ultimate Smoother'
string stitle = 'US'
indicator(title, stitle, true)


// --- Inputs ---
int   periodInput = input.int(20, "Critical Period:")
float sourceInput = input.source(close, "Source Series:")


// --- Functions ---
// @function      The UltimateSmoother is a filter created
//                by subtracting the response of a high-pass 
//                filter from that of an all-pass filter.
// @param src     Source series.
// @param period  Critical period.
// @returns       Smoothed series.
UltimateSmoother (float src, int period) =>
    float a1 = math.exp(-1.414 * math.pi / period)
    float c2 = 2.0 * a1 * math.cos(1.414 * math.pi / period)
    float c3 = -a1 * a1
    float c1 = (1.0 + c2 - c3) / 4.0
    float us = src
    if bar_index >= 4
        us := (1.0 - c1) * src + 
              (2.0 * c1 - c2) * src[1] - 
              (c1 + c3) * src[2] + 
              c2 * nz(us[1]) + c3 * nz(us[2])
    us


// --- Plotting ---
plot(UltimateSmoother(sourceInput, periodInput), 'US', color.blue, 2)

Hello, I apologize saw the code and automatically thought it was super smoother but finally realized it was super smoother's faster cousin anyway, made this version using Ultimate smoother.