From ae4b8849083ed27b36dcf641fdd29450f0348d27 Mon Sep 17 00:00:00 2001 From: vdemydiuk Date: Mon, 14 Dec 2015 12:04:11 +0200 Subject: [PATCH] Updated enum of connection states for working with backtesting --- MtApi/MtConnectionState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MtApi/MtConnectionState.cs b/MtApi/MtConnectionState.cs index c39404f8..a1655c2d 100755 --- a/MtApi/MtConnectionState.cs +++ b/MtApi/MtConnectionState.cs @@ -7,9 +7,9 @@ namespace MtApi { public enum MtConnectionState { + Disconnected, Connecting, Connected, - Disconnected, Failed } }