A Linear Regression channel.

Namespace:  RightEdge.Common.ChartObjects
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
[SerializableAttribute]
public class ChartLRegressionChannel : ChartRegressionBase
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class ChartLRegressionChannel _
	Inherits ChartRegressionBase
Visual C++
[SerializableAttribute]
public ref class ChartLRegressionChannel : public ChartRegressionBase

Remarks

A classic statistical problem is to try to determine the relationship between two random variables. The Linear Regression channel displays the statistically predicted price value.

Examples

Create a linear regression channel programmatically (C#)
CopyC#
// Setup our X coordinates.
DateTime leftPoint = DateTime.Now.AddDays(-21);
DateTime rightPoint = DateTime.Now;

// Create the linear regression channel object with the default color.
// Note, the price (Y) portion of the ChartPoint is not used.
ChartLRegressionChannel lrChannel = new ChartLRegressionChannel(new ChartPoint(leftPoint, 20.00), new ChartPoint(rightPoint, 20.00));

// Add this object to the chart.  "symbol" would equal the current symbol object in the system.
ChartObjects.Add(symbol, lrChannel);

Inheritance Hierarchy

System..::.Object
  RightEdge.Common.ChartObjects..::.ChartObjectBase
    RightEdge.Common.ChartObjects..::.ChartRegressionBase
      RightEdge.Common.ChartObjects..::.ChartLRegressionChannel

See Also