龙听期货论坛's Archiver
龙听期货论坛
»
编程语言More>>||
»
MC内置指标【Pre-built Indicators】
» 【一天的新低点(New Low for Day)】
龙听
发表于 2022-11-3 13:32
【一天的新低点(New Low for Day)】
[code]
variables: var0( 0 ) ;
if BarType <= 1 or BarType >= 5 then
begin
if Date <> Date[1] then
var0 = Low
else if Low < var0 then
begin
Plot1( Low, "NewLo-D" ) ;
Alert ;
var0 = Low ;
end ;
end ;
[/code]
页:
[1]