Exemplo n.º 1
0
		internal BrokerAccount(FreeQuant.Providers.BrokerAccount brokerAccount)
		{
			this.brokerAccount = brokerAccount;
		}
Exemplo n.º 2
0
 internal BrokerAccount(FreeQuant.Providers.BrokerAccount brokerAccount)
 {
     this.brokerAccount = brokerAccount;
 }
Exemplo n.º 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);
		}
Exemplo n.º 4
0
 public void Add(BrokerAccount account)
 {
     this.accountsByName.Add(account.Name, account);
     this.accountsByIndex.Add(account);
 }
Exemplo n.º 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));
 }
Exemplo n.º 6
0
		public void Add(BrokerAccount account)
		{
			this.accountsByName.Add(account.Name, account);
			this.accountsByIndex.Add(account);
		}