Any questions from newcomers on MQL4 and MQL5, help and discussion on algorithms and codes - page 288
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
Are the numbers a Label object?
Most likely it's banned on this site DECOMPIL. urgently remove it, you'll get banned.
are the digits a Label object ?
No, it's this:
Found in one
short_name="CCI("+IntegerToString(InpCCIPeriod)+")";
IndicatorShortName(short_name);
Correct as follows
IndicatorShortName("CCI");
to make it disappear apparently
IndicatorShortName("");
Found in one
short_name="CCI("+IntegerToString(InpCCIPeriod)+")";
IndicatorShortName(short_name);
Correct as follows
IndicatorShortName("CCI");
to make it disappear apparently
IndicatorShortName("");
It does not disappear for some reason)
It is most likely a DECOMPIL banned on this site. remove it immediately, you will be banned.
Found in one
short_name="CCI("+IntegerToString(InpCCIPeriod)+")";
IndicatorShortName(short_name);
Correct as follows
IndicatorShortName("CCI");
to make it disappear apparently
IndicatorShortName("");
It disappears only if I don't fill zero indicator buffer "ExtBuffer[i]", but it's not the way out - I need to fill it.
P.S. Is there no way to remove the inscription?
It only disappears if I don't fill the indicator zero buffer "ExtBuffer[i]", but that's not an option - I need to fill it.
P.S. Is there no way to remove the inscription?
You can try to return 0 from OnCalculate and transfer the last calculated bar through a static variable.
In idea, in this case, the values of buffers should not get into "Data Window" (as if returning 0, you're saying that either everything is always recalculated, or specific values do not make sense, they are just for image) and to display any figure in the upper left corner, the terminal simply has no right (otherwise it's a bug).
didn't check...it is so, remembering the documentation
You can try returning 0 from OnCalculate and passing the last calculated bar through a static variable.
In theory, in this case the values of buffers should not get to the "Data Window" (as if returning 0, you're saying that either everything is always recalculated, or specific values are meaningless, they are just for image) and display any figure in the upper left corner terminal just has no right (otherwise it's a bug).
didn't check...it's just a matter of remembering the documentation
Replaced them with a normal array, they don't need to be displayed anyway, they're used for intermediate calculations.
It is most likely a banned DECOMPIL on this site. remove it immediately, you will be banned.
I'm sorry, I don't quite understand. For what reason is it banned? And you can't automate the indicator?