PureBytes Links
Trading Reference Links
|
Hi Bill,
I wish I could say yes, I don't know how to apply:
Plot(RSIa(ROC(C, 1), "", colorWhite);
I have tried it by itself, substituted into the RSIa formula, but I
only get error readings.
Thanks,
Bart.
--- In amibroker@xxxxxxxxxxxxxxx, "wavemechanic" <timesarrow@xxx> wrote:
>
> Is this what you want?
>
> Plot(RSIa(ROC(C, 1), "", colorWhite);
>
> Bill
>
> ----- Original Message -----
> From: "bartvandyk" <bart@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Saturday, April 26, 2008 9:13 PM
> Subject: [amibroker] Re: RSI of ROC
>
>
> >I plot the ROC and then drop the RSIa on top, but the RSIa still just
> > gives me the the RSI of the Price, RSIa or RSI does not seem to make a
> > difference.
> >
> > What I eventually also would like to see is a RSI on the net change,
> > close - ref (close, -1)
> >
> > Thanks
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "dojistarbullish"
> > <dojistarbullish@> wrote:
> >>
> >> Please use RSIa Indicator. Drag and drop it onto your ROC chart
> >> (style: ownscale).
> >>
> >> --- In amibroker@xxxxxxxxxxxxxxx, "bartvandyk" <bart@> wrote:
> >> >
> >> > I would like to plot the RSI of ROC. I copied the following formula
> >> > from the library:
> >> >
> >> > To find the 14-day RSI of Stochd(14):
> >> > /*14-Day RSI of StochD(14)*/
> >> > t=14;
> >> > Var=Stochd(14);
> >> > Up=IIf(Var>Ref(Var,-1),abs(Var-Ref(Var,-1)),0);
> >> > Dn=IIf(Var<Ref(Var,-1),abs(Var-Ref(Var,-1)),0);
> >> > Ut=Wilders(Up,t);
> >> > Dt=Wilders(Dn,t);
> >> > RSIt=100*(Ut/(Ut+Dt));
> >> > Graph0=RSIt;
> >> > An interesting application is in
> >> > http://groups.yahoo.com/group/amibroker/message/7628
> >> > where the 14-day RSI of MACD() is introduced.
> >> >
> >> > I substituted Stochd(14) for ROC(14), but the resulting graph is
> >> blanc
> >> >
> >> > Does anyone have time to shine a light on that?
> >> >
> >> > Thanks.
> >> >
> >>
> >
> >
> >
> > ------------------------------------
> >
> > 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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> > http://www.amibroker.com/devlog/
> >
> > For other support material please check also:
> > http://www.amibroker.com/support.html
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> > --
> > No virus found in this incoming message.
> > Checked by AVG.
> > Version: 7.5.524 / Virus Database: 269.23.4/1395 - Release Date:
4/24/2008 7:24 AM
> >
> >
>
------------------------------------
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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|