PureBytes Links
Trading Reference Links
|
Artast,
#6530 has a different consideration, not exactly answering the
question.
You may find in #6537, 6538 and 6540 a specific reply.
Dimitris Tsokakis
--- In amibroker@xxxx, artast@xxxx wrote:
> Hello Tomasz,
>
> I tried to use this Filter. Unfortunately it does not generate me
> stocks with "today's" the biggest H-L range. Column0 shows all
stocks
> with the biggest H-L values from the last 10 days and you do not
know
> what date it is (date column shows the last day only). I believe CT
> wants to find the stocks with today's the biggest H-L range from
the
> last 10 days.
>
> Regards,
> artast
>
>
> --- In amibroker@xxxx, "Tomasz Janeczko" <amibroker@xxxx> wrote:
> > Hello
> >
> > The answer is:
> >
> > LastBar = Cum(1) == LastValue( Cum(1) );
> >
> > HH10 = HHV( H-L, 10 );
> >
> > Filter = ( HH10 == LastValue( HH10 ) ) AND LastBar;
> >
> > Buy = Filter; // if used in "Scan" mode
> > Sell = 0;
> >
> > NumColumns =1;
> > Column0 = HH10;
> >
> > This formula can be used in both Exploration and Scan modes.
> >
> > Best regards,
> > Tomasz Janeczko
> > ===============
> > AmiBroker - the comprehensive share manager.
> > http://www.amibroker.com
> >
> >
> > ----- Original Message -----
> > From: <colognetrader@xxxx>
> > To: <amibroker@xxxx>
> > Sent: Tuesday, November 20, 2001 3:10 PM
> > Subject: [amibroker] Auto Analyser
> >
> >
> > > Hi AmiBroker`s
> > >
> > >
> > >
> > > I want to create a filter wich shows me if today is the day
with
> the
> > > biggest range ( High - Low ) of the last 10 days! This means,
the
> > > ranges of every individual day from the last 10 days must be
> smaller
> > > then the range of today!
> > >
> > > Tank you!
> > >
> > >
> > > CT
> > >
> > >
> > >
> > >
> > >
> > > Your use of Yahoo! Groups is subject to
> http://docs.yahoo.com/info/terms/
> > >
> > >
> > >
|