Triangular moving average (TMA) ... - page 22

 
airquest:
Please can you post the sw indicator ? Thanks.

airquest,

As far as I see it is this one : https://www.mql5.com/en/forum/181241/page2

 
Ale:
Thanks a lot!

I wanna see rebound-signals in tester, so added arrows for rebound. Seems like asymmetric bands must be more applicable here, but instead of them added caution mark, which show too big TMA slope against direction of rebound

Really appreciate the MT5 indicators here

I wonder if one of the master coders here could add an alert to this indicator when arrow appears on bar close, message box with currency name would be a bonus

I'm trying to figure it out myself with mql documentation but not sure which if statement to add it to "bool PlaySound(

string filename // file name

);" If someone is kind to edit this, I will study the edited code so hopefully I can add and share my own alerts in the future.

 
iiCaptain:
Really appreciate the MT5 indicators here

I wonder if one of the master coders here could add an alert to this indicator when arrow appears on bar close, message box with currency name would be a bonus

I'm trying to figure it out myself with mql documentation but not sure which if statement to add it to "bool PlaySound(

string filename // file name

);" If someone is kind to edit this, I will study the edited code so hopefully I can add and share my own alerts in the future.

You took a bad example for your first alert

The problem with recalculating indicators is that they can (and will) change the bar where the signal is issued or that hey will completely remove the last signal at some stage of calculation. Hence, it is much better not to have any signal on recalculating indicators (and much, much better not to use recalculating indicators in a signaling mode - they are usually meant to be used for estimations)

 

mladen - I know you are a real expert when it comes to TMA. I believe there is an indi (TMA true with alerts). Is it possible to have this indi (user defined data) that will give a sound alert and print an arrow when the outer lines are pierced (close of candle only).

 
handy148:
mladen - I know you are a real expert when it comes to TMA. I believe there is an indi (TMA true with alerts). Is it possible to have this indi (user defined data) that will give a sound alert and print an arrow when the outer lines are pierced (close of candle only).

handy148

What is called a "TMA true " is a LWMA (linear weighted moving average). See this post : https://www.mql5.com/en/forum/181241 . So simply find some Keltner channel that can change the type of the moving average to LWMA and has that alerts too (I think that there are already som like that)

 

Yes I'm well aware that it is an LWMA thanks to your earlier teachings. I will search for Keltner as suggested.

 

mladen - I googled and found this one

https://www.mql5.com/en/forum/173470 post #38

which is more or less what I want except for the arrows. Any possibility you you fix that please?. Thanks.

 
handy148:
mladen - I googled and found this one

https://www.mql5.com/en/forum/173470 post #38

which is more or less what I want except for the arrows. Any possibility you you fix that please?. Thanks.

This would be the one with an addition of dots when channel is broker

 

Thank you.

 
mladen:
You took a bad example for your first alert The problem with recalculating indicators is that they can (and will) change the bar where the signal is issued or that hey will completely remove the last signal at some stage of calculation. Hence, it is much better not to have any signal on recalculating indicators (and much, much better not to use recalculating indicators in a signaling mode - they are usually meant to be used for estimations)

Ok, thank you for having a look, I understand and agree now I have had more time with it.

Reason: