ExampleService/ExampleService.mq5
super.admin c72b547433 convert
2025-05-30 14:53:42 +02:00

15 lines
723 B
MQL5

//+------------------------------------------------------------------+
//| ExampleService.mq5 |
//| Mateusz Kurowski 2023 |
//| https://www.github.com/bukowa |
//+------------------------------------------------------------------+
#property service
//+------------------------------------------------------------------+
//| Service program start function |
//+------------------------------------------------------------------+
void OnStart()
{
//---
printf("Hello World!");
}
//+------------------------------------------------------------------+