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