[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 71
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 add text to the existing text in OBJ_LABEL?
That is, with each update the Expert Advisor should not replace the line, but add a new one. So that the text will run on the screen as a result)
How can I add text to the existing text in OBJ_LABEL?
That is, with each update the Expert Advisor should not replace the line, but add a new one. In order to have a text on the screen as a result)
There are a lot of ways.
For example, form a string in a separate variable and use the object only for output, not for storing the previous value.
Hello.
Please tell me how to draw an equidistant channel with a 50% centre line manually in MT 4.
Hi all
Thanks for KOMPOSTER's help, it all worked out, but I need it again. Can you please tell me how to combine these 2 conditions into one, this
if ((StochK_0<StochD_1) && StochD_1 > 80) and if(cci_0 < cci_1 && cci_0 > 100).Hi all
Thanks for KOMPOSTER's help, it all worked out, but I need it again. Please tell me how to combine these 2 conditions into one, this
if ((StochK_0<StochD_1) && StochD_1 > 80) and this if(cci_0 < cci_1 && cci_0 > 100), I want to combine them simultaneouslyWhat's the problem here?
if ( (StochK_0<StochD_1) && (StochD_1 > 80) ) && ( (cci_0 < cci_1) && (cci_0 > 100) )
Or maybe I've got it wrong? :)
There are many ways.
For example, form a string in a separate variable, and use the object only for output, but not for storing the previous value.
OK.
but what is the line break signified?
(enter shorter)).
>>))
>> I'll make you an example.
What's the problem here?
if ( (StochK_0<StochD_1) && (StochD_1 > 80) ) && ( (cci_0 < cci_1) && (cci_0 > 100) )
Or did I misunderstand something? :)
but it says surprise sign, or is it because it's incomplete? OK, I'll finish it and then we'll see...
thank you)))
I'll show you an example.
Make this code an EA and put it on the instrument with the highest number of ticks per time unit.
_________________
The string translation is "\n".
>> what's the problem here?
if ( (StochK_0<StochD_1) && (StochD_1 > 80) ) && ( (cci_0 < cci_1) && (cci_0 > 100) )
Sorry to barge in, I'll share a lamer's way of conveniently recording multiple conditions. It's easy to add/remove without worrying about brackets, and everything is clear.