Page 74 of 158

Re: Coding Help

Posted: Sat May 05, 2018 2:57 pm
by mrtools
thiru wrote: Sat May 05, 2018 1:32 pm RegressionPolynomial with ATR

Hi mntiwana, mrtools, mladen,

Can you please help me to make this indicator nmc?

thanks in advance.

//
RegressionPolynomial with ATR 1.01.mq4
Try this version it seems to be working.

Re: Coding Help

Posted: Sat May 05, 2018 5:20 pm
by thiru
mrtools wrote: Sat May 05, 2018 2:57 pm Try this version it seems to be working.
Hi MrTools

Thanks a lot for such a quick work. Really appreciate your help

Re: Coding Help

Posted: Sat May 05, 2018 6:27 pm
by thiru
mrtools wrote: Sat May 05, 2018 2:57 pm Try this version it seems to be working.
Hi MrTools,
Can I disturb you again? The arrows are not working, will you be able to check that, please?

thanks

Re: Coding Help

Posted: Fri May 11, 2018 7:04 pm
by dmnik
Convert please mq5 to mq4

Re: Coding Help

Posted: Tue May 15, 2018 6:10 pm
by thiru
Hi mntiwana, mrtools, mladen,

This is another one of mladens indicator, can you please make it nmc ?

dynamic_zone_-_pa_ift_of_rsi_smoothed_alerts_lines_arrows_2.mq4

//
//

Re: Coding Help

Posted: Wed May 16, 2018 1:23 am
by mntiwana
thiru wrote: Tue May 15, 2018 6:10 pm Hi mntiwana, mrtools, mladen,

This is another one of mladens indicator, can you please make it nmc ?

dynamic_zone_-_pa_ift_of_rsi_smoothed_alerts_lines_arrows_2.mq4

//
//
Dynamic zone - pa_IFT of RSI_smoothed_alerts_lines_arrows nmc 2
Here is with correct name nmc ver - though already posted in "RSI" thread

Re: Coding Help

Posted: Wed May 16, 2018 11:52 am
by thiru
mntiwana wrote: Wed May 16, 2018 1:23 am Dynamic zone - pa_IFT of RSI_smoothed_alerts_lines_arrows nmc 2
Here is with correct name nmc ver - though already posted in "RSI" thread
Thank you mntiwana for the quick reply and help.
How did I miss this one in the RSI thread, grrr for me.

Re: Coding Help

Posted: Wed May 16, 2018 11:11 pm
by retnis
I wanted to report that the Dynamic zone indicator - pa_IFT of RSI_smoothed_alerts_lines_arrows nmc 2.ex4 does not work and showing the code on the editor from many errors

Re: Coding Help

Posted: Thu May 17, 2018 3:51 am
by mrtools
retnis wrote: Wed May 16, 2018 11:11 pm I wanted to report that the Dynamic zone indicator - pa_IFT of RSI_smoothed_alerts_lines_arrows nmc 2.ex4 does not work and showing the code on the editor from many errors
Try this version.

Re: Coding Help

Posted: Mon May 21, 2018 10:07 am
by society
Hi
Im trying to make the background for the 15 min a specific color and then go back to another color for all other timeframes.
Can someone help?
Thanks.


//+------------------------------------------------------------------+
//| background.mq4 |
//| Copyright 2018, MetaQuotes Software Corp. |
//|
//+------------------------------------------------------------------+
#property indicator_chart_window

int start()
{
color clr;

if (PERIOD_M15) clr = LavenderBlush;
else clr = Black;

ChartSetInteger( 0, CHART_COLOR_BACKGROUND, clr );

return (0);
}