Attachments forums

List of attachments posted on this forum.


All files on forums: 135257

Re: MT4 Indicators with alerts/signals

mrtools, Wed Nov 11, 2020 3:03 am

pipsquirrel wrote: Tue Nov 10, 2020 7:28 pm
hi mrtools
if kindly this last latest version can be altered according to this meth

Code: Select all

  if ((fasterMAnow > slowerMAnow) && (fasterMAprevious < slowerMAprevious) && (fasterMAafter > slowerMAafter)) {
         CrossUp[i] = Low[i] - Range*0.5;
      }
      else if ((fasterMAnow < slowerMAnow) && (fasterMAprevious > slowerMAprevious) && (fasterMAafter < slowerMAafter)) {
         CrossDown[i] = High[i] + Range*0.5;
in example picture aqua/magenta lines and dots by your latest version and blue/red arrows by this meth
Try this one.
All files in topic