FibonacciCircle
Definition
Represents an interface that exposes information regarding a Fibonacci Circle IDrawingTool.
Methods and Properties
Examples
ns |
Represents an interface that exposes information regarding a Fibonacci Circle IDrawingTool.
| 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 |
| IsTimePriceDividedSeparately | A bool value which when true determines if the time and price are calculated together as a ratio, or independently |
| IsTextDisplayed | A bool value determining if the draw object should display text on the chart. |
1 // Instantiate a Fibonacci circle 2 FibonacciCircle myFibCirc = Draw.FibonacciCircle(this, "tag1", true, 10, Low[10], 0, High[0]); 3 4 // Ensure that text is being displayed on the Drawing Object 5 myFibCirc.IsTextDisplayed = true;