Re: Coding Help

731
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.
These users thanked the author mrtools for the post:
thiru
Lol, could care less about the attachments, personal messages, etc.:Rofl:, again I ask nicely to please delete my account completely, why is that so hard for you to understand? What a joke! :Rofl:




Re: Coding Help

736
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
These users thanked the author mntiwana for the post (total 2):
Jimmy, thiru
Indicator is just a tool.

Use it only if it can benefit you. Leave it if you don't know how to use it optimally.

Re: Coding Help

737
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

739
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.
These users thanked the author mrtools for the post:
thiru
Lol, could care less about the attachments, personal messages, etc.:Rofl:, again I ask nicely to please delete my account completely, why is that so hard for you to understand? What a joke! :Rofl:

Re: Coding Help

740
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);
}