An Open Linear Regression channel.
Namespace:
RightEdge.Common.ChartObjectsAssembly: Common (in Common.dll)
Version: 2008.1.0.0 (2008.1.0.0)
Syntax
| C# |
|---|
[SerializableAttribute] public class ChartOpenLRegression : ChartRegressionBase |
| Visual Basic (Declaration) |
|---|
<SerializableAttribute> _ Public Class ChartOpenLRegression _ Inherits ChartRegressionBase |
| Visual C++ |
|---|
[SerializableAttribute] public ref class ChartOpenLRegression : 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 an open linear regression channel programmatically (C#)
CopyC#
// Setup our X coordinates. DateTime leftPoint = DateTime.Now.AddDays(-21); DateTime rightPoint = DateTime.Now; // Create the open linear regression channel object with the default color. // Note, the price (Y) portion of the ChartPoint is not used. ChartOpenLRegression lrOpenChannel = new ChartOpenLRegression(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, lrOpenChannel);
Inheritance Hierarchy
System..::.Object
RightEdge.Common.ChartObjects..::.ChartObjectBase
RightEdge.Common.ChartObjects..::.ChartRegressionBase
RightEdge.Common.ChartObjects..::.ChartOpenLRegression
RightEdge.Common.ChartObjects..::.ChartObjectBase
RightEdge.Common.ChartObjects..::.ChartRegressionBase
RightEdge.Common.ChartObjects..::.ChartOpenLRegression