Expert Advisors and Automated Trading

Let's look at the results of the tests on one and a few characters. The tests will be conducted in All ticks mode. You can use your own multisymbol EA schemes to reproduce the problem and share your results. Let us denote the problem. For example, if you test one symbol, the test time takes 1
  Python in algorithmic trading  (234   1 2 3 4 5 ... 23 24)
MQL5 is a programming language that is specifically designed for creating high-performance trading applications in financial markets. It offers faster speed and superior performance compared to other specialized programming languages used in algorithmic trading, and its syntax is similar to that of
I thought, why not make a good reference thread . In it I would like to cover the most important questions about the work of markets, liquidity providers, MT5 platform, which are asked not only by beginners. Приглашаю всех желающих, у кого есть какая-либо интересная и редкая инфа излагать её в
Good evening everyone, I use which doexpert advisor not have capital protection...can you help me
I found out about how to implement the Ichimoku indicator in my EA, but it can only read the values that the Ichimoku takes according to the main chart. Instead, I want to find a way where I can compare the Ichimoku values to the Levels I set for it in the beginning, levels like 80, 20 that are
Hello everyone and Happy Easter to those who celebrate! Recently I ran into very interesting issue, MT5 strategy tester generated trades don't match at all on chart and in journal, let's say, in the backtest tab I see 11 trades, and the chart is showing 2793 trades. I expect a high number of trades
These are the results of my strategy, both use data based on real ticks of the same currency pair and the same strategy with the same inputs and conditions, the only difference is that the real tick data from one is from Pepperstone broker and the other is from Dukascopy. Would anyone know why they
Hi, I made an EA (this is my first Ea) and when testing it, even there is no date and time variables on it, the orders on Friday are not executed and the Diary send a message "market closed". The startegy is based on the direction of an MA and it has 3 variables for stop loss (stoplosspoints
Based on the documentation which lists a Login and a Password entries, I thought creating my custom config file that would allow me to run EAs programatically from a Windows command line should be a relatively straightforward task. I created the following very basic .ini file, almost identical to
I have a question about this mt5 python solution, do i understand this solution correctly, you need to install for every mt5 account into which you want to login also a seoerrate mt5 terninal on the same comouter? Or can you just login to any mt5 account with this python libary without need to
i am fairly new to coding. its been two days since i have been working on this. compiling it brings 2 errors, i have checked the trade mqh file for help. but made more errors on the way. here is the code. #include<Trade\Trade.mqh> // Create a Ctrade instance void OnTick () { // create an empty
Hi all, I came across a youtube video someone (Can not find the video i searched history on every browser and phone) was making code changes to position sizer from earnforex to have an indent on breakeven of specified value and also for the trailing stop to start once tp1 is achieved instead of
Hi, i have my personal money management Expert and send a sample of my expert to prop-firm provider. they told me that i'm not allowed to use this expert and have to use other experts that confirmed by them. in this regard you are kindly requested to let me know if i use my personal expert, how
Title says it all. I've been through a lot with EA coding and can do multi symbol stuff, custom performance metrics (Calmar Ratio, Avg Weekly R multiple, etc), news filtering. Yet I have never been able to create any profitable system on the 5 min timeframe. The way I build EAs might be affecting
Can you tell me if this is a realistic tester figure? And is this a good or bad result for a year with a deposit of $3,000
good day. I need some advice: when I run some expert EA on a chart for "test" and the "Strategy tester" opens under the chart, after the back-test is done, I right-click on the fourth tab "Backtest" and select "Report" at the bottom and "Open XML ...". I save the file to disk and open it and there
What is MQL5 Wizard : The MetaTrader 5 Trading Platform includes the MQL5 Wizard , which allows to quickly generate code of an Expert Advisor (Expert Advisor builder). With MQL5 Wizard, knowledge of programming languages is no longer a prerequisite for creating trading robots . In the past, it
  Multi Currency EA  (29   1 2 3)
Hello I'm trying to build a multi currency ea that works in the mt5 strategy tester. i'm not a professional programmer but i tried i've read the articles on this website about that and tried but with no luck i couldn't understand the method because they use about 3-5 include files linking to each
What do you guys considerer essential in risk management and account protection? Anything other them, auto flattening by time / loss / profit, max trade count, max loss sequence, daily profit protection using trailing features, maximum open trades count, maximum open risk
struct economicNews { MqlCalendarEvent event ; MqlCalendarValue value ; MqlCalendarCountry country; }; //+------------------------------------------------------------------+ //| |
I found a solution for the many charts that the strategy tester opens automatically in MT5. Till now I closed them one by one with Ctrl F4 and than clicking on the next chart tab. But this goes faster: On your keyboard: Alt W ... this opens the Windows List. Now select the first of the charts you
//+------------------------------------------------------------------+ //| OxygenAI.mq5 | //| Copyright 2025, Hüseyin Avni Ekmekçi | //| haekmekci@hotmail.com |
Hi to alla guys , Wile i was trying to set my EA code for a strategy in AUXUSD I get a strange value for SYMBOL_TRADE_TICK_VALUE, spcifically this is my code snippet : int OnInit() { string szSymbol = "XAUUSD"; bool selected = SymbolSelect(szSymbol, true ); // select in market Watch bool found =
Hi All! Im having a problem using the strategy tester. After an update of mt5, the strategy tester is not respecting the stop loss or take profit anymore. (picture attached) The code is simple and it was working perfectly before. And it is working in real time in a demo account too. I tried...
I have a problem with the strategy tester in MT5. Why, with the same EA parameters and settings, does it show me great results once and then wipe my account in the next test? Let's say I test the EA on a 5-minute timeframe and I get great results, I change it to a 15-minute timeframe and I get great
my errors do not happen often, however, I know that it will happen on 8 of 16 cores/threads if i start optimiser with all 16 threads enabled. But makes sense to me that it would so i never start optimiser with more than 6. But I am getting 1 core, never the same core, every 16 hours or so, with the
From my understanding ObjectCreate() can only draw lines on the chart_id which is always the current chart inside the strategy tester . bool CChartObjectVLine::Create( long chart_id, const string name, const int window, const datetime time) { if (! ObjectCreate (chart_id,name, OBJ_VLINE
//+------------------------------------------------------------------+ //| OxygenTR.mq5 | //| Copyright 2025, Hüseyin Avni Ekmekçi | //| haekmekci@hotmail.com |
//+------------------------------------------------------------------+ //| OxygenTR.mq5 | //| Copyright 2025, Hüseyin Avni Ekmekçi | //| haekmekci@hotmail.com |
In OnTick(), if i want sell gold in $ 3230 , due to delays in broker,the next tick not find 3230 Position,repeated sell,i used Sleep(),but not much effect. Is there any other way