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
21292Hello.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!
Check this new version, if it is what you want click
Re: MT4 Indicator requests and ideas
21293Hello for Vidya, buffer # 2 is the middle line and buffer # 3 is the middle line color. The buffer # 4 is used for mtf calculation.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?
Thank you.
- Are there any extra buffers for trading signals?
vidya cmo - bands (mtf + btn).ex5
Atr Bands avgs (btn).ex5
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);
Code: Select all
SetIndexBuffer(0,mb,INDICATOR_DATA);
SetIndexBuffer(1,ub,INDICATOR_DATA);
SetIndexBuffer(2,lb,INDICATOR_DATA);
Re: MT4 Indicator requests and ideas
21294Two 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.