Any questions from newcomers on MQL4 and MQL5, help and discussion on algorithms and codes - page 1933
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
It's a shaitan, I don't understand anything. Maybe I don't see something obvious, my eye has blurred (((( I attach the code
From line 379 onwards you have recursion to the indicator (call itself). There are parameters there and you need to match them too after changing the order of parameters.
From line 379 onwards you have recursion to the indicator (calling itself). There are parameters there and you need to adjust them too after changing the order of parameters.
Thank you very much, Nikolay.
Yes, I should have dug deeper. I am stuck in parameters.
Can you tell me why the inner loop does not work in this cycle?
for (int Try=0; Try<1;)
{ Print("цикл 1");
for (int Try2=0; Try2<1;)
{ Print("цикл 2"); Try=1; Try2=1;
...
It does not print "cycle 2". Only "cycle 1".
Can you tell me why the inner loop does not work in this cycle?
for (int Try=0; Try<1;)
{ Print("цикл 1");
for (int Try2=0; Try2<1;)
{ Print("цикл 2"); Try=1; Try2=1;
...
The "cycle 2" is not printed. Only "cycle 1"
everything prints, alerts.
everything prints, alerts
Thanks for the check! I will look at
Good afternoon!!!!
Please help me to change a function which calculates only losses of unprofitable orders in a grid of orders
We need to change the function which calculates only minimum lot size from each order in the net of orders. Min Lot=0.01
Thanks!!!!
Can you please tell me how to manage the sequence of plans (foreground, background) of graphic objects? For example, I have a small square infofield with a chart under it, and a trend line is climbing on the field itself, and a label is hiding under the field.
Artyom, I probably didn't quite understand, maybe I asked the question crookedly:
There are three(four, five...) man-made objects (ObjectCreate). The first one hides behind the third one, the second one is in the foreground,. How to set one to foreground, second to second, third to background. So that the first object is always visible, the second is always visible, but not behind the first one. The third object is also always visible, but not behind the first and the second. It's a kind of alternation of plans.
I just didn't quite understand the TF.