Rss & SiteMap

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

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

标题:[原创]求高手帮助编写一下,先谢谢了!

1楼
xiyue 发表于:2012/4/21 21:39:39

 

(注:开平仓按1手,非日内交易模型)


  空仓时 :15分钟macd 上穿0,买入开仓,
               15分钟macd 下穿0, 卖出开仓;
  持有多单时: 如果15分钟macd <0,如果最新价格低于开仓价格则平仓(止损);
                    如果60分钟macd下穿0 ,则立即平仓;
  持有空单时: 如果15分钟macd >0,如果最新价格高于开仓价格则平仓(止损);
                    如果60分钟macd上穿0,则立刻平仓

2楼
zg611029 发表于:2012/4/21 22:23:34

r1:=stkindi('','macd.macd1',0,3);

r2:=stkindi('','macd.macd1',0,5);

 

if r1>0 then buy(holding=0,1,thisclose);

if r1<0 then buyshort(holding=0,1,thisclose);

if holding>0 and ((r1<0 and c<enterprice) or r2<0) then sell(1,1,thisclose);

if holding<0 and ((r1>0 and c>enterprice) or r2>0) then sellshort(1,1,thisclose);

 

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


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