Using Equity( 1 ) evaluates stops and writes BACK signals to sell/cover arrays. Equity(1) also removes all extra signals. Depending on kind of the stop various values are written back to sell/cover array to enable you to distinguish if given signal was generated by regular rule or by stop.
1 - regular exit 2 - max. loss 3 - profit target 4 - trailing 5 - ruin stop 6 - n-bar stop You would use something like PlotShapes(IIf(Sell==3, shapeHollowDownTriangle, shapeNone),4,0,SellPrice,0); to display a particular stops. herman -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] Behalf Of itmwh Sent: January 20, 2007 7:23 AM To: [email protected] Subject: [amibroker] Is it possible to visulize exit made by applystop() signals? Hi, I am testing a system with buy/sell signals. I use the following codes to visualize the entrys and exits Buy=......; Sell=.....; PlotShapes( IIf(Buy,shapeUpArrow,IIf(Sell,shapeDownTriangle, shapeNone )) , IIf( Buy, ColorRGB(255,0, 255), ColorRGB(0,255,255) ), 0,IIf(Buy,Low-5,High+5) ); But now I want to add applystop() to the system to test multiple exiting strategies ? Is it possible to visulize exit signals (also showing arrows and triangles) made by applystop() function ? Thanks for any help / Tom Please note that this group is for discussion between users only. To get support from AmiBroker please send an e-mail directly to SUPPORT {at} amibroker.com For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: http://www.amibroker.com/devlog/ For other support material please check also: http://www.amibroker.com/support.html Yahoo! Groups Links
