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[])
مكتبة باين
كمثال للقيم التي تتبناها TradingView، نشر المؤلف شيفرة باين كمكتبة مفتوحة المصدر بحيث يمكن لمبرمجي باين الآخرين من مجتمعنا استخدامه بحرية. تحياتنا للمؤلف! يمكنك استخدام هذه المكتبة بشكل خاص أو في منشورات أخرى مفتوحة المصدر، ولكن إعادة استخدام هذا الرمز في المنشورات تخضع لقواعد الموقع.
إخلاء المسؤولية
لا يُقصد بالمعلومات والمنشورات أن تكون، أو تشكل، أي نصيحة مالية أو استثمارية أو تجارية أو أنواع أخرى من النصائح أو التوصيات المقدمة أو المعتمدة من TradingView. اقرأ المزيد في شروط الاستخدام.
مكتبة باين
كمثال للقيم التي تتبناها TradingView، نشر المؤلف شيفرة باين كمكتبة مفتوحة المصدر بحيث يمكن لمبرمجي باين الآخرين من مجتمعنا استخدامه بحرية. تحياتنا للمؤلف! يمكنك استخدام هذه المكتبة بشكل خاص أو في منشورات أخرى مفتوحة المصدر، ولكن إعادة استخدام هذا الرمز في المنشورات تخضع لقواعد الموقع.
إخلاء المسؤولية
لا يُقصد بالمعلومات والمنشورات أن تكون، أو تشكل، أي نصيحة مالية أو استثمارية أو تجارية أو أنواع أخرى من النصائح أو التوصيات المقدمة أو المعتمدة من TradingView. اقرأ المزيد في شروط الاستخدام.