ExampleService/ExampleService.mq5

16 lines
723 B
MQL5
Raw Permalink Normal View History

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