FibonacciTimeExtensions

View as Markdown

Definition

Represents an interface that exposes information regarding a Fibonacci Time Extensions IDrawingTool.

Methods and Properties

ParameterDescription
StartAnchorAn IDrawingTool’s ChartAnchor representing the starting point of the drawing object
EndAnchorAn IDrawingTool’s ChartAnchor representing the end point of the drawing object
PriceLevelsA collection of prices calculated by the drawing object
IsTextDisplayedA bool value determining if the draw object should display text on the chart.
IsExtendedLinesLeftA bool value determining if the draw object should draw lines to the far left side of the screen
IsExtendedLinesRightA bool value determining if the draw object should draw lines to the far right side of the screen

Examples

1// Instantiate a FibonacciTimeExtensions object
2FibonacciTimeExtensions myFibTime = Draw.FibonacciTimeExtensions(this, "tag1", false, 10, Low[10], 0, High[0]);
3
4// Instantiate a new PriceLevel to be used in the step below
5PriceLevel myLevel = new PriceLevel(99, Brushes.Black);
6
7// Change the object's price level at index 3
8myFibTime.PriceLevels[3] = myLevel;