Added function CopyRates. Implemented Backtesting

This commit is contained in:
DW
2016-07-25 16:49:15 +03:00
parent edc14d6c97
commit e312f52b74
14 changed files with 485 additions and 75 deletions
+9
View File
@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace MtApi.Responses
{
public class CopyRatesResponse: ResponseBase
{
public List<MqlRates> Rates { get; set; }
}
}