以文本方式查看主题 - 金字塔客服中心 - 专业程序化交易软件提供商 (http://weistock.com/bbs/index.asp) -- 公式模型编写问题提交 (http://weistock.com/bbs/list.asp?boardid=4) ---- 止盈统计 (http://weistock.com/bbs/dispbbs.asp?boardid=4&id=49431) |
-- 作者:金字塔散户 -- 发布时间:2013/3/8 13:05:33 -- 止盈统计 满足条件a,破5周期低点止盈;满足条件b,破20周期低点止盈。 现在我想统计过去的任意1年中这2种止盈方法各用了多少次,怎么写?求完整代码 |
-- 作者:jinzhe -- 发布时间:2013/3/8 13:23:07 -- variable:n=0,m=0; if conda then begin sell; n:=n+1; end//当条件a止盈时,n自加1
if condb then begin sell; m:=m+1; end//当条件b止盈时,m自加1
if year<>ref(year,1) then begin n:=0; m:=0; end //跨年后清0
n1:n,linethick0; m1:m,linethick0;//n1和m1为所求次数
|