MQL4 and MetaTrader 4 - page 499

Hello everyone, I have been trying to call a second EA from my main EA. I have tried to use #include <KeyBoard.mq4> which causes an error "Can't Open D:\xxx\xxx\xxx". I would like know the correct way to make this possible.
Hello, I am new to mql4 and i start to make my own EA using condition which i take from some free indicators and some bought indicators from the market. I was so disappointing today ,when the developer of an indicator( pattern detection) tells me that is a trading system and it is not have iCustom
I am trying to open .txt file for read and write access to log some information. Following is the code snippet. int OnInit() {    string fileHandle = FileOpen("test.txt", FILE_CSV | FILE_READ | FILE_WRITE, "+");    if (fileHandle < 0) {       Message("Can't open test.txt in MQL4\\files folder for...
Hello, I am very new to this site/community, but I have become a real fan of making EA´s. Through various websites and youtube I have become introduced to MQL4. Just finished my first EA and after quite a lot of syntax errors that I was able to correct/improve the syntax. After testing my program I...
I made this ea to close all open trades when total pips reach +30, but it doesn't seem to be working, what's wrong with the code? //+------------------------------------------------------------------+//|                                               close on pips1.mq4...
It's just a simple candle pattern recognition indicator that has an alert already on it, but there is no sound to the alert.
Hello everyone I'm trying to setup a new trading strategy It's my first, so I have a question. Let's say I start with OP_BUY with a TakeProfit of 2 pips If the martket goes down, so taking no profit, I want to do something else So { OrderSend(Symbol(), OP_BUY, etc...) if(the market goes down open
Hi guys, I'm relatively new to building my own EA's and would appreciate some assistance coding a customized exit. I would like to close both long and short positions at the middle BB. Thanks in advance for your help!!
Hello fellow traders, I want to modify an existing Murrey Math Line indicator (https://www.mql5.com/en/code/8570) on how it drawth the lines. Right now it draws the Line as a Horizontal line on the charts but I want to change it so the line will be only displayed from the current candle (start) to...
Hi there,  Just want to ask, if I use an activation on my current PC. But my PC seem have some problem so I have to take it to the shop and might reformat the PC. So is that mean that I will need to spend another activation on the next? 
I am trying to write ea that will place buy when the indicator show arrow sell or buy. I am using icustorm to do that but i am struggling with comparing values. here is my code:        void OnStart()   { //---        double sell=iCustom(NULL,0,"myIndi",0,0);        double buy=iCustom(NULL,0,"myIndi"...
Hi, I'm a relative newbie to MQL4 (but not programming). I have created a new EA. I find when I run the EA it somehow defaults to the symbol at the top of the Market watch window, in this case USDCHF. I.e. the Symbols() function returns USDCHF. The output in the Experts window also refers to USDCHF...
Hi I'm trying to retrieve the last 3 values of stochastic main, and calculate the angle of these three values/lines Is there a way to do this? I have no issue calling the values out, just can't figure out how to get the angle of these 2 lines (that connects these three Dots) Thanks
Hi, Is there a function out there that scans forex factory for upcoming news and if there is, it will not trade?  I'm trying to code an EA to have the ability to know if there is upcoming news and if yes, how many minutes away, and if it's high risk news.
Hi Guys ,    I am new in Programing , and want use from an Indicator ( its name is Trend Signal ) , and Signal Line , I tried use iCustom in my EX but it don't give any data , I will be very thankful if you say me where is my wrong ....
how to limit the number of orders on mt4 to be allowed ? to open maximum 5 orders for example? is there any EA or script for this? or configuration?
i have been baffling with the alert when on the current candle , that is i want it to be given immediately the arrow show on current candle. Have worked on the arrow to be showing on current candle when conditions are met  by changing the array to 0 (zero) in other be reading current candle. if...
There doesn't seem to be any function that indicates whether the market is open or closed. I have looked at: IsConnected() IsTradeAllowed() MarketInfo(Symbol(), MODE_TRADEALLOWED) However all of these still return true or 1 during the weekend. Is there a foolproof and good way to truly determine...
Hi, In the attachment is an indicator which does similar to StochRSI. There are two input paras: RSI and K and D. When I chose RSI=14, K=2 and D=2, I get error message as follow: ... 2017.07.09 21:03:30.843 StochRSI EURUSD,H1: zero divide in 'StochRSI.mq4' (77,56) ... But by some other timeframe...
Hi guys I've encountered a bug when spanning a single MT4 instance across 2 or 4 screens.  whenever you buy, sell or close a position, the MT4 will randomly minimize itself back to a single screen (and also then re-arranges the task bar which is quite annoying!) My guess this isn't a supported...
Hi guys, I have an idea to locate my stop loss (in case Buy Order): at the lowest of 3 previous candles (i used M15 chart) I tried using iLowest ((iLowest(NULL,PERIOD_M15,MODE_LOW,3,1)) but when tested in MT4 it wont modify the SL at correct price, even in other trade SL was not modified at all....
  Doubts  (3)
When two currency chart's are open  the first chart is inactive.  How to make it active using mql4 without closing second chart through programming.
Hi, Hoping someone can help me with this. I'm trying to send an HTTP Post with parameters , but have not used them much. How do I format/send the parameters? Where do the parameters go? Here is my basic code so far: void OnStart () { //--- string headers = "Content-Type
when some condition come true and after that need to find current candle'shigh to sell order or current candle’s low to buyorder in same current candle. How to write code? please guide me. void OnStart()   {    doubletickLast;                              double tickCurrent;    double tickNext;...
if(Buy Condition Come true) //buy   {     static double LastAsk=Ask;     double CurrentAsk=Bid;            if(CurrentAsk<LastAsk)      {        LastAsk=CurrentAsk;      }     if(CurrentAsk>(LastAsk+2*Point))     {         tkt=OrderSend(Symbol(),OP_BUY,Lots,NormalizeDouble(Ask,Digits),0,0,0,"BO exp...
Hi. To realize a simple Exper Advisor i need to know the value that MT4 writes to the right of the momentum graph at the top gray line that delimits the graph. To understand this is the dynamic value that appears in the right column at the top limit of the graph. If you can not read it, someone can
When I run strategy tester, a balance chart is created and stored in .gif file. Is there a way to create same chart for equity instead of balance?
Hi, i wanna build a custom indicator containing alert or notification from offline chart. But this indicator will attach or put in H4 or other available TF chart (not the offline). Is this possible?
Hello guys, I am trying to read data from a txt file but for some reason it doesn't work. I wanted to share the code with you in case you may have a solution. Thanks a lot in advance. So the file is a TXT file having only 2 integer values of 1 and 10 separated by XX. So the file content is like...
Splitting a string works if I use: StringSplit(strFile,'\t',arrTab); but this does not: StringSplit(strFile,"\t",arrTab); What is the difference that one works the other not?