PureBytes Links
Trading Reference Links
|
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
<*> 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/
|