DrawingFibonacciArc CLASS

MoveToBackground PROPERTY (bool)
Prints drawing behind the chart SYNTAX public bool MoveToBackground { get; set; }
Wed, May 9, 2018 at 1:34 PM
ShowFullArc PROPERTY (bool)
Shows/Hides a full Arc SYNTAX public bool ShowFullArc { get; set; }
Wed, May 9, 2018 at 1:35 PM
State PROPERTY (DrawingState)
Drawing locking state - locked or unlocked(can be managed from the terminal) SYNTAX public DrawingState State { get; set; }
Wed, May 9, 2018 at 1:40 PM
SynchronizeWithCharts (bool)
Represents drawing in all charts that had same Instrument SYNTAX public bool SynchronizeWithCharts { get; set; }
Wed, May 9, 2018 at 1:40 PM
DrawingFibonacciArc (TimePrice point1, TimePrice point2, int windowIndex) CONSTRUCTOR
Constructor for a Fibonacci Arc tool SYNTAX public DrawingFibonacciArc (TimePrice point1,TimePrice point2,int windowIndex) PARAMETERS point1 ...
Wed, May 9, 2018 at 1:42 PM
AddFibonacciLevel (FibonacciLevel level) METHOD (Return: void)
add new Fibonacci level to the list of levels SYNTAX public void AddFibonacciLevel (FibonacciLevel level) PARAMETERS level — FibonacciLevel n...
Wed, May 9, 2018 at 1:44 PM
GetPoint (int pointIndex) METHOD (Return: TimePrice)
returns point coordinates in a chart measure format - time(X) price(Y) SYNTAX public TimePrice GetPoint (int pointIndex) PARAMETERS pointInde...
Wed, May 9, 2018 at 1:47 PM
RemoveFibonacciLevel (FibonacciLevel level) METHOD (Return: void)
remove a Fibonacci level from the list of levels by reference SYNTAX public void RemoveFibonacciLevel (FibonacciLevel level) PARAMETERS leve...
Wed, May 9, 2018 at 1:49 PM
RemoveFibonacciLevel (int index) METHOD (Return: void)
remove a Fibonacci level from the list of levels by index SYNTAX public void RemoveFibonacciLevel (int index) PARAMETERS index — int RETURN...
Wed, May 9, 2018 at 1:51 PM
SetPoint (int pointIndex, TimePrice newPoint) METHOD (Return: void)
sets drawing's point coordinates in a chart measure format - time(X) price(Y) SYNTAX public void SetPoint (int pointIndex,TimePrice newPoint) ...
Wed, May 9, 2018 at 1:55 PM