I want to create multiple empty pd.DataFrame and I thought I can do it with a loop like this:
for share in tickers:
share=pd.DataFrame()
with:
tickers=['AAPL', 'MSFT', '^GSPC', 'VNA.DE', '^GDAXI', 'HJUE.HA', 'GYC.DE', '2B7K.DE']
But this creates a empty DataFrame named "share" and not 8 different Dataframe named like AAPL, MSFT,...