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