CV指標 By 發財橘子 | 2019-02-24 0 Comment 分享 腳本 複製1// XQ: CV指標 2// 3Variable: _cv(0); 4 5If CurrentBar = 1 then 6 _cv = Close * Volume 7else 8 _cv = _cv[1] + (Close - Close[1]) * Volume; 9 10Plot1(_cv, "CV");// XQ: CV指標 // Variable: _cv(0); If CurrentBar = 1 then _cv = Close * Volume else _cv = _cv[1] + (Close - Close[1]) * Volume; Plot1(_cv, "CV"); 參考圖表 分享