|
Functions by Category Functions by Alphabetical list
Similar to Highest, but returns the bar where the highest value occurred. Returns a column. Examples:
#returns the number of bars ago that the highest high occurred.
my $highesthighbar = Now(HighestBar(High,12));
#This statement is true
Now(Highest(Close,12))==Ago(Close,Now(HighestBar(Close,12)));
Related functions: Lowest , Highest , LowestBar
|