Hi,
I would like to access the last 6 ask volume, inside volume, and bid volume values so that I can create an average and/or highest high from them.
Then I would compare the above to the currentlast values (with computeonclose(true)).
I know there are no historical values for these but historical values are stored once you use:
"return new Array(nAskVol, nInsideVol, nBidVol);"
Question: How do I access the last n # (i.e. last 6) values for each before they are plotted on the chart with:
"return new Array(nAskVol, nInsideVol, nBidVol);"
so I can do a comparison of the last values with the average/highest high of the last 6 values?
I attached the "BidAskVolume.efs" I found in the file share area.
Thank you in advance.
PS. my attempts at "nAskVol(-1), etc have failed.
I would like to access the last 6 ask volume, inside volume, and bid volume values so that I can create an average and/or highest high from them.
Then I would compare the above to the currentlast values (with computeonclose(true)).
I know there are no historical values for these but historical values are stored once you use:
"return new Array(nAskVol, nInsideVol, nBidVol);"
Question: How do I access the last n # (i.e. last 6) values for each before they are plotted on the chart with:
"return new Array(nAskVol, nInsideVol, nBidVol);"
so I can do a comparison of the last values with the average/highest high of the last 6 values?
I attached the "BidAskVolume.efs" I found in the file share area.
Thank you in advance.
PS. my attempts at "nAskVol(-1), etc have failed.
Comment