我有一个问题应该有一个非常基本的解决方案,但是我找不到它。
我有以下代码可以帮助我提取某些股票的信息。但是,我如何切片数据,以便它只给出特定股票的数据。
例如,我过滤数据,以便我只获取'TSLA'的股票信息。任何帮助将不胜感激。
import pandas as pd
from pandas.io.data import DataReader
from datetime import datetime
symbols = ['GOOG','AAPL','F','TSLA']
df = pd.DataFrame()
for symbol in symbols:
ClosingPrice = DataReader(symbol, 'yahoo', datetime(2015,1,1), datetime(2015,9,1))
ClosingPrice = ClosingPrice.reset_index()
ClosingPrice['Symbol'] = symbol
df = df.append(ClosingPrice)
print (df)