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 <[EMAIL PROTECTED]>:
> 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");
>

Reply via email to