美文网首页
小公式语法

小公式语法

作者: 风___________ | 来源:发表于2019-08-29 17:25 被阅读0次

    关键字

    high : 当前最高价
    open : 当前开盘价
    close : 当前收盘价
    low : 当前最低价
    high[n] : 当前往前数第n根线的最高价.
    

    变量声明

    variable: max_high = -1;
    

    变量赋值

    max_high := 999;
    

    if 语句

    if max_high>1 then
    // 逻辑
    else if max_high>0 then
    // 逻辑
    else
    // 逻辑
    endif
    

    for循环

    for i in 1 to 20 do
    // 逻辑
    end
    

    函数声明

    function max(a,b) do
        variable: max = a;
        if a < b then
         max := b;
        endif
        return max;
    end
    
    function add(a,b) do
    return a+b;
    end
    

    相关文章

      网友评论

          本文标题:小公式语法

          本文链接:https://www.haomeiwen.com/subject/vtqwectx.html