請老師幫忙轉化一下
作者:文華財經 來源: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
?