Forum

Why does the service desk never answer ?

I don't know if you have the same issue, but everytime that I opened a request to MQL5 service desk, they never respond. I was banned from "freelance" and I would like to know if some moderator could help me. I would like to know if is there anything that I can do to fix it

Create Subwindow on top?

Is it possible to anchor a subwindow on top of the chart window instead of the bottom

Return Expert File Name

Is there any fuction to return the expert file name? For MQL4 there is WindowExpertName () function, but I didn't find anything for MQL5

*.hcc file is missing (deleted)

I have noticed that the "*.hcc" files have been deleted from History folder. The old ones, before 2018. I have these files backup in another folder and I copied it again to the History folder, however MT5 had deleted the files again. Does anyone know why this is happening

Notification after optimization (strategy tester) done

Hi folks, Please, is there a way to call " SendNotification " function after some optimization has finished? I think OnTesterDeInit do not allow this kind of function, but I think there is another way. Any fellow could help me

Clean (erase) Arrays

I'm trying to make a function to clear all the informations in an array every new day. I'm using the code below, but it's not working. The informations keeps in the array after new day. datetime new_day= 0 ; double pw[]; int Agr_Res= 20 ; if ( iTime ( _Symbol , PERIOD_D1 , 0 )>new_day) {

Multiples EAs -Same or diferents MT5 ?

Hi, If I would like to run 3 different EAs at the same account. Is it better open 1 MT5 for each EA or it should be more faster use the same MT5 for all EAs

Blocking copy trades EAs.

Hi, Is there any way to block or avoid someone use more than one EA at the same account. I wish to use only my EA and avoid someone use a "copier trades" to another account (from demo to real for example)

Array sorted by decreasing time

Hi, How can I sort some array by decreasing time. So, for example, always the position 0 will be the last data received, position 1 will be the second last, and so on. I Have some code example but it is stucked on the part that I need to sort the array. double ex_array[ 6 ]; int count= 0 ; datetime

Return Positive value of a number

Is there a diferent way or a function to return the positive value of a number? I know I can use this kind of code, but is there any simple way? if (number< 0 ) number=number*- 1 ;