PureBytes Links
Trading Reference Links
|
I'm trying to write some AFL code that will change the trade delays and
trade prices based solely on whether the code is being run in the back
tester/optimizer or not.
Here's a feeble attempt that doesn't work:
tmpDelay = IIf(Status("action") == 5, 1, 0);
tmpPrice = IIf(Status("action") == 5, Open, Close);
SetTradeDelays(tmpDelay, tmpDelay, tmpDelay, tmpDelay);
BuyPrice = SellPrice = ShortPrice = CoverPrice = tmpPrice;
Lets see if you can solve this one! (Use of vbScript is permissable)
d
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Your own Online Store Selling our Overstock.
http://us.click.yahoo.com/rZll0B/4ftFAA/46VHAA/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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|