General - page 177

  Timer on screen  (1)
Hello. When trying to update a timer on chart screen using timer event the timer does not update exactly in conjunction with server time. Is there a solution
Hello everyone, I recently coded an expert that allows me to automatically download various files from my FTP server and also upload my trading statistics to the same server. On MetaTrader 5, Windows version, the code works perfectly! However, when I tried it on my Mac, there seems to be an issue
my problem is signal not working in my account because symbol from provider is GOLD but my account GOLDmicro not match and I try to move subscription to new account , I can not change because "subscibtion can be move no more than once a week " How can I do this? to Support team
//+------------------------------------------------------------------+ //| RIS.mq4 | //| SUREPIPS | //| |
Hi ya, Could anyone pls elaborate strategy shown in attachment? I need it to verify back-testing results. Thank you
Hi I have backtested with some pairs such as usdjpy and nzdusd and have had stopping at random places. For example when the ea should have sold or bought it just leaves the trade open till the testing is over. It is only doing that for these certain symbols, and does the same thing with different
Hi, I tried to move my signal to an account that uses ".a" suffix and didn't realise the signal wouldn't work as they trade with no suffix. Is there any way around this to map the symbols appropriately? If not, is there any way I can move the subscription back to the original account without having
Hi, Since market opening it seems my algo trading does not seem to be working through the New York VPS - is anyone else having this problem too? It’s not a problem with the algo itself as when I manually switch algo trading on it kicks in correctly. Many thanks
Am new to mql5 but so far i have been enjoy the ride, while try to get the highest price bar from the bar index of an open position, // getting the lowestbar and higestbar price after trade open int open_price_time = ( int ) PositionGetInteger ( POSITION_TIME ); int bar_index = iBarShift
I am requesting some help in how i will code an ea to detect price to have crossed below 50 & 100 moving averages and then come back to retest at the moving averages and the continue trending downwards and at that instance open a trade. Vice versa applies for a buy trade. I will appreciate this
I put shorten Url in my signal description for example http://bit.ly/3gZFD7O or http://goo.gl/WZRuDa when i click on it to forward to https://www.mql5.com/ please advice how to forward links to outside mql5
  Can EA stats be faked?  (11   1 2)
Hello guys. I found <Deleted> EA. But it looks to good to be true. Can EA stats be faked? I'm adding screenshot which was left on EA's page
Hello, It's a silly question but still I wanted to ask. Can i use automation or any python script for sending friend request? Like I want to send 100-300 friend request a day. So Can I use automation or script for that? Is that any violate any policy? Please let me know. Thank you
Hello. When I click "migrate all" algo trading goes disabled automatically. Is it normal? Should I simply enable it manually again
Do you have a problem with the calendar on the platform? Filter events: - by priority - by the currency of the country for which the indicator is published - by country for which the indicator is published does not remember its settings after platform restart. It's a bit frustrating
Can we get Timestamp with milliseconds by using dll
One of the most important challenges in trade is risk management. It involves determining the amount of risk involved in a trade and finding ways to minimize that risk while maximizing potential profits. Other important challenges in trade include discipline, emotional control, market knowledge, and
Hello, I am researching the reason why traders lose money?? How do you think losses can be avoided in the financial market? thanks for your help
I'm using a vps for mt5 on windows server 2022 datacentre. Server is 6 cores, 16gb ram, amd epyc 7282, 100gb mvme. Performance is great for everything non mt5. 1. However mt5 charts keep freezing, even with 1 chart and a couple of few basic indicators loaded, mt5 cpu usage is less than 10% and
While Optimizing I need custom criteria's to see results without running a Single Test For example on Optimization window I got Profit, Profit Factor ..., and I need to add some custom criteria's besides OnTester result which is being optimized
Hello , One technical question: I can save on my all-in-one MT5 a particular profile from the "file" menu and labeling it. But this way I can save ONLY the charts. From menu “view” choosing: toolbars menu - standard, time frames, line studies, also market watch, navigator, toolbox, market depth -
#include <Trade/Trade.mqh> input double Lots = 0.01 ; input double LotFactor = 2 ; input int TpPoints = 100 ; input int SlPoints = 100 ; input int Magic = 111 ; CTrade trade; bool isTradeAllowed = true ; int OnInit (){ trade.SetExpertMagicNumber(Magic); return ( INIT_SUCCEEDED ); } void
  -nan export  (30   1 2 3)
I'm getting an exported value of "-nan" to a csv file . I noticed that division by zero on mt5 produces "inf" . What is producing -nan ? if anyone has encountered it of course. MT5 , not an indicator , not working with reading data live , data is picked up from the hard drive for processing . Thank
Is it possible somehow setting up to see the close time for any single candle ( no matter which timeframe) on MT5
  access denied to mql5 on vps  (64   1 2 3 4 5 6 7)
hello has anyone got a message saying access to mqi5.com denied using a vps? how do you fix it
Hello guys, Can someone help me to convert a litle Code from pine script to MQL4 ? wicks = input ( false , "..." ) Hlv1 = float (na) Hlv1 := (wicks ? high : close) > EMA1 ? 1 : (wicks ? low : close) < EMA2 ? - 1 : Hlv1[ 1 ]
Please I just that webmoney has been removed from withdrawal methods
Hi, I am testing MT5 VPS and wanted to clarify the difference between migration and synchronization. I am running the same EA on 3 different charts. It seems that the sequence is (after opening charts and loading EA's) : First press Migrate and after run synchronization? Thanks for any
How can I make the ComboBox control lets me input data like an Edit control not only by choosing the predefined values by code, but also, typing any value that I want to?. This control was taken from another software, but the idea is the same. The image in the left side shows predifined values and a...
In order to prevent changing of a parameter passed by reference, use the const modifier Everything is clear here: class CTest { private : int property; public : void changeProperty( int newValue) { property = newValue; } }; void OnStart () { CTest obj; obj.changeProperty( 1 );