public BrokerSettings(DoTenTraderManager atb_manager) { this.atb_manager_ = atb_manager; this.InitializeComponent(); this.ChangeLanguage(); this.broker_infos_ = new Dictionary <string, BrokerInfo>(); this.broker_infos_ = atb_manager.BrokerList; this.InitComboBroker(); this.SetAPIValues(); }
public Broker(DoTenTraderManager atb_manager) { this.atb_manager_ = atb_manager; this.is_running_ = true; }
public ByBit(DoTenTraderManager atb_manager) : base(atb_manager) { this.rate_thread_ = new Thread(new ThreadStart(this.ProcessTickerThread)); this.rate_thread_.IsBackground = true; }