zap
zap
Friends

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

zap
Registered at MQL5.community
zap
Added topic Can't compile with new build
Hi, I've just updated to build224. When I want to compile/recompile an EA in the editor, it says 0 errors, 0 warnings, but does not make an ex4 file. It is running on a VPS , Win Server 2003, with full administrative rights. When I run
zap
Added topic Advanced programming question about renaming a file
I would like to rename a file (or copy, or move) in the experts\files default mt4 working directory, without external custom dlls, and without hard-coding the path name of the platform. Does anyone has an idea how it can be possible? The simple
zap
Added topic Backtesting with older builds
I cannot use my older FXT files with older builds either recently. (The ones which had the recalculate function .) The whole system could be used like a month ago. The checker function in the FXTheader gives no error, when running it through the
zap
Added topic Stuck with "Invalid Stops" error
Does anyone have an idea why these lines (extracted from my EA) giving me Invalid Stops error on USDJPYm on live account? It is okay on demo with same leverage.. . I am stuck here. double closePips = 15 ; double lotSize = 2 ; string sym =" USDJPYm ";
zap
Added topic what is "no error" exactly?
My OrderSend () function just returned with an error of "no error". It returned false, but the order was opened, as the error message said. What is this exactly? Error? Or No Error
zap
Added topic How does communication between account and platform affect speed of a program?
I made a script -out of curiousity- about how much time different functions take to be run. (That is how many times does a loop containing the tested functions run in a second). I found that different account/order information functions are quite
zap
Added topic TimeCurrent() / TimeLocal() question
Would someone tell me if I am correct in this (with any brokers)? -There is a scriot running with an infinite loop running with Sleep(1000), so the ticks doesn't have an effect on the runs, only time. -Let's assume, there are a new tick every 10
zap
Added topic What can cause "cannot load library mylib.dll (error 126)"?
I have developed a custom dll on my home PC (Win Xp Pro). The EA with the imported dll runs perfectly. When I try to run it on my server (Win Server 2003), it gives error 126 . The settings in the platforms are identical, I assume there is something
zap
Added topic Slawa or any C++ programmer has an idea of receiving WM_COPYDATA by the platform?
I am working on a project now, where an outside program needs to send a command the MetaTrader platform to do something specific. This command contains some int numbers, nothing serious. It should be checked periodically (like every second or two) by
zap
Added topic Is it possible to start a script automatically when the platform is loaded?
If the platform is restarted (because of e.g. server restart) after an EA has been attached and started, the EA remains attached and started upon loading, so automatic platform restarts are easy. Now, I have a script with an endless loop ( while(
zap
Added topic Anyone have IBFX M1 data from February?
I would need GBPUSD M1 data from January 31 (actually from February) 2007, excusively from IBFX, but they only store 1 month of M1. :( Anybody maybe using M1 charts a lot, and have the data on his PC? It would be a great help for me. Both History
zap
Added topic int x = double y ?
int x; double y = 1.00000000; x = y; This is a simplificated code from one of my scripts, that behaves strange. I found out why: When I do this, x will be sometimes 0, sometimes 1. I couldn't figure out yet what does the result depend on. If I use x