Chart CLASS

VisibleBarsCount PROPERTY (int)
The number of bars visible on the chart (c considering the holes if they are included) SYNTAX public int VisibleBarsCount { get; } EXAMPLE u...
Sun, May 6, 2018 at 5:49 PM
FindWindow (string name) METHOD (Return: int)
If indicator with name was found, the function returns the window index containing this specified indicator, otherwise it returns -1; SYNTAX public ...
Sun, May 6, 2018 at 5:50 PM
FindWindow (Indicator indicator) METHOD (Return: int)
If indicator with name was found, the function returns the window index containing this specified indicator, otherwise it returns -1; SYNTAX public ...
Sun, May 6, 2018 at 5:51 PM
FindWindow (NETIndicator indicator) METHOD (Return: int)
If indicator with name was found, the function returns the window index containing this specified indicator, otherwise it returns -1; SYNTAX public ...
Sun, May 6, 2018 at 5:52 PM
GetAllWindows () METHOD (Return: Window[])
All chart window SYNTAX public Window[] GetAllWindows () RETURN Window[] EXAMPLE using System; using System.Collections; using Syste...
Sun, May 6, 2018 at 5:53 PM
GetBarOffset (int displayIndex) METHOD (Return: int)
price index for a query of Historical data displayIndex = [0, VisibleBarsCount - 1] -1 If the bar is no such index (a hole or out of bounds) SYNTAX ...
Sun, May 6, 2018 at 6:18 PM
GetChartControl () METHOD (Return: Control)
Returns the chart's control SYNTAX public Control GetChartControl () RETURN Control
Sun, May 6, 2018 at 6:19 PM
GetChartPoint (DateTime time, double price) METHOD (Return: PointF)
Grasps a point on chart field according to y-axes presented by price and x-axes by time on main window. SYNTAX public PointF GetChartPoint (DateTime...
Sun, May 6, 2018 at 6:28 PM
GetChartPoint (DateTime time, double price, int windowNumber, bool allowIntrabar) METHOD (Return: PointF)
Grasps a point on chart field according to y-axes presented by price and x-axes by time on main window or any sub window by given number with intrabar optio...
Sun, May 6, 2018 at 6:31 PM
GetIndicators () METHOD (Return: Indicator[])
Gets all indicators added to the current chart SYNTAX public Indicator[] GetIndicators () RETURN Indicator[] array of added indicators
Sun, May 6, 2018 at 6:32 PM