Rss & SiteMap

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

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

标题:交易系统只有 1个方向

1楼
jzhfj 发表于:2021/1/22 21:37:30

ma1:=ma( close,Len ) ;

condition1: =cross(Close,ma1);
condition2: =cross(ma1,Close); 
 
 BUY(condition1,1,THISCLOSE);    
sell(condition2,1,THISCLOSE);   
buyshort(condition2,1,THISCLOSE); ;
sellshort(condition1,1,THISCLOSE);
 

一个简单的交易 系统   应该 是多开 多平  空开  空平 交替 出现  结果 回测 发现  只有前面 2笔 是  多开 多平, 后面 全部都是   空开  空平  

 

要怎么改 才可以  正常

2楼
FireScript 发表于:2021/1/25 8:44:13
  BUY(condition1 and holding=0,1,THISCLOSE);    
sell(condition2,1,THISCLOSE);   
buyshort(condition2 and holding=0,1,THISCLOSE); ;
sellshort(condition1,1,THISCLOSE);
3楼
jzhfj 发表于:2021/1/25 10:34:05
试了下   ,还是 一样 的 结果
4楼
FireScript 发表于:2021/1/25 10:42:04
 这个顺序还要再调整下:

sell(condition2,1,THISCLOSE);  
buyshort(condition2 and holding=0,1,THISCLOSE);
sellshort(condition1,1,THISCLOSE);
BUY(condition1 and holding=0,1,THISCLOSE);    

共4 条记录, 每页显示 10 条, 页签: [1]


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