Hi,
This is a great functionality, but can't get it to work on my MT4 platform...no compile errors, script loads and unloads, but no text! :( Any help?
This is a great functionality, but can't get it to work on my MT4 platform...no compile errors, script loads and unloads, but no text! :( Any help?
Ok..figured it out..had a wrong directory (saved the week.txt in Meta Trader folder
instead of InterBank folder..)...now, the script runs smoothly..really great! Power
to ngel! :)
Can you traduct a week.txt file in english? Or did anybody build a week file (or
month) for him self that can post it here or a link to a fresh made event file?
Please?
U can take data for week.txt in almost all economics calendars.
Hello, I am trying to use your script for news. I have created very short txt file with news events. It is:
16.10.2006; 3:00am ;USA; 0 ; 0 ;0 16.10.2006; 5:30am ;USA; 0.008 ; 0.005 ;-0.003 16.10.2006; 5:30am ;USA; 13.8 ; 11 ;22.9 16.10.2006; 10:00am ;USA; 0 ; 0 ;0 16.10.2006; 10:30am ;USA; 0 ; 0 ;0 16.10.2006; 12:40pm ;USA; 0 ; 0 ;0 However when, I run the script nothing happens. I have a 15 minute chart up for the EUR USD. Thanks so much Steve
//+------------------------------------------------------------------+ //| ReadFromFile.mq4 | //| ·•°njel°•· | //| iamnotlinked | //+------------------------------------------------------------------+ #property copyright "·•°njel°•·" #property link "iamnotlinked" #property show_inputs extern bool DisplayText = true; extern bool Japan = true; extern bool USA = true; extern bool Germany = true; extern bool ES = true; extern bool GB = true; extern bool Canada = true; extern string FileName = "\\experts\week.txt"; int start() { Alert("hello"); // *********** this also does not fire off ObjectsDeleteAll(); int handle; handle=FileOpen(FileName,FILE_CSV|FILE_READ,';'); if(handle<1) { /////// ************* neither of these two alerts fires either. Alert("File not found, the last error is ", GetLastError()); return(false); } if(handle>=1) { Alert("File found ", FileName); return(false); } int i= 0; while(!FileIsEnding(handle)) { string sDate=FileReadString(handle); // Date string sTime=FileReadString(handle); // Time string sDescription=FileReadString(handle); // Description string sCountry=FileReadString(handle); // Country string sPeriod=FileReadString(handle); // Period string sCurrent=FileReadString(handle); // Current value string sForecast=FileReadString(handle); // Expected FileReadString(handle); // null i++; datetime dt = StrToTime(sDate+" "+sTime); color c = Red; if (sCountry == "ßïîíèÿ") c = Yellow; if (sCountry == "ÑØÀ") c = White; if (sCountry == "Ãåðìàíèÿ") c = Green; if (sCountry == "ÅÑ") c = Blue; if (sCountry == "Áðèòàíèÿ") c = Orange; if (sCountry == "Êàíàäà") c = Gray; if ((sCountry == "ßïîíèÿ") && (!Japan)) continue; if ((sCountry == "ÑØÀ") && (!USA)) continue; if ((sCountry == "Ãåðìàíèÿ") && (!Germany)) continue; if ((sCountry == "ÅÑ") && (!ES)) continue; if ((sCountry == "Áðèòàíèÿ") && (!GB)) continue; if ((sCountry == "Êàíàäà") && (!Canada)) continue; if (DisplayText) { ObjectCreate("x"+i, OBJ_TEXT, 0, dt, Close[0]); ObjectSet("x"+i, OBJPROP_COLOR, c); ObjectSetText("x"+i, sDescription + " "+ sCountry + " " + sPeriod + " " + sCurrent + " " + sForecast, 8); ObjectSet("x"+i, OBJPROP_ANGLE, 90); } ObjectCreate("y"+i, OBJ_VLINE, 0, dt, Close[0]); ObjectSet("y"+i, OBJPROP_COLOR, c); ObjectSet("y"+i, OBJPROP_STYLE, STYLE_DOT); ObjectSet("y"+i, OBJPROP_BACK, true); ObjectSetText("y"+i, sDescription + " "+ sCountry + " " + sPeriod + " " + sCurrent + " " + sForecast, 8); } return(0); } //+------------------------------------------------------------------+
Ugly for so vis.
Could you mind to set a * symble as a mark only,
then when one click that * mark, then popup a small window to show details like tootip ????
Could you mind to set a * symble as a mark only,
then when one click that * mark, then popup a small window to show details like tootip ????
Thanks you very much. It's work for me.
Could anyone tell me what's indicator as below picture, I like it !
Thanks you everybody again.
Methasit W. / New programmer & Gold Trader.
Could anyone tell me what's indicator as below picture, I like it !
Thanks you everybody again.
Methasit W. / New programmer & Gold Trader.
any one got it working ? I put it in scripts folder, it starts but then returns File not found error ! week.txt is in expert/Files/ folder and also expert/, and test folder !
Ok the readfromfile.mq4 attachement has a mistyping, now works very well, thanks a lot

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
New article Working with Files. An Example of Important Market Events Visualization has been published:
Author: Andrew Opeyda