我是一个新手,正在进行写代码练习,但是我在金字塔2.82下写了一个段简单的代码,为什么不能在图标上显示出来?编译没有错误,我实在不知道错在哪里,请帮我找出来。
//×?±??D??±?á?
cond1:="kdj.j"<35 and "kdj.k"<35 and "kdj.d"<35;
//?a?à
if time>093000 and time<145000 then
begin
if cond1 and cross("kdj.j","kdj.d") then
begin
sellshort(holding<0,0,thisclose);
buy(0,1,thisclose);
end
end
//?1?e
if thisclose=(enterprice-0.2*25) then
sell(holding>0,0,thisclose);
//???à
if time>093000 and time<145000 and "kdj.j">100 then
sell(holding>0,0,thisclose);
//ê??ì
if time=145500 then
begin
sell(holding,0,market);
sellshort(holding,0,market);
end
代码当中都是乱码啊
客服正在处理
//?á??à??D???à?¨¢?
cond1:="kdj.j"<35 and "kdj.k"<35 and "kdj.d"<35;
//?a?¨¤
if time>093000 and time<145000 then
begin
if cond1 and cross("kdj.j","kdj.d") then
begin
sellshort(holding<0,0,thisclose);
buy(1,1,thisclose);
end
end
//?1?e
if thisclose=(enterprice-0.2*25) then
sell(holding>0,0,thisclose);
//???¨¤
if time>093000 and time<145000 and "kdj.j">100 then
sell(holding>0,0,thisclose);
//¨o??¨?
if time=145500 then
begin
sell(holding,0,market);
sellshort(holding,0,market);
end
你buy语句中第一个值为0,就说明条件永远不成立,永远都不执行buy语句;试试以上代码,就能出信号了
另外最小变动价位你可以直接用mindiff来替代哦