PINE LIBRARY
Atualizado 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..)
Notas de Lançamento
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)
Biblioteca do Pine
No verdadeiro espirito do TradingView, o autor desse código Pine o publicou como uma biblioteca de código aberto, para que outros programadores Pine da nossa comunidade possam reusa-los. Parabéns ao autor! Você pode usar essa biblioteca privadamente ou em outras publicações de código aberto, mas a reutilização desse código em publicações é regida pelas Regras da Casa.
Aviso legal
As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.
Biblioteca do Pine
No verdadeiro espirito do TradingView, o autor desse código Pine o publicou como uma biblioteca de código aberto, para que outros programadores Pine da nossa comunidade possam reusa-los. Parabéns ao autor! Você pode usar essa biblioteca privadamente ou em outras publicações de código aberto, mas a reutilização desse código em publicações é regida pelas Regras da Casa.
Aviso legal
As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.