jaffer wilson
jaffer wilson
США
jaffer wilson
Added topic How I can define the name of the file with respect to the chart symbol?
I have tried the following and got the error: #define filename   _Symbol + "_Trade_reatime.csv" ; input string forecast_fetch=filename; Error got is:  '+' - constant expected Trade_Real_Time.mq5     87
jaffer wilson
Added topic How to check if file is updated completely or not?
How I can check it the file was completely updated and not used by any other program? How I can let any other program access the file to overwrite for updation in MQL
jaffer wilson
Added topic How to nullify scaling difference in indicator window?
I have plotted the same real candles as it is from the chart 0 to indicator sub window. The I drag and dropped the bollinger bands on both the windows. I found a hell lot of difference in the bands scale or placement inside the window. I do not
jaffer wilson
Added topic Suggestion for best indicator to be used for trade and why
Hello Everyone,  I need your suggestions on the top 10 best indicators to be used for trading or binary. Please also suggest why you would like to use it. Kindly, share references or code base link so I can also try it. Please everyone suggest
jaffer wilson
Added topic Indicator not giving the previous values.
I am trying the following custom indicator in my expert from here: https://www.mql5.com/en/code/13229. For my analysis, I tried to gather the previous historic data but I am not able to. I am getting zeros everywhere when I tried. While I am using
jaffer wilson
Added topic How to know what is the color of the candle on chart with open == close?
Hello everyone,  I was trying to collect the data with MT5 and only the OHLC values   of the candles with the their respective color. I am quite confused, when I see that my data say nothing about the candles as shown in the
jaffer wilson
Added topic How to connect MQL5 with the socket?
I have tried the following code:   #include <simple-client-socket-send-only.mqh> ClientSocket * glbSocket; void OnInit () {    glbSocket = new ClientSocket( "121.0.0.1" , 6666 );    if
jaffer wilson
Added topic How to contact the service desk?
I am looking at the options. Previously there was option to connect with the service desk but there isn't any at the moment. See the following image: Please let me know how I can contact the service desk. The
jaffer wilson
Added topic open application silently in the background using Shellexecute
I have tried the following:   #import "shell32.dll" int ShellExecuteW( int hwnd, string operation, string file, string parameters, string directory, int showCmd); #import string strParameters = "/c python c:\\createFiles.py " ; int result =
jaffer wilson
Added topic Reading the Lines of CSV file using MQL5
I am trying to read the last line time value from a csv file. Check the following: 2018 - 07 - 26 11 : 04 : 00 1.17272 1.17275 1.17267 1.17272 2018 - 07 - 26 11 : 05 : 00 1.17272 1.17273 1.17265 1.17268 2018 - 07 - 26 11 : 06 : 00 1.17268 1.17273
jaffer wilson
Added topic How to get the OHLC values missing between the dates?
Hello I am trying to collect the OHLC values of EUR USD, in realtime. But I see some values are missing as there was a bit of processing what I tried and then again started to collect. See the values:   2018 - 07 - 26 11 : 06 : 00
jaffer wilson
Added topic zero is omitted while converting integer to string
See the following code I tried:   string currenttime= IntegerToString (time.year)+ "-0" +                        IntegerToString
jaffer wilson
Added topic Reading file in Strategy Tester using MQL5
I have created a file using the Python Pandas library like this: out.to_csv( "modular.csv" ,index= False ,encoding= "utf-16" ) Now I am trying to read the file through the Strategy Tester of the Metatrader5. But getting the following error on the
jaffer wilson
Added topic How to copy file from a tester ffolder to local folder using ShellExecuteA() Function?
I have tried a code for copying the generated file from the tester folder to local, but I guess it is not working as I see that the return code is 2, which means file was not found. Kindly, have a look at my code: #import "shell32.dll" int
jaffer wilson
Added topic How to run multiple Strategy Testers?
Hello Everyone, I hope you all are doing good. I want wondering, when I started one strategy tester on my MT5 terminal, only one core of mt system was used. At the same time, I thought of testing the other Expert, but I cannot. Using the reference
jaffer wilson
Added topic How I can write file from a tester to the MQL5/Files folder?
Is there a way to copy or move the file created by the tester to the local files or at any location specified? Kindly, suggested me. I tried to use the FileCopy() function on OnTesterDeInit() function, but didn't got anything. Please guide me
jaffer wilson
Added topic OnTester() not writing the output to file.
Here is the code the I am trying to write during Optimization. int file; void OnTesterInit () {    file = FileOpen ("testingFile.csv", FILE_WRITE | FILE_CSV | FILE_READ );    if (file == INVALID_HANDLE )    {
jaffer wilson
Added topic How I can add my own column in Strategy optimizer?
Hello everyone, I am trying to print my own values in the Optimization result along with the values originally displayed by it. See the image:   One can see Pass, Result,Profit,TotalTrades, and rsi_period. If I want to add my own values
jaffer wilson
Added topic Wrong values received by MQL5 iCustom function
I am trying to call the MQL4 indicator with MQL5 using iCustom() . int test = iCustom ( _Symbol , _Period , "ADXmagic.ex4" ); I have copies the two buffers with number 0 and in the a and b of double type.    CopyBuffer (test, 0
jaffer wilson
Added topic MQL5 MT5 How to know whether the candle will go up or down from a particular level?
I am trying to identify the way using MQL5 , to know whether the coming candle will go up or down from the particular level. Can anyone help me know it, please? I am fed up with using the indicators still if there is any solution, kindly respond