Strategy using forward Volatility

What is the format of Nifty.csv used in the python script?

 

Hello Hemant,



The format for data files is comma separated value (csv) as named in the file extension as well. 

 

You can also check the columns in the file by running



df = pd.read_csv('Nifty.csv')

print(df.columns)

print(df.head())



All the code and data files used in the course are available in the last section of the course. Thanks