龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-3 13:58

【相关系数指标(Correlation)】

[code]
inputs:
        IndepData( Close of data1 ),
        DepData( Close of data2 ),
        Length( 14 ),
        PosCorrAlert( .7 ),
        NegCorrAlert( -.7 ) ;

variables:
        var0( 0 ) ;

var0 = Correlation( IndepData, DepData, Length ) ;

Plot1( var0, "Correl" ) ;
Plot2( PosCorrAlert, "PosCorrAlert" ) ;
Plot3( NegCorrAlert, "NegCorrAlert" ) ;

condition1 = var0 crosses over PosCorrAlert ;
if condition1 then
        Alert( "Positive correlation alert" )
else
begin
condition1 = var0 crosses under NegCorrAlert ;
if condition1 then
        Alert( "Negative correlation alert" ) ;
end;

[/code]

页: [1]