PureBytes Links
Trading Reference Links
|
Not sure but I suppose you could mean this:
X = RSI();
Y = MA(X,10);
Z1 = hbT3A(Y,5,0.84);
Plot(Z1,"Z",1,1);
The above could also be expressed as:
Z1 = hbT3A(MA(RSI(),10),5,0.84);
Plot(Z1,"Z1",4,1);
Best regards,
Herman
> -----Original Message-----
> From: Keith Newhouse [mailto:knewhous@x...]
> Sent: 27 October, 2002 9:46 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Call indicator
>
>
> Can someone assist me by explaining how I can call a custom indicator
> into another indicator.
>
> Regards'
> Keith.
>
>
>
> 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/
>
>
>
|