This is my code.
import
pandas as pd
import googlefinance.client as gf
param = {'q': 'FB','i': "86400",'x': "NASD",'P': "3M"}
df = pd.DataFrame(gf.get_price_data(param))
print(df)
For some reason, the results dont produce anything in the columns. Do I need to write more?
Empty DataFrame
Columns: [Open, High, Low, Close, Volume]
Index: []
This is my code.
For some reason, the results dont produce anything in the columns. Do I need to write more?
Empty DataFrame
Columns: [Open, High, Low, Close, Volume]
Index: []