关于10分钟线条件开仓问题
图表交易10分钟图 当日开盘走出10分钟线后, 如果第一根走出的10分钟线上涨开多仓1手,否则如果下跌开空仓1手,下面这么写有什么问题吗?
cond:DOWN()
if DOWN() then begin
buy(down,1,market)
end
if isup and todaybar=1 then buy(holding=0,1,market);
if isdown and todaybar=1 then buyshort(holding=0,1,market);
还想问下,您帮我写的那个命令中 isup 的正确使用方法不是应该是isup() 为什么没有括号呢?