You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
How can I make some indicator buffers not be drawn on the chart, but display their values in the"Data window" of the indicator?
I do so:
but still the indicator draws a buffer.
How can I make some indicator buffers not be drawn on the chart, but display their values in the"Data window" of the indicator?
I do so:
but still the indicator draws a buffer.
got it, it does this:
don't need to do this.
And curiously, this buffer should be specified in #property indicator_plots... Although logically it shouldn't, because it's specified in #property indicator_buffers and it doesn't need drawing.
HOWEVER, the buffer name in data window is displayed incorrectly now....specifying it with PlotIndexSetString(0, PLOT_LABEL, "Buff") doesn't help... Anyway, help please.
Good afternoon.
I am taking my first steps in mql5. I generated an EA based on RSI M5 and RSI M15 indicators. Can you please advise how to make a deal be executed by triggering of both signals at the same time? The weight for both is 1. If I set 0.5 then no trades will be executed at all. Parameter Signal threshold value to open = 90.
it turns out, that's it:
do not need to do.
Curiously, this buffer should be specified in #property indicator_plots... But logically it shouldn't, because it is specified in #property indicator_buffers and drawing is not required.
HOWEVER, the buffer name in data window is displayed incorrectly now....specifying it with PlotIndexSetString(0, PLOT_LABEL, "Buff") doesn't help... Anyway, help please.
help? what kind of help...?
well, all you have to do is specify
and that's all, the buffer will be named in the data window, it will show the values and let you get these values from the EA, and do not draw the values (very convenient to store additional information and do not clutter the chart with buffer lines).
it turns out, that's it:
do not need to do.
Curiously, this buffer should be specified in #property indicator_plots... Although logically it shouldn't, because it is specified in #property indicator_buffers and it is not required to be drawn.
SZY but now wrong buffer name is displayed in data window, specifying name with PlotIndexSetString(0, PLOT_LABEL, "Buff") doesn't help... Anyway, help please.
The colour clr_NONE should be used instead of type DRAV_NONE.
Here is the test code
You don't need to put DRAV_NONE type, but clr_NONE colour.
Here is the test code
all this is unnecessary, you only need to specify the label
it's all superfluous, you only need to specify the label
If you're so smart, why did you ask the question?
If you're so smart, why did you ask the question?
the smart one is not the one who does not ask questions....
Any forum-goer can get to the answers to their questions, but what the hell is the purpose of this forum if not to find answers as quickly as possible?
My way is simpler and more concise, use it.
ZS Stop "poking" strangers, you clever one.
the smart one is not the one who does not ask questions....
Any forum-goer can get to the answers to their questions, but what the hell is the purpose of this forum if not to find answers as quickly as possible?
My way is simpler and more succinct, use it.
You're so wrong. Far, far from it.
Oh, you're so wrong. Far, far from it.
All the more so, not any, hence it follows that any questions are only welcome.
There is no such nuance in the help. DRAW_NONE does not work either #property or in PlotIndexSetInteger(0,PLOT_DRAW_TYPE,DRAW_NONE), PlotIndexSetString(0, PLOT_LABEL, "Buff") does not work either, so what exactly is the logic behind specifying clrNONE to achieve the goal?