Hi Wabbit,
Need your help here. What's wrong with the following code? It's not plotting the high/low between the entered dates but plots the highest/lowest points on the chart.
-------------------------------------------------------------------------------------------------
{Date Inputs}
fmDate:=Input("Start yyyymmdd (0=last trade)",0,20201231,20060101);
toDate:=Input("End yyyymmdd (0=last trade)",0,20201231,0);
{Period between dates}
period:=ExtFml("Forum.DateRange", fmDate, toDate);
{High/Low}
hi:=Highest(ValueWhen(1,period,H));
lo:=Lowest(ValueWhen(1,period,L));
hi;lo
-------------------------------------------------------------------------------------------------
aksh