gryps2/EA-code/handy_systems/EXPERIMENTAL/HS-E-000-EMPTY-EA/HS-E-000-EMPTY-EA.mq4

37 lines
1.3 KiB
MQL4
Raw Permalink Normal View History

2025-05-30 14:58:21 +02:00
//+------------------------------------------------------------------+
//| 000-EMPTY-EA.mq4 |
//| Copyright (c) 2024, HANDY SYSTEMS, All rights reserved |
//| |
//+------------------------------------------------------------------+
#property copyright "Copyright (c) 2024, HANDY SYSTEMS, All rights reserved"
#property version "1.0"
#property strict
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//---
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---
}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
{
//---
}
//+------------------------------------------------------------------+