Your question is confusing... Are you trying to find the lower lows or the high of the lowest lows... If you want to know if the low was higher than the previous low then you have to use something like
If(L>Ref(L,- 1),1,0)
The statement is an if statement asking If todays low is greater than the low of yesterday the binary 1 otherwise 0.
This is basic I'm sure others with better programming of MS can be more helpful.
--- In equismetastock@ yahoogroups. com, mingsum lioa <mlioa@xxx> wrote:
>
> Hi all,
>
> I want to build a indicator that will track highs and lows. I try to use the Higher High Value
>
> function to track the Highs but do not know how to track the High lows.
>
> Can anyone offer some help?
>
> Thanks
>
> CM
>