MQL4 and MetaTrader 4 - page 279

Hello! I am testing an ea on XAUUSD M5. I download the histoical data from QuantDataManager as always and I find this error I compared two datas: LEFT one: Metaquotes RIGHT one: Data from QuantDataManager It seems that the trade is opned 04:59 later. https://c.mql5.com/3/335/0111.JPG *I already
How can I fix the Test Generator: Unmatched data error. It is throwing errors for High/Low price
Does MetaTrader have any training videos on how to use the platform on the APP, Desktop and WebTerminal for MT4? Or what are the best videos out there to learn how to use the platform
I could not think of a more descriptive title. What I would like to do is have one chart window on which are drawn all my objects. I use 3 different time frames and when I click the button to change between these time frames I would like the chart to present itself in the same way every time so that
  help vps  (5)
hi everyone I'm new to MT4 and I'm doing several tests ... by mistake yesterday I deleted the vps connected to my account, now it is no longer visible on MT4, is there a way to recover it? or have I lost my money and the server now
Hello guys, I am not a programmer but i tried to figure out how to make a very simple EA, mostly just as a proof-of-concept. EA will open order at different conditions (doesnt matter, in exemple i use a premade code that open orders using RSI). The most important fact is that EA must place SL at X
  MT4 VPS question  (2)
hello , I try to set up a VPS / it is ok . i know how to rent it and install it . It is done . but now my question is : - i don't use robot but i want to use it only to obtain the best ping while i manualy trade from my pc . Am i correct to think i can achieve that with VPS server ? if yes what
  Code help  (4)
//+---------------------------------------------------------------------------------------------------+//|                                                                            HLHB Trend-Catcher.mq4 |//|                                                                            Copyright 2016,...
[Deleted]
Hi Since 3 days i am working on getting MT4 running on Raspberry Pi 3 (os: Raspberian) . Installed exagear and wine... Check . But every Installation of MT4 turned out as MT5. Don't know why. This was very strange for me. The setup was called MT4, the desktop link was named MT4, but the real
  MT4 Crashing  (2)
Good day. So I have a custom Indicator that works fine. and when I change chart symbol it crushes my MT4. the Indicator works well if I change time frame no problem the Crash happens only when Symbol Change. could this be linked to brute force method I have employed
In my EA, I would like to print to my log (I have this already setup), the closed order if the stoploss or target price are reached. How would I do this? thanks
Hi guys, do you know how to get 99.9% of quality model in MT4? I have some issues with TickStory, do you have a valid alternative? Thanks indeed for your help. Lorenzo
Hi I have no programing background and have just started learning coding mt4 indicators. I'm practicing with this indicator and have cleared all errors, but it is still not working. Can anyone have a look for me. I should have made some rookie mistakes. Greatly appreciated. Keli
  Charts Disappear  (1)
Hi All, I have been running an EA synced with a server purchased through MLQ5. I have not adjusted the settings recently or added charts/currency pairs. It usually runs smoothly and I occasionally check in from my desktop - there are times I may leave MT4 open in the background on my computer
[Deleted]
Hi. Might anyone know why this button is greyed out? I can't launch the tester from the IDE
int objects = ObjectsTotal (); string comment = StringConcatenate ( "\n\n" , objects); for ( int i= ObjectsTotal ()- 1 ; i>= 0 ; i--) { string name = ObjectName (i); ENUM_OBJECT type = ( ENUM_OBJECT ) ObjectGetInteger ( 0 ,name, OBJPROP_TYPE ); if (type =
hi guys i want modyfy a RSI in metatrader i want place in one time 2 indicator of RSI in one separated window, and i would when cross first rsi over second appear an allert , i try to mod ,a RSI in MT4 but i dont know why i can visualize only firs RSI this is my code anyone can suggest me some idea
This update affects configurations and encryption keys similar to the installation of a new Windows operating system. I lost one activation for all indicators. Will the Service Desk give additional activations in the future?... Thanks
Hi, Can I declare similar alpahet in lowercase and uppercase, example m and M? I wish to use the same alpabet as variable , so can I differeciate both variables by using lowercase and uppercase
Hi, I am trying to put fractals on my chart with this code but on while(i>=2) statement, it says --> possible use of uninitialized variable 'i' why is 'i' not getting initialized when its getting initialized in if statement.. ..regards. int start() { int i; bool bFound; double
Hi, I have one indicator and want know possible increase number of bars in chart? for example current chart show only 3227 bars for TF: H1. is there any solution to load more bars from historical data to chart? Regards,
My apology i am a noob...how to overlay indicators on chart in MT4 ...I can overlay multiple indicators on the indicators window at the bottom but i cant place (overlays) the indicators on the chart itself...Is there a setting that i missed
I tried to call buffer value from this indicator here indicator codes // ------------------------------------------------------------------------------------------ // // B D F X T R E N D E R I N D I C A T O R // // by
  Error: 0  (1)
Hello. I've been running an EA robot for several weeks on both a Real and a Demo account from the same broker without any issues. I woke up this morning and the EA robot on the Real account stopped working. I've done several attempts to troubleshoot the issue however I'm at a complete loss. I've
  no connection  (3)
Hi. My internet connection is working but my mt4 platform wont connect. Any suggestions?   Thanks. J 
Do you know this indicator. XO clean_mtf + alerts + lines 2 //------------------------------------------------------------------ //------------------------------------------------------------------ #property copyright "" #property link "" #property indicator_separate_window #property
Hi , I am trying to create a crossver alert sytem with the infamous megafx indicator.I know it repaints like crazy . It should be a simple process of reading the id1 and id 2 candle values right? But It does not work . It only gives the bearish alerts when the line crosses below 0 but not the
Hopefully someone can help. managing more than one order at a time has been tough for me to get my head around. could someone tell me why both of these orders are not closing? it only closes the first. i understand that this is not the first time its been asked but all the posts just have random
[Deleted]
hello, i'm trying to code an indicator derived from an EMA Crossover indicator . the indicator draw an arrow on the current candle when conditions are met and it does his job. now the problem is with the popup and ring-tone alert, it comes too late, the ring-tone and the popup window appear at the...
Hi, I have the csv file format like below (to append d2, e2 ,d3,e3 value) : i have used before FileSeek(handle,-2, SEEK_END) to append to end of file (in this case : d3,e3) but I dont know what is the FileSeek (handle, ?, SEEK_END) to append the d2, e2 ,d3,e3 value. Please help. a1, b1, c1, d1, e1