asking about EA refresh time

Nov 20, 2020 at 10:06
1,264 المشاهدات
2 الردود
عضو منذ Sep 26, 2013   10 المشاركات
Nov 20, 2020 at 10:06

Hello
I am developing an expert prototype.
i have an idea but i need help.
I need to know if we can incorporate a command line so that the expert checks the data every second and no longer relies on the tik candles on the different timeframes.
that is possible ?

I am a professional trader but I am new to MQL programming
thank you
USD
عضو منذ Aug 06, 2020   3 المشاركات
Nov 24, 2020 at 05:16

//mql4

//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
void OnInit()
{
while(EventSetTimer(1) != true) //set your time interval here
{
Sleep(500);
}
Print("Init OK");
}


//+------------------------------------------------------------------+
//| Timer function |
//+------------------------------------------------------------------+
void OnTimer()
{
//type your code here
}
Step by Step
عضو منذ Sep 26, 2013   10 المشاركات
Nov 24, 2020 at 10:18
Thank you soo much dhinosaurus
USD
يجب أن تكون متصلاً بـ Myfxbook لتتمكن من ترك تعليق
*لن يتم التسامح مع الاستخدام التجاري والبريد العشوائي، وقد يؤدي ذلك إلى إنهاء الحساب.
نصيحة: نشر رابط صورة أو فيديو من YouTube سيضمّنها تلقائيًا في مشاركتك!
نصيحة: اكتب العلامة @ للإكمال التلقائي لاسم المستخدم المشارك في هذه المناقشة.