【TLSlope】
[code]inputs:StartPriceValue( numericsimple ),
StartBar( numericsimple ),
EndPriceValue( numericsimple ),
EndBar( numericsimple ) ;
variables:
var0( 0 ) ;
var0 = StartBar - EndBar ;
if var0 <> 0 then
TLSlope = ( EndPriceValue - StartPriceValue ) / var0
else
TLSlope = 0 ;
[/code] 谢谢
页:
[1]