I tried to have the MT5 terminal64.exe analyzed at https://www.virustotal.com and found 2 security vendors flagging it as malicious. See https://www.virustotal.com/gui/file/a7eb5f198b9f00201fbc20789e626ec986832221c179b4db5b839f7a5b9d68db I also have the MT4 terminal.exe analyzed and 5 security
Hello,
I'm using the MetaTrader few days and my pc is on 24 hours and the maximum that can per day is $ 0.01, it does not even pay the power bill you spend by using my computer for you to earn money.
I thought that my earnings would be at least $ 1 per day. But for me to join this $ 1, it will...
If i use a static variable in my EA and i remove the EA from the chart, does the value in my static variable delete ? or the value still there
[Deleted]
I am using MqlTick array and adding TimeGMT() to time array but it always print time on chart which is TimeTradeServer() When i print Array, It shows correct as you can see on screenshot but on chart window it always print wrong time. I am wondering what could be wrong? it was all working fine on
[Deleted]
If i want to load any indicator in 1 second chart, how can i do it? For e.g. ATR int iATR ( string symbol, // symbol name ENUM_TIMEFRAMES period, // period int ma_period // averaging period ); What i need to do to detect my second chart
Hi, did anyone else attempt to use the web terminal but since the upgrade can't seem to change servers for my broker
[Deleted]
In MqlTick we have bid ask and last price so I want to know how candlesticks are formed? using bid ask or last? If bid=0 and ask=0 an d last!=0 will it form a chart? if bid!=0 and ask!=0 and last!=0 how it will form using which array bid,ask or last
As a coder working with a lot of customers, using a lot of different brokers on MT4 and MT5, I often have the need to test or check how a program is behaving on a specific broker. Then the hell is starting...more and more brokers don't allow you to simply get a demo account from MT4/MT5. They want
Only support int Hash to Int, return Integer value within the range of 0 to 32767. int Hash( int seed){ srand (seed); return rand (); } void OnStart (){ Print (Hash( 999 )); Print (Hash( 99 )); Print (Hash( 999 )); Print ( "................" ); Print (Hash(Hash(Hash( 99
Hello, guys! I have been searching without any result about this topic and hope some of you, more experienced programmers in MQL (4/5) can just answer this question? Can I create a custom context menu in c++ to handle the right mouse click when selecting an object? I know I can create a rectangle
Can someone please help? I can't migrate server to VPS. there's no option to select anything
I need a developer to build for me an expert advisor but when I try to create an order I have this message Can you help me
i'm tryng to create a renko indicator to use on a expert advisor, but when i press f5 to test it, appears a error window "critical error, debugging is paused" How can i fixed? or how to use renko on an expert advisor? The code of indicator is attached
I have encountered an interesting issue while testing two similar trading strategies in both MQL4 and MQL5 languages. The strategies are written correctly, yet they produce different results when backtested using the Strategy Tester. I'm hoping someone can shed some light on this discrepancy and
Someone knows why I download MT4 but instead It install Mt5, is the link the issue
I tried to Buy a VPS for my Trading Bots, without being told DLL Importing Bots are prohibited. Trying to withdraw the Money I put in is literally impossible, the only option I have access to is PayPal, which is completely contradictory by the design of MQL5. The Minimum withdraw is $10USD, the
hi .. i actually connected the same EA into multiple accounts. But somehow 1 of the accounts did not execute a trade, but the rest did. All parameters are similar. Anyone know why i face this issue? do we need to reconnect VPS after sometime
Hello friends, im stuck at this code, everytime I execute buy or closing order in strategy tester always return error 4756, but it works only sell, here is the code: //+------------------------------------+ //| Execute TRADE | //+------------------------------------+ bool
I have in my Tradehistory some entrys where the symbol name is SUMMARY, you can see in the attached picture. I dont understand this, it looks like withdraw or deposit but the order type is show as and it have also lotsize of 0.01, you can see in the picture also there are normal withdraw or deposit
i have made an ea which is showing very low drawdawn in backtesting with huge profits, but in forward testing with same inputs, its giving different results why so? how to properly backtest, i have done optimization too, but the in real live market the results are very different from backtesting can
hi, how can i join MetaQuotes Certification Program? i didn't find any link where i can register for it
Hey guys why you deleting my post. I did not break any rules. Why? Please explain why you deleting my post thank you
why does my demo account not work at weekends for crypto
The MQL5 team has received your request. To verify your identity, please attach 2 photos to the request as described below: 1. A selfie with an identity document 2. A selfie with this chat in the background this problem no accses file to upload my document
Hi, everyone! I started to use MT5 and MQL5. I had a trouble in using #import. The code of Libraries\import_test.mq5 is as below. #property library #property copyright "---" #property link "https://www.mql5.com" #property version "1.00" void import_test( void ) export { Print (
Dear users, When you work with different fibonacci profiles/levels, you have to edit manually all the time. Anyone knows a solution to help save time in this case, allowing us to select different fibonacci level profiles? Sincerely
Hello Sir can somebody help me why I cannot login to the MQL5 community? I tried to login using my demo and active account id and also the password by saying that there was an incorrect " login or password". Please help me as I want to download and install UNIVERSAL BREAKOUT FOR MT5
Let's assume a neural network , trained. That network sits behind a server , it receives inputs it sends forecasts. I upload an EA to the market with the instruction to add the url of the server in the allowed urls : a .the ea needs the forecast to place trades b .the ea does not need the forecast
Hey all, on https://www.mql5.com/en/forum/10773#q12 I can read that the order size of the copied can be bigger. But if I have an account balance of 10.000$ and the signal has an account balance of 1.000$ and the signal does an order of 0.01 will my order than be 10 times bigger (= 0.1). I can not
[Deleted]
if (id== CHARTEVENT_MOUSE_WHEEL ) { //wheel up if (dparam> 0 ) { scale=( int ) ChartGetInteger ( ChartID (), CHART_SCALE ); scale++; if (scale> 5 ) { scale= 5 ; } ChartSetInteger ( ChartID (), CHART_MOUSE_SCROLL , false );