PINE LIBRARY

formattingUtilities

Actualizado
Library "formattingUtilities"

toPercentageString(x, decimals)
  : Converts a decimal number into a string formatted as percentage.
  Parameters:
    x (float): (simple float): Float number to be converted
    decimals (int): (simple int): Number of decimals to apply
  Returns: : Returns a string with x as percentage.

toFactorString(x, decimals)
  : Converts a decimal number into a string formatted as Factor.
  Parameters:
    x (float): (simple float): Float number to be converted
    decimals (int): (simple int): Number of decimals to apply
  Returns: : Returns a string with x as a Factor.

toCurrencyString(x, decimals)
  : Converts a decimal number into a string formatted as currency.
  Parameters:
    x (float): (simple float): Float number to be converted
    decimals (int): (simple int): Number of decimals to apply
  Returns: : Returns a string with x as currency.

toNumberString(x, decimals)
  : Converts a decimal number into a string formatted as decimal.
  Parameters:
    x (float): (simple float): Float number to be converted
    decimals (int): (simple int): Number of decimals to apply
  Returns: : Returns a string with x as a decimal.

colorByAboveBelow(x, reference, above, below, equal)
  : Returns a different color if the reference is above, below or equal to x.
  Parameters:
    x (float): (simple float): The number that will be tested, above, below or equal.
    reference (float): (simple float): The reference for for determining if x is above, below or equal.
    above (color)
    below (color)
    equal (color)
  Returns: : The color returned if above, below or equal.
Notas de prensa
v2

Added:
colorMap()
  : Returns a map with different colors
  Returns: : Returns a map with multiple colors
Notas de prensa
v3
Notas de prensa
v4

Added:
formatsMap()
  : Creates a map with multiple formats for different uses.
  Returns: : Returns a formatsMap which is a map with multiple formats.
Notas de prensa
v5
Notas de prensa
v6
Notas de prensa
v7
Notas de prensa
v8
Notas de prensa
v9
Notas de prensa
v10
Notas de prensa
v11
Notas de prensa
v12

Added:
getColorByDirection(direction_str)
  : Generates a color by a direction string
  Parameters:
    direction_str (string): (string): Direction string: long, short or neutral
  Returns: : Returns a color
formatting

Biblioteca Pine

Siguiendo fielmente el espíritu TradingView, el autor ha publicado este código Pine como una biblioteca de código abierto, permitiendo que otros programadores de Pine en nuestra comunidad lo utilicen de nuevo. ¡Olé por el autor! Puede utilizar esta biblioteca de forma privada o en otras publicaciones de código abierto, pero tenga en cuenta que la reutilización de este código en una publicación se rige por las Normas internas.


También en:

Exención de responsabilidad