PureBytes Links
Trading Reference Links
|
Ready-to-use code (replace high with open).
http://www.amibroker.com/kb/2007/03/24/how-to-plot-a-trailing-stop-in-the-price-chart/
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "nicholas_mandelbaum" <nicholas.mandelbaum@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Wednesday, August 15, 2007 7:34 PM
Subject: [amibroker] Coding a dynamic Trailing Stop
> Hello, I have big troubles coding a dynamic trailing stop.
> I'm looking to set a trailing stop based on the highest open since the trade begins.
> I cannot figure how to "tell" the backtester to look each day of the trade for the highest
> Open since the start of the trade.
>
> Thank you for your help...
> :)
> Nicholas
>
>
> It's a simple EMA crossover test.
>
> a=20;
> b=140;
> Cc=Optimize("stop profit",10,4,14,1);
> E=EMA(V,10)>EMA(V,100);
> D=Optimize("stop loss",10,7,11,1);
> Buy=Cross(EMA(O,a),EMA(O,b)) AND V>1000;
> Sell=?????;
>
>
>
>
>
>
> 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
>
>
>
>
>
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
<*> 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/
|