Skip to content

Commit

Permalink
(feat) remove ms from download candles
Browse files Browse the repository at this point in the history
  • Loading branch information
cardosofede committed Jul 12, 2024
1 parent 5e871a4 commit d61b817
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/pages/data/download_candles/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
connector=connector,
trading_pair=trading_pair,
interval=interval,
start_time=int(start_datetime.timestamp()) * 1000,
end_time=int(end_datetime.timestamp()) * 1000
start_time=int(start_datetime.timestamp()),
end_time=int(end_datetime.timestamp())
)

candles_df = pd.DataFrame(candles)
Expand Down

0 comments on commit d61b817

Please sign in to comment.