I added the following lines of code in the GomDeltaVolume indicator in the GomOnBarUpdateMethod to illustrate what I am seeing. I am attaching my file which is running on a 1 minute RTH chart of ES.
Perhaps I am mistaken in my belief that the Get Property functions can be used in this way. But the code does use the complementary Set statements like the one below to fill the Values data-series.
DownVolume.Set(downvolume);
protected override void GomOnBarUpdate()
{
if (CurrentBar>lastcalcbar)
{
[I] #region AVIAT
if (CurrentBar > 2)
{
Print(Time[1] + " GETSET " + UpVolume.Get(1) + " " + DownVolume.Get(1) + " " + TotalVolume.Get(1));
Print(Time[1] + "Values " + Values[0][1] + " " + Values[1][1] + " " + Values[2][1]);
}
#endregion[/I]
..... 4/7/2010 10:07:00 AMValues 611 0 4865 4/7/2010 10:08:00 AM GETSET 0 0 0 4/7/2010 10:08:00 AMValues 0 45 2181 4/7/2010 10:09:00 AM GETSET 0 0 0 4/7/2010 10:09:00 AMValues 556 0 3917 4/7/2010 10:10:00 AM GETSET 0 0 0 4/7/2010 10:10:00 AMValues 0 103 1698 4/7/2010 10:11:00 AM GETSET 0 0 0 4/7/2010 10:11:00 AMValues 921 0 8499 4/7/2010 10:12:00 AM GETSET 0 0 0 4/7/2010 10:12:00 AMValues 0 9 3862 4/7/2010 10:13:00 AM GETSET 0 0 0 4/7/2010 10:13:00 AMValues 81 0 3297 4/7/2010 10:14:00 AM GETSET 0 0 0 4/7/2010 10:14:00 AMValues 66 0 1861 .........
