PureBytes Links
Trading Reference Links
|
Tomasz,
I have a slight disagreement with your code.
Your barssincelow can not be greater than 19.
But, the distance from L==LLV(L,20) may be greater.
If KK question was for 24 periods ago, instead of 4 periods ago, then
your code would give no solution.
My proposal is
Cond=L==LLV(L,20);
Solution=Cond AND Ref(BarsSince(Cond),-1)>3);
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <amibroker@xxxx>
wrote:
> Hello,
>
> barssincelow = LLVBars( Low, 20 );
>
> lowsetup = barssincelow == 0 AND Ref( barsincelow, -1 ) > 3;
>
> Hope this helps.
>
> Best regards,
> Tomasz Janeczko
> amibroker.com
> ----- Original Message -----
> From: "kk12338" <kk2628@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Tuesday, September 02, 2003 12:05 PM
> Subject: [amibroker] Help needed - 20 period low
>
>
> > Hi,
> >
> > A setup I want to translate into AFL is :
> > 1. Today is a new 20-peiod low, and
> > 2. Previous 20-period low is at least 4 periods ago
> >
> > I've written as follow but seems something is wrong,no signal was
> > seen.
> >
> > lowsetup=L<ref(LLV(L,20),-1) and barssince(L<ref(LLV(L,20),-2))>3;
> >
> > Any help appreciated.
> >
> > Thanks
> > KK
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > --------------------------------------------
> > Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> >
> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >
> >
> >
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for Your HP, Epson, Canon or Lexmark
Printer at Myinks.com. Free s/h on orders $50 or more to the US & Canada. http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/l.m7sD/LIdGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|