Page 115 of 193

Re: Bollinger Bands type indicators for MT4

Posted: Tue Jun 28, 2022 2:14 am
by Banzai




Keltner Channels
(on/off button)

Code: Select all

//+------------------------------------------------------------------+
//|                                             Keltner Channels.mq4 |
//|                                                  Coded by Gilani |
//|   set up by RK       Copyright © 2005, MetaQuotes Software Corp. |
//|   fIXED BY mLADEN may29,2013           http://www.metaquotes.net |
//|   version 8                                                      |
//+------------------------------------------------------------------+
RK = set up by RK
KC = Keltner Channels
v8 = version 8
AHTF = automatic higher time frame
alerts = on or off
arrows = on or off
I have no idea what is "txt-Zo-trend" and what is "-w" ???

Re: Bollinger Bands type indicators for MT4

Posted: Wed Jun 29, 2022 12:33 am
by Banzai
honje19960321 wrote: Sun May 01, 2022 7:55 pm 1-2-3 PATTERN Double Bollinger Bands Trading Strategy
Repost here

Re: Bollinger Bands type indicators for MT4

Posted: Wed Jun 29, 2022 5:46 am
by Banzai




Double Bollinger Bands
(on/off button)



The middle line is just SMA (20). Simple Moving Average (20).
The bands are just standard deviation bands.

Re: Bollinger Bands type indicators for MT4

Posted: Wed Jun 29, 2022 10:29 am
by Banzai
Donchian Channels
(on/off button)


Please use this newer version with better codes.
For this version, you can change the sizes and the colors of arrows.
The big green and red arrows you see in the attached picture.

Re: Bollinger Bands type indicators for MT4

Posted: Wed Jun 29, 2022 10:53 am
by 太虚一毫
Banzai wrote: Wed Jun 29, 2022 10:29 am Donchian Channels
(on/off button)


Please use this newer version with better codes.
For this version, you can change the sizes and the colors of arrows.

Similar to the small arrow in real transaction history, I don't know if the shape of the arrow can be changed. :thumbup:

Re: Bollinger Bands type indicators for MT4

Posted: Wed Jun 29, 2022 11:36 am
by Banzai
太虚一毫 wrote: Wed Jun 29, 2022 10:53 am Similar to the small arrow in real transaction history, I don't know if the shape of the arrow can be changed. :thumbup:
You can change the big green and red arrows.
The tiny triangles are perfect. I don't think we need to change that.

Re: Bollinger Bands type indicators for MT4

Posted: Sat Jul 02, 2022 2:28 pm
by Banzai
All Bollinger Bands
(on/off button)


ahtf = automatic higher time frame
no interpolation yet

about 36 MA
22 prices

Code: Select all

enum ENUM_MA_MODE
{
   ALMA,                // Arnaud Legoux Moving Average
   IE_2,                // Combination of LSMA and ILRS
   EMA,                 // Exponential Moving Average
   DEMA,                // Double Exponential Moving Average by P.Mulloy
   TEMA,                // Triple Exponential Moving Average by P.Mulloy
   DsEMA,               // Double Smoothed EMA
   TsEMA,               // Triple Smoothed EMA
   EWMA,                // Exponential Weighted Moving Average
   GeoMean,             // Geometric Mean
   HMA,                 // Hull Moving Average by A.Hull
   ITrend,              // Instantaneous Trendline by J.Ehlers
   ILRS,                // Integral of Linear Regression Slope
   Laguerre,            // Laguerre filter by J.Ehlers
   LWMA,                // Linear Weighted Moving Average
   LSMA,                // Least Square Moving Average (or EPMA, Linear Regression Line)
   JSmooth,             // M.Jurik's Smoothing
   MD,                  // McGinley Dynamic
   Median,              // Moving Median
   REMA,                // Regularized EMA by C.Satchwell
   Decycler,            // Simple Decycler by J.Ehlers
   SMA_eq,              // Simplified SMA
   SMA,                 // Simple Moving Average
   SineWMA,             // Sine Weighted Moving Average
   SMMA,                // Smoothed Moving Average
   SuperSmu,            // SuperSmoother by J.Ehlers
   T3_basic,            // T3 by T.Tillson (original version)
   T3,                  // T3 by T.Tillson (correct version)
   BF3P,                // Three-pole modified Butterworth filter by J.Ehlers
   BF2P,                // Two-pole modified Butterworth filter by J.Ehlers
   TriMA,               // Triangular Moving Average
   TriMAgen,            // Triangular Moving Average generalized by J.Ehlers
   VWMA,                // Volume Weighted Moving Average
   VEMA,                // Volume-weighted Exponential Moving Average(V-EMA)
   eVWMA,               // Modified eVWMA
   Wilder,              // Wilder Exponential Moving Average
   ZeroLagEMA,          // Zero-Lag Exponential Moving Average
};   

What are these MA? Click here:
viewtopic.php?f=579496&t=8474786


I think I'm missing about 15 MA.

ma_adxvma, // Adxvma
ma_ahr, // Ahrens moving average
ma_alxma, // Alexander moving average - ALXMA
ma_emas, // Ema derivative - EMAD
ma_ie_2, // IE/2
ma_lead, // Leader exponential moving average
ma_mcma, // McNicholl ema
ma_nlma, // Non lag moving average
ma_pwma, // Parabolic weighted moving average - PWMA
ma_rmta, // Recursive moving trendline - RMTA
ma_smoo, // Smoother
ma_s3p, // Three pole Ehlers smoother
ma_s2p, // Two pole Ehlers smoother
ma_zldema, // Zero lag dema
ma_zltema // Zero lag tema

Re: Bollinger Bands type indicators for MT4

Posted: Sun Jul 03, 2022 9:22 am
by p1ps_surfer
Banzai wrote: Sat Jul 02, 2022 2:28 pm All Bollinger Bands
(on/off button)


ahtf = automatic higher time frame
no interpolation yet

about 36 MA
22 prices
hi B, do know or have this kind version of Donchian channel?

Re: Bollinger Bands type indicators for MT4

Posted: Sun Jul 03, 2022 9:29 am
by p1ps_surfer
Banzai wrote: Wed Jun 29, 2022 10:29 am

Please use this newer version with better codes.
For this version, you can change the sizes and the colors of arrows.
The big green and red arrows you see in the attached picture.
Image
hi B, how that blu/red box produced? can we adjust the setting?

Re: Bollinger Band type indicators for MT4

Posted: Sun Jul 03, 2022 10:15 am
by p1ps_surfer
Jimmy wrote: Sun Jan 16, 2022 11:28 pm Thank you Mrtools for adding the valuable Averages filters. Out of the two recent versions I seem to gravitate towards the first one you've made, so I've made a template for others who would like to try it :)

Below is a template to get you started as well as John Carter's book.
Image
hello respected coder, can u make this bb squeeze draw out divergence such as below image??