Expert Advisors and Automated Trading - page 369

Hey, does anyone know if this EA are already made: In the EA you set a price that says to the EA that "if price closes beyond this point (close above if selling, and close below if buying), then the trade should exit. You should also have the possibility to set timeframe in the EA (if it closes on 1...
Tenho m EA que disparou a dar ordens sem TP, em um único par, mesmo tendo ordem para dar no maximo 20 ordens. Preciso de uma linha de programação que limite o numero de ordens por magic number, para reforçar segurança do EA Desde ja agradeço
Hi All, Kindly let me know if it is possible to write an MQL5 code to automate this task. A. Download csv File from http://abcx.com B. Save or replace it in \MQL5\Files folder I have tried with #import "shell32.dll" and #import "wininet.dll" but seems not able code them to work properly. Any working...
Hi There, Can you kindly assist me with how to obtain two previous ZigZag Swing Dates?
Hi, I have coded an EA that is guessing future trend. I would need to draw that future trend on the chart by displaying a zig zag line shifted to the right of the chart. From that post, the guy is asking about "How to draw something in future time coordinate ?" for indicators. I can see that it is...
I wonder why last value of MqlTick return 0.0? Here the trivial code void OnTick()   {    MqlTick last_tick; //---    if(SymbolInfoTick(Symbol(),last_tick))      {       Print(last_tick.time,": Bid = ",last_tick.bid,             " Ask = ",last_tick.ask,"  last= ",last_tick.last);      }    else...
Hello all, i am new to MT. I am wondering is it possible to write a code so that i can plot the chart timeframes which are not available as standard. For example, a single candle which is equal to 2 day, 133min, 7hour etc? Thanks for your replies.
  MA Crossover EA  (2)
Hi, I am having trouble with my MA Crossover EA. I wanted to enter sell positions only when the price (that is set up as 1 day MA) crosses 14 days MA from above.    extern int FastMA = 1;   extern int SlowMA = 14;   extern double LotSize = 0.01;      extern int ticketSell;int OnInit()  {...
hi guys, I'm a newbie with no programming background. I start to self learn writing EA by reading other free EA online and also the Help Manuel in the EA editor. The progress is ok so fair. However, some times I face some fundamental problems that I can't understand. I hope that u guys can help me...
  EA help  (1)
I have no knowledge using MQL however i created an EA. Can someone assist in reviewing my code to see if the EA would work as it is and if not what I can improve on. Any help would be much appreciated. 
can anyone create an ea to detect alert message box? when alert message box pop up then send push notification to mobile phone. Because i have seen many indicator only has alert message box but don't have push notification to mobile phone, and they are ex4 files which cannot be edited, so it is good...
Iam trying to test an EA using the strategy tester but it gives positive results(as i programmed it) for the first few ticks and then stops following the programmed instructions, Apart from the sleep() function ,what other disadvantages can one face while using the strategy tester??
any one who is good in coding eas .i have an EA but im struggling to code it to work under a certain account. like lets say im giving it to my client i want it to work only on their acc . if the acc is 24689 then it should work only on that. anyone that can help me im gonna share the EA with because...
Hello! I am a complete newbie to EA programming and managed to get an EA together through the free EA generators. The EA works just fine, but when the signal gets triggered, the EA keeps opening trades until it runs out of margin. Please, could somebody help me with limiting the EA to only one trade...
[Deleted]
I have two EA that file open very frequently. The 2 EAs are bonded with same files. The EA reads a file per every 100 ms. and all opened handle has file close function, and error exceptions. But severals hours from first start, the eas stops and cannot access files. I want to know there is any...
I would like to ask how do you write an EA that execute market order regardless of the price with SL and TP at specific time everyday? Eg, execute market order with fixed TP and SL for USD/JPY and time 8pm everyday. 
  Damned Martin  (362   1 2 3 4 5 ... 36 37)
Nowhere can I find the kind of owl I had in mind myself. Nah, well, someone obviously wrote it!? The Ilan-like obscurantism is worn to a crisp. Anyway, once I saw El Diablo advisor on one website. Nothing special! And it cost $200! Then I read about it and it turns out that it closes losing series
Looking for a walk forward optimization tool for MT5. Thank you
Hello all gurus. I have zero knowledge in programming. So I may sound a little silly with my question. I would like to use ILAN MA, but to add in the following features :- 1. To have user able to specify a number, e.g "5" that would delay by 5 positions from the trigger signal. For example, signal
hi, can someone add sound alert in indicator, which creates sound alert and email alert when dot change color and signal line cross envelope. thanks in advance
  How I set my EA  (3)
How I set the mode of my EA calculate margin? What´s the code and where I put it (OnTick, OnInit...)? I need to configure my EA in SYMBOL_CALC_MODE_EXCH_STOCKS (SYMBOL_CALC_MODE), but I can´t program this...  Someone can help me?
Hi  I need help in creating custom indicators or scripts to assist my manual trading. Design custom alert programs based on standard custom indicators. entries based on price action and 2 indicators (rsi and the 60, 21 and 8 ema;,...system must be entirely semi auto i.e custom indicators and scripts...
hi  any one know where i can found the how to make compliance the product for the market. i mean if i post the product for mt4 . the moderator said 130 error. so i want to know is there any link for comliance or guide for post a product on mql5 market. i searched but did not found any thing .
  merge several eas into one  (12   1 2)
Hello! I have several forex robots with the source code, and I would like to merge them into one EA.  Is there an easy way to do that? thanks!
Hi,    Is there an EA which closes manually traded open positions when a 1hr  or 4 hr candle closes above or below a specific mentioned price Example : I have a buy in euro @ 1.18922, and i want this order to close when the 1Hr candle closes below 1.1860  Can anyone help me 
Hi Traders & Coders, I am wondering how can i Combine an Indicator with Expert advisor? Thanks
[Deleted]
Hi all, I had a Breakout idea, I create an EA using a 3d Party Software because I don't know anything about coding, the EA working good without any error, back testing on MT5 was great, I did also a MT4 EA and I bought a Tick data software and I tested the EA on MT4 but the result was very very very...
i have oscillator i want to convert it into EA buy at second candle when yellow cross red line and vice versa
How can I get History Profit in MQL5 ? This is  MT4 code... Have any example ? Thank you. double Profit()  {   double pp;   for(int i=OrdersHistoryTotal()-1; i>=0; i--)     {      if(OrderSelect(i,SELECT_BY_POS,MODE_HISTORY)==true )        {         if(OrderSymbol()==Symbol() &&...