crypto_quant/statistics_main.py

15 lines
394 B
Python

from core.statistics.price_volume_stats import PriceVolumeStats
import logging
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(levelname)s: %(message)s")
def main():
price_volume_stats = PriceVolumeStats()
price_stats_df, volume_stats_df, price_volume_stats_df = (
price_volume_stats.batch_price_volume_statistics()
)
if __name__ == "__main__":
main()