Mid Night Angel

This commit is contained in:
Nkondog Anselme
2022-03-01 15:44:13 +01:00
parent 981a0e21e5
commit ba8ecaa0d7
2 changed files with 35 additions and 0 deletions
Binary file not shown.
+35
View File
@@ -0,0 +1,35 @@
//+------------------------------------------------------------------+
//| MidNightAngel.mq5 |
//| Copyright 2022, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2022, MetaQuotes Ltd."
#property link "https://www.mql5.com"
#property version "1.00"
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//---
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---
}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
{
//---
}
//+------------------------------------------------------------------+