-
-
Save woshizilong/40bbf9752a1afdae5992e98dac0b9d0c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Raw Package | |
import numpy as np | |
import pandas as pd | |
#Data Source | |
import yfinance as yf | |
#Data viz | |
import plotly.graph_objs as go | |
#Importing market data | |
data = yf.download(tickers='BTC-USD',period = '8d', interval = '90m') | |
#Adding Moving average calculated field | |
data['MA5'] = data['Close'].rolling(5).mean() | |
data['MA20'] = data['Close'].rolling(20).mean() | |
#declare figure | |
fig = go.Figure() | |
#Candlestick | |
fig.add_trace(go.Candlestick(x=data.index, | |
open=data['Open'], | |
high=data['High'], | |
low=data['Low'], | |
close=data['Close'], name = 'market data')) | |
#Add Moving average on the graph | |
fig.add_trace(go.Scatter(x=data.index, y= data['MA20'],line=dict(color='blue', width=1.5), name = 'Long Term MA')) | |
fig.add_trace(go.Scatter(x=data.index, y= data['MA5'],line=dict(color='orange', width=1.5), name = 'Short Term MA')) | |
#Updating X axis and graph | |
# X-Axes | |
fig.update_xaxes( | |
rangeslider_visible=True, | |
rangeselector=dict( | |
buttons=list([ | |
dict(count=3, label="3d", step="days", stepmode="backward"), | |
dict(count=5, label="5d", step="days", stepmode="backward"), | |
dict(count=7, label="WTD", step="days", stepmode="todate"), | |
dict(step="all") | |
]) | |
) | |
) | |
#Show | |
fig.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment