PureBytes Links
Trading Reference Links
|
In this statement Min3RSI = RSIa(Min3close,10); you are using the 1
minute periods and 3 minute value
To get full 3 minute Min3RSI you should calculate it within
timeframeset, then expand
--
Cheers
Graham Kav
AFL Writing Service
http://www.aflwriting.com
2008/7/3 blinddoekje <rub92me@xxxxxxxxxxx>:
> Ok, this is starting to do my head in. The below works perfectly fine
> to plot a 3 minute RSI based on 1 minute data. (As expected)
> Min3close = TimeFrameCompress(Close,3*in1Minute);
> Min3RSI = RSIa(Min3close,10);
> Min3RSI = TimeFrameExpand(Min3RSI,3*in1Minute);
> Plot(Min3RSI,"3MinRSI",colorGreen);
>
> However when I run the following in Explore (same database, same
> symbol) it doesn't work and I don't get any hits based on 3 minute
> RSI. I must be missing something really basic here. Can someone
> please help?
> Min3close = TimeFrameCompress(Close,3*in1Minute);
> Min3RSI = RSIa(Min3close,10);
> Min3RSI = TimeFrameExpand(Min3RSI,3*in1Minute);
> Filter = Min3RSI > 70;
> AddColumn(Min3RSI,"Min3RSI");
>
------------------------------------
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/
|