Hello, we use RFA 8.2 C++ api to consume Level1 and Level2 market data with Open DACS integrated. We want to ensure that DACS check fail for symbols for which api will never give any data in the future. It could be because symbol is bad .. etc. We plan to handle this using status message indicating event stream is closed for given subscription.
Alternative approach is to register for completion event and do it in completion event. But problem with this approach is that, completion event is received even for subscription closed by user by calling `unregisterClient()`.
What approach do you suggest?