PureBytes Links
Trading Reference Links
|
Hello usergroup!
In my AITM trading-system buy- and sell-signals are generated at
CLOSE and executed at next open. Stops are set at the last
SwingHighs/-lows before the signal occurred. Those SH/SH´s are
written in an array "StopPriceArr". A close beyound/below a stop
should turn the position and be executed at next open.
Can someone help me to code the stops?
So far I coded:
SetTradeDelays( 1, 1, 1, 1 ) ;
SetOption("ActivateStopsImmediately",True);
.
.
.
BUY=BuyCondition;
SELL=SellCondition;
ApplyStop(0,2,StopPriceArr,2);
Short = Sell;
Cover = Buy;
It seems it is not working as I expected and actually I am not
surprised by it, cause I cannot make a sense of the combinations of
ApplyStop-paramaters.
Can you?
Thanx in advance
enzo
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/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/
|