internal BrokerAccount(SmartQuant.Providers.BrokerAccount brokerAccount)
		{
			this.brokerAccount = brokerAccount;
		}
Example #2
0
		public BrokerAccount AddAccount(string name)
		{
			SmartQuant.Providers.BrokerAccount brokerAccount = new SmartQuant.Providers.BrokerAccount(name);
			this.brokerInfo.Accounts.Add(brokerAccount);
			return new BrokerAccount(brokerAccount);
		}
Example #3
0
 public BrokerAccount AddAccount(string name)
 {
     SmartQuant.Providers.BrokerAccount brokerAccount = new SmartQuant.Providers.BrokerAccount(name);
     this.brokerInfo.Accounts.Add(brokerAccount);
     return(new BrokerAccount(brokerAccount));
 }
Example #4
0
 internal BrokerAccount(SmartQuant.Providers.BrokerAccount brokerAccount)
 {
     this.brokerAccount = brokerAccount;
 }