diff --git a/Experts/Nkanven/Gervis.ex5 b/Experts/Nkanven/Gervis.ex5 index 674312b..7c2546c 100644 Binary files a/Experts/Nkanven/Gervis.ex5 and b/Experts/Nkanven/Gervis.ex5 differ diff --git a/Experts/Nkanven/MidNightAngel.mq5 b/Experts/Nkanven/MidNightAngel.mq5 new file mode 100644 index 0000000..3eb85fd --- /dev/null +++ b/Experts/Nkanven/MidNightAngel.mq5 @@ -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() + { +//--- + + } +//+------------------------------------------------------------------+