googleandy 發表於 14-5-31 09:00

請教參數問題:Numeric,NumericSimple,NumericRef,NumericSeries

請教參數問題:
input:VarA(Numeric);
input:VarB(NumericSimple);
input:VarC(NumericRef);
input:VarD(NumericSeries);

以上參數用法有何不同? 謝謝!
(如果舉例說明更佳)


orsonyang 發表於 14-5-31 10:04

MC客服的回答
Numeric數字型態自動切換 常數或時序

NumericSimple數字型態常數不可取歷史值

NumericSeries數字型態時序   可取歷史值

NumericRef數字型態傳址   可回傳

f29825604 發表於 14-5-31 11:04

Powerlanguage程式交易語法大全
找到一個範例

內建的快速總和函數SummationFCinputs:
        PriceValue( numericseries ),
        Len( numericsimple ) ;                                       

variables:
        var0( 0 ) ;

if CurrentBar = 1 then
        begin
        for Value1 = 0 to Len - 1
                begin
                var0 = var0 + PriceValue ;
                end ;
        end
else
        var0 = var0 + PriceValue - PriceValue ;

SummationFC = var0 ;
PriceValue是要加總的數列
Len是要加總的長度(個數)
腳本中的陳述式,都可以直接用參數名稱來取用參數的值

僅供參考

googleandy 發表於 14-5-31 12:31

f29825604 發表於 14-5-31 11:04 static/image/common/back.gif
Powerlanguage程式交易語法大全
找到一個範例



這個舉例,有幫助,謝謝!{:4_209:}

Sung99 發表於 14-6-1 21:07

好多熱心的人 ! 這是ㄧ個好地方 !

{:4_621:}
頁: [1]
查看完整版本: 請教參數問題:Numeric,NumericSimple,NumericRef,NumericSeries