PINE LIBRARY
已更新 catchChecks

Library "catchChecks"
Type Check for Function Builders to allow Single item to be
passed in, and determine what to do with the item, ie: need an x value?
function that allows label, line, box, float, or even a string..
check item type? string ? 'str.tonumber(_item)' can be in the same
switch as a 'line.get_price(_item, bar_index)' both outputting float
or for pulling a value from simple, array, or matrix, one function
that can switch between them. reduce overhead of many functions.
there are many ways to use this tool, the simplest may be
string/floats on one switch or grabbing colors from line/fill/label
please Share any great recipes you come up with!
typeIs(_temp, _doMeth)
Input anything..
Determine what it is.
Parameters:
_temp: (any) Matrix, Array, or Simple Item
_doMeth: (bool) True for M/A/S , false for int/float/string.. etc..
Returns: (string) Type of item checked. ('bool' .. or 'array'.. etc..)
Type Check for Function Builders to allow Single item to be
passed in, and determine what to do with the item, ie: need an x value?
function that allows label, line, box, float, or even a string..
check item type? string ? 'str.tonumber(_item)' can be in the same
switch as a 'line.get_price(_item, bar_index)' both outputting float
or for pulling a value from simple, array, or matrix, one function
that can switch between them. reduce overhead of many functions.
there are many ways to use this tool, the simplest may be
string/floats on one switch or grabbing colors from line/fill/label
please Share any great recipes you come up with!
typeIs(_temp, _doMeth)
Input anything..
Determine what it is.
Parameters:
_temp: (any) Matrix, Array, or Simple Item
_doMeth: (bool) True for M/A/S , false for int/float/string.. etc..
Returns: (string) Type of item checked. ('bool' .. or 'array'.. etc..)
發行說明
v2Big udate, now logs everything,check a map keys array.. and faster, simpler..
also returns type inf string..
To help anyabsent minded Pine Programmers to find if they've accidentally misconfigured, or other Clever uses .. =)
example logs below
--- Basic Type Checks ---
Detected Type: -- int
Detected Type: -- float
Detected Type: -- color
Detected Type: -- line
Detected Type: -- label
Detected Type: -- box
Detected Type: -- table
Detected Type: -- linefill
Detected Type: -- polyline
Detected Type: -- chart.point
Detected Type: -- label
--- Container Type Checks ---
Detected Type: matrix<color> -- color
Detected Type: matrix<chart.point> -- chart.point
Detected Type: matrix<line> -- line
Detected Type: array<float> -- float
Detected Type: array<bool> -- bool
Detected Type: array<string> -- string
Detected Type: array<polyline> -- polyline
--- Collection Element Type Checks ---
Detected Type: matrix<int> -- matrix
Detected Type: matrix<linefill> -- matrix
Detected Type: matrix<polyline> -- matrix
Detected Type: array<int> -- array
Detected Type: array<float> -- array
--- Map Key Helper Checks ---
Detected Type: array<string> -- string
Map Key Type: string
Detected Type: array<int> -- int
Map Key Type: int
String Map Key Type: string, Int Map Key Type: int
Suggested Next String Key: key_2
Suggested Next Int Key: 6
Suggested Next Int Key: 0
Next String Key: key_2, Next Int Key: 6, Next Int Key (Empty): 0
Added:
getMapKeyType(_keys)
Parameters:
_keys (array<bool>)
getNextMapKey(_keys, _prefix)
Parameters:
_keys (array<string>)
_prefix (string)
Updated:
typeIs(_item, _getContainerType)
Parameters:
_item (matrix<chart.point>)
_getContainerType (bool)
Pine腳本庫
秉持 TradingView 一貫的共享精神,作者將此 Pine 程式碼發佈為開源庫,讓社群中的其他 Pine 程式設計師能夠重複使用。向作者致敬!您可以在私人專案或其他開源發佈中使用此庫,但在公開發佈中重複使用該程式碼需遵守社群規範。
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。
Pine腳本庫
秉持 TradingView 一貫的共享精神,作者將此 Pine 程式碼發佈為開源庫,讓社群中的其他 Pine 程式設計師能夠重複使用。向作者致敬!您可以在私人專案或其他開源發佈中使用此庫,但在公開發佈中重複使用該程式碼需遵守社群規範。
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。