操盘1号,趋势操盘,勇于捕捉掌握趋势的很实用的指标。
a:=(3*C+L+O+H)/6;
ee:(20*a+19*REF(a,1)+18*REF(a,2)+17*REF(a,3)+16*REF(a,4)+15*REF(a,5)+14*REF(a,6)
+13*REF(a,7)+12*REF(a,8)+11*REF(a,9)+10*REF(a,10)+9*REF(a,11)+8*REF(a,12)
+7*REF(a,13)+6*REF(a,14)+5*REF(a,15)+4*REF(a,16)+3*REF(a,17)+2*REF(a,18)+
REF(a,20))/210,colorwhite;
ff:MA(ee,10);
ma均:MA(C,30);
ef:=CROSS(ee,ff);
STICKLINE(C>ff,LOW,OPEN,0.1,1),colorred;
STICKLINE(C>ff,CLOSE,OPEN,7.5,1),colorred;
STICKLINE(C>ff,CLOSE,HIGH,0.1,1),colorred;
STICKLINE(C<ff,HIGH,CLOSE,0.1,1),colorFFFF00 ;
STICKLINE(C<ff,CLOSE,OPEN,7.5,1),colorFFFF00 ;
STICKLINE(C<ff,OPEN,LOW,0.1,1),colorFFFF00 ;