請(qǐng)老師幫忙轉(zhuǎn)化一下
作者:文華財(cái)經(jīng) 來(lái)源:cxh99.com 發(fā)布時(shí)間:2022年03月18日
-
咨詢內(nèi)容:
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;
請(qǐng)老師幫忙轉(zhuǎn)變成WH9的代碼,謝謝。
?
?來(lái)源:程序化99
-
文華技術(shù)人員:
?參考:
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
?