* {@inheritDoc}
*/
@Override
public ExchangeSpecification getDefaultExchangeSpecification() {
ExchangeSpecification exchangeSpecification = new ExchangeSpecification(this.getClass().getCanonicalName());
exchangeSpecification.setSslUri("https://www.okcoin.cn/api");
exchangeSpecification.setHost("www.okcoin.cn");
exchangeSpecification.setExchangeName("OKCoin");
exchangeSpecification.setExchangeDescription("OKCoin is a globally oriented crypto-currency trading platform.");
exchangeSpecification.setExchangeSpecificParametersItem(SYMBOLS_PARAMETER, SYMBOLS);
exchangeSpecification.setExchangeSpecificParametersItem(INTL_SYMBOLS_PARAMETER, INTL_SYMBOLS);
exchangeSpecification.setExchangeSpecificParametersItem("Intl_SslUri", "https://www.okcoin.com/api");
exchangeSpecification.setExchangeSpecificParametersItem("Intl_Host", "www.okcoin.com");
// set to true to automatically use the Intl_ parameters for ssluri and host
exchangeSpecification.setExchangeSpecificParametersItem("Use_Intl", false);
return exchangeSpecification;
}