CVI累積成交量指標

By | 2019-02-24

腳本

// XQ: CVI指標
//
variable: _cvi(0);

If CurrentBar > 1 then
 _cvi = _cvi[1] + GetField("UpVolume") - GetField("DownVolume");

Plot1(_cvi, "CVI");

參考圖表

CVI