Exemple #1
0
		internal BrokerAccount(FreeQuant.Providers.BrokerAccount brokerAccount)
		{
			this.brokerAccount = brokerAccount;
		}
Exemple #2
0
 internal BrokerAccount(FreeQuant.Providers.BrokerAccount brokerAccount)
 {
     this.brokerAccount = brokerAccount;
 }
Exemple #3
0
		public BrokerAccount AddAccount(string name)
		{
			FreeQuant.Providers.BrokerAccount brokerAccount = new FreeQuant.Providers.BrokerAccount(name);
			this.brokerInfo.Accounts.Add(brokerAccount);
			return new BrokerAccount(brokerAccount);
		}
 public void Add(BrokerAccount account)
 {
     this.accountsByName.Add(account.Name, account);
     this.accountsByIndex.Add(account);
 }
Exemple #5
0
 public BrokerAccount AddAccount(string name)
 {
     FreeQuant.Providers.BrokerAccount brokerAccount = new FreeQuant.Providers.BrokerAccount(name);
     this.brokerInfo.Accounts.Add(brokerAccount);
     return(new BrokerAccount(brokerAccount));
 }
Exemple #6
0
		public void Add(BrokerAccount account)
		{
			this.accountsByName.Add(account.Name, account);
			this.accountsByIndex.Add(account);
		}