int buyVolume = barsType.Volumes[CurrentBar].TotalBuyingVolume;
int sellVolume = barsType.Volumes[CurrentBar].TotalSellingVolume;
I try to compile this, but it tells me "the name barsType doesn't exist in the current context.'
Please tell me what does. I literally just want to populate my variable with the total buy volume or total sell volume for the current bar.

Comment