PureBytes Links
Trading Reference Links
|
Applying the formula below we can get the total nasdaq volume BUT ONLY if
it's used as data1. Works whatever the compression setting.
if date>date[1] then
value1=v data1 else
value1=v data1 + value1[1];
Plot1(value1,"Vol of Data1");
Unfortunately, if we use it on data2 (after rewriting the data1 references)
it "approximately" works (the only exception occurs where the same volume
stream is used for both data1 and data2) but the numbers are quite a ways
off. It also depends on the compression settings. Doesn't give the correct
result even if the bar length is the same for data1 and data2.
Sorry for so many notes to the list.. But this is driving me insane!
Thanks,
Phil
|