15 lines
583 B
C#
15 lines
583 B
C#
namespace KLHZ.Trader.Core.Exchange
|
|
{
|
|
public class ExchangeConfig
|
|
{
|
|
public bool ExchangeDataRecievingEnabled { 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[] AllowedInstrumentsFigis { get; set; } = [];
|
|
public string[] ManagingAccountNamePatterns { get; set; } = [];
|
|
}
|
|
}
|