日线以下周期,返回值如下:
- 如果图表设置为成交量基于交易量,则openint返回值为下跌股数 - 如果图表设置为成交量基于成交笔数,则openint返回值为当前bar下跌笔数
OpenInt
以当前Bar的openint 值画线:
Plot1(OpenInt,"Open interest");
Plot1
"Open interest"
以前一根K线的openint值画线:
Plot1(OpenInt of 1 Bar Ago,"Previous bar's open interest");
of
1
Bar Ago
"Previous bar's open interest"
以前第二根openint值画线:
Plot1(OpenInt[2],"Open interest 2 bars ago");
2
"Open interest 2 bars ago"