Rss & SiteMap

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

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

标题:怎么不产生开平仓?

1楼
szwangwei88 发表于:2014/3/16 11:16:19
fc:=close;

IF NOT(ISLASTBAR) THEN EXIT; 
for i=3 to DATACOUNT do
begin
if fc[i]>fc[i-1] then
BUY(HOLDING=0,1,THISCLOSE);
else if HOLDING=1 and fc[i]<fc[i-1] then
SELL(1,1,THISCLOSE);  
end

应用在图上,没有开平仓信号,测试也没有开平仓,是什么原因?
2楼
fly 发表于:2014/3/17 9:17:27

类似帖子,下回请发到公式模型编写问题提交

 

if barpos<3 then exit;

if close>ref(close,1) and holding=0 then buy(1,1,thisclose);  
if close<ref(close,1) and holding>0 then sell(1,1,thisclose); 

[此贴子已经被作者于2014/3/17 9:18:50编辑过]
共2 条记录, 每页显示 10 条, 页签: [1]


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