



notext1=50;
draw(notext1,color=\”#ffffff\”);
a1=(close?-?lowest(low,6))?/?(highest(high,6)?-?lowest(low,6))?*?100;
操盘线=ema(a1,3);
draw(操盘线,color=\”#ff00ff\”);
notext2=\”\”;
drawIf(操盘线?<=?refBefore(操盘线,1),操盘线,color=\”green\”);
强弱线=ema(操盘线,30);
mb1=highest(操盘线,27);
mb2=lowest(操盘线,27);
云彩=refBefore(mb1,1);
draw(云彩,color=\”#c08000\”);
地平线=refBefore(mb2,1);
draw(地平线,color=\”#99eeee\”);
drawIf(操盘线?>?ema(云彩,1),操盘线,color=\”red\”);
drawIf(操盘线?<?ema(地平线,1),操盘线,color=\”blue\”);
aa1=refBefore(操盘线,1)?<?操盘线?&&?refBefore(操盘线,1)?<?refBefore(操盘线,2)?&&?count(操盘线?<?地平线,4)?>?1;
drawStickBetweenIf(aa1?>?0.1,0,highest(云彩,500),color=\”yellow\”,fill=true,linewidth=1);
drawStickBetweenIf(aa1?>?0.1,0,(highest(云彩,500))?*?0.95,color=\”#000000\”,fill=true,linewidth=0.0);
drawText(aa1,(highest(云彩,500))?*?0.93,\”?龙门\”,color=\”yellow\”);

