Alert Heiken Ashi Smoothed: bar closed - page 2

 

Just found this indicator on this page

https://www.mql5.com/en/forum/175407

and many links to Heiken Ashi indicators here https://www.mql5.com/en/forum/general

 

I think that the "missing one" is the one from this post : https://www.mql5.com/en/forum/175407/page4

 

yes nice one thanks,

like the way it blocks in levels, bit similar to mtf i started using, on the main window, shift it forward to make up one unit of the higher tf

 
plig:
Hi guys.

I'm learning so much with this forum. Sorry for bad english.

I downloaded an alert for the Heiken Ashi Smoothed Indicator but this alert is too intrusive because it works in "real time".

Can someone help me to modify this alert? I would like it alert me only when a bar with a different color is closed.

Thanks

Dear All,

Please would you add push notification when arrow appeared??

Best Regards and thanks!!

 
samlgx:
Dear All,

Please would you add push notification when arrow appeared??

Best Regards and thanks!!

samlgx

To which one?

 

Hi Mladen,

Thanks for your reply. I am referring to this indicator (Heiken_Ashi_Smoothed_Alert.mq4 by plig on 09-07-2010). Please would you help to add push notification for this indicator after second bar closed (color changed). Thanks in advance.

heiken_ashi_smoothed_alert.mq4

 
samlgx:
Hi Mladen,

Thanks for your reply. I am referring to this indicator (Heiken_Ashi_Smoothed_Alert.mq4 by plig on 09-07-2010). Please would you help to add push notification for this indicator after second bar closed (color changed). Thanks in advance.

heiken_ashi_smoothed_alert.mq4

Samigx, in that version it was using

maOpen = iMA(NULL,0,MaPeriod,0,MaMetod,MODE_OPEN,pos);

maClose = iMA(NULL,0,MaPeriod,0,MaMetod,MODE_CLOSE,pos);

maLow = iMA(NULL,0,MaPeriod,0,MaMetod,MODE_LOW,pos);

maHigh = iMA(NULL,0,MaPeriod,0,MaMetod,MODE_HIGH,pos);

which is not right, so changed it to

maOpen = iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_OPEN ,pos);

maClose = iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_CLOSE,pos);

maLow = iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_LOW ,pos);

maHigh = iMA(NULL,0,MaPeriod,0,MaMetod,PRICE_HIGH ,pos);

and added our alerts.

 

Hi Mrtools,

Many thanks for your help. Best Regards!!

Reason: