8tango
Added topic How to Disable Live Update Function in MetaTrader 4
Hi, I have an Expert Advisor which work only with MT4 version 4.00 build 1400 but not with the next MT4 version 4.00 build 1408. I have a copy of my terminal.exe version 4.00 build 1400, but each time I copy/paste this terminal.exe file into the
8tango
Added topic Last closed order function
Hi, I have this function below which check the status  (Profit or Loss) of the last closed order: string CheckLastOrder() { string last; for ( int i=OrdersHistoryTotal()- 1 ;i>= 0 ;i--) {    if ( OrderSelect
8tango
Added topic FFCal indicator into mt4 EA
Hi, I have FFCal.mql4 indicator (file attached) and I would like to use it into a mt4 EA to filter open trade from impact high and medium news economic. To use this indicator  into EA it is necesary to put this code below into EA  code: //
8tango
Added topic Backtest result is different from the real trading
Is it possible to have a MT4 EA with +700% of gain in 1 year on a live real account and when I made a backtest for the same period I obtain -3% (with the same settings)? The seller of this EA tells me:  ​not all backtests are accurate. What is
8tango
Added topic Can my broker see the name of my EA?
Hi, is it possible for my Forex broker to know the name of the EA mt4 that is running on my VPS ? Regards, Paul
8tango
Added topic Control of the effectiveness of an Expert Advisor
Hi, Why doesn't MetaQuotes require its EA sellers to post a live signal before to sell an EA on mql5 website? A backtest is worth nothing, only a result on a live trading account has some value. Thank you for your aswer
8tango
Added topic Signals: pair not match between my broker and the signal provider
Hi, into my MT5 Market Watch, I see "GOLD" for XAUUSD, I would like to subscrive at a XAUUSD signals , can I copy trades if my pair is not the same between my broker and the pair of the signal provider? Also, I don't understand well the "volume"
8tango
Added topic How to contact MQL5 team
Hi, I try to post a long message through your chat but we can post long message, we are limited at 30 words... what is the email address to send to you a long message? Some MT4 sellers offer bonus atfer purchase of their EA in exchange of positive
8tango
Added topic If last order is a loss => Sleep() function
Hi, I have a MT4 EA and I would like to add a function which stop new order open  during xx minutes (with the Sleep() function ) if the last close order is a loss. I built this code below but it doesn't work correctly, what is wrong? for ( int
8tango
Added topic Lot size calculation: multiple orders
Hi, For an EA, I need a function with loop to find lot size. There may be a random number of open lots. When a lot is open, there is always a Take Profit as target. But if the Take Profit is not reach and there is a opposed open signal, we open this
8tango
Added topic Partial close for a BUY order
Hi, For my EA, I try to close an order with 2 partial close but without success. I would like to send two OP_SELLLIMIT to close a BUY order (with specifics volume and price for each sell limit order), how to proceed? The problem is the ticket
8tango
Added topic Problem with Market tab on VPS: can't load EA => I can't use the EA paid
Hi, On my VPS ,  I use a MT4 (IC Markets, version 4.00 build 1260) terminal but the Market tab doesn't display (load) EA. When I click on "Market" tab I can wait 20 minutes and there is no EA displayed into this tab and if after 20 minutes
8tango
Added topic Problem with tab Markets
Hi, I use a VPS and when I click on the tab Market into my MT4, I can wait 15 to 20 minutes before the display of the EA pictures into the tab. Same thing if I use the search field into the tab Market. How to fix this problem
8tango
Added topic Calculate Daily profit
Hello, I would like to calculate the daily profit of one of my EA, my code is: double DailyProfit() { double profit = 0 ; int i,hstTotal= OrdersHistoryTotal ();    for (i= 0 ;i<hstTotal;i++)     {
8tango
Added topic MT4 code to close all trades if equity reached a certain percentage
Hi, I have an mt4 EA and I would like to add mt4 code into this EA to stop all trades and delete pending orders if equity reached a certain percentage. I searched on MQL5 forum but I don't find mt4 code. I would like to stop all
8tango
Added topic Cross SMA: what is wrong?
Hi, I try to code an EA. Buy signal: bar n-2 close below my SMA + bar n-1 close above SMA => Open BUY Sell signal: bar n-2 close above my SMA + bar n-1 close below SMA => Open SELL Please find below a picture of the signal. My
8tango
Added topic Sell Stop level
Hi, I would like to place a sell stop as on picture below: I have this loop below to find last up and last down ZigZag indicator but I don't want to place a pending order on the first up or down ZigZag, what is wrong into my loop
8tango
Added topic Backtesting report
Hi, After the backtesting optimization process I save the html report on my computer but the report is strange, I have many lines in the transactions section like "daily commision" (images below), is it normal?    
8tango
Added topic Change volume auto trading
Hi, I use the ExpertMAMA in mt5, I have optimized this expert and I use it with automated trading (demo for the moment). It buy or sell only with 0.01 as volume, how to modify this volume by 4.00? Thank you for your help. Bruno 
8tango
Registered at MQL5.community