示例#1
0
 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();
 }
示例#2
0
 public Broker(DoTenTraderManager atb_manager)
 {
     this.atb_manager_ = atb_manager;
     this.is_running_  = true;
 }
示例#3
0
 public ByBit(DoTenTraderManager atb_manager)
     : base(atb_manager)
 {
     this.rate_thread_ = new Thread(new ThreadStart(this.ProcessTickerThread));
     this.rate_thread_.IsBackground = true;
 }