PureBytes Links
Trading Reference Links
|
Interesting how these indicators and other
functions “slip” in unnoticed. Other than waiting for someone
(thanks Dave) to mention them on the list, one can always read the <font
size=2 color=navy face=Arial>AL<span
> categorized list say
once a month. Learn all sorts of helpful things. I know Tomasz, it was
probably mentioned in one of the ReadMe files, but I miss a lot that is in
those short documents. <span
>J
Ken
-----Original Message-----
From: Dave Merrill
[mailto:dmerrill@xxxxxxx]
Sent: Saturday, January 31, 2004
8:26 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: RE: [amibroker] Price
Oscillator
<span
>FYI, there's a
built in function, OscP(fast, slow) that does exactly this, except it's
expressed as percentage, so it multiplies by 100 instead of 10000.
<span
>Dave
//Ken Close provided an AA code here a while back that produces a chart
that
mimicks the Headsup signals some of
//us follow for timing mutual funds.
//One component of this Headsup Signal is the
Price Oscillator of the
Russell 2000.
//I wanted to see this plotted. I couldn't find
anything like it in the AFL
library, so I used some of Ken's AA
//code and created a Price Oscillator Indicator.
It is very simple and is
one of the few things I have done in
//AFL.
//I turn on the Level 0 to make it easier to see
when it goes negative.
//Thanks to Ken for the PRice Oscillator code, all
I had to do is Plot it.
//Rik Rasmussen
PriceOsc = ((EMA(Close,19) - EMA(Close,39)) /
EMA(Close,39)) * 10000;
Plot (PriceOsc, "Price
Oscillator",colorBlue, styleLine);
Rik Rasmussen
<font size=3
face="Times New Roman">
Send
BUG REPORTS to bugs@xxxxxxxxxxxxx<font size=2
face="Courier New">
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to:
amiquote@xxxxxxxxxxxxxxx
(Web page: <a
href="">http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: <a
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
<font size=2
face="Courier New">
<span
>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
the Yahoo! Terms of Service.
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 the Yahoo! Terms of Service.
|