Multi Timeframe Indicators - page 566

 
Pippt:

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 name

Hi mladen,

Was there already a histo version of xpMA_v2SATLm indicator? If no, can you make one please.

Thanks,

Paul

 
mrtools:
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

 
secretcode:
Dear Mrtools

Arrow of indicator mix with the 'price bar on chart' ! Can it be fix ?

Thanks in advance

secretcode

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.

 
mrtools:
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

Files:
 
Marco320:
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

Marco

Check the one from this post : https://www.mql5.com/en/forum/180648/page255

 
mladen:
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

 
mladen:
Try replacing that the code at the start of "start" function to this :
int counted_bars=IndicatorCounted();

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

 
engula:
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

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 :

int y = iBarShift(NULL,timeFrame,Time);[/PHP]

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

 
mladen:
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 :

int y = iBarShift(NULL,timeFrame,Time);[/PHP]

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

great. what should i add in order to have the value shown next to the indi name in the subwindow?

Reason: