PureBytes Links
Trading Reference Links
|
Something similar was covered in the following thread. You may be able to modify the code given to get what you want:
http://finance.groups.yahoo.com/group/amibroker/message/139008
Note that you would need to work with Signal objects instead of closed trades and would have to refer to the Reason property from the Signal object.
More information on the backtester interface can be found here:
http://www.amibroker.com/guide/a_custombacktest.html
Mike
--- In amibroker@xxxxxxxxxxxxxxx, "christianvost" <christianvost@xxx> wrote:
>
> Hi, How can I display the trading arrows to show where my system executes stopTypeProfit and stopTypeLoss?? Here is a snippet of my code:
>
> Buy = Cross(FStRSISm,ForeignStochRSI);
> Sell = Cross(ForeignStochRSI,FStRSISm);
> Short = Sell;
> Cover = Buy;
>
> ProfStop = 8.25; //Optimize("Prof",8.25,2.25,13.25,1);
> TrailStop = 5.25; //Optimize("Trail",5.25,3.25,10.25,1);
> ApplyStop(stopTypeProfit, stopModePercent, ProfStop);
> ApplyStop(stopTypeTrailing, stopModePercent, TrailStop);
>
> PlotShapes(Buy*shapeUpArrow + Sell*shapeDownArrow,IIf(Buy,colorGreen,colorRed));
> PlotShapes(Cover*shapeHollowUpArrow + Short*shapeHollowDownArrow,IIf(Cover,colorBlue,colorOrange));
>
> Obviously, the arrows will show the (Buy,Sell,Short,Cover), but how do I display the stops????
>
> Many thanks for any help, Chris.
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|