Hi there,

I'm working on an algorithm which requires a stock price resample to 30 minutes. What I used to do in Qualtopian is a simple line below:

spy_prices = data.history(context.spy, "price", 1600, "1m").resample('30T',  closed='right', label='right').last().dropna()

However I didn't find such syntex in Quantconnect. Could anyone help with it?

Thanks,

Wenbo

Author