Friends

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

Sneck55
Added topic #include references on a Mac
Hello, Does anybody know how to code #include folder references in eas on a Mac? I have specified the entire location with forward slashes but it won't compile because it is looking for c:\Program Files which of course doesn't exist on a Mac. Thanks
Sneck55
Added topic Exponential notation
Hello, I am trying to find the difference between two moving averages but when I print it gives the answer in exponential notation which is completely useless to me. The answer (on GBPUSD) could be 0.00001 or 0.00005 etc. That is the information I
Sneck55
Added topic “Register a Virtual Server” not in Navigator
I would like to have the option of a VPS but when I right-click on my live account in the Navigator it doesn’t have the option “Register a Virtual Server” . Is there something I need to do please
Sneck55
Added topic Inaccurate results from "ObjectGetValueByTime" and "ObjectGetValueByShift"
Hello, I need to be able to extrapolate the current values of trend lines every hour on an EA which runs on the H4 time frame. A separate section of my EA runs at the beginning of each hour and most variables contained within that section update
Sneck55
Added topic Defining the colour in OrderClose()
Hello, My EA has different types of order and with some of them, if I specify a colour in OrderSend() and OrderClose(), it creates a big mess on the chart with repeated trades opening and closing. Therefore for some orders I need a colour and for
Sneck55
Added topic Current price incorrect when using Tester
I have been testing an EA using "Daily" period for July 2016. My EA needs the current market price in order to make buy/sell decisions and it works that price out by signing Bid to a variable after using RefreshRates(). In addition, my EA takes the
Sneck55
Added topic Inaccurate Hourly Bar High/Low when running EA on Daily chart
Hello, I am running an EA on the daily chart and I need to find out whether or not the current price is above or below the last H1 high or low (depending on whether the entry will be long or short) in order to make the decision whether or not to
Sneck55
Added topic Tester Error: "tester cannot calculate prices"
Hello, can somebody please explain what this error message means and what I need to do to get rid of it because MT4 tester doesn't work at the moment. Thanks
Sneck55
Added topic What happens when stop loss operates
Hello, how should I make my EA aware that a stop loss has occurred please? At the moment, when this happens, a lot of errors occur because the program doesn't know the position has been closed automatically. Thank you
Sneck55
Added topic MT4 Tester not working properly
Hello, Could somebody please tell me why the tester ignores the dates I specify in the "Use date" line even when the box is checked and with some EAs (not with all of them) simply stops testing at the 12.15pm bar on the first date it chooses? The EA
Sneck55
Registered at MQL5.community
Sneck55
Added topic Code to assign a new value to an external variable without opening the properties window
I have defined an external variable as follows: extern bool Level = false; During program execution I need to change "Level" from false to true so I open the properties window and change it. No problem. Then I go away and leave the program running
Sneck55
Added topic Running more than one EA at a time
My EA runs fine when it is running on its own but if I try to run the same EA on a different Symbol at the same time on the same profile then the second one doesn't run very well or at all or there are lots of errors. This happens even if I use
Sneck55
Added topic How to use ZigZag custom indicator in an EA
I have been using the following line: double ThisZigZag = iCustom(NULL,0,"ZigZag",12,5,3,3,0); in order to try to work out whether or not the indicator is going up or down but it just returns 0.0 (zero) all the time. I have spent all day