PureBytes Links
Trading Reference Links
|
Hello,
Would it be Sar() is less than close for bull, and Sar() greater than
close for bear.
Load into AA, n last quotations and n=1, apply to all stocks, click
explore.
Hope this helps
Anthony
CondBull=SAR()<C;//bull
condbear=SAR()>C;//bear
Filter=1;
Buy=0;
AddColumn(Condbull,"Bull");
AddColumn(Condbear,"Bear");
dereklebrun wrote:
> Hi,
> what is the way to tell AFL to scan for all stocks where parabolic
> SAR just turned from bear to bull and vice et versa ?
>
> Thanks,
> Derek
>
>
> Yahoo! Groups Sponsor
ADVERTISEMENT
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|