Ricardo
Ricardo
Friends

Add friends via their profile or user search and you will be able to see if they are online

Ricardo
Added topic Wrong error line.
Where do I file a bug report. Metalang.exe and MetaEditor.exe sometimes moves the error line. I prepare an example on when this happens. #property library #define NSECTIONS 4 string A[NSECTIONS] =
Ricardo
Added topic Expert and indicator template files.
On MT4, you could use custom templates for experts and indicators by changing the files on experts\templates Where is the location on mt5
Ricardo
Added topic Dlls and MT5
Will external dlls be supported on mt5? If so, is there any interface for calling mt5 functions from a dll (for example for getting quotes, placing order, etc). On MT4 you could call a dll function from a mt4 but you could not tell mt4 to do anything
Ricardo
Registered at MQL5.community
Ricardo
Added topic DLLs and arrays.
Hi, I am having problems with passing arrays to DLLs and would like to know what to do. Here is an oversimplified example script. #import "mydll.dll" double SecondVal FromDLL( double p [ ] ) ; #import double SecondVal(double p[]) { return (p[1]); }
Ricardo
Added topic I keep getting error 138 in backtesting.
What am I doing wrong? Here is the function: extern int slipage = 1 ; extern double lots = 1.0 ; extern double takeProfit = 15.0 ; extern double stopLoss = 30.0 ; #define RMRHR2_MAGIC 80518 void DoLong () {      RefreshRates () ;
Ricardo
Added topic Is there a way to enumerate the available symbols?
Since available symbols differ from broker to broker, I wonder if there is a way to enumerating the available symbols (ex: "EURUSD", "GPBJPY", etc) for use in a script
Ricardo
Added topic Custom Indicators parameters from an expert.
Is there a way to set the parameters of a custom indicator from an Expert? I tried iCustom , but can't find a way to set the parameters of the indicator before calling it
Ricardo
Added topic How do you get the bounding rectangle of an indicator.
How do you get the bounding rectangle of and indicator whose property is separate_window? I need this so I can use a DLL to draw inside the indicator rectangle instead of the whole client area of the chart window