検索
プロダクト
コミュニティ
マーケット
ニュース
ブローカー
詳細
JA
始めましょう
コミュニティ
/
アイデア
/
Predicting BTC price for the next month
ビットコイン/米ドル
ロング
Predicting BTC price for the next month
dadehkav_techの投稿
フォロー
フォロー
2022年1月1日
5
6
6
2022年1月1日
Predicting BTC price for the next 30 days by using neural prophet in a simple manner.
Black dots represent reality, and the blue line is the prediction.
Here is the code:
if 'google.colab' in str(get_ipython()):
!pip install neuralprophet
import pandas as pd
df = pd.read_csv("BTC.csv")
df.rename(columns={'Date': 'ds', 'Price (Close)': 'y'}, inplace=True)
df['ds'] = pd.to_datetime(df['ds'], errors='coerce', utc=True )
df['ds'] = df['ds'].dt.strftime('%Y-%m-%d %H:%M')
from neuralprophet import NeuralProphet, set_log_level
set_log_level("ERROR")
nprophet_model = NeuralProphet(seasonality_mode='multiplicative')
metrics = nprophet_model.fit(df, freq="d")
future_df = nprophet_model.make_future_dataframe(df,
periods = 30,
n_historic_predictions=True)
preds_df_2 = nprophet_model.predict(future_df)
Please share your feedback, especially if you see mistakes in the process.
And remember:
There is always a possibility for error.
Beyond Technical Analysis
dadehkav_tech
フォロー
他のメディア:
免責事項
これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは
利用規約
をご覧ください。