Page 2130 of 2130

Re: MT4 Indicator requests and ideas

Posted: Sun May 18, 2025 4:05 am
by Madsakz169
Thanks Kvak,

I’d like the alerts to trigger only when the yellow dot line touches the white lines — not the blue line.

Appreciate your help!

Re: MT4 Indicator requests and ideas

Posted: Sun May 18, 2025 6:44 pm
by kvak
Madsakz169 wrote: Sun May 18, 2025 4:05 am Thanks Kvak,

I’d like the alerts to trigger only when the yellow dot line touches the white lines — not the blue line.

Appreciate your help!
Hello.
Check this new version, if it is what you want click

Re: MT4 Indicator requests and ideas

Posted: Sun May 18, 2025 10:04 pm
by mrtools
traderokey wrote: Sun May 18, 2025 2:59 am Hi Mrtools,

I’m trying to use ATR Bands avgs and Vidya cmo - bands .ex5 indicators in an EA. I'm using GROK AI to learn and see if it can code the EA, however I only have the .ex5 files. I need some help. Could you please help me with these:
  • How many buffers does each of the two indicators have, and what does each one show (upper band, lower band, middle line, colour change)?
  • For the middle line with two colors (Vidya), how do the buffers show the trend direction?
  • Are there any extra buffers for trading signals?
Thank you.


vidya cmo - bands (mtf + btn).ex5


Atr Bands avgs (btn).ex5
Hello for Vidya, buffer # 2 is the middle line and buffer # 3 is the middle line color. The buffer # 4 is used for mtf calculation.

Code: Select all

   SetIndexBuffer(0,bandUp,INDICATOR_DATA);
   SetIndexBuffer(1,bandDn,INDICATOR_DATA);
   SetIndexBuffer(2,val   ,INDICATOR_DATA); 
   SetIndexBuffer(3,valc  ,INDICATOR_COLOR_INDEX); 
   SetIndexBuffer(4,mtfData,INDICATOR_CALCULATIONS);
For the Atr bands it is buffer # 0 is the middle line, buffer # 1 is the upper band and buffer # 3 is the lower band.

Code: Select all

   SetIndexBuffer(0,mb,INDICATOR_DATA); 
   SetIndexBuffer(1,ub,INDICATOR_DATA); 
   SetIndexBuffer(2,lb,INDICATOR_DATA);

Re: MT4 Indicator requests and ideas

Posted: Mon May 19, 2025 12:00 am
by Kull
Two indicators modified with the help of gpt chat, the first is the Wide range predictor that issues an alert when the histo becomes dodgerblue (too much strength) and the second is a deltaforce that issues an audible alert and has a threshohd for btcusd I use 100.0 and in eurusd I use 0.0026. If it is useful to anyone.

Re: MT4 Indicator requests and ideas

Posted: Mon May 19, 2025 9:38 am
by traderokey
mrtools wrote: Sun May 18, 2025 10:04 pm Hello for Vidya, buffer # 2 is the middle line and buffer # 3 is the middle line color. The buffer # 4 is used for mtf calculation.

Code: Select all

   SetIndexBuffer(0,bandUp,INDICATOR_DATA);
   SetIndexBuffer(1,bandDn,INDICATOR_DATA);
   SetIndexBuffer(2,val   ,INDICATOR_DATA); 
   SetIndexBuffer(3,valc  ,INDICATOR_COLOR_INDEX); 
   SetIndexBuffer(4,mtfData,INDICATOR_CALCULATIONS);
For the Atr bands it is buffer # 0 is the middle line, buffer # 1 is the upper band and buffer # 3 is the lower band.

Code: Select all

   SetIndexBuffer(0,mb,INDICATOR_DATA); 
   SetIndexBuffer(1,ub,INDICATOR_DATA); 
   SetIndexBuffer(2,lb,INDICATOR_DATA);
Thanks Mrtools!!