MQL4 and MetaTrader 4 - page 1190

[Deleted]
Busco a alguien que sepa programar experts para forex, para que me haga mi estrategia. Es muy sencilla seguro que no será mucho trabajo. A quien le interese por favor contacten conmigo a palazon_94@hotmail.es poner en el asunto "robot forex".
[Deleted]
Hi, Can someone give me the code to work out the high and low between the time period 00:00 hrs and 07:00 hrs. Many thanks, Goatee
I would like to conact a good MT4 EA programmer to develop systems. Please contact: v.estret@terra.es
Anyone have code to get the metatrader icon in the Windows status bar to flash? I think you need FlashWindowEx but there's a fair bit to it, so if someone's already done this in MQL4 it would be a great help if I could have the code! Thanks.
[Deleted]
  ERROR 4108  (5)
Hey everybody Using ea i need to delete a pending order sellstop type. i use simple technique : first ordeselect and then oderdelete, nost of the imes i recieve error 4108 invalid ticket though it the orderselcet locates the order. my question : who can explain that mishap and how can i overcome...
[Deleted]
Hi, My EA trades 10 pairs simultaneously, I have all 10 charts open and run the expert on the first chart. It checks the values of all 10 pairs during every pass through start(), but i noticed that it frequently misses entry and exit points when the price only barely touches a value (only for the...
Fellow collegues,, I am in search of a trading system which is having attractive look, best predictions, and with detail plane of action. Can any body help me by sendind an e-MAIL ON JANAKINAMDAR@GMAIL,COM.? 2 .I am also searching an indicator/ set of indicators which can predict the trand in...
Ok, so i thought that when your EA places a trade, it is shown on the chart with an opening and closing arrow as long as you specify a color on the ordersend or ordermodify commands (which I did). instead, it shows the opening arrow and two hashes for the TP and SL levels the last time they were...
[Deleted]
Hi guys. I need some help if possible. Ive only been trading for a couple of months. Ive just started using EA and ive managed to butcher the MACDSample to add a stop loss, however I would like to add a close trade after a certain number of bars (I think this is better than a time period because I...
int start() { double ABUY=0; double ASELL=0; double BBUY=0; double BSELL=0; double point = MarketInfo(Symbol(),MODE_POINT); double expiration=CurTime()+PERIOD_D1*60; int n; int total= OrdersTotal(); for( n=0; n<total; n++ ){...
Is it the amount to ticks that take place within any given bar ?
Kindly assist me with coding of a very simple EA that checks that a certain condition is met across three time frames and sends alert either as long or short. Basically if value of stochs is between 20 and 30 at 15, 30 and 60 min timeframes then send alert long,,,, and if stochs is between 70 and 80
Hello, I want to get theNumber of bars from the actual time to 6 o'clock from the actual day. I thought I can use the iBarShift-Function, but what do I have to write for the "time-Parameter"?? iBarShift(NULL,0,6) Lot's of thanks, sunshineh
double Volume[] Series array that contains tick volumes of each bar of the current chart. does this hold the data about high, low, open and close ?
[Deleted]
Anyone else faced this problem before? I already backtest off-line to lock the spread, but for some unknown reason, my visual backtest result comes off significantly different from the non-visual. I also do not use Objects for entry/exit logic. Googled about it but nothing conclusive..
[Deleted]
Hello everybody! I concern myself on Forex,MetaTrader and backtesting for a few weeks. So I have not that much experienceabout that topic. I wrote a simple EA that goes long or short when one moving averageis crossing another one including a stop loss and a trailing take profit. Theresult of it,...
I'm trying to use a two-dimensional array, but I think I'm doing something wrong. My (global) declaration is: int LastExTime[2,4]; The problem is that LastExTime[1,1] keeps getting reset to zero and I'm sure it's not me doing it in code. I really can't see how it's happening - it works OK initially...
Hello freinds, May be, here is not the place for asking this, but I will try: I have an EA that run on my mobile P.C. 24h, but unforetunatly the MT4 platform shut down within any 3-4 hours (while the P.C. still ON) so I have to turn the EA ON every time. Does somebody know how to solve it, or let me...
MetaTrader 4 Client Terminal Build 388 Fixed generation of clients' trading reports.Fixed selection of a symbol in MarketWatch in case there are hidden selected symbols.Fixed an error with enabling-disabling of alerts in the alert creation dialog.Fixed terminal crash when closing it.Fixed work with...
New article Parallel Calculations in MetaTrader 5 is published: Time has been a great value throughout the history of mankind, and we strive not to waste it unnecessarily. This article will tell you how to accelerate the work of your Expert Advisor if your computer has a multi-core processor....
Hi, I use the OrderHistoryTotal() function in my scripts to output my trade data into a CSV file, but it appears that only recent trade data is processed unless I click the "All History" button in the "Account History" tab. I need the cumulative trade data in my CSV file, and I don't like having...
I am writing a simple custom indicator that is simply going to plot a line of the (high - close)/3. I have created the following: double H=high double L=low double x= H-L/3 I have three questions: 1.) Where do I place the I have been placing the variable at the top and get an error message about...
int start() { double ABUY=0; double ASELL=0; double BBUY=0; double BSELL=0; double point = MarketInfo(Symbol(),MODE_POINT); double expiration=CurTime()+PERIOD_D1*60; int n; int total= OrdersTotal(); for( n=0; n<total; n++ ){ // count how many open orders we have if( OrderSelect(n,SELECT_BY_POS...
[Deleted]
Hey! Whats with the mql4 search function? It won't look up anything I type in the search box. Instead I get this message "Keywords or characters in search string is ignored for they were too short or incorrect "? I get this no matter what I type in the search box.
Hi This function I have from another EA, and I am trying to insert it into my own EA, but when I do I get lots of errors, including "function definition unexpected". This is the function double getPipValue(double ord,int dir) { double val; RefreshRates(); if(dir == 1)...
I have heard differences of opinion on this.
[Deleted]
Hi, I have a problem with my trading Platform MetaTrader 4 in which appears a Gap in the chart with the historical data from the Period of January 14th to February 22th, in all the pairs, couldl you please contact me with this issue because i am stucked with my trading, please help me as soon as
[Deleted]
I'm having trouble passing a string to my DLL. The DLL function wants a char* for it's argument; however, I've tried passing it a string, and an initialized string array to no avail. I've changed the function to take a string array[255] and still nothing. How do you successfully pass a string...
here is the scenario... think at a once there are may be one open trade or set of open trades can be closed. so at that point i need to check at that time if account grows up or draw down. if it is a drawdown in next trade open (have a trail stop always). it should be increased the lotsize to cover...
hi, any tips on running a vps host for mt4 ? what would be ideal ram ? i am thinking about going with a "godaddy.com" deal : OS: Windows Server 2008 Standard 64-bit • RAM: 1 GB • Storage: 15 GB • Bandwidth: 500 GB/mo anybody know if this will be enough for running my EA with anywhere upto 500...