[Deleted]
OrderClose(OrderTicket(),..... Sometimes my EA cant close an order. If the system has lost the ticket number, how can I close this order? I need a function like CloseOpenOrder()
[Deleted]
Hi, My EA has a function that does Take profit and a certain points stop loss which is passed in OrderSend. So in my OrderSend for example, TakeProfit = 0, StopLoss = 50. Now I want to identify if a particular order was closed due to take profit function or stoploss triggered. How can I check this?...
[Deleted]
Is anybody notice USDJPY chart has one more bar at the same chart scale? I think this is a bug and I believe this bug isn't exist before Build 482,but I'm not sure.I didn't notice this before until my EA occur strange problem in USDJPY.
Dear guys, I know there lot of topic in this forum about dll. I just need a suggestion which program language easy to learn for me. I am C# coder. I am well know about C#. but MT4 does not allow to use C# dll. Does any one give me suggestion which program language I should learn.
I have no idea why... There is no problem with the functions isLongTermTrend() and isHigherThan(), because I use them in an EA and they work fine there. //+------------------------------------------------------------------+//| LongTermTrend.mq4 |//| Tosh |//|...
I need assistance from anyone who already have the indicator or who can modify/make something that works as follows, please: I need an alert(sound, arrow) whenever the price touches:- 1) 5 EMA high or a 5 EMA low of the 4hour chart and the daily chart 2) 28 EMA close of the 4hour and daily...
[Deleted]
Hello to all in the community, I am a newbie be to forex trading. Please I need help with any indicator that can place the chart of two (or more) different timeframes of the same commodity in the same window i.e. a kind of overlaying. Like Place a EURUSD 4hr chart inside EURUSD 1day chart. Thanks.
Hello, For a while now, I have wondered if there is a way for an EA to add objects to a chart that does not have the focus? For example, let's say you have 6 different chart windows open, and then another window for your Expert Advisor... I would like the EA to cycle through each of the 6 windows...
Hello. My expert advisor uses an external dll library, which in turn loads external data. I need to draw some of it on a few charts. I guess it would be easiest to make an indicator that simply reads arrays of values from the expert, using something like an inverted iCustom. Could you tell me what's...
[Deleted]
Hello, I am completely new to this forum. I am looking for a place to report the following bug in MQL4: Consider the following simpliflied code: //*************************************************************************** #property copyright "Copyright 2012, MetaQuotes Software Corp." #property...
Folks, I am trying to make a moving average alert such that when price hits a certain exponential moving average, I get an alert. Say for example, on a 15 min chart, I plot 10,20,30,40 EMA. So everytime the price "touches" any of the EMA, I get an alert. Can a kind soul help me to develop this...
Hello, i need a little help. I use the code you see below. I use drag this EA on different instruments (currencies) and timeframes. I use the following timeframes: M15, M30, H1, H4. Everything is working perfect. The only thing is, if i have a MA cross on the M15 timeframe the EA closes ALL other...
Hi There. Iam rather new to this forum. Iam not a large trader but been spending last years just study indicators and patterns mostly . While many may trade with their systems i spent a couple of years study different indocators systems etc etc and feel abit bored becouse i just couldnt come to find...
[Deleted]
I'll start by saying, I'm very new to programming and mql4 with limited experience, but am doing my best to read through documentation and practice implementing simple strategies to improve. Unfortunately, I've run into a snag with an EA that I have written. I declare a global variable outside of...
The indicator contained in the attached file produces no output. But if I changethe following code diff[i]=iMACD(NULL,0,12,26,9,PRICE_CLOSE,MODE_MAIN,0); to diff[i]=iMA(NULL,0,FastEMA,0,MODE_EMA,PRICE_CLOSE,i)-iMA(NULL,0,SlowEMA,0,MODE_EMA,PRICE_CLOSE,i); then I can see the output. May I...
Hi all, I use this code below to open and modify order, but if i use for multi pair, it can modify SL after open new order . I get message error : OrderModify error 1 Please help me to repair this code. Thanks a lot . int iTicket; if (OrdersTotal() > 0) { OrderSelect(0,...
Hello All, is any one have indicator that can put 2 macd in the same sub-window? Is there anyone can help me to make a a indicator like this one at http://www.forexfactory.com/showthread.php?t=163700 two macd in the same subwindow, with same with the SAME zero line? and color and the option for...
One of my broker open an order itself in my trading account, they set the stop loss themselves and the order hit SL. loss was $ 3500. and now they are saying that we didnt do this . I want to know the IP address of that order . Can i kow this ?
How to set 2 digit ? Ex. ObjectSetText("Close Price","Cl = "+Close[i], 10, "Times New Roman", White); Result : Cl = 1310.64200000 want : Cl = 1310.64 Thank you
[Deleted]
ex. Print(MarketInfo(“EURUSD”,MODE_ASK)) output is '1.3044' It seems to be rounding of the pipettes. Is there a way to fix this? My boker(Oanda) displays 5 digits after the decimal. Thanks for the help! if any.....
Hi, Does anyone know if there is a way in MQ4 (programmatically) to set trailing stops? This would be like mimicking right clicking on a currently open order and selecting the number of PIPs for the trailing stop. Thanks, Neil
[Deleted]
Hi, I am placing buystop\sellstop order and want to modify their sp\tl. For this i want to check whether my pending are order are filled or not so that i can specify tp\sl value. How can i check pending order execution ? i am using following lines of code but it is not really working ... Thanks...
Hi all, I am using iHigh and iHighest etc with no major problem in a script. It seems time can only be referenced relative to the current time. (shifting) I realize I can program around this by testing current time to the times that I want to do whatever. Is there no way of specifying a range...
[Deleted]
i simple question.Does the Broker have access to message displayed under 'Experts' and 'Journal'?
(1)
just want to know whether the Brokers are aware of the message shown under 'Experts' and 'Journal'?
Hi, Say if I'm in a 1-min chart, is it possible for me to refer to variables in a 5-min chart, either it is: 1. in another window 2. in the same chart window Hope you can understand what I'm trying to ask. I try to search around but don't think I have phrased my question correctly for a close...
[Deleted]
Does anyone have a simple instruction how to download and add indicators. Have downloaded DailyPivotPoints from MQL4 codebase and compiled. Can see this in indicators list however when try to add nothing happens. When pop up appears it shows the inout as having value '0' (zero). Can someone help a...
1PM to 4PM for example, I know that I need to use : High[iHighest(NULL,0,MODE_HIGH,20,4)]; but instead of from 4 and 20 what should I put? Thanks..
[Deleted]
in the above linear regression indicator,i want to access LRLBuffer array values viz LRLBuffer[1] and LRLBuffer[2] from an EA.can anyone tell me how and what parameters to pass to the icustom() function from inside an EA?
I am use to coding in AS3. Is there an equivalent of ".pop", ".push", ".name", or "(substr)" functionality for array items? i am trying to create two arrays. First an array of closing prices, and the second an array of int variables which is the index numbers of the in the first array. Then I want...
[Deleted]
Dear all experts, Just wonder whether there is a simple indicator which can display the following info on main chart / or sub-chart:- 1. The spread; 2. Day low and high + distance (in pips) 3. Average day low and high (in pips) That's all, no other information is necessary. It would be very...

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
If you do not have an account, please register
Allow the use of cookies to log in to the MQL5.com website.
Please enable the necessary setting in your browser, otherwise you will not be able to log in.