Yes yes, very awesome,... thank you Mr.Tools


@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!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:
Hello, not trouble for me, it is ok.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!
Okay, as long as you have time to handle it, thank you very muchkvak 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.
Hello, I am posted simple version of adaptive averages bands HEREqwepoi123 wrote: Wed Jul 02, 2025 10:48 am Okay, as long as you have time to handle it, thank you very much
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. :-Dkvak 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
Hello my friend, welcome backBeatlemaniaSA 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![]()
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)