A:MA(C,5);
B:MA(C,10);
StickLine( A>B , HIGH , LOW , 0.1 , 0 ) , ColorRed ;
StickLine( A>B, CLOSE , OPEN , 8 , 0 ) , ColorRed ;
StickLine( A<B , HIGH , LOW , 0.1 , 0 ) , ColorGreen ;
StickLine( A<B , CLOSE , OPEN , 8 , 0 ) , ColorGreen ;
StickLine( CROSS(A,B) , HIGH , LOW , 0.1 , 0 ) , ColorYellow ;
StickLine( CROSS(A,B) , CLOSE , OPEN , 8 , 0 ) , ColorYellow ;
StickLine( CROSS(B,A) , HIGH , LOW , 0.1 , 0 ) , ColorYellow ;
StickLine( CROSS(B,A) , CLOSE , OPEN , 8 , 1 ) , ColorYellow ;

記得勾選主圖疊加.....
|