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
应用在图上,没有开平仓信号,测试也没有开平仓,是什么原因?
类似帖子,下回请发到公式模型编写问题提交区
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编辑过]