PINE LIBRARY
Cập nhật Mad_Standardparts

Library "Mad_Standardparts"
This are my Standardparts used in upcoming scipts
roundTo(_value, _decimals)
Round a floating point value to a specified number of decimal places.
description This function takes a floating point value and rounds it to a specified number of decimal places.
Parameters:
_value (float): The floating point value to be rounded.
_decimals (int): The number of decimal places to round to. Must be a non-negative integer.
Returns: The rounded value, as a floating point number.
clear_all()
Delete all drawings on the chart.
description This function deletes all drawings on the chart, including lines, boxes, and labels.
Returns: None.
shifting(_value)
Create a string of spaces to shift text over by a specified amount.
description This function takes an integer value and returns a string consisting of that many spaces, which can be used to shift text over in a PineScript chart.
Parameters:
_value (int): The number of spaces to create in the output string.
Returns: A string consisting of the specified number of spaces.
fromLog(_value)
Convert a linear value to a logarithmic value.
description This function takes a linear value and converts it to a logarithmic value, using the formula specified in the code.
Parameters:
_value (float)
Returns: The corresponding logarithmic value, as a floating point number.
toLog(_value)
Convert a logarithmic value to a linear value.
description This function takes a logarithmic value and converts it to a linear value, using the formula specified in the code.
Parameters:
_value (float)
Returns: The corresponding linear value, as a floating point number.
f_getbartime()
Calculate the time per bar on the chart.
description This function calculates the time per bar on the chart based on the first 100 bars.
Returns: The time per bar, as an integer value.
This are my Standardparts used in upcoming scipts
roundTo(_value, _decimals)
Round a floating point value to a specified number of decimal places.
description This function takes a floating point value and rounds it to a specified number of decimal places.
Parameters:
_value (float): The floating point value to be rounded.
_decimals (int): The number of decimal places to round to. Must be a non-negative integer.
Returns: The rounded value, as a floating point number.
clear_all()
Delete all drawings on the chart.
description This function deletes all drawings on the chart, including lines, boxes, and labels.
Returns: None.
shifting(_value)
Create a string of spaces to shift text over by a specified amount.
description This function takes an integer value and returns a string consisting of that many spaces, which can be used to shift text over in a PineScript chart.
Parameters:
_value (int): The number of spaces to create in the output string.
Returns: A string consisting of the specified number of spaces.
fromLog(_value)
Convert a linear value to a logarithmic value.
description This function takes a linear value and converts it to a logarithmic value, using the formula specified in the code.
Parameters:
_value (float)
Returns: The corresponding logarithmic value, as a floating point number.
toLog(_value)
Convert a logarithmic value to a linear value.
description This function takes a logarithmic value and converts it to a linear value, using the formula specified in the code.
Parameters:
_value (float)
Returns: The corresponding linear value, as a floating point number.
f_getbartime()
Calculate the time per bar on the chart.
description This function calculates the time per bar on the chart based on the first 100 bars.
Returns: The time per bar, as an integer value.
Phát hành các Ghi chú
v2Added an overload to roundTo to send a format as string
roundTo(_value, _decimals)
Round a floating point value to a specified number of decimal places.
description This function takes a floating point value and rounds it to a specified number of decimal places.
Phát hành các Ghi chú
v3Added:
roundTo(_value, i_decimals_s)
Parameters:
_value (float)
i_decimals_s (string)i_decimals (int)
Phát hành các Ghi chú
v4 BughuntingPhát hành các Ghi chú
v5Added:
round_to_Str(_value, _decimals /_decimals_s)
Parameters:
_value (float)
_decimals_s (string)
Removed:
roundTo(_value, i_decimals_s)
Phát hành các Ghi chú
v6Added:
f_fib_calc(_Fibonacci_box)
fibonacci calc.
description This function block uses the levels and paramters set into the type_fibonacci_box(levels) and fills the corresponding array of prices.
Parameters:
_Fibonacci_box (type_Fibonacci_box)
Returns: returns a type_Fibonacci_box with the filled data
f_fib_draw(_Fibonacci_box)
fibonacci draw.
description This function block uses the levels, prices and paramters set into the type_fibonacci_box(levels) and draws the fib on the chart
Parameters:
_Fibonacci_box (type_Fibonacci_box)
Returns: returns lines labels and fills on the chart, no data returns
type_fill
s for defining a fill group with corresponding color
Fields:
partner_A (series int)
partner_B (series int)
fill_color (series color)
type_Fibonacci_box
s for defining a fibonacci box
Fields:
bottom_price (series float)
top_price (series float)
StartBar (series int)
StopBar (series int)
levels (float[])
prices (float[])
fills (type_fill[])
ChartisLog (series bool)
fibreverse (series bool)
fiblinecolor (series color)
fibtextcolor (series color)
fibtextsize (series string)
decimals_price (series int)
decimals_percent (series int)
Updated:
clear_all()
Delete all drawings on the chart.
description This function deletes all drawings on the chart, including lines, boxes, fills and labels.
Returns: None.
Phát hành các Ghi chú
v7Updated:
type_Fibonacci_box
s for defining a fibonacci box
Fields:
bottom_price (series float)
top_price (series float)
StartBar (series int)
StopBar (series int)
levels (float[])
prices (float[])
fills (type_fill[])
ChartisLog (series bool)
fibreverse (series bool)
fiblinecolor (series color)
fibtextcolor (series color)
fibtextsize (series string)
decimals_price (series int)
decimals_percent (series int)
transp (series int)
Phát hành các Ghi chú
v8f_fib_draw()
removed the bar_index from the calculation, better to have control from outside via direct calling the fibo box
Phát hành các Ghi chú
v9Added:
overload method removeDeleteAll(ln)
Namespace types: box[], line[], line_fill[] or label[],
Parameters:
ln (box[], line[], line_fill[] or label[])
Updated:
type_Fibonacci_box
s for defining a fibonacci box
Fields:
bottom_price (series float)
top_price (series float)
StartBar (series int)
StopBar (series int)
levels (float[])
prices (float[])
fills (type_fill[])
ChartisLog (series bool)
fibreverse (series bool)
fiblinecolor (series color)
fibtextcolor (series color)
fibtextsize (series string)
decimals_price (series int)
decimals_percent (series int)
transp (series int)
drawlines (series bool)
drawlabels (series bool)
drawfills (series bool)
Phát hành các Ghi chú
v10Removed:
f_fib_calc(_Fibonacci_box)
fibonacci calc.
description This function block uses the levels and paramters set into the type_fibonacci_box(levels) and fills the corresponding array of prices.
f_fib_draw(_Fibonacci_box)
fibonacci draw.
description This function block uses the levels, prices and paramters set into the type_fibonacci_box(levels) and draws the fib on the chart
type_fill
s for defining a fill group with corresponding color
type_Fibonacci_box
s for defining a fibonacci box
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.