龙听期货论坛's Archiver

C
+
+


 微信: QQ:

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

【浮动文字显示(FloatingText)】

[code]
inputs:
        TextToPlot( "MyText" ),                                 
        TextBarsBack( 10 ),                                                           
                      
           TextPricePercent( 50 ) ;                                                   
                                                                                     
                                                                                          
                                                       

variables:
        var0( -1 ) ;

if LastBarOnChart then
        begin
        if var0 < 0 then
                var0 = Text_New( Date, Time, Close, TextToPlot ) ;
        if var0 >= 0 then
                Value1 = Text_Float( var0, TextBarsBack, TextPricePercent ) ;
        end ;

[/code]

页: [1]