ToTrading / Profile
Friends
Requests
Add friends via their profile or user search and you will be able to see if they are online
Outgoing


ToTrading
Matching the Symbol
In MQL 4, this line works perfectly:
if(OrderSymbol()!=Symbol())continue;
How do I replicate this in MQL5?
If I say: if(ORDER_SYMBOL!=_SYMBOL) I get an error message that I am converting a double to a string.
Any other text I try comes up with some error or other.
How do I say something as simple as this in MQL5?
In MQL 4, this line works perfectly:
if(OrderSymbol()!=Symbol())continue;
How do I replicate this in MQL5?
If I say: if(ORDER_SYMBOL!=_SYMBOL) I get an error message that I am converting a double to a string.
Any other text I try comes up with some error or other.
How do I say something as simple as this in MQL5?
ToTrading
Added topic StringConcatenate problem
What's wrong with this: string LogPrint= StringConcatenate("Start Equity is ",DoubleToString(StartEquity,0),", Account Equity is ", DoubleToString(AccountEquity(),0)),". Re-starting"); Why do I get these 2 error messages? "'Start
: