You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
Yeah I have the exact same problem, except it is 100 items being returned for me. Also the docs shows :param kwargs: [Optional] startAt, endAt, currentPage, pageSize where the paging does not exist.
import datetime
import time
t_start = datetime.datetime(2021, 1, 1)
t_start = time.mktime(t_start.timetuple())
t_stop = datetime.datetime(2021, 2, 1)
t_stop = time.mktime(t_start.timetuple())
data = marketclient.get_kline('REQ-BTC', '1min', startAt=t_start, endAt=t_stop)
all returned data is the present day - 1500 pieces of data, whether that be 1min or 1day etc...
The text was updated successfully, but these errors were encountered: