九毛八公式指标
公式模块:
请老师帮忙修改代码,去掉画面中的虚线部分,保留:“突破”作为提示。
以下这段代码是由大智慧L2买卖总量修改而成。
总卖量:=ALLASKvol;
总买量:=ALLBIDVOL;
tt:=if(time0<=41400,(time0-34200)/60,120+(time0-46800)/60);
上:=(cross(总买量,总卖量) and count(cross(总买量,总卖量),tt)=2 and count(cross(总卖量,总买量),tt)=1) or(cross(总买量,总卖量) and count(cross(总买量,总卖量),tt)=2 and count(cross(总卖量,总买量),tt)=2);
下:=(cross(总卖量,总买量) and count(cross(总卖量,总买量),tt)=2 and count(cross(总买量,总卖量),tt)=2) or (cross(总卖量,总买量) and count(cross(总卖量,总买量),tt)=3 and count(cross(总买量,总卖量),tt)=2);
上上:=cross(总卖量,总买量) and count(cross(总买量,总卖量),tt)=1 and count(cross(总卖量,总买量),tt)=1;
下下:=cross(总卖量,总买量) and count(cross(总卖量,总买量),tt)=2 and count(cross(总买量,总卖量),tt)=1;
VERTLINE(上 ,1 ),COLOR0000ff;
VERTLINE(下 ,1 ),COLOR00ff00;
VERTLINE(上上 ,2),COLOR0000ff;
VERTLINE(下下 ,2),COLOR00ff00;
DRAWTEXT(上,L,'★突破'),COLORRED;
{VERTLINE(下 ,1 ),COLOR00ff00;
VERTLINE(上上 ,2),COLOR0000ff;
VERTLINE(下下 ,2),COLOR00ff00;}