FibonacciTimeExtensions
Definition
Represents an interface that exposes information regarding a Fibonacci Time Extensions IDrawingTool.
Methods and Properties
| Parameter | Description |
|---|---|
| StartAnchor | An IDrawingTool’s ChartAnchor representing the starting point of the drawing object |
| EndAnchor | An IDrawingTool’s ChartAnchor representing the end point of the drawing object |
| PriceLevels | A collection of prices calculated by the drawing object |
| IsTextDisplayed | A bool value determining if the draw object should display text on the chart. |
| IsExtendedLinesLeft | A bool value determining if the draw object should draw lines to the far left side of the screen |
| IsExtendedLinesRight | A bool value determining if the draw object should draw lines to the far right side of the screen |
Examples
// Instantiate a FibonacciTimeExtensions objectFibonacciTimeExtensions myFibTime = Draw.FibonacciTimeExtensions(this, "tag1", false, 10, Low[10], 0, High[0]);// Instantiate a new PriceLevel to be used in the step belowPriceLevel myLevel = new PriceLevel(99, Brushes.Black);// Change the object's price level at index 3myFibTime.PriceLevels[3] = myLevel;