Questions from Beginners MQL5 MT5 MetaTrader 5 - page 1256

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
Can you tell me if SymbolInfoDouble doesn't work in the indicators, or am I doing something wrong?
The translation of the message means literally the following: You've found a bunch of things that aren't working. How to treat: read the help and follow the letter of the help.
The translation of the message literally means the following: You have found a bunch of things that are not appropriate. How to treat: read the reference and follow the letter of the reference.
Thank you, Vladimir ))))
And could you explain in the same way, literally in two words, what SYMBOL_VOLUME means ?
SYMBOL_VOLUME
Volume - volume of the last trade
SymbolInfoInteger
I thought it was a double, but it's not )))
Thank you, Vladimir ))))
Could you also explain what SYMBOL_VOLUME means, literally in a nutshell?
SYMBOL_VOLUME
Volume - volume of the last trade
SymbolInfoInteger
I thought it was a double, but it's not )))
#272
Got it. Thank you.
Hi!
Could you please tell me how to work with dynamic array structures as an example?
I want something like:
...
struct MyExtremums
{
double Price;
int ExtremI;
} MyExtremum[];
for(int i=0; i<rates_total; i++)
{
...
j++;
MyExtremum[j].Price=high[i];
MyExtremum[j].ExtremI=i;
...
}
compiles,
and it doesn't work...
When it works, it gives a message: ...array out of range... (128,23)
Hello. Could you please give me a hint?
I can't find the OrderCommission() analogue in mt5.
Good evening!
Can you tell me how to know the number of the first candle of the week on the current timeframe? And on the previous one?
Hello. Could you please give me a hint?
I can't find the OrderCommission() analogue in mt5.
You can see the commission for a transaction (class CDealInfo.Commision) or for a position (class CPositionInfo.Commission )
Good evening!
Can you tell me how to know the number of the first candle of the week on the current timeframe? And on the previous one?
What does the number of the first candle mean? On each timeframe the current candle has an index of '0'.