Rss & SiteMap

金字塔客服中心 - 专业程序化交易软件提供商 http://www.weistock.com/bbs/

专业程序化软件提供商
共2 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:[求助]如何编写统计连续亏损的次数和平均幅度

1楼
熊猫 发表于:2021/4/11 21:34:27
FireScript大神,您好:
请问老师,我想统计一段时间之内,连续亏损一次、两次、三次、四次的次数和亏损平均幅度,如何编写呢?
比如统计2021.1.1到2021.3.1期间,双均线策略交易螺纹,连续亏损1/2/3/4次,分别有多少次,以及对应的平均亏损幅度?
2楼
FireScript 发表于:2021/4/12 9:45:38
你这种只能用全局变量去纪录了。

VARIABLE:mark:=0;
ma5:ma(c,5);
ma10:ma(c,10);
majc:CROSS(ma5,ma10);
masc:cross(ma10,ma5);


if majc  then
begin
    
if holding<0 then
begin
sellshort(1,holding,market);
if NUMPROFIT(1)<0 then mark:=mark+1;//全局变量的赋值必须和平仓条件一致,所以这里单独放到一个代码块内。
if NUMPROFIT(1)>=0 then mark:=0;
end   
buy(holding=0,1,market);
end



if masc then
begin
if holding>0 then
begin
sell(1,holding,market);
if NUMPROFIT(1)<0 then mark:=mark+1;
if NUMPROFIT(1)>=0 then mark:=0;
end   
buyshort(holding=0,1,market);   
end

show:mark;//输出当前连亏次数


x1:count(mark=0 and ref(mark,1)=1,TODAYBAR);//这里统计的当日连亏一次的次数
x2:count(mark=0 and ref(mark,1)=2,TODAYBAR);//这里统计的当日连亏二次的次数

你参考这个思路去试下就行。
共2 条记录, 每页显示 10 条, 页签: [1]


Powered By Dvbbs Version 8.3.0
Processed in .03125 s, 3 queries.