How to know if the user broker let a symbol?

 

Hi friends,


how can I know if a concret broker let me use a "symbol name?" how can I search if the symbol exist with mql?


Thanks!

 
Linash: how can I know if a concret broker let me use a "symbol name?" how can I search if the symbol exist with mql?
  1. Concrete brokers will allow you to buy any type of concrete - Wikipedia I suggest you use a FOREX broker.
  2. I recommend
    Do not trade multiple currencies in one EA
  3. Perhaps you should read the manual. SymbolsTotal SymbolName
 
Linash:

Hi friends,


how can I know if a concret broker let me use a "symbol name?" how can I search if the symbol exist with mql?


Thanks!


bool SymbolExists(string symbol)
{
   if(SymbolInfoDouble(symbol,SYMBOL_BID)<=0)
      return false;
   else
      return true;
}
Reason: