I have been trying to get historical Forex data. On the docs it only shows examples for 'TradeBar' however, since Forex uses 'QuoteBar', and the docs say it can use 'QuoteBar' I thought I could change up the request, but that didn't work for me.

Lean on GitHub shows a specific case where if the request is for Forex it will fail...

if (securityType == SecurityType.Forex || securityType == SecurityType.Cfd || securityType == SecurityType.Crypto) { Error("Calling this method on a Forex or CFD or Crypto security will return an empty result. Please use the generic version with QuoteBar type parameter."); }

My question is. How do I request historical QuoteBars of Forex data for a specific ticker, and maybe add an example for Forex history requests to the docs.

Thanks.

Author