Fibonacci Cycle Line
Namespace:
RightEdge.Common.ChartObjectsAssembly: Common (in Common.dll)
Version: 2008.1.0.0 (2008.1.0.0)
Syntax
| C# |
|---|
[SerializableAttribute] public class ChartFibCycleLine : ChartCycleLineBase |
| Visual Basic (Declaration) |
|---|
<SerializableAttribute> _ Public Class ChartFibCycleLine _ Inherits ChartCycleLineBase |
| Visual C++ |
|---|
[SerializableAttribute] public ref class ChartFibCycleLine : public ChartCycleLineBase |
Examples
Create a fibonacci cycle line object programmatically (C#)
CopyC#
// Setup our X coordinates. DateTime point1 = DateTime.Now.AddDays(-21); // Create the fibonacci cycle line object. ChartFibCycleLine cycleLine = new ChartFibCycleLine(new ChartPoint(point1, 25.00)); // Add this object to the chart. "symbol" would equal the current symbol object in the system. ChartObjects.Add(symbol, cycleLine);
Inheritance Hierarchy
System..::.Object
RightEdge.Common.ChartObjects..::.ChartObjectBase
RightEdge.Common.ChartObjects..::.ChartCycleLineBase
RightEdge.Common.ChartObjects..::.ChartFibCycleLine
RightEdge.Common.ChartObjects..::.ChartObjectBase
RightEdge.Common.ChartObjects..::.ChartCycleLineBase
RightEdge.Common.ChartObjects..::.ChartFibCycleLine