Multi Timeframe Indicators - page 952

 

Dear Mr Mladen and Mr Tools

I found this indicator here, its a great indicator. Could you add alerts and the line when the RSI touches the outer bands. at the moment it alerts when it crosses the middle band and also have an option to turn off alerts when RSI touches the middle band

Many thanks in advance

 
mladen:
tysgels Did you check this thread : https://www.mql5.com/en/forum/178733 ?

I've already checked your link and I see this https://www.mql5.com/en/forum/177858 but it hasn't arrow function.

 

MTF Dashboard for Inside,outside and pin bar

Hi,

I have looked everywhere but I cannot find a MTF dashboard for the price patterns of inside bar, outside bar & pin bar. Can someone please help me find one or make one.

Many thanks for your help

 

Inside bar is ok, but when you have the chance to trink your beer outside of the bar (we call it Biergarten), do it. Nothing is more gemütlich than that.

 

Mr Tools and Mr Mladen or any senior members here

could you please look at my request at #9519 above

Thanks

 
eightball:
Dear Mr Mladen and Mr Tools

I found this indicator here, its a great indicator. Could you add alerts and the line when the RSI touches the outer bands. at the moment it alerts when it crosses the middle band and also have an option to turn off alerts when RSI touches the middle band

Many thanks in advance

replacethis part :

if (alertsOnCurrent)

int whichBar = 0;

else whichBar = 1;

if (cross[whichBar] != cross[whichBar+1])

if (cross[whichBar] == 1)

doAlert("crossing up");

else doAlert("crossing down");

[/PHP]

with this

[PHP] if (alertsOnCurrent)

int whichBar = 0;

else whichBar = 1;

if (trend[whichBar] != trend[whichBar+1])

{

if (trend[whichBar] == 1) doAlert("crossing up");

if (trend[whichBar] == -1) doAlert("crossing down");

and it should alerts when upper or lower band are broken

 

 

Can a histogram/bar chart for the subwindow of the following MTF indicator be coded? I trying to clean up my chart.

Thanks in advance.

jaimo-jma.mq4

mtf_jaimo-jma-update.mq4

Files:
 
gabrielbake:
Can a histogram/bar chart for the subwindow of the following MTF indicator be coded? I trying to clean up my chart.

Thanks in advance.

jaimo-jma.mq4

mtf_jaimo-jma-update.mq4

gabrielbake

Check out this one : https://www.mql5.com/en/forum/173574

 

very thanks Mr mladen

Reason: