Expert Advisors and Automated Trading - page 124

I noticed that TimeToString and StringToTime is making my EA a lot slower Is there anything I can improve on the code below? It is a function to check if the market is open for trading //+------------------------------------------------------------------+ //| Expert tick function
  TEXT OBJECTS  (1)
Hey how do we get text object to show inside a rectangle pannel mine engulfs the text objects
  EA closes itself  (1)
Hi everyone I have written an EA. Everything seems spelled correctly. EA normally opens and closes positions. However, after some time, he closes positions and there is a message like this: Position close by symbol magic, close posytion ticet#0 After this message, EA disappears from the chart
Hello Everybody, I am still learning when it comes to mql5. I'm trying to code a script that will find support and resistance levels. I'm having problems populating arrays that will hold high values for resistance and low values for support as well as sorting them in ascending order to merge values
I did do an expert here, but it does not work, the developer wants the money the same says that the indicator repaints. Which indicator does not repaint? I asked, but he doesn't answer me
I am using the following code to access a rectangle object manually drawn on a chart: void FindTradeInRect() { static datetime lastTime = 0 ; datetime currTime = iTime ( Symbol (), PERIOD_M1 , 0 ); if (currTime>lastTime) { for ( int i= ObjectsTotal ( 0 , 0 , - 1 )- 1 ; i>= 0 ; i--)
Hello, I am learning mql5. I have developed a module that validates the inputs and numerous indicators that confirm it, or not. In the strategy tester I can manually run the module one by one with each of the indicators/oscillators. I want to develop something from OnTick that allows me to execute
[Deleted]
#include <Trade/Trade.mqh> int handleDarkPoint; int barsTotal; CTrade trade; int OnInit (){ handleDarkPoint = iCustom ( _Symbol , PERIOD_CURRENT , "Market/Dark Point MT5.ex5" , "" , "DP_" , 40 , 3 , 1.0 , "" , 14 , "" , true , 0.8 , true , 1.6 , true , 3.2 , true , 1.6 , true , 3.2 , true , 5.0
Hello traders, I have a question regarding scripting in Metaeditor. I have an rsi bot that buys under 30 rsi only it does this once. Does anyone here know how to place a buy order every new candle under 30rsi? I'm not a scripter myself, so I can't figure it out. i put a file with it, i think it most
  Copyrates  (1)
When copying historical data from "VIX_X2.a" (IcMarket) it gave error 4401. How to avoid this error
Hey fellas i need some help with my EA, for example when the "Buy" condition is true, i need it to place buy orders one after the other when the tp is hit, and the same for "Sell". currently it only opens one order only here is my code below... if (newBar){ //Buy Condition: if
  How To Create EA MQL5  (21   1 2 3)
Hi I need your help... i need E-books or learning material of how to create an Expert Adviser using mql5
Hello, sometimes the strategy tester stops short before completing the backtest. Then, after a couple of minutes it throws the following error: CS 2 11 : 43 : 38.525 Tester cannot add tick event (events' array size is 35782656 ) CS 0 11 : 43 : 38.589 Tester DIS,Daily
I'm trying to code my EA in mql5 and after a certain condition is met I would like the EA to loop through all the open orders and modify the SL, to just a few pips above/below the order open price but after double checking over and over it keeps on reporting Error 4754. I check and ensure that
2022.10.21 23:54:24.531 Trades '1043221': failed market buy 0.1 BTCUSD sl: 19145.00 tp: 20190.00 [Trade disabled] Can someone please explain how to get around this error. I'm running my EA in debug mode on live data, not sure how to resolve. Thanks
Hey. I have created a file called python.py in Scripts/Python.py I just need to call/run that file from my .mq5 expert advisor... Is that possible
Hello, I want to add additional features to my robot. Sell if the k line on stochastic rsi crosses below 80. I wrote this condition as follows. but it didn't. Could you help? else if(CountOpenedPositions("buy")!=0 && (signal == "sell" || ((InpKPeriod(0) > 80.0 and InpKPeriod(1) < 80.0 )))
How to write this on MQ5? if (Spread<MaxSpread&&Hour()>=StartHour&&Hour()<StopHour){ Thank you in advance
Good day everyone, So, I hired someone on Fiverr to create an EA for me that's foundation is reliant on a Date/Time String Variable input (I believe is the term) and there's 15 separate entries all of which underneath the Date/Time entry, have other variable inputs. He is now MIA and I am trying to
I had created a simple crossover strategy for my expert advisor, the problem I'm facing is that a new trade order executes after fulfiling a take profit or stop loss criteria. As an example I had created 50EMA and 200 EMA crossover strategy, as soon as the 50 EMA crosses above the 200 EMA placing a
So I have a strange problem. I tried to verify NewBar appearance with the following code from Samuels article "Step-By-Step Guide to writing an Expert Advisor in MQL5 for Beginners". I tried the code on System Tester and I saw that is no trade. Than I saw that the Old_Time variable take the value of...
Hello Experts, I would like to know that Can I sell EA in this market if I create EA from Open Source Indicators? Like, I want to create an EA based on support and resistance and I want to follow this codes and convert to EA. Can I sell? That's the code I wanted to use for my EA
bool PosOrdCheck( const ENUM_ORDER_TYPE OrderType) { for ( int i = OrdersTotal ()- 1 ; i>= 0 ; i--) { if ( OrderSelect (( OrderGetTicket (i)))) if ( OrderGetString ( ORDER_SYMBOL ) == _Symbol ) return false ; } for ( int i = PositionsTotal ()- 1 ; i>= 0 ; i--)
hi guys, i'm going through the help doc of mql5 and am reading about enum here https://www.mql5.com/en/docs/basis/types/integer/enumeration however there's no examples of how they're used. all I got is that one can create a list which will be assigned values from 0 with increments of 1s but thats
I made a EA in MQL5 and I tested it with historycal data. After try it a lot of times I got great profits, but after that I used my EA in the real market. I realized that I had opposite results, I lost a lot of money. I was trying to guess what happened and I found some possible issues. My positions
Can someone please help me migrate my chart and EA to mql5 vps. i already paid the subscription and connected but now i cant migrate
Hi, I am trying to backtest a strategy with a custom symbol , I have imported tick data from a date range and the data displays just fine in the chart. The strategy involves simply placing an order at 8:30AM. However there is a point where one pending order at 8:30AM on 2022.08.17 gets canceled (at
I am a beginner in mql language and software. i developing a EA but i have no idea about how can i finish OnTick function what i want to do is like this; void OnTick () { if (x>y) { OrderSend (blablabla); //and here the program should end } } thanks for
I have been running an EA on a demo account since late 2020, I haven't been tracking the results much, but I would like to go back and analysis the drawdown during the entire period, as its been profitable. I would like to come up with how many times during the last 2 years did the Equity go below
Hi all, currently I am trading with MT4 using my own bot, wish to find out a few stuff before I commence with MT5. Appreciate any help or clarifications given. 1) High quality MT4 backtesting is require from 3rd party, is it the same for MT5? Or can I download the data from the broker (not