FibonacciExtensions

View as Markdown

Definition

Represents an interface that exposes information regarding a Fibonacci 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
ExtensionAnchorAn IDrawingTool’s ChartAnchor representing the extension point of the drawing object
PriceLevelsA collection of prices calculated by the drawing object
TextLocationAn enum determining the text location; can be set to TextLocation.Off to remove text
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// Instantiates a Fibonacci Extension
2FibonacciExtensions myFibExt = Draw.FibonacciExtensions(this, "tag1", true, 4, Low[4], 3, High[3], 1, Low[1]);
3
4// Extend the Fibonacci Extension object's lines to the right
5myFibExt.IsExtendedLinesRight = true;