Skip to content

Instantly share code, notes, and snippets.

@Zmey56
Created May 11, 2022 20:46
Show Gist options
  • Save Zmey56/8082143e06cda31b68e279c70258d9d8 to your computer and use it in GitHub Desktop.
Save Zmey56/8082143e06cda31b68e279c70258d9d8 to your computer and use it in GitHub Desktop.
import yfinance as yf
import pandas as pd
import numpy as np
from scipy.stats import norm
import matplotlib.pyplot as plt
import seaborn as sns
cryptocurrency = ['BTC-USD', 'ETH-USD', 'USDT-USD', 'XRP-USD', 'LTC-USD', 'BCH-USD', 'ADA-USD', 'BNB-USD', 'LINK-USD']
data= yf.download(cryptocurrency, start="2018-01-01", end="2020-12-31")['Close']
[*********************100%***********************] 9 of 9 completed
data.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment