天软金融分析.NET函数大全 > 金融函数 > 专题函数 > 因子研究 > 技术面之筹码因子

Index_TA_ChipDistribution    

定义
Index_TA_ChipDistribution(IndexID;EndT;Days;PriceType;RightType;Stype) :Array功能:获取指数筹码分布指标
参数
名称类型说明
IndexIDString,指数代码
EndTDate,截止日
DaysInteger,测算天数
PriceTypeInteger,指数均价算法类型
0:算术平均
1:成交量加权平均
2:成交金额加权平均
3:成交量加权平均(调整)
RightTypeInteger,换手率加权方式
0:加权平均
1:算术平均
StypeInteger,换手率股票类型
0:全部
1:A股
返回Array功能:获取指数筹码分布指标数据表
  • 范例
    获取沪深300在20230206筹码分布指标
      IndexID := "SH000300";
      EndT := 20230206t;
      Days := 5;
      PriceType := 0;
      RightType := 0;
      Stype := 1;
      return Index_TA_ChipDistribution(IndexID,EndT,Days,PriceType,RightType,Stype);
    返回:
相关