Hi,
I want to get 15 minute interval data from history. I currently do this:
prices = history(60*390,"1m", "price").resample("15m")
My question is does this return the mean of every 15 minute interval or the last price of every 15 minute interval?
Could someone please help?