General - page 94

I am new to mql5 and i am watching a lot of videos on how to create a ea. I started to build a trix rsi ea but i am struggling to get the ea to place a order when the trix goes above the 0 and is below the rsi 70 and above the rsi 30 levels. The ea also needs to close the trade in 50 seconds after
Please make the mt5 chat notification useful and not a nuisance by allowing us to choose whom or what product we want to maintain chat with. My mt5 chat system is very useful for me to keep in touch with those i want and thus very important feature, hence why its a big problem not to be able to
The MetaTrader 5 platform update will be released on Friday, September 16, 2022 We have implemented a new account trading report. The report reflects monthly growth rates, profit graphs, equity diagrams, radar charts for general account statuses and other metrics to help users in gauging trading
#include <Trade\Trade.mqh> double lowerBound , upperBound; bool IsPriceInZone(double openPrice,int zoneWidth) { // Calculate the lower and upper bounds of the zone lowerBound = openPrice - zoneWidth; upperBound = openPrice + zoneWidth; double CurrentPrice =
  MQL5 VPS issues  (5)
Hello guys, I am new to the VPS topic. Recently i placed 5 EAs on the MT5 default VPS service . I did a huge mistake running a live account. After a couple of days, i realized that the EAs are not working as they should 100%. After i checked the experts journal in the VPS, i noticed that at some
Buongiorno a tutti vorrei sapere se qualcuno può scrivermi un semplice alert basato su una linea retta ...mi spiego vorrei che una volta messa la linea orizzontale mi suonasse un alert quando il prezzo attraversa e chiude sotto o sopra di questa a secondo della modalita che si sceglie Good morning
  Multiple Indicators Logic Help  (28   1 2 3)
I’m currently working on logic for multiple indicators. The desired outcome is that indicators can be enabled and disabled individually. The expert should trade the logic of each individual indicator if only that indicator is enabled. If multiple indicators are enabled the expert should combine the
Dear Community, I am reaching out for assistance in connecting my trade account with Visual Studio. Unfortunately, I consistently encounter the following error: (-10004, 'No IPC connection') . I have attempted various troubleshooting steps, but none have proven successful thus far. I would greatly
hello every all Please can help me Please When i work in demo to create Expert Advisor and connect to the meta trader can not read all codes for mql5 read only last step!!! Can solve this problem Please i create code by use meta trader for example void OnTick () { //--- double open = iOpen (
Why MT5 (trailing stop) closed position, when price was 300 points below trailing stop level? Position has been closed at price 8.69365 when high on this candle was 8.69172? It wasn't around midnight, so spread shouldn't be big, also chart is not showing any spread at this moment at all. (Account
More than 50 years, Between 30 and 40 years, Between 20 and 30 years, Between 10 and 20 years, Between 5 and 10 years, Between 3 and 5 years, Between 1 and 3 years,, Less than 1 year, I started today you inspired me, I am not a coder, please show me the results
Hi, I tried a demo EA, attached it to the chart as per instruction, Algo trading enabled. But nothing happens even after few hours. What went wrong? I tried to look in forum, couldnt find answer. Kindly help, Many thanks
This does not compile: #define _arWsz(A) #A+ "[] sz: " + ( string ( ArraySize (A))) // print array with array name template < typename T> int ArrayPrt(T &arr[], const string lne) { int i = ArraySize (arr); string s = _arWsz(arr); string S = #arr+ "[] sz: " + ( string ( ArraySize
Hi, apologies if this question should be asked under a different category. I am interested to subscribe to a signal, but I would like to clarify some points before I do that. My questions are: 1. Can I subscribe to a signal who use a different broker than myself? 2. Can I use different leverage than
They removed the number beside stars
Hi Guys how are you
Hi, Anyone had idea of how do python access to MT5 to enable or disable the EA ?? Thanks
can you pls help me figure out what the number mean 99 and 120 , thankyou
I have my local agent farm with ~200 agents. Every now and them some of the agents stop accepting new work, and the only solution is to restart them. From the MT5 terminal I can see that some of these agents appear as "Occupied by another terminal" - This information is not correct, however, as I
Hello, I'm a programmer venturing into MQL5 for stock market trading on MT5. I'm curious about integrating Artificial Intelligence into my trades. ChatGPT mentioned AI software that can be downloaded to assist with tasks like code correction and indicator refinement. I'm seeking guidance, including
I tried for a few days, all kinds of ways I did to make the alert not repeat. now i'm stuck.... That is my code, if ((Price_Now <= MA5_low && Price_Now >= MA10_low )||(Price_Now >= MA5_low && Price_Now <= MA10_low)) //--- PRICE CLOSE BERADA DLM MA
Can you use MT5 virtual servers on demo account ? If so, can I then transfer it to a live account when I’m ready
Hi all, I'm trying to download the following utilty but the download is not available. When I click on "I have MT4" nothing happens. Thank you
 I heard that i can make money on mql5 , how can i make it and how much can I earn daily ?
Hi, I am trying to Backtest a new bot and no matter what date I enter it only goes back to June 29th. Anyone have any ideas
Let's make a simple comparison let's say we invest 10000USD in forex market trading 1. When we trade manually - Let's say we earn an average profit of 1000USD (10%)/Month => 12000USD/Year, - We spend 4 hours/day => will spend 1460 hours/year (60.8 days/year), - We lose focus in our main work
Hello. I have tried to adapt an RSI indicator to plot the RSI of two symbols on the one chart, and plot a histogram with the delta. I can compile the code with no errors, however when I attach to a chart I don't get anything (not even a new window). Any assistance would be appreciated - below is the
  Say & Ask anything/everything  (208   1 2 3 4 5 ... 20 21)
If you have any question or you want to say something about anything/everything, then you can ask /say it here. I mean anything and everything - including about moderators :D Mql5.com itself, it's section ( English section , Russian section , China section (there is Chinese section for mql4.com )
As of late I have seen a massive drop in earnings. I have gone from earning $0.30-$0.90 per day to earning under $0.01 today. My computer has been running and the app hasn't been closed for an extended period of time at any point, does anyone know why this might be happening? My PR is 182
Will the array of characters that make up the string be physically copied when passing it to the function? That is, will function1() be faster than function2()? void function1( const string &str) { // Some action (doesn't matter) Print (str); } void function2( string str) { // Some