From 47ee06ab4640bd9775577449fb370427e7452c00 Mon Sep 17 00:00:00 2001 From: Martin Martinov Date: Thu, 19 Sep 2019 01:36:06 +0000 Subject: [PATCH] Fixes a typo in OrderTypeString (#47) simit --> limit --- Trade/Order.mqh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Trade/Order.mqh b/Trade/Order.mqh index d046336..15b5191 100644 --- a/Trade/Order.mqh +++ b/Trade/Order.mqh @@ -31,7 +31,7 @@ interface OrderMatcher //+------------------------------------------------------------------+ //| Some contant strings | //+------------------------------------------------------------------+ -const string OrderTypeString[]={"buy","sell","buy limit","sell simit","buy stop","sell stop","balance"}; +const string OrderTypeString[]={"buy","sell","buy limit","sell limit","buy stop","sell stop","balance"}; const string ORDER_FROM_STR="from #"; const string ORDER_PARTIAL_CLOSE_STR="partial close"; const string ORDER_CLOSE_HEDGE_BY_STR="close hedge by #";