Transfer trade signals to CSignalGrid class

This commit is contained in:
Nkondog Anselme
2021-11-14 08:12:46 +01:00
parent cce74fbe56
commit 4f6e9ef117
277 changed files with 172 additions and 214658 deletions
@@ -1,19 +0,0 @@
//+------------------------------------------------------------------+
//| IEqualityComparer.mqh |
//| Copyright 2016-2017, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Interface IEqualityComparer<T>. |
//| Usage: Defines methods to support the comparison of values for |
//| equality. |
//+------------------------------------------------------------------+
template<typename T>
interface IEqualityComparer
{
//--- determines whether the specified values are equal
bool Equals(T x,T y);
//--- returns a hash code for the specified object
int HashCode(T value);
};
//+------------------------------------------------------------------+