当前位置:分析家公式网 → 股票公式 → 金字塔公式 → 一键转帖:自己在模型里计算盈亏情况的一个简便方法 (使用软件 金字塔 源码 贴图)
软件名称:[B]自己在模型里计算盈亏情况的一个简便方法 (使用软件 金字塔 源码 贴图)[/B]
软件类型:国产软件
运行环境:Win9X/Win2000/WinXP/Win2003/Win7/
软件语言:简体中文
授权方式:免费版
软件大小:1.00 KB
官方主页:Home Page
更新时间:2016-05-20 03:27:40
软件简介:
自己在模型里计算盈亏情况的一个简便方法。
从另外一个角度说明了金字塔的测试结果是正确的。
适用软件:金字塔
方法示例如下:(这里股指上的简单的均线系统为例)
variable:sumwealth=0;
ma10:=ma(c,5);
ma25:=ma(c,25);
sxf:=0.01/100;//手续费0.01%
if holding>0 and ma10<ma25 then begin
sell(1,1,thisclose);
sumwealth:=sumwealth+1*c*300*(1-sxf);//卖出时减去交易额
end
if holding<0 and ma10>ma25 then begin
sellshort(1,1,thisclose);
sumwealth:=sumwealth-1*c*300*(1+sxf);//买入时加上交易额
end
if holding=0 and ma10>ma25 then begin
buy(1,1,thisclose);
sumwealth:=sumwealth-1*c*300*(1+sxf);
end
if holding=0 and ma10<ma25 then begin
buyshort(1,1,thisclose);
sumwealth:=sumwealth+1*c*300*(1-sxf);
end
zichan:sumwealth+holding*c*300-abs(holding)*c*300*sxf,noaxis;
[url=http://www.70822.com/soft/sort013/sort068/down-98346.html]自己在模型里计算盈亏情况的一个简便方法 (使用软件 金字塔 源码 贴图)[/url]