Hi 

I was trying to retrieve historical FOREX data from FXCM in both research book and my algorithm.

However, I'm getting empty data all the time using below snippet:

qb = QuantBook()
usdchf = qb.AddForex(
    'GBPCHF', 
    Resolution.Minute, 
    Market.FXCM
)
history = qb.History(usdchf.Symbol, 360, Resolution.Minute)
history.head()

 

Can anyone help me out here?