Login Page - Create Account

Support Board


Date/Time: Wed, 24 Jun 2026 00:23:44 +0000



Post From: How to get option contract volume for /ES futures using ACSIL

[2026-06-23 20:44:43]
User944318 - Posts: 63
How can I access options on /ES futures volume using acsil? I was able to successfully get their price using a similar method and have been trying to use the following to get their volume:

auto GetOptPrice = [&](const SCString& sym)->double
{
s_SCBasicSymbolData q;
// GetBasicSymbolData returns void, third parameter true means subscribe/request data
sc.GetBasicSymbolData(sym.GetChars(), q, 1);

return (double)q.DailyVolume;
};