コード例 #1
0
 public bool Withdraw(AccountInfo account, string currency, string address, string paymentId, double amount)
 {
     return(Exchange.Withdraw(account, currency, address, paymentId, amount));
 }
コード例 #2
0
 public TradingResult Sell(AccountInfo account, double highestBid, double amount)
 {
     return(Exchange.SellLong(account, this, highestBid, amount));
 }
コード例 #3
0
 public string GetDepositAddress(AccountInfo account, string symbol)
 {
     return(Exchange.CheckCreateDeposit(account, symbol));
 }
コード例 #4
0
 public TradingResult Buy(AccountInfo account, double lowestAsk, double amount)
 {
     return(Exchange.BuyLong(account, this, lowestAsk, amount));
 }
コード例 #5
0
 public bool UpdateBalance(AccountInfo account, string symbol)
 {
     return(Exchange.GetBalance(account, symbol));
 }