Summary
The histogram (bar graph). The difference between the short and long cycles.
Syntax
public IndicatorDataSeries Histogram{ get; }
Example 1
//... private MacdHistogram macd; macd = Indicators.MacdHistogram(LongCycle, ShortCycle, Period); //... public override void Calculate(int index) { double macdHistogramResult = macd.Histogram[index]; //... }