A Linear Regression line.
Namespace:
RightEdge.Common.ChartObjectsAssembly: Common (in Common.dll)
Version: 2008.1.0.0 (2008.1.0.0)
Syntax
| C# |
|---|
[SerializableAttribute] public class ChartLRegression : ChartRegressionBase |
| Visual Basic (Declaration) |
|---|
<SerializableAttribute> _ Public Class ChartLRegression _ Inherits ChartRegressionBase |
| Visual C++ |
|---|
[SerializableAttribute] public ref class ChartLRegression : public ChartRegressionBase |
Remarks
A classic statistical problem is to try to determine the relationship between two random
variables. The Linear Regression line displays the statistically predicted price value.
Examples
Create a linear regression line programmatically (C#)
CopyC#
// Setup our X coordinates. DateTime leftPoint = DateTime.Now.AddDays(-21); DateTime rightPoint = DateTime.Now; // Create the linear regression object with the default color. // Note, the price (Y) portion of the ChartPoint is not used. ChartLRegression lrLine = new ChartLRegression(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, lrLine);
Inheritance Hierarchy
System..::.Object
RightEdge.Common.ChartObjects..::.ChartObjectBase
RightEdge.Common.ChartObjects..::.ChartRegressionBase
RightEdge.Common.ChartObjects..::.ChartLRegression
RightEdge.Common.ChartObjects..::.ChartObjectBase
RightEdge.Common.ChartObjects..::.ChartRegressionBase
RightEdge.Common.ChartObjects..::.ChartLRegression