PureBytes Links
Trading Reference Links
|
Jayson,
thanks a lot for your code!
I had hoped to find symbols/tickers containing that data somewhere.
It would be easier for me, because I don't have the USA stocks
downloaded. I'm only intrested in Nasdaq, DJIA, NYSE,... and market
indicators.
Jayson, I appreciate your effort to help me!
/Patrik
--- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> Patrik,
>
> so you want to find stocks that are up and stock that are down and
you want
> to count how much they are up or down???
>
> If so than addtocomposite is the answer. In the code below you are
simply
> summing the values for up to a composite ticker called ~updn.
Positive
> values are stored to the high field while negative values are
stored to the
> Low field. Place the code in the AA window and choose your watchlist
> containing the stocks you wish to calculate. Scan the code. Now
select the
> new composite ticker ~updn set aa to look at current stock only
then run the
> same code as an exploration to see your results. Of course you can
also plot
> the highs or lows of the newly created composite.
>
> There is a good tutorial regarding addtocomposite in the help
section.....
>
> Regards,
>
> Jayson
>
>
> Buy=0;
> Filter=1;
>
> up=C>Ref(C,-1);
> dn=C<Ref(C,-1);
>
> AddToComposite(IIf(up,C-Ref(C,-1),0),"~updn","H");
> AddToComposite(IIf(dn,C-Ref(C,-1),0),"~updn","L");
>
> AddColumn(H,"Points up");
> AddColumn(L,"Points dn");
>
>
> Regards,
> Jayson
> -----Original Message-----
> From: patrikfromsweden [mailto:patrik_ernstson@x...]
> Sent: Wednesday, June 25, 2003 9:53 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Re: Tickers for up- and down points?
>
>
> Jayson,
>
> I have data for advance/decline issues and up/down volume(eSignal).
> If I have data for points gained(up points) and points lost(down
> points) I can calculate buying power and selling pressure like
> Lowry's do, http://www.lowrysreports.com/samples/mta.pdf
>
> /Patrik
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> > Patrick,
> > if you have historical stock data you could calculate the values
> with
> > Addtocomposite. Data suppliers like QP2 and TC2000 (I believe)
also
> provide
> > data for advance decline issues and volume. I guess I am not sure
> what you
> > are really asking for...
> >
> > Regards,
> > Jayson
> > -----Original Message-----
> > From: patrikfromsweden [mailto:patrik_ernstson@x...]
> > Sent: Wednesday, June 25, 2003 9:36 AM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: [amibroker] Tickers for up- and down points?
> >
> >
> > Could anyone tell me where I could find tickers/symbols for Up-
and
> > Down points(EOD) for NYSE and Nasdaq? I also need historical data.
> >
> > I need them to calculate buying power and selling pressure.
> >
> > /patrik
> >
> >
> > Yahoo! Groups Sponsor
> > ADVERTISEMENT
> >
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > 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
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Lj3uPC/Me7FAA/ySSFAA/GHeqlB/TM
---------------------------------------------------------------------~->
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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|