I wanted to specify the format of the date because it\'s in European format(Or else the dates will not be in order after I make it as index column). I did exactly from the t
Just do this:
df = pd.read_csv('GBPUSD.csv', index_col=0, parse_dates=True)