PureBytes Links
Trading Reference Links
|
Hi,
I'm using the Chandelier Exit described in the Help and implemented
so:
//====================Chandelier Exit==========================//
ATRp = 2;//Optimize("ATRp",3,2,8,1); // ATR period
ATRc = 3.4;//Optimize("ATRc",3.4,2.5,4.55,0.1); //Chandelier
multiplier
ATRr = ATRc*ATR(ATRp);
ApplyStop(stopTypeTrailing, stopModePoint, ATRr, 1, True);
I can see it triggering in the Back Test results and on the chart:
Equity(1);
Plot(Sell==4,"Trailing",colorOrange,shapeSmallDownTriangle);
My question is, how do I get the actually stop price prior to AB
showing it after the stop is triggered?
Thanks,
/joe
------------------------ 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/
|