stas-prokopiev / binance_historical_data

python PYPI package to dump all needed crypto historical data from binance just by 2 lines of code
MIT License
79 stars 27 forks source link

Fix start date #3

Closed digisignglobal closed 1 year ago

stas-prokopiev commented 2 years ago

Hi, I'm sorry I can't merge your commit, This method dump_data was designed the way that it downloads all monthly data and daily data which is absent in monthly data. When the new month appears it downloads the new month and method data_dumper.delete_outdated_daily_results() can be called to delete duplicated data in the daily data. The reason for such a design is that monthly data has the longer history so it's better to use it when you can.

But if you want to download exactly all available daily data separately, I can write for you another method which will do it.