PureBytes Links
Trading Reference Links
|
Hi,
Just do what this non programmer did. Use the 'RSIa' function or 'CCIa' but
unfortunately no 'MACDa'.
>From help files:
RSI
- relative strength index Indicators
SYNTAX RSI( periods = 14 )
RSIa( array, periods = 14 )
Second version RSIa accepts input array so it RSI can be applied to other
arrays than close.
EXAMPLE RSI( 12 )
RSIa( High, 12 );
Jerry Gress
Stockton, Ca.
-----Original Message-----
From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf
Of axium102
Sent: Sunday, January 01, 2006 4:48 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Referencing to other indicator
Hello;
I am looking for an example of a formula that would plot an indicator
from an indicator.
Precisely I am trying to plot an MACD indicator from a relative
performance inicator such as this:
_SECTION_BEGIN("Relative Performance_Gold");
X= RelStrength( "GC" );
Plot(X,"RelStrength",1,1);
_SECTION_END();
This indicator plots how a security performs relative to gold. I
would like to plot an MACD indicator of that relative performance
plot.
Can please someone help ?
Alternatively if anybody has something that is close to this - please
post it so that I can try to modify it.
Thanks
Andrew
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 other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|