namespace MuchInfo.Chart.Data.Interfaces { /// /// 柱数据点接口 /// public interface IBarDataPoint : IOHLCDataPoint { /// /// 成交量 /// float Volume { get; set; } /// /// 成交额 /// float Turnover { get; set; } /// /// 持仓量 /// float HoldVolume { get; set; } } }