DrawingFibonacciFans CLASS
Prints drawing behind the chart SYNTAX public bool MoveToBackground { get; set; }
Wed, May 9, 2018 at 4:50 PM
Drawing locking state - locked or unlocked(can be managed from the terminal) SYNTAX public DrawingState State { get; set; }
Wed, May 9, 2018 at 4:50 PM
Represents drawing in all charts that had same Instrument SYNTAX public bool SynchronizeWithCharts { get; set; }
Wed, May 9, 2018 at 4:51 PM
Constructor for a Fibonacci Fans tool SYNTAX public DrawingFibonacciFans (TimePrice point1,TimePrice point2,int windowIndex) PARAMETERS point...
Wed, May 9, 2018 at 4:52 PM
add new Fibonacci level to the list of levels SYNTAX public void AddFibonacciLevel (FibonacciLevel level) PARAMETERS level — FibonacciLevel ...
Wed, May 9, 2018 at 5:04 PM
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 5:12 PM
remove a Fibonacci level from the list of levels by reference SYNTAX public void RemoveFibonacciLevel (FibonacciLevel level) PARAMETERS level...
Wed, May 9, 2018 at 5:13 PM
remove a Fibonacci level from the list of levels by index SYNTAX public void RemoveFibonacciLevel (int index) PARAMETERS index — int RETUR...
Wed, May 9, 2018 at 5:14 PM
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 5:16 PM