40 lines
1.3 KiB
MQL5
40 lines
1.3 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| tutorial1.mq5 |
|
|
//| Copyright 2023, MetaQuotes Ltd. |
|
|
//| https://www.mql5.com |
|
|
//+------------------------------------------------------------------+
|
|
//+------------------------------------------------------------------+
|
|
//| Expert initialization function |
|
|
//+------------------------------------------------------------------+
|
|
int OnInit() {
|
|
//---
|
|
|
|
int count = 0;
|
|
|
|
string header = "This is a test";
|
|
|
|
// Increment by 1
|
|
count++;
|
|
|
|
Print(header);
|
|
|
|
|
|
|
|
//---
|
|
return(INIT_SUCCEEDED);
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Expert deinitialization function |
|
|
//+------------------------------------------------------------------+
|
|
void OnDeinit(const int reason) {
|
|
//---
|
|
|
|
}
|
|
//+------------------------------------------------------------------+
|
|
//| Expert tick function |
|
|
//+------------------------------------------------------------------+
|
|
void OnTick() {
|
|
//---
|
|
|
|
}
|
|
//+------------------------------------------------------------------+
|