thank you very much ! appreciate it !
#property indicator_plots 6
No such property in MT4MACD1Buffer[i]=iMA(NULL,0,2,0,FastMethod,FastApplied,i)- iMA(NULL,0,PeriodFast,0,FastMethod,FastApplied,i);
Buffer @ i is filled with corresponding MA @i. Makes sense.FastUpBuffer[i] = iMA(NULL,0,PeriodFast,0,FastMethod,FastApplied,i)+iBandsOnArray(MACD1Buffer,0,200,2,0,1,0); FastDownBuffer[i] =iMA(NULL,0,PeriodFast,0,FastMethod,FastApplied,i)+ iBandsOnArray(MACD1Buffer,0,200,2,0,2,0);
Not so for the bands. Also you need to set the buffer to asSeries before filling so bands knows how to read it.- But it still won't work because you are counting up, you haven't fill the higher ones yet. Remove that buffer initialization code, count down, and do How to do your
lookbacks correctly.

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Good Day Folks , I am Programming a Custom Dynamic Envelope based on band on Macd array
everything was set and data came out well , except for the array drawing that i got are a little bit messy ,
what would be the problem ?
its a simple indicator but i am bad with array functions
Thanks in advance !