PureBytes Links
Trading Reference Links
|
Thankyou very much droskill for your quick response. I really
appreciate your help. I am testing your code and its very near to
what I want. I am trying to modify it a little bit and will post the
modified code if succesful.
Thank once again.
--- In amibroker@xxxxxxxxxxxxxxx, "droskill" <droskill@xxx> wrote:
>
> Ok - you want to create an exploration:
>
> //Calculate your ranking method - here's an example
> //based loosely on what you described.
>
> Voladd = iif(Volume>3*MA(Volume,25),10,0);
> MyScore = ROC (C, 25) + Voladd;
> MAScore = MA(5,MyScore); //Calculate a moving average of MyScore
>
>
> Filter = Status("lastbarinrange");
> //Show only the current rankings for today
>
> //Show the values
> AddColumn( C, "Close");
> AddColumn( V, "Volume");
> AddColumn( MyScore, "Score");
> AddColumn( MAScore, "MAScore");
> AddColumn( Ref(MyScore,-1), "Score Yesterday");
> SetSortColumns(-5); //Sort based on the 3rd column descending
>
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "subratabera1" <subratabera1@>
wrote:
> >
> > Hello friends,
> >
> > This is my first post in this group. I am new to this group and
> > Amibroker too. I want to design a system (screener) which ranks
the
> > stocks based on certain criteria. I know very little about
> > programming so I am here for your help. Let me explain my
> > requirements.
> >
> > 1) I want to develop a system which Ranks the stocks by giving it
> > some points based on how much it advances(%) in a day with
increased
> > volume(%). (1 point for every % increase)
> > 2) The system only work on last 25 bars.
> > 3) The ranking should change (+ or -) with every passing day.
> > 4) The system must list stocks along with its ranking on a daily
> > basis showing previous rankings also.
> > 5) It will be great if MA can be calculated on ranking variable.
> >
> > Please help me developing this system. It will be a great help to
me.
> >
> > Thanks in advance.
> >
> > SB.
> >
> > (Sorry for my poor English)
> >
>
------------------------------------
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/
|