只畫一半不畫了 
如果只有主要的線沒有問提。

設定值

print都有值 附件有log
Variable: _cv(0),_cv_NH(0),_cv_NL(0);
If CurrentBar = 1 then begin
_cv=0;
_cv_NH=-99999;
_cv_NL=99999;
End;
_cv = ////我的公式;
Plot1(_cv, "CoV");
print(Date,Time,"Cov",_cv);
if _cv > _cv_NH then begin
_cv_NH = _cv;
print(Date,Time,"NH",_cv);
Plot11(_cv_NH,"NH");
End;
7 評論