PureBytes Links
Trading Reference Links
|
not exactly.
I'll have 2 moving averages:
first: 20 period SMA by using closing price:
MA1(Close,20)
second: 5 period SMA by using value from the 20 period SMA
MA2( MA1(Close,20), 5)
thanks.
--- In amibroker@xxxxxxxxxxxxxxx, "droskill" <droskill@xxx> wrote:
>
> Are you saying that the crossover should be the 20sma over the 5sma?
>
> Assuming this is the case, you need to write an Exploration.
> Something like this:
>
> BuySignal1 = Cross(MA(C,20),MA(C,5));
> BuySignal2 = C > MA(C,20);
>
> Filter = Status("lastbarinrange") AND BuySignal1 AND BuySignal2;
> AddColumn( C, "Close");
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "reydontrader" <marketblog@>
wrote:
> >
> > Hi,
> >
> > I'm new to amibroker and try to use simple technique to scan
stocks
> > fit my requirements.
> >
> > If anyone can help me I'll be grateful:
> > 1) The price shall close above 20SMA
> > 2) The should be following crossover:
> > 20 SMA line (based on closing price) shall close above 5 SMA line
(
> > based on 20SMA price).
> >
> > SMA is Simple Moving Average
> >
> > thanks,
> >
> > Rey
> >
>
------------------------------------
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|