The volume reported by IB needs to be multiplied by 100 if I want them to be comparable to other data sources like Norgate.
Is there a way to do this without a function like below?
function VolMult()
{
DatabaseName = GetDatabaseName();
if( StrFind( DatabaseName, "IBKR" ) Output = V * 100; // The letters "IBKR" must be in the DB name.
else Output = V;
return Output;
}