Page 1863 of 2170

Re: MT4 Indicator requests and ideas

Posted: Sun May 21, 2023 8:24 am
by kvak
qdjack wrote: Sun May 21, 2023 1:53 am Thank you, but the problem persists and has not been resolved.
Look at the two sentences in the original code of the file I published.
int init()
{
SetIndexBuffer(0,xtUpH); SetIndexStyle(0,DRAW_HISTOGRAM,0,5,clrBlue);
SetIndexBuffer(1,xtDnH); SetIndexStyle(1,DRAW_HISTOGRAM,0,5,clrRed);
}
int deinit()
{
}
There is no need to delete objects in deinit() at all.
Sorry, I'm afraid that I don't understand….

Re: MT4 Indicator requests and ideas

Posted: Sun May 21, 2023 8:49 am
by qdjack
kvak wrote: Sun May 21, 2023 8:24 am Sorry, I'm afraid that I don't understand….
Hello! I mean, without changing these two lines of code
SetIndexBuffer(0,xtUpH); SetIndexStyle(0,DRAW_HISTOGRAM,0,5,clrBlue);
SetIndexBuffer(1,xtDnH); SetIndexStyle(1,DRAW_HISTOGRAM,0,5,clrRed);
Can it be displayed normally on the main image under the premise of?

Re: MT4 Indicator requests and ideas

Posted: Sun May 21, 2023 2:28 pm
by andrei-1
Ogee wrote: Fri May 19, 2023 4:04 pm add more lines to this indicator
I didn't understand why it breaks if there are a lot of lines.
But 1 week he completely marks up.

Re: MT4 Indicator requests and ideas

Posted: Sun May 21, 2023 5:03 pm
by mrtools
qdjack wrote: Sat May 20, 2023 12:34 am Macd zone indicator requests assistance in modifying the code to display the indicators on the chart window. Thank you, Master.
Image
Maybe this version ?

Re: MT4 Indicator requests and ideas

Posted: Mon May 22, 2023 4:19 am
by mrtools
Jedidiah wrote: Sun May 21, 2023 3:02 am Dear Mr Tools
Please help add all averages
to bring out their full potential
Gratitude
Haven't we already done something like this already?

Re: MT4 Indicator requests and ideas

Posted: Mon May 22, 2023 4:29 am
by Jedidiah
mrtools wrote: Mon May 22, 2023 4:19 am Haven't we already done something like this already?
This version of GMMA does not currently have all averages.
I prefer to use this version.

If you can help add all the averages. Thank you very much.

Re: MT4 Indicator requests and ideas

Posted: Mon May 22, 2023 4:34 am
by mrtools
Jedidiah wrote: Mon May 22, 2023 4:29 am This version of GMMA does not currently have all averages.
I prefer to use this version.

If you can help add all the averages. Thank you very much.
Have this version here guppy

Re: MT4 Indicator requests and ideas

Posted: Mon May 22, 2023 5:15 am
by Jedidiah
mrtools wrote: Mon May 22, 2023 4:34 am Have this version here guppy
Damn, I actually forgot.
Thank you, Mr. Tools, for letting me know.

Re: MT4 Indicator requests and ideas

Posted: Mon May 22, 2023 11:09 pm
by Meyson
qdjack wrote: Sun May 21, 2023 1:53 am Thank you, but the problem persists and has not been resolved.
Look at the two sentences in the original code of the file I published.
int init()
{
SetIndexBuffer(0,xtUpH); SetIndexStyle(0,DRAW_HISTOGRAM,0,5,clrBlue);
SetIndexBuffer(1,xtDnH); SetIndexStyle(1,DRAW_HISTOGRAM,0,5,clrRed);
}
int deinit()
{
}
There is no need to delete objects in deinit() at all.
What is the name of this channel indicator?

Re: MT4 Indicator requests and ideas

Posted: Tue May 23, 2023 2:45 am
by chris006
Hi everybody,

In the attached image the noted indicator is the 'Candle Display v3 nmc' that shows a candle for the period selected, in this case a daily candle.

I am looking for an indicator that shows a similar D1 candle from a definable start time, eg from London Open or New York Open. Anybody knows of an indicator that can accomplish this?