Building a tape reader style indicator and using histograms. Fairly simple calculation & my current version is working but doesn't plot historical data. Specifically, I load it onto a chart, and it begins working, but doesn't show histogram plots prior to time of initialization on the chart. Not sure how to implement this. Properties issue ? Get Set ??
If so, the Value is "Tape"; I currently have:
[Browsable(false)]
[XmlIgnore]
public Series<double> Tape
{
get { return Values[0]; }
}
Add a set value??
Or if elsewise thanx in advance
...

Comment