1.if enterprice<=valuewhen(enterbars=0,low) then sell(1,0,market);
2.请问后面的是什么意思?直到止盈信号发出反转交易的具体内容是什么?
if 多头止盈条件 then begin
sell......;
buyshort.....;
end
if 空头止盈条件 then begin
sellshort......;
buy.....;
end
反手的话这样框架写比较好
sell......;
buyshort.....;
end
if 多头止盈条件 then begin
sell......;
buyshort.....;
end
if 多头止盈条件 then begin
sell......;
buyshort.....;
end
按顺序 行运行计算吗 这些中间 可以加and 或or吗