AddChartFibonacciProjections()

Description

Draw Fibonacci Projections () sketches Fibonacci Projections.

Usage

AddChartFibonacciProjections(string name, bool autoScale, DateTime start1Time, double start1Y,DateTime start2Time, double start2Y, DateTime start3Time, double start3Y)

Return Value

A drawing object of the type IFibonacciProjections (Interface)

Parameter

name

A clearly identifiable name for the drawing object

autoScale

Adjusts the scale of the y-axis so that drawing objects can be viewed in their entirety

start1Time

Date/time for start point 1

start1Y

y-value for start point 1

start2Time

Date/time for start point 2

start2Y

y-value for the start point 2

start3Time

Date/time for start point 3

start3Y

y-value for start point 3

Example

// zeichnet FibonacciProjections
AddChartFibonacciProjections("MyFibPro-" + ProcessingBarIndex, true, Low[4], 3, High[3], 1, Low[1], 2);

Last updated