龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-3 15:26

【Trendline LE】

[code]
[IntrabarOrderGeneration = false]
inputs:
        TLRef( 1 ) ;                                                                     
                         

variables:
        var0( TL_GetBeginDate( TLRef ) ),
        var1( TL_GetBeginTime( TLRef ) ),
        var2( false ) ;

var2 = ( Date = var0 and ( BarType = 2 or ( BarType = 1 and Time >= var1 ) ) )
or Date > var0 ;

condition1 = var2 and High < TL_GetValue( TLRef, Date, Time ) ;
if condition1 then
        Buy next bar at TL_GetValue( TLRef, Date next bar, Time next bar ) stop ;
[/code]

页: [1]