metaRaider
metaRaider
Friends

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

metaRaider
Added topic Array range X is too large
OK, I appreciate that none of you are mind readers, but have any of you come across the following error before, and if so, did you manage to get to the bottom of it? The piece of erroneous code is shown here... static void Cards::AddCards() {
metaRaider
Added topic Bug found with input group and iCustom()
I recently raised the following  issue , where I was having problems using input variables in a common file (MT5 V5.00 build 4150). I eventually got to the bottom of the issue and believe that I have found a bug with input group when used with
metaRaider
Added topic Using inputs defined in common file
I have created a logging file, called logging.mqh. Along with the class logic, I have also added the following code... enum LogLevel {    Error,    Warn,    Info }; input group     "Debugging Options"
metaRaider
Added topic Print back test history
After running a back test (MetaTester) on a demo account, if I select the History tab in the Toolbox, I can see all the orders/deals that have been processed. My question is, is there a way to print the contents of the History tab as I am not able
metaRaider
Added topic OBJ_CHART Data Window update
I have created a new chart object , i.e. ChartOpen ( "GBPUSD" , PERIOD_M1 ); When the mouse is over the OBJ_CHART, is it possible to get the Data Window to display the data from the OBJ_CHART rather than the main chart in which the OBJ_CHART sits
metaRaider
Added topic Using OnTimer() inside a custom indicator created with iCustom() is not working.
I have created a custom indicator using... int indicatorHandle = iCustom (symbol, PERIOD_M1 , "MyIndicator" ); ..and at some later stage, I attach it to a new chart that I have created... long chartHandle = ChartOpen (symbol, PERIOD_M1 );
metaRaider
Added topic Disable OBJ_BUTTON
I have created a new button object using... ObjectCreate ( ChartID (), "TestButton" , OBJ_BUTTON , 0 , 0 , 0 ); There are certain instances where I would like to disable this button, so is it possible to disable this button object so that it cannot
metaRaider
Added topic Is it possible to debug an indicator started from an EA?
I have an EA that creates an indicator using iCustom()... iCustom (symbol, period, "My_Indicator" , ChartID ()); When debugging the EA, is there a way to also debug the indicator (or just the indicator)? I've had a look around, but cannot see how it
metaRaider
Added topic Send custom event from EA to indicator
I have coded an EA that starts a custom indicator... int handle = iCustom (symbol, PERIOD_M1 , "MyIndicator" ); My indicator sends custom messages to the EA, and this all works as expected. I have also added OnChartEvent() inside the indicator
metaRaider
Added topic Help debugging fatal error
I have some broken code (it was working until I made too many changes, and didn't save the original!!). I won't upload it as it is 1,000's of lines long, across many files and classes. Anyway, the result is that MT5 dies after calling a simple return
metaRaider
Added topic Determine when chart has changed (by clicking chart tab)
I have created an EA that opens several new charts using... ChartOpen (symbol, period); If I open 3 charts for instance, I can see the following (see attached Capture.JPG file). When I click one of the above tabs to change chart, e.g. GBPUSD,M1 , is
metaRaider
Added topic ChartApplyTemplate is not being applied until EA has been stopped
Hi, I have created an EA that I load into a chart (chart 1). The EA does the following... Creates a new chart, using ChartOpen (chart 2). I then add a new chart (chart 3) inside chart 2 using ObjectCreate -  OBJ_CHART . I then set the
metaRaider
Registered at MQL5.community