以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  公式模型编写问题提交  (http://weistock.com/bbs/list.asp?boardid=4)
----  goto跳转函数  (http://weistock.com/bbs/dispbbs.asp?boardid=4&id=143615)

--  作者:tanyongde
--  发布时间:2016/11/30 12:19:21
--  goto跳转函数
if long then buy(1,1,market);
  goto skip@;
if short then buyshort(1,1,market);
  skip@;
用goto跳转函数,本周期买多成立直接跳转到skip@,买多条件不成立,本周期就不跳转?

--  作者:jinzhe
--  发布时间:2016/11/30 13:08:51
--  

if long then begin

 buy(1,1,market);

  goto skip@;
end
if short then buyshort(1,1,market);
  skip@;

--  作者:tanyongde
--  发布时间:2016/11/30 14:00:10
--  
用goto跳转函数,本周期买多成立直接跳转到skip@,买多条件不成立,本周期就不跳转,对吗?
--  作者:jinzhe
--  发布时间:2016/11/30 14:04:17
--  
我上面写的就是你讲的
--  作者:tanyongde
--  发布时间:2016/11/30 14:46:21
--  
谢谢!!