crypto_quant/statistics_main.py

15 lines
394 B
Python
Raw Normal View History

2025-08-07 10:09:51 +00:00
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()