CryptoMarketParser/main_trend_analysis.py
2025-03-25 08:16:13 +08:00

7 lines
244 B
Python

from bitcoin_trend_analysis import BitcoinTrendAnalysis
if __name__ == "__main__":
ma = BitcoinTrendAnalysis(db_path='databases/bitcoin_historical_data.db')
ma.load_data()
ma.analyze_trends_peaks(distance=1, prominence_factor=0.1)