Initial implementation of interface function for getting exchange history.

This commit is contained in:
Ryan O'Hara-Reid
2018-02-26 09:00:30 +11:00
parent 2ca907c341
commit 10d5abacb3
28 changed files with 220 additions and 1 deletions

View File

@@ -92,3 +92,10 @@ func (b *Bithumb) GetExchangeAccountInfo() (exchange.AccountInfo, error) {
var response exchange.AccountInfo
return response, errors.New("not implemented")
}
// GetExchangeHistory returns historic trade data since exchange opening.
func (b *Bithumb) GetExchangeHistory(p pair.CurrencyPair, assetType string) ([]exchange.TradeHistory, error) {
var resp []exchange.TradeHistory
return resp, errors.New("trade history not yet implemented")
}