Ejemplo n.º 1
0
 public string GetDepositAddress(AccountInfo account, string symbol)
 {
     return(Exchange.CheckCreateDeposit(account, symbol));
 }
Ejemplo n.º 2
0
 public TradingResult Buy(AccountInfo account, double lowestAsk, double amount)
 {
     return(Exchange.Buy(account, this, lowestAsk, amount));
 }
Ejemplo n.º 3
0
 public bool UpdateAccountTrades(AccountInfo account)
 {
     return(UpdateAccountTrades(account, null));
 }
Ejemplo n.º 4
0
 public bool UpdateBalance(AccountInfo account, string symbol)
 {
     return(Exchange.GetBalance(account, symbol));
 }
Ejemplo n.º 5
0
 public abstract bool UpdateOpenedOrders(AccountInfo account, Ticker ticker);
Ejemplo n.º 6
0
 public abstract bool UpdateAccountTrades(AccountInfo account, Ticker ticker);
Ejemplo n.º 7
0
 public abstract TradingResult Sell(AccountInfo account, Ticker ticker, double rate, double amount);
Ejemplo n.º 8
0
 public TradeInfoItem(AccountInfo account, Ticker ticker)
 {
     Account = account;
     Ticker  = ticker;
 }
Ejemplo n.º 9
0
 public abstract string CreateDeposit(AccountInfo account, string currency);
Ejemplo n.º 10
0
 public abstract bool GetDeposites(AccountInfo account);
Ejemplo n.º 11
0
 public abstract bool GetBalance(AccountInfo info, string currency);
Ejemplo n.º 12
0
 public abstract bool UpdateBalances(AccountInfo info);
Ejemplo n.º 13
0
 public bool UpdateOpenedOrders(AccountInfo account)
 {
     return(UpdateOpenedOrders(account, null));
 }
Ejemplo n.º 14
0
 public TradingResult Sell(AccountInfo account, double highestBid, double amount)
 {
     return(Exchange.Sell(account, this, highestBid, amount));
 }
Ejemplo n.º 15
0
 public abstract bool Cancel(AccountInfo account, string orderId);
Ejemplo n.º 16
0
 public bool Withdraw(AccountInfo account, string currency, string address, string paymentId, double amount)
 {
     return(Exchange.Withdraw(account, currency, address, paymentId, amount));
 }
Ejemplo n.º 17
0
 public abstract bool Withdraw(AccountInfo account, string currency, string adress, string paymentId, double amount);
 public void Edit(AccountInfo account)
 {
     EditedAccount = account;
     AddNew();
 }
Ejemplo n.º 19
0
 public abstract void OnAccountRemoved(AccountInfo info);