Package com.xeiam.xchange

Examples of com.xeiam.xchange.NotAvailableFromExchangeException


  }

  @Override
  public Trades getTrades(final CurrencyPair currencyPair, final Object... args) {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here


  }

  @Override
  public OpenOrders getOpenOrders() throws NotAvailableFromExchangeException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

  }

  @Override
  public String placeLimitOrder(LimitOrder limitOrder) throws NotAvailableFromExchangeException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

  }

  @Override
  public boolean cancelOrder(String orderId) throws NotAvailableFromExchangeException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

   *
   * @return CryptsyAccountInfo DTO
   */
  public CryptsyGenericReturn<String> getWalletStatus() throws IOException, ExchangeException {

    throw new NotAvailableFromExchangeException();
    // return cryptsy.getwalletstatus(apiKey, signatureCreator, nextNonce());
  }
View Full Code Here

  }

  @Override
  public String placeMarketOrder(MarketOrder marketOrder) throws IOException, BitstampException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

  }

  @Override
  public String withdrawFunds(String currency, BigDecimal amount, String address) throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

  }

  @Override
  public String requestDepositAddress(String currency, String... args) throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

  }

  @Override
  public OrderBook getOrderBook(CurrencyPair currencyPair, Object... args) throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

  }

  @Override
  public Trades getTrades(CurrencyPair currencyPair, Object... args) throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

TOP

Related Classes of com.xeiam.xchange.NotAvailableFromExchangeException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.