PureBytes Links
Trading Reference Links
|
Hello Dimitris,
Thank you very much for your help. Is there anyway to
modify the exploration to pick the following stocks:
Let say a stock has come off its highs (lows), is
depressed (raised) and is now in a trading range. If
the stock starts recovering (declining)and I want to
run the exploration over the last 20 days to pick up
which stocks are starting to make higher highs (lower
lows) within that period.
Kind regards
Russ
--- DIMITRIS TSOKAKIS <TSOKAKIS@xxxx> wrote:
> Hi Russ,
> here is an exploration
>
> Cond1=HighestBars(H)==0;
> Cond2=LowestBars(L)==0;
> Filter=Cond1 OR Cond2;
> NumColumns=2;
> Column0=IIf(Cond1,H,0);
> Column1=IIf(Cond2,L,0);
> Column0Name="New High";
> Column1Name="New Low";
>
> select all stocks for the last 20 days and Explore.
> Hit on the label "New High" to collect stocks and
> respectively
> on the "New Low" label.
> DT
> --- In amibroker@xxxx, Russ Ty
> <untapped_energies@xxxx> wrote:
> > Hi all,
> >
> > I apologise if this has come up before. Will
> someone
> > please provide a formula that measures new highs
> and
> > new lows. I.e. if I selct "20" last days in
> Automatic
> > Analysis, the formula will measure which stocks
> have
> > made new highs in the last 20 days and which
> stocks
> > have made new lows.
> >
> > Kind regards
> > Russ
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Find the one for you at Yahoo! Personals
> > http://personals.yahoo.com
>
>
__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com
|