请老师帮忙转化一下
作者:文华财经 来源:cxh99.com 发布时间:2022年03月18日
-
咨询内容:
A0:C,COLORWHITE,LINETHICK1;A1:HV(H,N),COLORYELLOW,LINETHICK1;A2:LV(L,N),COLORYELLOW,LINETHICK1;C>HV(H,N),BPK;C<LV(L,N),SPK;AUTOFILTER;
请老师帮忙转变成WH9的代码,谢谢。
来源:程序化99
-
文华技术人员:
参考:
Params
Numeric N(10);
Vars
Begin
PlotLine("A0",Close,WHITE,LINETHICK1,Precis3,0);
PlotLine("A1",HV(high,n),YELLOW,LINETHICK1,Precis3,0);
PlotLine("A2",lV(low,n),YELLOW,LINETHICK1,Precis3,0);
If(Close>HV(high,n)) BPK;
If(Close<lV(low,n)) sPK;
End