Howdy,
Is there any way, other than high/low calcs, to read what the range displayed on the chart is?
Thanks
Mark
Is there any way, other than high/low calcs, to read what the range displayed on the chart is?
Thanks
Mark
var myHigh = 0;
var myLow = 0;
function myRange()
{
if (myHigh==0) myHigh = close(0);
if (myLow==0) myLow = close(0);
if (close(0) > myHigh) myHigh = close(0);
if (close(0) < myLow) myLow = close(0);
return myHigh - myLow;
}
Comment