PureBytes Links
Trading Reference Links
|
In the scan to produce the composite symbol ~BPI I have set the Close to be
the number of bullish stocks, and Volume as the total number of stocks.
Somehow, sometimes the count of stocks is zero during the early dates, thus
V becomes zero. Don't ask me why, it just did, would need some time to
ponder that if I am not too lazy today. But if you divide by zero you cannot
get a result. This did not happen when I created the BPI originally, but did
now.
Cheers,
Graham
http://groups.msn.com/ASXShareTrading
http://groups.msn.com/FMSAustralia
-----Original Message-----
From: Alan Nouray [mailto:alann@xxxxxxxxxxxx]
Sent: Friday, 28 March 2003 6:11 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: Bullish Percent Index
Hi Graham,
Thank you. It worked fine. What is "nil stocks"?
Alan
-- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanagh@xxxx> wrote:
> Alan
> Have just been checking some ideas on why the plot is not working.
It could
> be that at some stage you have nil stocks showing in the composite
~BPI
> (refer Volume). If so then replace the following line near the
beginning of
> the indicator code.
>
> Close = C/V*100 ;
> with
> Close = IIf(V>0, C/V*100,0) ;
>
> Cheers,
> Graham
> http://groups.msn.com/ASXShareTrading
> http://groups.msn.com/FMSAustralia
>
> -----Original Message-----
> From: Alan Nouray [mailto:alann@x...]
> Sent: Friday, 28 March 2003 4:49 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Re: Bullish Percent Index
>
> Thanks Graham, That's what I did. I selected ~BPI but the window
for
> Bullish Percent Index is empty. I can see the RSI or MACD or any
> other indictor for ~BPI but not the Bullish Percent Index.
>
> Alan
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanagh@xxxx> wrote:
> > The scan creates a composite of the group of stocks you have set
in
> the
> > filter. You then need to select this composite stock in the tree
to
> view the
> > P&F chart.
> >
> > Cheers,
> > Graham
> > http://groups.msn.com/ASXShareTrading
> > http://groups.msn.com/FMSAustralia
> >
> > -----Original Message-----
> > From: Alan Nouray [mailto:alann@x...]
> > Sent: Friday, 28 March 2003 4:09 AM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: [amibroker] Bullish Percent Index
> >
> > I was looking for the formula for Bullish Percent Index (same as
> the
> > one in stockcharts.com). I noticed that a formula have already
been
> > posted by Graham on 1/5/2003. I first run the
> > formula "BullishPercentIndexScan.afl" in scan mode with n=1 (last
> > quotation), then I use the
formula "BullishPercentIndexPnFchart.afl
> > in IB. But I get an empty window. Do I need to do anything alse?
> >
> > Alan
> >
> >
> >
> > 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
> http://docs.yahoo.com/info/terms/
>
>
>
> 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
http://docs.yahoo.com/info/terms/
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/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Your own Online Store Selling our Overstock.
http://us.click.yahoo.com/rZll0B/4ftFAA/46VHAA/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/
|