以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://222.73.7.161/bbs/index.asp)
--  公式模型编写问题提交  (http://222.73.7.161/bbs/list.asp?boardid=4)
----  [原创]风险控制之常见手法  (http://222.73.7.161/bbs/dispbbs.asp?boardid=4&id=3080)

--  作者:z7c9
--  发布时间:2010/10/1 19:52:46
--  [原创]风险控制之常见手法

a.亏损止损:sell(enterprice-bidprice>=n*mindiff and bidprice=close,holding,limitr,bidprice);
b.连亏止损:if maxseqloss>=20 then exit;
c.低胜率止损:if totaldaytrade>=20 and percentwin<=0.5 then exit;
d.大回撤止损:if (hhv(asset,0)-asset)/hhv(asset,0)*100>=2 then exit;


--  作者:solarhe2006
--  发布时间:2011/10/24 19:25:43
--  [公告]上海中期北京营业部与金字塔合作
hao好好的帖子 a.亏损止损:sell(enterprice-bidprice>=n*mindiff and bidprice=close,holding,limitr,bidprice); b.连亏止损:if maxseqloss>=20 then exit; c.低胜率止损:if totaldaytrade>=20 and percentwin<=0.5 then exit; d.大回撤止损:if (hhv(asset,0)-asset)/hhv(asset,0)*100>=2 then exit;
--  作者:samyongq
--  发布时间:2011/10/28 15:36:50
--  
很好!记录一下