Hi Community,

I have sucessfully set up a local jupyter research enviroment, and ran `BasicQuantBookTemplate.ipynb` without probelm. 

Then I am start to playing around with getting some other prebuild forex sample data with `QuantBook.History` method. However, I have found that I am only able to get daily data, but not the other resolutions.  Codes are

qb = QuantBook() qb.AddForex("EURUSD", Resolution.Tick, Market.FXCM) qb.History(qb.Securities.Keys, 500)

It returns nothing. But if I change the resolution to daily, it returns some data. Actually only daily data does work, all the other resolutions returns nothing. Anyone knows why? And How can I fix this? Many thansk in advance.

 

Author