|
樓主 |
發表於 16-5-28 08:08
|
顯示全部樓層
[發表] 有關Volume的問題
日線以上 Volume 才會有值,在分線層級以下的成交量要使用 Ticks 。
新增一個函數 _Volume 使用
- if BarType >= 2 then
- _Volume = Volume
- else
- _Volume = Ticks;
複製代碼 可以用
- inputs:shortperiod(14),longperiod(56);
- vars: $volumeosc(0);
- if AverageFC( _volume,shortperiod) <> 0 then
- $volumeosc = ((Average(_volume,shortperiod)-Average(_volume,longperiod)) /Average(_volume,shortperiod))* 100;
- plot1($volumeosc, "volumeosc");
複製代碼
|
|