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
Yes, from the Moscow location.
Thanks for the post, the toolbar button mash-up has been fixed.
Yes, from the Moscow location.
Thank you.
Where can I get a fix?
For some reason, in the screenshot you posted, the font was more legible than what I see in my terminal:
Everything is too small and flattened. The height of the letters should be increased.
Windows 8.1, resolution 1920x1200, scale 125%
The Market Watch has a "Bank" column - what is it?
The "Description" column is sorely lacking. There are hundreds of characters in the abbreviation and you have to click on each one to see the description.
The Market Watch has a "Bank" column - what is it?
The "Description" column is sorely lacking. There are hundreds of characters in the abbreviation and you have to click on each one to see the description.
"detachable" windows from the terminal
In tester in real tick mode on first tick SymbolInfoDouble(_Symbol, SYMBOL_ASK) may return zero.
Fix it, please.
Playback - AUDCAD from 03.11.2016 on demo net developers.
In tester in real tick mode on first tick SymbolInfoDouble(_Symbol, SYMBOL_ASK) may return zero.
Fix it, please.
Replay - AUDCAD from 03.11.2016 on demo net developers.
Do you have this in build 1463?
And you should always be prepared for a return of zero in the market. First of all, be sure to specify to CSymbolInfo object the name of the symbol from which it will get the information:
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//---
m_symbol.Name(Symbol());
...
And also implement protection:
//| Refreshes the symbol quotes data |
//+------------------------------------------------------------------+
bool RefreshRates()
{
//--- refresh rates
if(!m_symbol.RefreshRates())
return(false);
//--- protection against the return value of "zero"
if(m_symbol.Ask()==0 || m_symbol.Bid()==0)
return(false);
//---
return(true);
}