forexgenuine
forexgenuine
Friends

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

forexgenuine
Added topic Should I use DoubleToStr to convert int to string ?
I can't see any function for int
forexgenuine
Added topic Is it possible to change Symbol name from EURUSDm to EURUSD ?
I wanted to test signal for a broker but it doesn't work because symbols are suffixed with m by broker so expert cannot recognize. Is it possible to change
forexgenuine
Added topic How to make metatrader reload expert or indicator after compilation by command line
When I compile inside metatrader, metatrader reloads expert or indicator. If I do so by command line with metalang, is there a way to notify metatrader to reload expert or indicator the same way
forexgenuine
Added topic About the MQL4 learning curve
It took me months to getting started I have given up multiple times this is why : there are tons of very good but lengthly articles as well as samples codes without explanation so when a beginner who tries to understand and not just copy and paste -
forexgenuine
Added topic Weird : Expert loaded successfully but prints nothing
In Expert window I only get "Print Tick EURUSD,M1: loaded successfully" nothing more whereas I did ask to print every tick . There's no error. I have no indicator in chart just this expert, no other charts open. int start()   {
forexgenuine
Added topic Append to a file at each tick : why fileseek doesn't work ?
In my expert start() I have          handle = FileOpen (filename, FILE_CSV | FILE_WRITE , ";" );                   if (handle
forexgenuine
Added topic Can't I export quotes using this code without opening a chart
I have a script to export quotes but it only works if I open a chart. Can't I modify so that I'm not obliged to open a chart first ? Excerpt of source code : FileWrite (handle, "Time;Open;High;Low;Close;Volume" ); // data recording for ( int
forexgenuine
Added topic EA Currency_Loader exports nothing
I have installed this EA  https://www.mql5.com/en/code/8102 The icon is smiling, I have created folder \experts\files\Export_History but nothing is exported. Why ? 
forexgenuine
Added topic How to substract one day to current time ?
I want to substract a day in: string strTime = TimeYear(TimeCurrent()) + "." + TimeMonth(TimeCurrent()) + "." + TimeDay(TimeCurrent()) + " " + '22:41'; TheDate = StrToTime(strTime) - PERIOD_D1 ; Alert(TimeToStr( TheDate
forexgenuine
Registered at MQL5.community
forexgenuine
Added topic How to constantly read from a file without closing and reopening it ?
Do I have to open/close file constantly in start() handle = FileOpen("params.txt",FILE_CSV|FILE_READ, ";"); params= FileReadString(handle,16); FileClose(handle); or is there a better way
forexgenuine
Added topic Error when trying to download a file
Hi, Cannot download input.dll https://c.mql4.com/forum/2009/03/inputbox.dll mentionned here https://www.mql5.com/en/forum/115707 Why, Thanks
forexgenuine
Added topic Is it possible to do this in MQL4: Draw a trendline from an input file everyday
Everyday I want to draw a trendline from an external file which will specify the dates/times for 2 candles and Up or Down Trendline. Then when the trendline is broken an expert would enter a trade
forexgenuine
Added topic Is there any way to support webservice something like Marketiva ?
I found no way to automate trade or run script from outside metatrader is there anybody thinking about creating a webservice api like what marketiva has done ? http://www.marketiva.com/index.ncre?page=api&id=1. I am really thinking switching to
forexgenuine
Added topic Is it really impossible to initialize external with a non constant ?
All in the question as I'm not sure, thanks. If it is possible then how to initialize a date
forexgenuine
Added topic Why TimeCurrent() doesn't initialize my external date with current date time ?
This drives me crazy: //---- input parameters extern datetime theDate=0; int init() { //---- indicators theDate = TimeCurrent(); When I drag and drop indicator it shows 1970.01.01 00:00 mql4 is illogical :(
forexgenuine
Added topic Is it possible to load and reload a template programmatically ?
I want to adjust some indicator parameter on the fly using template because structure doesn't change just the parameter values. So is it possible to load (and reload/refresh) a template programmatically
forexgenuine
Added topic Date number format in template ?
When I save a template, dates parameters are saved not under classical yy.mm.dd but under a number. I did a search on Internet and can't find how to convert from date string format to this date number format. Can someone tell me how or points to an
forexgenuine
Added topic Is it possible to add/remove an indicator programmatically ?
Indicator is limited to 8 chanels this may not be enough so I'd like to be able to add as well as remove new indicator programmatically is this possible
forexgenuine
Added topic Is it possible to get a MT4 server on a local machine to simulate market ?
For learning purpose for example, I'd like to know if MT4 server is available somehow like MT4 client
12