We are writing our own data plugin to feed data into AB from our source. We have problem when backfilling of N symbols using Autofill.afl (Buy=1). Problem description.
- There are 3 symbols added to watchlist namely A, B and C. Symbol A loaded in Chart
- When we scan using Autofill.afl, Plugin receives ‘GetQuotesEx(…)’ call for symbols(A,B,C) and we pull data one by one in background(async).
- We are issuing WM_USER_STREAMING_UPDATE for those symbols completed downloading eg(WPARAM A/B/C, LPARAM BarReady flag set).
- Now, we are getting call back of ‘GetQuotesEx’ for the symbol loaded on chart(ie, A only) for all WM_USER_STREAMING_UPDATE
- We are not able to push data to AB for symbol B and C, even though the plugin downloaded it.
What was we are missing or the right way to handle this scenario.
Thanks in advance.
Venkat