FibonacciCircle

View as Markdown

Definition

Represents an interface that exposes information regarding a Fibonacci Circle 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
IsTimePriceDividedSeparatelyA bool value which when true determines if the time and price are calculated together as a ratio, or independently
IsTextDisplayedA bool value determining if the draw object should display text on the chart.

Examples

ns |
1// Instantiate a Fibonacci circle
2FibonacciCircle myFibCirc = Draw.FibonacciCircle(this, "tag1", true, 10, Low[10], 0, High[0]);
3
4// Ensure that text is being displayed on the Drawing Object
5myFibCirc.IsTextDisplayed = true;