Skip to content

Commit

Permalink
ftx: fix fetch trades
Browse files Browse the repository at this point in the history
  • Loading branch information
brandsimon committed Nov 12, 2019
1 parent 0af9d11 commit 3ca0869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/ftx.js
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ module.exports = class ftx extends Exchange {
'market_name': market['id'],
};
if (since !== undefined) {
request['start_time'] = since;
request['start_time'] = parseInt (since / 1000);
}
if (limit !== undefined) {
request['limit'] = limit;
Expand Down

0 comments on commit 3ca0869

Please sign in to comment.