pAulseperformance

LoggerLib

Library "LoggerLib"
Function Description:
This library aims to extend the logging functionality by overloading various logging methods.
The objective is to enable appending ".log" at the end of different types to make logging outputs easier.

Key features of this function include:
Multi Debug Levels: The readout will encompass error, warning, and info messages.
Controlled Output: Logging can be set for every bar or only the last X bars.
Automatic Logging: Essential variables such as bar_index, time, price, and # of times log has been called can be extracted.
Methods Included:
Logs variables.
Logs floats.
Logs integers.
Logs strings.
Logs booleans.
Logs arrays.
Logs matrices.
Logs maps.
This comprehensive logging function enhances logging capabilities,
providing versatility and ease of use in capturing and debugging data across different contexts.

method log(this, debugLevel, showLast, verbose, showLabels)
  Logs any variable type, excluding custom UDTs, and displays to the logs or as a label on bars.
```
// Example
variable = close
variable.log()
variable.log(2, 0,true,true)

// Example Arrays
ArrayVariable = array.from()
ArrayVariable.log()

// Examples Maps
MapVariable = map.new<string, float>()
MapVariable.log( )

// Example Funky stuff
close.log(debugLevel = 1, showLast = 1, verbose = true, showLabels = true)

```
  Namespace types: series float, simple float, input float, const float
  Parameters:
    this (float): Variable to be formatted into a logger message
    debugLevel (int): Log Level `1 = log.info | 2 = log.warning 3 = log.error`
    showLast (int): Shows last x Logs, 0 shows all.
    verbose (bool): Include additional Debug logger Data.
    showLabels (bool): Create Labels of the logs on that main chart.
  Returns: void

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: series int, simple int, input int, const int
  Parameters:
    this (int)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: series string, simple string, input string, const string
  Parameters:
    this (string)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: series bool, simple bool, input bool, const bool
  Parameters:
    this (bool)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: series color, simple color, input color, const color
  Parameters:
    this (color)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: array<float>
  Parameters:
    this (array<float>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: array<int>
  Parameters:
    this (array<int>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: array<string>
  Parameters:
    this (array<string>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: array<bool>
  Parameters:
    this (array<bool>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<float, float>
  Parameters:
    this (map<float, float>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<float, int>
  Parameters:
    this (map<float, int>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<float, string>
  Parameters:
    this (map<float, string>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<float, bool>
  Parameters:
    this (map<float, bool>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<int, float>
  Parameters:
    this (map<int, float>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<int, int>
  Parameters:
    this (map<int, int>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<int, string>
  Parameters:
    this (map<int, string>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<int, bool>
  Parameters:
    this (map<int, bool>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<string, float>
  Parameters:
    this (map<string, float>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<string, int>
  Parameters:
    this (map<string, int>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<string, string>
  Parameters:
    this (map<string, string>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<string, bool>
  Parameters:
    this (map<string, bool>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<bool, float>
  Parameters:
    this (map<bool, float>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<bool, int>
  Parameters:
    this (map<bool, int>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<bool, string>
  Parameters:
    this (map<bool, string>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: map<bool, bool>
  Parameters:
    this (map<bool, bool>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: matrix<float>
  Parameters:
    this (matrix<float>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: matrix<int>
  Parameters:
    this (matrix<int>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: matrix<string>
  Parameters:
    this (matrix<string>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

method log(this, debugLevel, showLast, verbose, showLabels)
  Namespace types: matrix<bool>
  Parameters:
    this (matrix<bool>)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)
發布通知:
v2
發布通知:
v3

Updated:
method log(this, tag, debugLevel, showLast, verbose, showLabels)
  Namespace types: matrix
  Parameters:
    this (matrix)
    tag (string)
    debugLevel (int)
    showLast (int)
    verbose (bool)
    showLabels (bool)

Breaking Changes.
Included a "tag" parameter in the log. This way we can make notes on our logged variables in the first parameters of the logger. Allowing us to easily differentiate between the variables we are tracking in the Pine Logs.

ie
 
close.log('My special variable to keep track of')
close.log(tag='The close')

Trade, Code, & Travel.

www.pinescriptstrategy.com
Pine腳本庫

本著真正的TradingView精神,作者將此Pine代碼以開源腳本庫發布,以便我們社群的其他Pine程式設計師可以重用它。向作者致敬!您可以私下或在其他開源出版物中使用此庫,但在出版物中重用此代碼受網站規則約束。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想使用這個腳本庫嗎?

複製以下行並將其黏貼到您的腳本中。