feat(Data): fetch prices from cryptocompare (and alphavantage)

This commit is contained in:
Mark Aron Szulyovszky
2021-11-09 12:58:05 +01:00
parent 9f54cdc81f
commit 58137a0f36
3 changed files with 42 additions and 0 deletions
File diff suppressed because it is too large Load Diff
+18
View File
@@ -0,0 +1,18 @@
#%%
import pandas as pd
oecd_housing = pd.read_csv('data/oecd_housing_prices.csv')
# we're only interested in "real" prices
oecd_housing = oecd_housing[oecd_housing['SUBJECT'] == 'REAL']
# we're only interested annual data
oecd_housing = oecd_housing[oecd_housing['FREQUENCY'] == 'A']
oecd_housing
# %%
countries = oecd_housing['LOCATION'].unique()
countries
# %%
oecd_housing[oecd_housing['LOCATION'] == 'HUN'].plot(x = "TIME", y= "Value")
# %%
# %%