龙听期货论坛's Archiver
C
+
+
版
量
化
微信:
QQ:
龙听期货论坛
»
编程语言More>>||
»
MC内置指标【Pre-built Indicators】
» 【Price < Avg】
龙听
发表于 2022-11-3 13:07
【Price < Avg】
[code]
inputs: Price( Close ), Length( 14 ) ;
condition1 = Price < AverageFC( Price, Length ) ;
if condition1 then
begin
PlotPaintBar( High, Low, "Pr<Avg" ) ;
Alert ;
end
else
NoPlot( 1 ) ;
[/code]
页:
[1]