At 9:43 PM -0500 6/30/98, Randy Hogan wrote:
>
>Looking for code for the largest range bar in the last 10 bars.
>
Value1 = Range;
for Value2 = 1 to 9 begin
Value1 = iff(Range[Value2] > Value1, Range[Value2], Value1);
end;
The value of the largest range bar is then Value1.
Bob Fulks
|