General - page 63

  help  (1)
Guys please help, can anyone suggest a easy website, which will explain how to place a trade
does anyone know how to remove old accounts from desktop version of mt5
Hello Members I would like to confirm that the EA on VPS is working. Is there anyway that i can get this confirmation. I subscribed to 1 Month VPS from MQL 5. Kindly help friends to identify that the VPS is wokring in the VPS
Hello there I've created Experts for MT4 and MT5.. sometimes the MT4 product uploads and not the MT5 and other way round. Today, the MT5 code did not upload and I am getting these errors.. I checked the volume limit and it's at 500 lots so it's ample yet it's still not letting me get through the
what are the best indicators that can be used
  alert and print  (1)
Why is the alert function executed earlier than the print function? void OnStart() { //--- int x,y; for(x=0;x<100;x++){ Print(x); } Alert("code is over !!!"); }
Hi, I'm here asking for help in trying to understand what could possibly be the cause of a curious lag problem I'm experiencing in the last weeks. So some weeks ago, I opened my real time account of a certain Brazilian broker to trade in the futures market and noticed it was laggy: the chart wasn't
Hi everyone, I've recently published a signal on MQL5, and it's been established for 2 weeks now. I've also removed some warnings that were initially present. However, I still can't find my signal when searching on the signal page, even after logging out of my MQL5 account. Is there a known issue
I downloaded MT5 onto my PC. Now I can't find a way to trade Bitcoin! This was still possible in the previous version! Can I no longer trade cryptocurrencies
Can I subscribe to multiple signals and use them all at the same time with one trading account? Or do I need separate trading accounts?
Hi friends, Could anyone tell me how to backtest multiple currency strategy, in which trading currency pairs have different leverage? I think MT5 only have one buttom to select one leverage applying all currency pairs. But in my trading strategy, there are different currency pairs with different
Hi, For automated tradi ng , what to choose (and why ) between learning / using MQL5 or C# ? Until 10 years ago: - I learned a lot of C/C++, for normal applications. - With C#, I just made some simple applications, nothing more. Regarding MQL5: - I saw that there are many text and video resources
So, when I double-click on a symbol, it gives me a window to place an order and it used to open a tick movement window on the left side as well. Somehow it doesn't do that anymore and I want it back! Anyone knows how? Thank you
I created a service to run every 4 hours to analyze 35 currency pairs for all time frames from M30~ MN. After the analysis is complete, the service still takes up 9.5MB of RAM and slows down the computer. I had to Stop and then click Start again to free up the memory to 1.5MB as before running the
I am trying to create an expert advisor that will fetch data ( JSON format including "Price", "Value" and "Timestamp" ) from my web service and i want it to display that data in the form of a line chart in my MT5 Terminal. I am extremely new to MQL5 and 99% of this code was written by AI but I need
is this Respon from MT5 application or from Broker. My Auto OP (by script) is responded/received as Manually Placed WITHOUT MAGICNUMBER. and there is "Proactive" ID placed there. That was very dangerous for the logic of my program for continous to run. i use Metratrader 5, Build 9 Agt 2024 My Broker
Very new to MQL and MT5, seeking help My demo account created with server name " MT5 Demo01" ... but while connecting to account in MT5 it is showing as FxPRO-Demo. Now when I'm running single line limit order code, orders are not getting placed. I can see on chart but now in "Trade"/"Journal"
  Signals ranking  (11   1 2)
So basically mql5 do not like real trading perfomance? Looking at the current top 10 rankings, its a joke! people basically ignoring all risk management rules, closing trades at 20 pips profit after letting them run -100 pips loss??? Which is better perfomance: 2000% growth on a $100 account,...
Just a hint. If someone has this annoying sign on his mql5 page like I have:     then using the "Block element" option from the Adblock Plus can hide it.
I am looking for a relatively simple indicator, and I have searched the forms and seem to come up with nothing. The indicator would work like this. You Draw a simple trend line on the RSI indicator window and when the RSI either rises above or drops below the trend line an alert is sent ( Pop Up /...
Hi, I've found that CopyTo method has a mistake Original code is : template<typename T> int CQueue::CopyTo(T &dst_array[],const int dst_start=0) { //--- resize array if((dst_start+m_size)>ArraySize(dst_array)) if(ArrayResize(dst_array,dst_start+m_size)<0) return(0); //--- copy queue
  Bug in CQueue  (5)
int CQueue::CopyTo(T &dst_array[], const int dst_start= 0 ) { //--- resize array if ((dst_start+m_size)> ArraySize (dst_array)) if ( ArrayResize (dst_array,dst_start+m_size)< 0 ) return ( 0 ); //--- copy queue elements from head to tail if (m_tail>=m_head) return (
Hey friends can you help me to rectify code errors { #property NoSupplyBuffer[i] = low[i] - (10 * Point); // Plot signal slightly below the low of the bar } Please write correct Code
How do I get the tray at the bottom I accidentally deleted it
  How to Edit Signal Settings?  (12   1 2)
How do I edit the settings I originally set when I subbed to a signal?
("Precise time scale" in Charts settings or PreciseTime=1 in the Objects section of Common.ini) that allows the drawing of objects to honor the exact time coordinate provided in on tick drawings. The above setting in the terminal doesn't seem to be honored in the strategy tester charts. My question
hello Sir, on BTCUSD dose not trigger limit & stop order on MT5. can one Please explain the reason
On my MT5 and MT4, I am unable to login into any trade accounts that use other server than Metaquotes servsers. Can somebody help me fix that ? Thank you
Hello everybody. I just subscribed to Signal MT lima ke 2 Join Tu that has one opened position. My MT5 instance seems to ignore it. XAUUSD. 2024.08.23 14:18 Buy Limit 1.00 2 493.000 2 515.000 2 520.003 he appears to have this position opened from his page
Hi guys. want to set/unset checkgroup items by coding. class CControlsDialog : public CAppDialog { private : CCheckGroup chgp; public : CControlsDialog( void ); ~CControlsDialog( void ); void itemSet( int , bool ); protected : void OnChangeCheckGroup( void ); }; I'm using