54 decimal rangeSize, decimal open, decimal? high =
null, decimal? low =
null, decimal? close =
null, decimal volume = 0)
60 Close = close ?? open;
72 public void Update(DateTime time, decimal currentValue, decimal volumeSinceLastUpdate)
76 if (currentValue <
Low)
90 else if (currentValue >
High)
105 Volume += volumeSinceLastUpdate;