[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[amibroker] Re: Fw: A technical question



PureBytes Links

Trading Reference Links

Glenn,

Run the two scans separately....to create the composites..

/*adv=C > Ref(C,-1);

decl=C <= Ref(C,-1);

AddToComposite(adv,"~adv","x");

AddToComposite(decl,"~decl","x");*/

Buy=0;

perc_Adv = Foreign("~Adv", "x") / ( Foreign("~Adv", "x") + Foreign

("~Decl", "x") ) * 100;

AddToComposite(perc_adv/100,"~PercADV","x");

Filter=1;

AddColumn(perc_adv,"%Adv",1);

AddColumn(Foreign("~PercADV","x"),"",1);



Does this seem correct ?

----- Original Message -----
From: "Glenn" <glennokb@xxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Monday, January 19, 2004 4:47 AM
Subject: [amibroker] Re: Percentage Advancers?


> Hi Anthony,
>
> Sorry for the vagueness!
>
> What I found is that when I make a composite of ~Adv & ~Decl, THEN
> do this calculation:
>
> perc_Adv=Foreign("~Adv","x")/(Foreign("~Adv","x")+Foreign
> ("~Decl", "x") ) * 100;
>
> ..and add this calculation to another composite:
>
> AddToComposite(Perc_Adv,"~Perc_Adv","C");
>
> Then the value within "C" is (I think) the sum of the perc_Adv for
> every stock on a day. Not just the single value.
>
> The value is much greater then I expected.
>
> Cheers Glenn
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Anthony Faragasso"
> <ajf1111@xxxx> wrote:
> > Glenn,
> >
> > What do you mean when you say " Doesn't look right " ....could you
> explain
> > it further..
> >
> > Anthony
> > ----- Original Message -----
> > From: "Glenn" <glennokb@xxxx>
> > To: <amibroker@xxxxxxxxxxxxxxx>
> > Sent: Saturday, January 17, 2004 11:38 PM
> > Subject: [amibroker] Re: Percentage Advancers?
> >
> >
> > > Hi,
> > >
> > > Would it be possible to add the final value of this to a different
> > > composite please:
> > >
> > > perc_Adv=Foreign("~Adv","x")/(Foreign("~Adv","x")+Foreign
> > > ("~Decl", "x") ) * 100;
> > >
> > > I tried for example this:
> > >
> > > ----------------8<------------------
> > >
> > > adv=C > Ref(C,-1);
> > > decl=C <= Ref(C,-1);
> > >
> > > AddToComposite(adv,"~adv","x");
> > > AddToComposite(decl,"~decl","x");
> > >
> > > Buy=0;
> > >
> > > Perc_Adv=Foreign("~Adv","x")/( Foreign("~Adv","x")+Foreign
> > > ("~Decl","x"))*100;
> > >
> > > AddToComposite(Perc_Adv,"~Perc_Adv","C");
> > >
> > > ----------------8<------------------
> > >
> > > ...but the values do not look right. I also ran the "adv" and
> "decl"
> > > first, THEN the "Perc_Adv" to make another composite but doesn't
> look
> > > right either?
> > >
> > > Cheers Glenn
> > >
> > >
> > > --- In amibroker@xxxxxxxxxxxxxxx, "Glenn" <glennokb@xxxx>
> wrote:
> > > > Anthony,
> > > >
> > > > Excellent!!! Thanks for sharing this.
> > > >
> > > > Cheers Glenn
> > > >
> > > > --- In amibroker@xxxxxxxxxxxxxxx, "Anthony Faragasso"
> > > > <ajf1111@xxxx> wrote:
> > > > > Glenn,
> > > > >
> > > > > You could create a function and place it in Indicator builder
> and
> > > see it
> > > > on
> > > > > the fly...without creating the composites....
> > > > >
> > > > > This gives the same percent :
> > > > >
> > > > > adv=C > Ref(C,-1);
> > > > >
> > > > > decl=C <= Ref(C,-1);
> > > > >
> > > > > AddToComposite(adv,"~adv","x");
> > > > >
> > > > > AddToComposite(decl,"~decl","x");
> > > > >
> > > > > Buy=0;
> > > > >
> > > > > perc_Adv = Foreign("~Adv", "x") / ( Foreign("~Adv", "x") +
> Foreign
> > > > >
> > > > > ("~Decl", "x") ) * 100;
> > > > >
> > > > > Filter=1;
> > > > >
> > > > > AddColumn(perc_adv,"%Adv",1);
> > > > >
> > > > >
> > > > >
> > > > > AS THIS, in Indicator Builder:
> > > > >
> > > > > //Function
> > > > >
> > > > > //% of stocks Advancing
> > > > >
> > > > > Wlist=Param("WatchListNum",0,0,63,1);
> > > > >
> > > > > function CreatePercentofStocksAdvancing( listnum )
> > > > >
> > > > > {
> > > > >
> > > > > // retrive comma-separated list of symbols in watch list
> > > > >
> > > > > list = GetCategorySymbols( categoryWatchlist, listnum );
> > > > >
> > > > > Advancers = 0; // just in case there are no watch list members
> > > > >
> > > > > for( i = 0; ( sym = StrExtract( list, i ) ) != ""; i++ )
> > > > >
> > > > > {
> > > > >
> > > > > f = Foreign( sym, "c" ) > Ref(Foreign( sym, "c" ),-1) ;
> > > > >
> > > > > if( i == 0 ) Advancers = f;
> > > > >
> > > > > else Advancers = Advancers + f;
> > > > >
> > > > > }
> > > > >
> > > > > return (Advancers / i)*100; // divide by number of components
> > > > >
> > > > > }
> > > > >
> > > > > Plot( CreatePercentofStocksAdvancing( Wlist ), "% of Stocks
> > > > Advancing",
> > > > >
> > > > > colorGreen );
> > > > >
> > > > > Anthony
> > > > >
> > > > > ----- Original Message -----
> > > > > From: "Glenn" <glennokb@xxxx>
> > > > > To: <amibroker@xxxxxxxxxxxxxxx>
> > > > > Sent: Saturday, January 17, 2004 2:35 PM
> > > > > Subject: [amibroker] Percentage Advancers?
> > > > >
> > > > >
> > > > > > Hi,
> > > > > >
> > > > > > I'd like to setup a composite of the % advancers (&
> decliners
> > > > > > later)  ...any idea how please? ie:
> > > > > >
> > > > > > % advancers = advancers / total (active) stocks x 100
> > > > > >
> > > > > > For starters:
> > > > > >
> > > > > > Adv=C>Ref(C,-1);
> > > > > > AddToComposite(Adv,"~Adv","C");
> > > > > >
> > > > > > I need to add to the above the total stocks. Is there a way
> to
> > > count
> > > > > > them, would you need to run another scan first to get the
> total
> > > stock
> > > > or
> > > > > > could it be done within one scan?
> > > > > >
> > > > > > Cheers Glenn
>
>
> 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
>
> Yahoo! Groups Links
>
> To visit your group on the web, go to:
>  http://groups.yahoo.com/group/amibroker/
>
> 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/
>
>


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.560 / Virus Database: 352 - Release Date: 1/10/2004


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 

Yahoo! Groups Links

To visit your group on the web, go to:
 http://groups.yahoo.com/group/amibroker/

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/