Hi,
In determining the high price for the preceeding trading day in order to compute pivot points for the current day, the PivotPoint.efs supplied by eSignal uses the following functions:
xHigh = high(inv("D"));
vHigh = xHigh.getValue(-1);
In your EFS KnowledgeBase, http://kb.esignal.com/display/2/inde...98504614830017 (descriptions for inv() function), the example given to determine the high price is as follows:
var myVar = high( -1, inv("D") );
I tried out both, and I obtained different values. I would get the same values if I use a different offset
var myVar = high(0, inv("D") );
May I know what cause the differences? Also, in terms of execution efficiency, which one is preferred?
In determining the high price for the preceeding trading day in order to compute pivot points for the current day, the PivotPoint.efs supplied by eSignal uses the following functions:
xHigh = high(inv("D"));
vHigh = xHigh.getValue(-1);
In your EFS KnowledgeBase, http://kb.esignal.com/display/2/inde...98504614830017 (descriptions for inv() function), the example given to determine the high price is as follows:
var myVar = high( -1, inv("D") );
I tried out both, and I obtained different values. I would get the same values if I use a different offset
var myVar = high(0, inv("D") );
May I know what cause the differences? Also, in terms of execution efficiency, which one is preferred?
Comment