PureBytes Links
Trading Reference Links
|
I have a database with 1 minute data. The database settings are set
to 1 minute.
When I run a simple exploration like:
TimeFrameSet(in1Minute);
//Buy = Cross(Close, MA(Low, 5));
//Sell = Cross(MA(Low, 5), Close);
//Buy = ExRem(Buy, Sell);
//Sell = ExRem(Sell, Buy);
up = Cross(Close, MA(Low, 5));
down = Cross(MA(Low, 5), Close);
TimeFrameExpand(up, in1Minute);
TimeFrameExpand(down, in1Minute);
Filter = 1; //Buy OR Sell;
AddColumn(up, "buy");
AddColumn(down, "sell");
TimeFrameRestore();
I get daily signals, not intraday. As you can see, I have explicitly
added timeframeset etc. Same results without the timeframeset /expand
statements.
what am I doing wrong?
any help will be appreciated.
thanks,
ken
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|