16 lines
697 B
C#
16 lines
697 B
C#
namespace KLHZ.Trader.Core.Exchange.Models.Configs
|
|
{
|
|
public class ExchangeConfig
|
|
{
|
|
public bool ExchangeDataRecievingEnabled { get; init; }
|
|
public decimal FutureComission { get; init; }
|
|
public decimal ShareComission { get; init; }
|
|
public decimal AccountCashPart { get; init; }
|
|
public decimal AccountCashPartFutures { get; init; }
|
|
public string[] DataRecievingInstrumentsFigis { get; init; } = [];
|
|
public string[] TradingInstrumentsFigis { get; init; } = [];
|
|
public string[] ManagingAccountNamePatterns { get; init; } = [];
|
|
public InstrumentSettings[] InstrumentsSettings { get; init; } = [];
|
|
}
|
|
}
|