Search found 16 matches

Return

Re: MT4 Indicator requests and ideas

by: Csj179t
17MA wrote: Sun Aug 22, 2021 5:37 am Thanks appreciate it :)
17MA,

I forgot to include something in the code, that deletes arrows when removing indicator from the chart....
Already made new version, and reposted it, in my previous post. And I'll attach new verison of indicator here also.
Sorry for any inconvenience....

Re: Does this indicator repaint?

by: ionone
Hi can someone help me check if this indicator repaints? using data from the actual bar (...trend[x] > 0...) but then plotting the arrows earlier (ArrUp[x+1] = ...) makes it repainting for at least 1 bar if (trend[x+1] < 0 && trend[x] > 0) ArrUp[x+1] = ExtMapBuffer[x+1] - Gap*Point; else Ar...