General - page 524

Hi, I'm trying to open position when trend change and hold it until change again, as seen in photo below. red dots mean sell , blue mean buy //1 up / -1 down double trend = trendIndicator[ 0 ]; //current double trend2 = trendIndicator[ 1 ]; //prev trend if (trend == 1 && trend2 == - 1 )
Hello I have a quick question I would like to know how to create a real metarader 4 account because I am asked for a broker I do not understand anything about their bullshit please thank you
[Deleted]
I want to upload an expert to the market, but it gives a warning as follows, how will this problem be solved, thanks. test on EURUSD,H1 there are no trading operations test on NZDUSD,H1 there are no trading operations test on GBPUSDcheck,M30 there are no trading operations test on XAUUSDcheck,Daily
If signal provider uses a purchased EA as their signal. Are there copyright infringements? Does a person lose their signal provider status if they use an EA
Hey all, Metatrader seems to be really finnicky and sometimes when I launch the strategy tester it will place buys and sometimes it doesn't I dont understand whats wrong with the code i've written. any help would be greatly appreciated. #include<Trade\Trade.mqh> CTrade trade; bool Cross_Below =
hello please help me I have an indicator with 2 color, I want to recieve an alert when the indicator color changes how can i do it
#property copyright "" #property link "" #property version "1.00" #property indicator_separate_window #property indicator_buffers 1 #property indicator_plots 1 #property indicator_color1 Silver #property indicator_width1 2 double MacdBuffer[]; int handle; int...
Hi there, has anyone ever noticed this? I don´t know what criteria MT5 uses to decide to save the name you give to an object on the chart. For example I like to name support and resistance lines. But I never know when MT5 will decide to save ir or not. For example in this images I will attach here
  Copytrading ?  (6)
Hi I can´t find out how to Copytrade? The connection to markets.com is woking okay
Hello, so i've created a close all symbol function but for some unknown reason it's producing alot of errors such as 'PositionClose' - undeclared identifier, ')' - unexpected token, 'PositionClose' - some operator expected, expression has no effect, '.' - struct or class type expected. I have
Hi does anyone know of a programme/application to export the data on MT5 into an Excel spreadheet
On a MT4 platform, MQL5 password is doesn't match, when I try to download from market an EA. On google and safari the same password work properly. What could be fault
  help  (8)
Hi. can you help me with a script on mt5 to stopwatch 3 positions in repetitive sell? with or without TP and SL. Example: open eurusd at 10:05 am, 10:10 am, 10:15 am Thank you
Why do MQL5TUTORIALS from youtube uses for ( int i = PositionsTotal ()-1; i>= 0 ; i--) What's the purpose of adding -1, why couldn't it just be for ( int i = PositionsTotal (); i>= 0 ; i--)
Hello, I am looking for resources to learn the MQL5 language. Regards,
  Reset activation  (2)
Good morning, it's possible to reset all activation of an EA due several reinstallations of my PC ? Tks Igor
  dubble trade order  (25   1 2 3)
dear, i like to try something by using my experience of candle stick patterns and market structure together with a bot. i would let my bot if i say start take two trade orders at the same time one sell order and one buy order. the SL of both trades are for example 10pips and the TP for example
Hi, pls I would like to forward test the free demo ea I download when the market is opened on my demo Acct, will the free demo version run or is the free demo simply for strategy tester only
  MQL5 Docs  (2)
Hi guys, where can I find MQL5 documentations? like docs.mql4
Hi, now I need your expertise. I have trouble creating a string and outputting it on a file: #property strict #include <Files/FileTxt.mqh> void OnStart () { CFileTxt m_file; m_file.SetCommon ( true ); m_file.Open ( "PosData.txt" , FILE_WRITE | FILE_TXT ); string pos = "" ; pos += "2
Until yesterday, I was able to download the history CSV of every signal, also those which I did not subscribe. Since today, I get to see and download only more or less one month. I have checked it with signal history I already did download and which is not working anymore. After a few history trades
Hi there, Can you please assist, I am unable to load my purchases
Would you know of a pip counter for MT-5 ? I have been using one for MT-4 but will not work on the MT-5 platform? Thank you
  MT5 and NSE  (4)
what is the procedure to add symbol from NSE to MT5 marketwatch and start trading NSE option trading and back test
Hello, I want to use the MQL5 meta editor from different PCs, of course accessing the same files like scripts, but I'm not succeeding. - Both in PC "A" and in "B" I installed MT5 and Metaeditor, accessing with the same MT5 user account and with the same MQL5 community account. - On both PCs I
Hey guys, here you find a script and an indicator and both use Bars(). Please have a look at the attached screenshot. The first 10 values are from the script and below them you see the same 10 values but from the indicator. Do I miss something or is this a bug within MT5? Here is the script where
Hi metaquotes, In some inficators, or better say many indicators working under some conditions, the user is forced to switch tf twice for forcing a refresh/update of the current chart. Is it possible to have a method for solving this issue? If i open mt where some chart were already loaded on
I have the following code(is not mine) in an Expert Advisor: if ((Handle(DXHandle, 0 ) - Simbolo.Ask()) >= (DXPontosDistancia * _Point )){...} Handle(DXHandle,0) is a function that returns the value of an moving average of seven candles of one minute. DXPontosDistancia is a value that they obtained
if (emaTrend() == "downtrend" ) { entrySignal = 2 ; } if (emaTrend() == "uptrend" ) { entrySignal = 1 ; } if ( PositionsTotal () == 0 && entrySignal == 1 ) { ticketOrder = trade.Buy(lotsize, _Symbol