¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io

Re: TWS API | Options market data request issue.


 

TWS API team?buried in the research of the problem...

I'm currently ignore that error as a warning, and it seems
market data comes after some time.


// C#

? ? ? ? public override void error(int id, int errorCode, string errorMsg)
? ? ? ? {
? ? ? ? ? ? // to ignore
? ? ? ? ? ? /*
? ? ? ? ? ? ?* Code: 10090, Msg: Part of requested market data is not subscribed. Subscription-independent ticks are still active.Delayed market data is available.
? ? ? ? ? ? ?* Code: 10167, Msg: Requested market data is not subscribed. Displaying delayed market data...
? ? ? ? ? ? ?* Code: 10197, Msg: No market data during competing live session
? ? ? ? ? ? ?*/
? ? ? ? ? ? HashSet<int> warnings = new HashSet<int>() { /*2104, 2106, 2108,*/ 10167, 10090, 10197 };
? ? ? ? ? ? if (warnings.Contains(errorCode))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? return;
? ? ? ? ? ? }
? ? ? ? }

Join [email protected] to automatically receive all group messages.