Expert Advisors and Automated Trading - page 92

hello, I want to develop a bot that sends all positions open close modify etc to my telegram channel until everything is fine. when I run the expert that I open an order it sends me the message in my chanel but it sends it x4/x5/x6 while the function is called only once cf screen ci necessary I also
Is possible capture this information of download/upload rate in an expert advisor
Good Day, fellow programmers, I have a problem. I have a multi-symbol Expert Advisor (in which only the symbols are added and it automatically uses them without opening the charts) without compilation errors and without creating any objects on the different charts. The problem happens when I put it
Hi, I started using the MQL5 VPS and it works but very slowly. My first few trades were executed with 25-35 seconds delay. On my PC it works within a second and have also used on a different VPS that worked very fast. Any suggestions would be appreciated. EH 0 08:57:02.167 Terminal MetaTrader 5 x64
// Robot comprador com média móvel #property version "1.00" sinput string s1; //-----------Médias Móveis------------- input int mm_rapida_periodo = 5 ; // Periodo Média Rápida input int mm_lenta_periodo = 10 ; // Periodo Média Lenta input
Hello, When I test my EA with the "1 min OHLC", I get excellent result, but when I test it with "every tick based on real tick", I get awful result. I launched my EA in a real account and the "every tick based on real tick", seem to give accurate result when I compare the result from the test and
Hi, when I call a member method of my singleton class, I receive the error message "unexpected token, probably type is missing" during compilation. This is the code Config * cfg = getEURUSD_m15_R3(); ConfigManager* cm = ConfigManager::getInstance(); cm.addConfig(cfg); // <--------------------------
When developing an EA, can you technically use an exit signal in the entry process with a decent success rate? I'm not suggesting to use an exit signal as an entry point, what I am looking into is using my entry signal and then checking it against an exit strategy to see whether the entry signal was
Hi, I have a question about a brokers behaviour. I know, that this will be different from broker to broker of course, but I assume there is a common brokers behaviour. I have no experience with that, that is why I'm asking: If I use an EA (my boker says: trading with EAs is allowed) that handles a
#include <Trade/Trade.mqh> // Variáveis ​​globais int fastPeriod = 12; int período lento = 26; int rsiPeríodo = 14; int smaPeríodo = 20; int obvPeríodo = 30; dupla resistência, suporte; //Função de inicialização void OnInit() { // Inicializar a variável aqui resistência = iHigh(NULL, 0
has anybody successfully been able to run the strategy tester on mac from terminal as if it was running from command line on windows? I can open MT5 by typing p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #000000} span.s1 {font-variant-ligatures: no-common-ligatures} open
Hello! I like to change the lot size of the following MT5 EA ExpertMAMA-mq5. Does anyone have a idea how i can adjust the lot size? Many thanks for your support! Kind regards, Frank //+------------------------------------------------------------------+ //|
I have been trading the forex and CFD's market for over 18 years and like many traders I have lived in hopes of having fun at the Caribbean while my trading robot does all my trading for me. The bitter truth is that the majority of the robots (EA's) created for 100% automated trading will most
Hi I try create EA. in my EA every open position ticket save in array and close with their ticket too. But i got some error and i do not know how to do it. first: this is my open trade function. from my source for training MTRequest get error. also i do not know how to get ticket after position
//+------------------------------------------------------------------+ //+---//+------------------------------------------------------------------+ //| TSI_CD EA.mq5 //| Kamau Muchiri //|
My EA's keep failing when I try to UPLOADE them ,they say the are no trade operations ,while the EA does have the trade operations , I have even add all the trade operation an my latest EA But it also failed , what am I missing
In mql5 , I need help from everyone, I am in need of a code that when reaching the moving average of 20 periods it sell or buy as required, this only once when reaching the 20-period averages and don't buy or sell all the time, you understand, this sale or purchase is just one time when reaching
Hi, I'm converting an indicator written for MT4 to use it in MT5. It has a lot in small functions which uses Open[], Close[], Low[] and High[] global arrays in MQL4. I found that there are no equivalent of them in MQL5. Any suggestion how can I use those arrays? Hadi
Hello friends i'm trying to creat an EA that is based on pending orders and now the problem is I want all pending orders to be cancelled after 5 minutes of being placed or to be cancelled if they are not yet open orders so please help with the expiration #include <Trade\Trade.mqh>CTrade trade;void
Hello, for my daily trading, I am using one expert advisor as a trade assistant . Calculating the position size and the SL. Furthermore I am looking for a possibility to additionaly use an ea sending my trades as a signal to a telegram channel. I do have for this also an EA, but I can't use them
Dear Community Please help me. I have used an EA that was created by someone on the freelance section for about a year. Since last week, when it started creating multiple (hundreds) orders with the same parameters. I completely uninstalled MT5 and re-installed it. Now when I go to "Open Data Folder"
I run my EA in the MT5 strategy tester and at the beginning of the test no errors are reported but then at some point I start getting always the same error : [no money] [not enough money] I don't understand where that come from since my EA take a trade one at a time and the first time the error come
Hi. Experts !! Who can help me with creating an Expert Advisor according to my strategies . I already provided documents that elaborate on my ideas
//+------------------------------------------------------------------+ //| Shark_MultiSymbol Expert Advisor.mq5 | //| Copyright 2022 , MetaQuotes Ltd. | //| https://www.mql5.com |
  Multiple Optimization MT5  (30   1 2 3)
Hello folks! There is one thing that I don't understand (after reading the documentation), and it is: can an EA be optimized in MT5 for different symbols simultaneously? I know I can test a few parameters for different symbols with "market watch", but I want to get the single parameters that work
I'm currently working on getting calendar events and coded the following , but it gives me an error of "array out of range in 'file.mq5' (113,26)" in journal when I backtest. void OnTick(void) { //--- country code for EU (ISO 3166-1 Alpha-2) string US_code= "US" ; //--- get EU events
Hello I cannot connect to my provider for the trade copier
Just try to draw a Vertical line on BUY operation using BBands. I attach the code. Many thanks in advance
I can't use the strategy tester on the cloud, it randomly stopped working. I have sufficient balance, there is no issue with connectivity, I am using a VPS and it shows I have plenty of bandwidth. The strategy tester works fine on local agents but it is really slow so I want to use the cloud
  Multiple Trades  (4)
Hi Is there any free Robot/Script where I can take multiple order at once in a currency pair using a fixed lot size. Like if I want to take 15 trades in EURUD pairs using 0.01 lot size. Thanks