PureBytes Links
Trading Reference Links
|
In Preferences - Intraday - set cuctom time period 3 minutes
In AA Settings, select Periodicity to 3 minutes
Then just run the scan without any timeframe sets in the AFL.
Cheers,
Graham
http://e-wire.net.au/~eb_kavan/
-----Original Message-----
From: Hans [mailto:hansib@xxxxxxxxx]
Sent: Sunday, 29 February 2004 2:03 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Help using a trading system in a 3 minute timeframe
Hello,
I would like to get one simple example on how to use / program any
trading system (buy/sell/short/cover) in a 3 minute timeframe.
I have no problems to do it in daily timeframe.
In this try, with following code there are no changes to daily
results.
TimeFrameSet( 3*in1Minute );
Graph0 = CCI();
Graph1 = EMA( Graph0, 10 );
Buy = Cross(Graph0 , Graph1);
Sell = Cross(Graph1, Graph0) ;
Short = Cross (Graph1, Graph0) ;
Cover = Cross(Graph0 , Graph1);
Thanks for any help.
Hans
------------------------ Yahoo! Groups Sponsor ---------------------~--> Buy
Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark Printer
at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
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/
|