Expert Advisors and Automated Trading - page 76

Hello All, I generally do not ask for help. Nevertheless, I have been wrestling with this problem for several weeks and have been unable to get past it. I have been translating my EA's to MQL5 from MQL4. These work perfectly in MQL4. However, when executing, I keep getting an invalid stops. I have
Anyone? Its aggravating. The EAs (I had a developer create) worked fine before the latest Meta Quotes updates. Now they won't even drag and drop to the charts Has anyone else had this issue? Thanks 🖖
I want to create an expert advisor for my trading strategy, what is the price range to keep in mind to execute this
The MetaTrader 5 Python package offers the order_send() function, analogous to MQL5's OrderSend() . This is a synchronous function; the caller has to wait for the MT5 server response before proceeding. When a trading strategy necessitates multiple orders at varying prices or symbols, using the
While working on a machine learning model I noticed a weird behavior on the Eig built-in method. When given a matrix matrix SBSW = {{- 3.474589321704841 , 1.106384365940048 ,- 9.091976743274188 ,- 3.925227000397125 }, {- 5.522139525216183 , 2.366887770561694 ,- 15.162350848809 ,-
Hello. I bought an EA a while back. It doesn't work well, And now the seller took it off the market and I can't even write a review while he keeps selling his other EAs. There need to be an option to write a general review on the seller for anyone who bought anything from him/her even if it's no
how to cancel sell and buy stop in EA. cancel buy and sell stop after some time . what is command or what changes may be needed. thanks in advance
//+------------------------------------------------------------------+ //| Setup Lot //+------------------------------------------------------------------+ double SetupLot( int orderType) { double lot = 0 , firstLot = 0 ,multiplier = Multiplier_, MinLot = MarketInfo( Symbol
[Deleted]
Sorry I am a newbee with OpenAI, Please forgive me below basic question. 1. Open AI can be imported by dll? 2. How to put the functions to MQL5 code
[Deleted]
What trading algorithm do we use for automatic trading EA? What are the advantages and disadvantages, there is a more stable profit trading algorithm recommended
Can I have multiple accounts on a single VPS server? For example, 3 different accounts with same brokers running different expert advisors? I really need to know before hosting
Im trying to setup 2 accounts with my EA but switching accounts turns off algo trading for the second account. Is this just a feature of MT5? I have 1 account running the EA on 2 pairs, and 1 account i want it to run with 1 pair
All of my MT5 EAs work flawlessly in my My MT5 platform but they don't work on my MT5 live platform; they used to work on my live MT5 platform but about 2 months ago they stopped working; I contacted my broker to download the MT5 platform again but they still did not work ; I moved to
[Deleted]
Hello. I am trying to code my first Expert Advisor in MQL5, and I am having an issue getting the correct values from indicators, specifically RSI and ATR in my case. This is the code I am using: int atrHandle; int rsiHandle; atrHandle = iATR ( NULL , 0 , ATR_Period); rsiHandle = iRSI ( NULL , 0
Hi, Target: Server restarts... MetaTrader is comming back up with autostart scripts or whatever... Problem: Sometimes EA's are not attached to the Chart anymore. So somehow I want to check if everything is right (TimeFrames, EA's, etc.. ) A visual TestTool doesn't seem right.... Does anyone have a
Hello everyone, I have developed an Expert Advisor (EA) for MetaTrader 5 (MT5) and, to test it with high-quality data, I used QuantDataManager to download historical tick data . After downloading the necessary data, I went to MT5, created the symbols, and loaded the ticks (the image below shows the
Hello, I would like to be reimbursed because the EA makes many loss. I would like to earn money, not to lose money. Please, how to be reimbursed from an EA. I already activated the EA but it's a scam, it makes only loss money. Please help me to be reimbursed. Also the service desk didn't reply me
Gents, I'm running backtests using the 'Run Single Test' function directly from the Optimization Results tool and the Strategy Tester with the same parameters, but the results are significantly different. Has anyone else experienced this? Any insights on why this might be happening?"
My EA in tester only shows sells. At the same time the journal registers both sells and buys. Notice the vertical dotted lines which must be interconnected between the buys a nd the sells during b a cktesting in the normal situation . Ple explain what's wrong with the settings?? The code is as
void Trail() { Print ( "Trail() called for symbol: " , _Symbol ); // Log the function call and current chart symbol int totalPositions = PositionsTotal (); for ( int i = 0 ; i < totalPositions; i++) { ulong ticket = PositionGetTicket (i); if ( PositionSelectByTicket
Hello, I have 2 installations of MT5, on 1 when I perform backtest with visual mode I can also see the trades made during the backtest on my main chart directly in MT5 main window, so I can further play with indicators and all the values and still see the trades. In my another MT5 installation this
Hi folks, I have built an algo that trades 6 different strategies.... I want to establish the best strategy to trade. I wouldn't like to do a slow complete optimisation for all 6 strategies as it will take many weeks to complete. So my question is: Would it be a good idea to run a faster genetic
Hello I want to make my indicator signals that are given as alerts automatically. It means to automatically open a trade for me and set profit and loss limits. Is there a cheap tool? Introduce some examples of it
Hello, how can one get the same, actual New York-time all year long , no matter whether it's summer- or winter-time there? How can this be achieved with MQL5 if one doesn't live in the New York-time zone themselves? Something like the missing TimeNewYork() -function? Because MQL5 only provides our
  Strategy tester  (2)
Hello, Bellow function giving always result of 0 in the strategy tester, but is working when loaded on a script. I do not understand why Thanks! double ATR( int index, ENUM_TIMEFRAMES timeframe) { double atr[]; double res= 0 ; int maxtries = 3 ; int retrycount= 0 ; ArraySetAsSeries (atr
For those who are experienced in programming EAs, I'd value your opinion on this. If you have an EA that makes buy and sell positions based on valid strong signals, is this better than having a lot of position management code (recovery trades, PnL analysis etc.)? I wrote a script full of position
Hello to All, I am seeing inconsistent results using iBarShift() within the Strategy Tester that I cannot explain. This problem arose whilst using a library that works very well for more current dates but is reporting incorrect results for earlier historical dates. Unfortunately my specific use case
I'm seeking a Telegram copy trader that performs basic copy trading functions and includes the following feature: When a trade signal is sent e.g., XAUUSD SELL Entry: 2345-2347, SL: 2350, TP:1 TP:2 TP:3), I want the EA to open trades within the specified entry range (2345-2347). The EA should allow
  How to LOCK/Encrypt EA  (193   1 2 3 4 5 ... 19 20)
Guys how can I LOCK my EA so that no one can see or change anything...like you normally get DEMO from the signal provider websites?? Thanks Babar
Hi Guys, i'm thinking about how to protect my own programmed EA against decompiling by other people and thinking about a server based solution were the EA needs to connect to my server and get their trade data over something like an api with key authentication. So my question is, has anybody done...