Ejemplo n.º 1
0
 public bool Cancel(OpenedOrderInfo info)
 {
     return(Exchange.Cancel(Exchange.DefaultAccount, info.OrderId));
 }
Ejemplo n.º 2
0
 public void StartListenTickerStream()
 {
     Exchange.StartListenTickerStream(this);
 }
Ejemplo n.º 3
0
 public ResizeableArray <CandleStickData> GetCandleStickData(int candleStickPeriodMin, DateTime start, int periodInSeconds)
 {
     return(Exchange.GetCandleStickData(this, candleStickPeriodMin, start, periodInSeconds));
 }
Ejemplo n.º 4
0
 public virtual bool UpdateMyTrades()
 {
     return(Exchange.UpdateAccountTrades(Exchange.DefaultAccount, this));
 }
Ejemplo n.º 5
0
 public TradingResult Sell(AccountInfo account, double highestBid, double amount)
 {
     return(Exchange.Sell(account, this, highestBid, amount));
 }
Ejemplo n.º 6
0
 public bool Withdraw(AccountInfo account, string currency, string address, string paymentId, double amount)
 {
     return(Exchange.Withdraw(account, currency, address, paymentId, amount));
 }
Ejemplo n.º 7
0
 public string GetDepositAddress(AccountInfo account, string symbol)
 {
     return(Exchange.CheckCreateDeposit(account, symbol));
 }
Ejemplo n.º 8
0
 public TradingResult Buy(AccountInfo account, double lowestAsk, double amount)
 {
     return(Exchange.Buy(account, this, lowestAsk, amount));
 }
Ejemplo n.º 9
0
 public bool ProcessOrderBook(string text)
 {
     return(Exchange.ProcessOrderBook(this, text));
 }
Ejemplo n.º 10
0
 public bool UpdateBalance(AccountInfo account, string symbol)
 {
     return(Exchange.GetBalance(account, symbol));
 }
Ejemplo n.º 11
0
 public void StopListenTradingHistory()
 {
     Exchange.StopListenTradeHistory(this);
 }
Ejemplo n.º 12
0
 public void StopListenOrderBook()
 {
     Exchange.StopListenOrderBook(this);
 }
Ejemplo n.º 13
0
 public void StopListenKlineStream()
 {
     Exchange.StopListenKline(this);
 }
Ejemplo n.º 14
0
 public AccounTradesCollectionForm(Exchange exchange)
 {
     InitializeComponent();
     Text     = exchange.Name + " - Trade History";
     Exchange = exchange;
 }
 public LogoInfo(Exchange e)
 {
     Exchange = e;
 }