以文本方式查看主题

-  金字塔客服中心 - 专业程序化交易软件提供商  (http://weistock.com/bbs/index.asp)
--  高级功能研发区  (http://weistock.com/bbs/list.asp?boardid=5)
----  新手,代码运行不了  (http://weistock.com/bbs/dispbbs.asp?boardid=5&id=160710)

--  作者:wo2572527297
--  发布时间:2017/12/27 21:03:37
--  新手,代码运行不了

Function Max1(Formula,a1,a2,a3,a4,a5)
    \'系统会在逐K线模式解释公式时的每个周期都会调用此函数一遍,因此设计时应该注重程序的执行效率,不要重复的执行一些没必要的代码
    dim x1
    x1=a1
    if x1<a2 then
     x1=a2
    end if
    if x1<a3 then
     x1=a3
    end if
    if x1<a4 then
     x1=a4
    end if
    if x1<a5 then
     x1=a5
    end if
    max1=x1
End Function

 

在 if x1<a2 then 处运行不了


--  作者:yukizzc
--  发布时间:2017/12/28 9:13:58
--  

是有报错还是什么问题?

本地运行没有异常啊


--  作者:guotx2010
--  发布时间:2017/12/28 12:17:29
--  
max1=fun.max(fun.max(fun.max(fun.max(a1,a2),a3),a4),a5)
就可以返回最大数了

--  作者:wo2572527297
--  发布时间:2017/12/29 9:36:27
--  
编译器错误13,类型不匹配
--  作者:wo2572527297
--  发布时间:2017/12/29 11:22:50
--  
顶一下