Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 496
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
And ask int b
why int ? According to the manual, ObjectGet should be of type double, and in the iBarShift function b should be of type datetime
Thanks, so changed ErrNum to ErrNumber and that's it? The warning is gone, everything will work correctly?
You can see that you're "in the tank"... :)))
Help me find an error... The names of the functions say it should do...
Why can't I display a comment from the EA? I can't see anything at all.
void OnTick()
{
//---
Comment
("\n ",TimeToStr(Time[1]));
}
Why can't I display a comment from the EA? I can't see anything at all.
void OnTick()
{
//---
Comment
("\n ",TimeToStr(Time[1]);
}
In the tester or on the graph?
Why can't I display the comment in the EA? Nothing is displayed at all.
void OnTick()
{
//---
Comment
("\n ",TimeToStr(Time[1]);
}
I output everything, but I don't use functions, I use a single loop at the start, in which everything is defined and calculated.
Inthe comment, everything via DoubleToStr()! And the functions slow down unnecessarily!
I output everything, but I don't use functions, I use a single loop at the start in which everything is defined and calculated.
Inthe comment, everything via DoubleToStr()! And functions slow down unnecessarily!
Thanks, I'll have to give it a try.