PureBytes Links
Trading Reference Links
|
Tomasz,
If we are on the last bar, for example, and look back 20 bars, some
of them is the lowest of course, some of them is an LLV(L,20)
Suppose we see the 15th bar to be the lowest.
It doesn't mean that this bar was an L==LLV(L,20), simply because
LLV(L,20) should be counted from this 15th bar and not from here.
I hope it is more clear now.
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS" <TSOKAKIS@xxxx>
wrote:
>
> Tomasz,
> The distance from the bar where L==LLV(L,20); occurs may be any
> number of bars.
> Check please, for any stock the simple
>
> cond=L==LLV(L,20);
> Plot(Cond,"",1,2);
>
> For ^DJI, for example, after March12, 2003 we meet the condition on
> July1, 2003
> For the intermediate bars, the distance [ie barssince(cond)]
stopped
> at 76.
> On the other side, if your statement was true, we should have a
cond
> every 20 bars, which is not true.
> Dimitris Tsokakis
> --- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko"
<amibroker@xxxx>
> wrote:
> > Dimitris,
> >
> > The code I have given is correct.
> >
> > As to yours "the distance from L==LLV(L,20) may be greater",
please
> think again.
> >
> > The distance from L == LLV( L, 20 ) can not be greater than 19.
> >
> > LLV( L, 20 ) is just one of the value (the lowest) during
> > last 20 bars. Therefore L == LLV( L, 20 ) must be met in one of
> those
> > last 20 bars (counting from 0..19)
> >
> > Best regards,
> > Tomasz Janeczko
> > amibroker.com
> > ----- Original Message -----
> > From: "DIMITRIS TSOKAKIS" <TSOKAKIS@xxxx>
> > To: <amibroker@xxxxxxxxxxxxxxx>
> > Sent: Tuesday, September 02, 2003 2:32 PM
> > Subject: [amibroker] Re: Help needed - 20 period low
> >
> >
> > > 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/
> > > > >
> > > > >
> > > > >
> > >
> > >
> > >
> > > 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/
|