PINE LIBRARY
lib_plot_composite_objects

Library "lib_plot_composite_objects"
library building on top of lib_plot_objects for composite objects such as Triangles and Polygons. heavily using chart.points
method tostring(this, date_format)
Namespace types: Triangle
Parameters:
this (Triangle)
date_format (simple string)
method tostring(this, date_format)
Namespace types: TriangleFill
Parameters:
this (TriangleFill)
date_format (simple string)
method tostring(this, date_format)
Namespace types: Polygon
Parameters:
this (Polygon)
date_format (simple string)
method tostring(this, date_format)
Namespace types: PolygonFill
Parameters:
this (PolygonFill)
date_format (simple string)
method tostring(this, date_format)
Namespace types: Triangle[]
Parameters:
this (Triangle[])
date_format (simple string)
method tostring(this, date_format)
Namespace types: Polygon[]
Parameters:
this (Polygon[])
date_format (simple string)
method tostring(this, date_format)
Namespace types: TriangleFill[]
Parameters:
this (TriangleFill[])
date_format (simple string)
method tostring(this, date_format)
Namespace types: PolygonFill[]
Parameters:
this (PolygonFill[])
date_format (simple string)
method create_triangle(this, b, c, args)
Namespace types: chart.point
Parameters:
this (chart.point)
b (chart.point)
c (chart.point)
args (LineArgs type from robbatt/lib_plot_objects/32)
method create_triangle(this, c)
Namespace types: D.Line
Parameters:
this (Line type from robbatt/lib_plot_objects/32)
c (chart.point)
method create_polygon(points, args)
Namespace types: chart.point[]
Parameters:
points (chart.point[])
args (LineArgs type from robbatt/lib_plot_objects/32)
method create_polygon(start, others, args)
Namespace types: chart.point
Parameters:
start (chart.point)
others (chart.point[])
args (LineArgs type from robbatt/lib_plot_objects/32)
method create_fill(this, fill_color)
Namespace types: Triangle
Parameters:
this (Triangle)
fill_color (color)
method create_fill(this, fill_color)
Namespace types: Polygon
Parameters:
this (Polygon)
fill_color (color)
method create_center_label(this, txt, args, tooltip)
Namespace types: Triangle
Parameters:
this (Triangle)
txt (string)
args (LabelArgs type from robbatt/lib_plot_objects/32)
tooltip (string)
method create_label(this, txt, args, tooltip)
Namespace types: Polygon
Parameters:
this (Polygon)
txt (string)
args (LabelArgs type from robbatt/lib_plot_objects/32)
tooltip (string)
method nz(this, default)
Namespace types: Triangle
Parameters:
this (Triangle)
default (Triangle)
method nz(this, default)
Namespace types: TriangleFill
Parameters:
this (TriangleFill)
default (TriangleFill)
method nz(this, default)
Namespace types: Polygon
Parameters:
this (Polygon)
default (Polygon)
method nz(this, default)
Namespace types: PolygonFill
Parameters:
this (PolygonFill)
default (PolygonFill)
method enqueue(id, item, max)
Namespace types: Triangle[]
Parameters:
id (Triangle[])
item (Triangle)
max (int)
method enqueue(id, item, max)
Namespace types: Polygon[]
Parameters:
id (Polygon[])
item (Polygon)
max (int)
method enqueue(id, item, max)
Namespace types: TriangleFill[]
Parameters:
id (TriangleFill[])
item (TriangleFill)
max (int)
method enqueue(id, item, max)
Namespace types: PolygonFill[]
Parameters:
id (PolygonFill[])
item (PolygonFill)
max (int)
method update(this, a, b, c)
Namespace types: Triangle
Parameters:
this (Triangle)
a (chart.point)
b (chart.point)
c (chart.point)
method update(this, points)
Namespace types: Polygon
Parameters:
this (Polygon)
points (chart.point[])
method delete(this)
Namespace types: Triangle
Parameters:
this (Triangle)
method delete(this)
Namespace types: TriangleFill
Parameters:
this (TriangleFill)
method delete(this)
Namespace types: Polygon
Parameters:
this (Polygon)
method delete(this)
Namespace types: PolygonFill
Parameters:
this (PolygonFill)
method delete(this)
Namespace types: Triangle[]
Parameters:
this (Triangle[])
method delete(this)
Namespace types: TriangleFill[]
Parameters:
this (TriangleFill[])
method delete(this)
Namespace types: Polygon[]
Parameters:
this (Polygon[])
method delete(this)
Namespace types: PolygonFill[]
Parameters:
this (PolygonFill[])
method draw(this, ab_args_override, ac_args_override, bc_args_override)
Namespace types: Triangle
Parameters:
this (Triangle)
ab_args_override (LineArgs type from robbatt/lib_plot_objects/32)
ac_args_override (LineArgs type from robbatt/lib_plot_objects/32)
bc_args_override (LineArgs type from robbatt/lib_plot_objects/32)
method draw(this)
Namespace types: Polygon
Parameters:
this (Polygon)
method draw(this)
Namespace types: TriangleFill
Parameters:
this (TriangleFill)
method draw(this)
Namespace types: PolygonFill
Parameters:
this (PolygonFill)
method draw(this)
Namespace types: Triangle[]
Parameters:
this (Triangle[])
method draw(this)
Namespace types: TriangleFill[]
Parameters:
this (TriangleFill[])
method draw(this)
Namespace types: Polygon[]
Parameters:
this (Polygon[])
method draw(this)
Namespace types: PolygonFill[]
Parameters:
this (PolygonFill[])
method apply_style(this, args)
Namespace types: Triangle
Parameters:
this (Triangle)
args (LineArgs type from robbatt/lib_plot_objects/32)
method apply_style(this, args)
Namespace types: Polygon
Parameters:
this (Polygon)
args (LineArgs type from robbatt/lib_plot_objects/32)
method apply_style(this, args)
Namespace types: Triangle[]
Parameters:
this (Triangle[])
args (LineArgs type from robbatt/lib_plot_objects/32)
method apply_style(this, args)
Namespace types: Polygon[]
Parameters:
this (Polygon[])
args (LineArgs type from robbatt/lib_plot_objects/32)
Triangle
Fields:
a (chart.point): first Corner
b (chart.point): second Corner
c (chart.point): third Corner
args (LineArgs type from robbatt/lib_plot_objects/32): Wrapper for reusable arguments for line.new()
ab (Line type from robbatt/lib_plot_objects/32)
ac (Line type from robbatt/lib_plot_objects/32)
bc (Line type from robbatt/lib_plot_objects/32)
TriangleFill
Fields:
triangle (Triangle): The Triangle object
plot (LineFill type from robbatt/lib_plot_objects/32): The linefill object to be added and plotted via draw()
Polygon
Fields:
points (chart.point[]): array of points that make up the Polygon
center (chart.point): Center point of the Polygon, can be used for a label and will be center for PolygonFill
args (LineArgs type from robbatt/lib_plot_objects/32): Wrapper for reusable arguments for line.new()
plot (Line[] type from robbatt/lib_plot_objects/32): An array of Lines that form Polygon Border
PolygonFill
Fields:
poly (Polygon): the Polygon
fill_color (series color): The color used to fill the space between the lines.
plot (TriangleFill[])
library building on top of lib_plot_objects for composite objects such as Triangles and Polygons. heavily using chart.points
method tostring(this, date_format)
Namespace types: Triangle
Parameters:
this (Triangle)
date_format (simple string)
method tostring(this, date_format)
Namespace types: TriangleFill
Parameters:
this (TriangleFill)
date_format (simple string)
method tostring(this, date_format)
Namespace types: Polygon
Parameters:
this (Polygon)
date_format (simple string)
method tostring(this, date_format)
Namespace types: PolygonFill
Parameters:
this (PolygonFill)
date_format (simple string)
method tostring(this, date_format)
Namespace types: Triangle[]
Parameters:
this (Triangle[])
date_format (simple string)
method tostring(this, date_format)
Namespace types: Polygon[]
Parameters:
this (Polygon[])
date_format (simple string)
method tostring(this, date_format)
Namespace types: TriangleFill[]
Parameters:
this (TriangleFill[])
date_format (simple string)
method tostring(this, date_format)
Namespace types: PolygonFill[]
Parameters:
this (PolygonFill[])
date_format (simple string)
method create_triangle(this, b, c, args)
Namespace types: chart.point
Parameters:
this (chart.point)
b (chart.point)
c (chart.point)
args (LineArgs type from robbatt/lib_plot_objects/32)
method create_triangle(this, c)
Namespace types: D.Line
Parameters:
this (Line type from robbatt/lib_plot_objects/32)
c (chart.point)
method create_polygon(points, args)
Namespace types: chart.point[]
Parameters:
points (chart.point[])
args (LineArgs type from robbatt/lib_plot_objects/32)
method create_polygon(start, others, args)
Namespace types: chart.point
Parameters:
start (chart.point)
others (chart.point[])
args (LineArgs type from robbatt/lib_plot_objects/32)
method create_fill(this, fill_color)
Namespace types: Triangle
Parameters:
this (Triangle)
fill_color (color)
method create_fill(this, fill_color)
Namespace types: Polygon
Parameters:
this (Polygon)
fill_color (color)
method create_center_label(this, txt, args, tooltip)
Namespace types: Triangle
Parameters:
this (Triangle)
txt (string)
args (LabelArgs type from robbatt/lib_plot_objects/32)
tooltip (string)
method create_label(this, txt, args, tooltip)
Namespace types: Polygon
Parameters:
this (Polygon)
txt (string)
args (LabelArgs type from robbatt/lib_plot_objects/32)
tooltip (string)
method nz(this, default)
Namespace types: Triangle
Parameters:
this (Triangle)
default (Triangle)
method nz(this, default)
Namespace types: TriangleFill
Parameters:
this (TriangleFill)
default (TriangleFill)
method nz(this, default)
Namespace types: Polygon
Parameters:
this (Polygon)
default (Polygon)
method nz(this, default)
Namespace types: PolygonFill
Parameters:
this (PolygonFill)
default (PolygonFill)
method enqueue(id, item, max)
Namespace types: Triangle[]
Parameters:
id (Triangle[])
item (Triangle)
max (int)
method enqueue(id, item, max)
Namespace types: Polygon[]
Parameters:
id (Polygon[])
item (Polygon)
max (int)
method enqueue(id, item, max)
Namespace types: TriangleFill[]
Parameters:
id (TriangleFill[])
item (TriangleFill)
max (int)
method enqueue(id, item, max)
Namespace types: PolygonFill[]
Parameters:
id (PolygonFill[])
item (PolygonFill)
max (int)
method update(this, a, b, c)
Namespace types: Triangle
Parameters:
this (Triangle)
a (chart.point)
b (chart.point)
c (chart.point)
method update(this, points)
Namespace types: Polygon
Parameters:
this (Polygon)
points (chart.point[])
method delete(this)
Namespace types: Triangle
Parameters:
this (Triangle)
method delete(this)
Namespace types: TriangleFill
Parameters:
this (TriangleFill)
method delete(this)
Namespace types: Polygon
Parameters:
this (Polygon)
method delete(this)
Namespace types: PolygonFill
Parameters:
this (PolygonFill)
method delete(this)
Namespace types: Triangle[]
Parameters:
this (Triangle[])
method delete(this)
Namespace types: TriangleFill[]
Parameters:
this (TriangleFill[])
method delete(this)
Namespace types: Polygon[]
Parameters:
this (Polygon[])
method delete(this)
Namespace types: PolygonFill[]
Parameters:
this (PolygonFill[])
method draw(this, ab_args_override, ac_args_override, bc_args_override)
Namespace types: Triangle
Parameters:
this (Triangle)
ab_args_override (LineArgs type from robbatt/lib_plot_objects/32)
ac_args_override (LineArgs type from robbatt/lib_plot_objects/32)
bc_args_override (LineArgs type from robbatt/lib_plot_objects/32)
method draw(this)
Namespace types: Polygon
Parameters:
this (Polygon)
method draw(this)
Namespace types: TriangleFill
Parameters:
this (TriangleFill)
method draw(this)
Namespace types: PolygonFill
Parameters:
this (PolygonFill)
method draw(this)
Namespace types: Triangle[]
Parameters:
this (Triangle[])
method draw(this)
Namespace types: TriangleFill[]
Parameters:
this (TriangleFill[])
method draw(this)
Namespace types: Polygon[]
Parameters:
this (Polygon[])
method draw(this)
Namespace types: PolygonFill[]
Parameters:
this (PolygonFill[])
method apply_style(this, args)
Namespace types: Triangle
Parameters:
this (Triangle)
args (LineArgs type from robbatt/lib_plot_objects/32)
method apply_style(this, args)
Namespace types: Polygon
Parameters:
this (Polygon)
args (LineArgs type from robbatt/lib_plot_objects/32)
method apply_style(this, args)
Namespace types: Triangle[]
Parameters:
this (Triangle[])
args (LineArgs type from robbatt/lib_plot_objects/32)
method apply_style(this, args)
Namespace types: Polygon[]
Parameters:
this (Polygon[])
args (LineArgs type from robbatt/lib_plot_objects/32)
Triangle
Fields:
a (chart.point): first Corner
b (chart.point): second Corner
c (chart.point): third Corner
args (LineArgs type from robbatt/lib_plot_objects/32): Wrapper for reusable arguments for line.new()
ab (Line type from robbatt/lib_plot_objects/32)
ac (Line type from robbatt/lib_plot_objects/32)
bc (Line type from robbatt/lib_plot_objects/32)
TriangleFill
Fields:
triangle (Triangle): The Triangle object
plot (LineFill type from robbatt/lib_plot_objects/32): The linefill object to be added and plotted via draw()
Polygon
Fields:
points (chart.point[]): array of points that make up the Polygon
center (chart.point): Center point of the Polygon, can be used for a label and will be center for PolygonFill
args (LineArgs type from robbatt/lib_plot_objects/32): Wrapper for reusable arguments for line.new()
plot (Line[] type from robbatt/lib_plot_objects/32): An array of Lines that form Polygon Border
PolygonFill
Fields:
poly (Polygon): the Polygon
fill_color (series color): The color used to fill the space between the lines.
plot (TriangleFill[])
Thư viện Pine
Theo tinh thần TradingView thực sự, tác giả đã xuất bản mã Pine này dưới dạng thư viện nguồn mở để các lập trình viên Pine khác trong cộng đồng của chúng tôi có thể sử dụng lại. Xin tri ân tác giả! Bạn có thể sử dụng thư viện này riêng tư hoặc trong các bài đăng nguồn mở khác. Tuy nhiên, bạn cần sử dụng lại mã này theo Nội quy chung.
Thông báo miễn trừ trách nhiệm
Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.
Thư viện Pine
Theo tinh thần TradingView thực sự, tác giả đã xuất bản mã Pine này dưới dạng thư viện nguồn mở để các lập trình viên Pine khác trong cộng đồng của chúng tôi có thể sử dụng lại. Xin tri ân tác giả! Bạn có thể sử dụng thư viện này riêng tư hoặc trong các bài đăng nguồn mở khác. Tuy nhiên, bạn cần sử dụng lại mã này theo Nội quy chung.
Thông báo miễn trừ trách nhiệm
Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.