klhztrader/KLHZ.Trader.Core/Exchange/Models/Configs/ExchangeConfig.cs

18 lines
808 B
C#

namespace KLHZ.Trader.Core.Exchange.Models.Configs
{
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; } = [];
public InstrumentSettings[] InstrumentsSettings { get; set; } = [];
}
}