PureBytes Links
Trading Reference Links
|
Hi;
Please try this one. I'm not sure if it work or not..
TimeFrameSet( in1Minute);
Vol_Trig= V >= BBandTop(V,10,2);
RSI_Trig = RSIa(C,10)>70;
TimeFrameRestore();
Vol_Trig_ = TimeFrameExpand(Vol_Trig, in1Minute);
RSI_Trig_ = TimeFrameExpand(RSI_Trig, in1Minute);
buy=0;
Filter = Vol_Trig_ AND RSI_Trig_;
AddColumn( Close, "Close" );
Regards
--- In amibroker@xxxxxxxxxxxxxxx, "blinddoekje" <rub92me@xxx> wrote:
>
> I'm trying to use the timeframeset command do do a simple intraday
> explore, but can't get it to work. For some reason when I run the
> explore it is ignoring the timeframeset and just gives me EOD results.
> I have 1 minute data for the symbol I'm running it against.
> See below for the simple AFL code.
>
> TimeFrameSet(in1Minute);
> Vol_Trig= V >= BBandTop(V,10,2);
> RSI_Trig = RSIa(C,10)>70;
> Filter = Vol_Trig AND RSI_Trig;
> AddColumn( Close, "Close" );
>
------------------------------------
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/
|