17 lines
716 B
C#
17 lines
716 B
C#
namespace KLHZ.Trader.Core.Exchange
|
|
{
|
|
public class ExchangeConfig
|
|
{
|
|
public bool ExchangeDataRecievingEnabled { get; set; }
|
|
public decimal StopBuyLengthMinuts { get; set; }
|
|
public decimal FutureComission { get; set; }
|
|
public decimal ShareComission { get; set; }
|
|
public decimal AccountCashPart { get; set; }
|
|
public decimal AccountCashPartFutures { get; set; }
|
|
public decimal DefaultBuyPartOfAccount { get; set; }
|
|
public string[] DataRecievingInstrumentsFigis { get; set; } = [];
|
|
public string[] TradingInstrumentsFigis { get; set; } = [];
|
|
public string[] ManagingAccountNamePatterns { get; set; } = [];
|
|
}
|
|
}
|