9 lines
289 B
Python
9 lines
289 B
Python
from BitcoinPricePredictor import BitcoinPricePredictor
|
|
|
|
if __name__ == "__main__":
|
|
predictor = BitcoinPricePredictor(db_path='bitcoin_historical_data.db', timeframe='H')
|
|
predictor.load_data()
|
|
predictor.train_model()
|
|
predictor.evaluate_model()
|
|
predictor.plot_history()
|