MQL4 and MetaTrader 4 - page 975

[Deleted]
Hello guys, Do you know how to find "n" max or min values of the buffer? I use ArrayMaximum to find max value of the buffer, but I need 3 highest value of the buffer. How to get them? 
[Deleted]
hi everybody, I'm a newbie about MT4 I wrote a EA, it work fine, but the part of " moving stop" isn't work, and I can't find out what's wrong. anyone can help me? please!!! thank you!!! //check position, close or move stop loss if ( OrdersTotal () != 0 ) { if ( OrdersTotal () != 3 )
[Deleted]
my problem is ... currently i tested ea on more than 10 broker, and today i m try to testing on fxpro, but wondering why i cant choose the parameter on ea ? please help... the problem is cannot choose the ea setting, but the ea still can open the position...
Hello, I don't get reports. I'm trying to create the MT4 reports using 'statement.htm' and 'StatementDetailed.htm' that come in the templates. I have verified tools/options/publisher. I put in the ftp server in format type 'access.metatrader4.com:443' and when pinged my computer recognizes it.  In...
Hello I'm trying to create a function which returns an array ? is that possible ? if yes does anyone have an example ?   thanks Nicolas 
Hi guys, wondering can we rum MT4 on Windows Phone 7.5, 7.8, and 8.0. Is there anyone here succeeded in trying to run it please? Thanks. 
Do ZigZag lines return a pixel value or a price/time value?   I would like to take the ZigZag coordinates to be inserted into a math calculation, if they only return price/time,  how would that be accomplished?   Would I have to convert price/time to pixel values?      Thanks for your guidance! 
Anybody know what the problem I am having with publishing stats to MT4Stats.com? I have tried removing the backslash and the same error comes up. there are no firewalls running
  Sending to a URL  (7)
Hi everybody. I have a question! How can I send a variable to a URL? like: http://www.example.com/?CP=" EURUSD " I'm waiting for your help. TNX
the metaeditor doesn't show suggestions on linux platform as we type commands( half commands metaeditor shows suggestions)..any way how to resolve this.????. THATS THE MAIN REASON  LIMITING PEOPLE FROM USING LINUX AS THEIR O/S...
hallo, help me please to understand meaning of zig zag's input parameters (there are 3 different inputs) in the defaul mt4's indicator,ZIGZAG. If you prefear instead giving me a fish teach me where these fishes are to be found :). i'm so fond of zigzag cause in mind i have an auto trendlines
[Deleted]
besides indicator add into ea, what else can add into ea as trading filter ? i added around 10more indicator into ea, but seem useless.... even get profit at beginning at middle part, but still burned at last..
[Deleted]
What about the current high. show me how to code it correctly, and subtract it from the high of last two hours
thi high of the last 2 H1 bars-the low of the last two H1 bars could be....  double HighMinusLow_H2=  MathMax(iHigh(NULL,PERIOD_ H1,  1),  iHigh(NULL,  PERIOD_H1, 2))-  MathMin(iLow(NULL, PERIOD_H1, 1), iLow(NULL, PERIOD_H1, 2));   Now i want to take the current bar of High and then subtract the low...
Is anyone having this problem or am I setting up a trailing stop incorrectly??? Let's say that I set a trailing stop at 30 pips. The price action starts to move in the direction of my position, lets say 5 pips. Suddenly the stop I had set changes to within 5 pips of the current price. This happens...
[Deleted]
How do I stop deleted or closed charts from opening up once I start up MT4.
From Gmail to an MT4 EA to open, close or amend trades I wonder if such an EA is available Thanks if you can help  Alex 
Hello I got some issues setting my Sl value. Here what i use, for the EURUSD pair : double sl = 0.0004 ; for a buy : Ask - (Ask * sl) for a sell : Bid + (Bid * sl) but i always have a 130 error, any idea why ? thanks Nicolas
[Deleted]
  Session plugin  (6)
Hello, Here's the plug in for MT4 Sessions, you can see different session in a seperate window and on the chart. Have a nice trading day! Forex Robert  
[Deleted]
OddTrade The reason I write is because just recently - after developing my first highly successful EA- I want to conduct some serious backtesting... I want to use data I know to be accurate - So, I downloaded tick level ascii data from a reliable source and verified it for it's accuracy. Then, I use...
[Deleted]
 Hello Here is the plug in for MT4 Pivot points, you can change it to hourly, 4hour, daily, weekly, monthly   Have a nice trading day! Forex Robert  
I am looking for a MetaTrader 4 proigrammer to make an AE to trade a customs system for trading. I dont seem to be able to get anywhere as it all wants me to register with MT5. I am looking for MT4.   Can anyone post me in the right direction. Budget is negotiable depending on initial quote and...
ma14 = iMA(NULL,0,14,0,MODE_EMA,PRICE_CLOSE,0); if i want add indicator inchimoku or ADx  Iichimoku or IADX how i can add  
good day guys.. can you help me on how to use live feed data and put it into a vb.net application.. plz guys i really need your help and can you post some sample using some symbols.. any help will be much appreciated... thanks.
[Deleted]
Hi,  I'm a new user and now struggling with mql4. Thanks for some of reference stuffs, I just wrote first code as follows, but could not work well. It seems The message of below code is "if price is above ichimoku and open<close then buy at market and exit entry bar + 2 bars," vanilla coding. An...
[Deleted]
I use this to set a take profit for an order:  modify = OrderModify(ticket, price, 0, (price + (direction * (TakeProfit + ii) * PointSize)), 0, Green);  The problem is that it removes the stop loss which was previously set.  The stop loss is changed to 0. How can I set a take profit without...
[Deleted]
I have downloaded a demo of M4 for some reason it wont stream? I am logged in. Even tried downloading it again and again. It ads all the data up to 31st dec but not after. I down loaded M5 and that works perfect, but i need M4 because there are a couple of indicator I want and they only paste into...
hello friends,i want to find the highest price int sometimes,and i want to find the highest price's RSI(indicator) value,   so i think i must find the highest's price int waht's K line ,please help me
Can a moderator please publish my code on Code Base: I asked for it to be held back in Dec 2011 - it is now ready but is not being published - it may still be logged as on hold.. The code to be published is ASK+BID+SPREAD-INDI, thanks
  FileOpen and FileWrite  (13   1 2)
Hi, I got a problem using FileOpen and FileWrite. The functions FileOpen and FileWrite seem to work (returns positive return val) but no file is created... see code below I'll be gratefull for help. code: int outFile = FileOpen("testFileOpen.csv",FILE_CSV|FILE_WRITE,','); if (outFile<=0){...