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
while heavy bomber xpMA went through like ten versions, light xpMA_v2SATL wasn't updated since the last century
make sure files in right place under right nameHi mladen,
Was there already a histo version of xpMA_v2SATLm indicator? If no, can you make one please.
Thanks,
Paul
Hi Secretcode, Changed the arrows to when the line cross and added mtf.
Dear Mrtools
Arrow of indicator mix with the 'price bar on chart' ! Can it be fix ?
Thanks in advance
secretcode
Dear Mrtools
Arrow of indicator mix with the 'price bar on chart' ! Can it be fix ?
Thanks in advance
secretcodeHi Secretcode,
In your settings if you change the arrowsUpperGap and arrowsLowerGap to something like 1 will give you more gap between the price bars and the arrows or the larger that number the larger the gap between the price action and the arrows.
Hi Secretcode, In your settings if you change the arrowsUpperGap and arrowsLowerGap to something like 1 will give you more gap between the price bars and the arrows or the larger that number the larger the gap between the price action and the arrows.
Thank you very much Mrtools for kind reply
Best Regards,
secretcode
Dear MLaden &mrTools,
Could you instead of drawing lines add arrows in place of the signals and could you add alert sound with pop-up.
Indi is attached.
Thx for the help.
Regards Marco
Dear MLaden &mrTools,
Could you instead of drawing lines add arrows in place of the signals and could you add alert sound with pop-up.
Indi is attached.
Thx for the help.
Regards MarcoMarco
Check the one from this post : https://www.mql5.com/en/forum/180648/page255
Marco Check the one from this post : https://www.mql5.com/en/forum/180648/page255
Hello MLaden,
Thx but is it possible to convert it to arrows instead of lines?
Thx for the help Marco
Try replacing that the code at the start of "start" function to this :
if(counted_bars<0) return(-1);
int limit = MathMin(Bars-counted_bars,Bars-1);
for(int i=MathMax(limit-1,0); i>=0; i--)
hi mladen,
xmas is near, may i ask you for a little gift...?
could you pls modify the attached indi in order to draw only after the current bar is closed?
many thanks in advance!
hp_mtf_velo_sep_norpt_v2.mq4
hi mladen,
xmas is near, may i ask you for a little gift...?
could you pls modify the attached indi in order to draw only after the current bar is closed?
many thanks in advance!
hp_mtf_velo_sep_norpt_v2.mq4engula
You can do that two ways : either use open price for price in the HP indicator or you can changed this part of code :
to this
[PHP] int y = iBarShift(NULL,timeFrame,Time);
if (y<1) continue;and then the current bar will be drawn only when it is closed
engula
You can do that two ways : either use open price for price in the HP indicator or you can changed this part of code :
to this
[PHP] int y = iBarShift(NULL,timeFrame,Time);
if (y<1) continue;great. what should i add in order to have the value shown next to the indi name in the subwindow?