Commencez
Communauté Scripts

debug

Indicateurs, stratégies et bibliothèques

Tous types
Tous types
Indicateurs
Stratégies
Bibliothèques
Open Source Uniquement
JavaScript-style Debug Console
SPX: JavaScript-style Debug Console
algotraderdev algotraderdev P Mis à jour 

This library provides a JavaScript-style debug console to Pine Coders. It supports the most commonly used utilities from the WHATWG Console Standard including the following:  • console.log  • console.debug  • console.info  • console.warn  • console.error  • console.assert  • console.count  • console.countReset  • console.group  • console.groupEnd  •...

2
3
tools
SPX: tools
faiyaz7283 faiyaz7283 P Mis à jour 

Library "tools" A library of many helper methods, plus a comprehensive print method and a printer object. This is a newer version of the helpers library. This script uses pinescripts v5 latest objects and methods.

6
7
Profiling: array of UDTs vs UDT of arrays
BTCUSD.P: Profiling: array of UDTs vs UDT of arrays
moebius1977 moebius1977 P

Using Stopwatch Library by PineCoders, I am trying to test which is faster, an array of user-defined type (UDT) objects vs an object with many child arrays. The task is to store and manipulate array of objects having total 9 values: 4 floats, 4 strings and 1 int. Option 1: create a UDT with 9 fields and store an array of such UDT objects. Option 2: create a...

3
1
Console
BTCUSDT.P: Console
cryptolinx cryptolinx Mis à jour 

📕 Console Library 🔷 Introduction This script is an adaptation of the classic JavaScript console script. It provides a simple way to display data in a console-like table format for debugging purposes. While there are many nice console/logger scripts out there, my personal goal was to achieve inline functionality and visual object (label, lines) logging...

4
0
HTF Bars Discrepancy Detector (for debugging)
SCUSDT.P: HTF Bars Discrepancy Detector (for debugging)
moebius1977 moebius1977 P Mis à jour 

Illustrate discrepancies between two symbols of the same higher timeframe. Sometimes: - HTF data can come for one symbol but not for another - or come with gaps (e.g. after HTF bar 3 in the next chart TF's candle we have HTF bar 5 for one or both symbols)

2
0
ANTEYA Profiling
BTCUSDT.P: ANTEYA Profiling
moebius1977 moebius1977 P

This script allows to compare which code is more efficient by running it inside a loop for a certain time or a certain number of iterations. Just paste your pieces of code as Option 1 and Option 2 inside the loop (see comments in the script).

8
0
Signal Viewer
ETHUSDT: Signal Viewer
jason5480 jason5480 P

The "Signal Viewer" script is a debugging tool that can be used for the signal of a Signal Indicator script like the "Two MA Signal Indicator" or the "Template Signal Indicator". This script will visualize the signal based on the convention that was defined in the settings. Also, alerts will be produced based on this convention. It's useful to be used before you...

35
2
FrizBug
DOGEUSDT.P: FrizBug
FFriZz FFriZz P Mis à jour 

Library "FrizBug" Debug Tools | Pinescript Debugging Tool Kit All in one Debugger - the benefit of wrapper functions to simply wrap variables or outputs and have the code still execute the same. Perfect for Debugging on Pine str(inp)   Overloaded tostring like Function for all type+including Object Variables will also do arrays and matricies of all...

26
5
condition
HNTUSDTPERP: condition
kaigouthro kaigouthro P

Library "condition" True/False Condition tools and toggles for booleans and utility. suggested use is checking if a calculation is required, or can be skipped speeding up script calculations in realtime and historical scenarios. isonlywihtout(_first_cond, _second_cond)   output is true only if first true and second false   Parameters:      _first_cond :...

9
2
Utilities
BTCUSD: Utilities
reees reees P Mis à jour 

Library "Utilities" General utilities print_series(s, skip_na, position, show_index, from_index, to_index)   Print series values   Parameters:      s : Series (string)      skip_na : Flag to skip na values (optional bool, dft = false)      position : Position to print the Table (optional string, dft = position.bottom_center)      show_index : Flag to show...

16
2
Debug tool - table
BTCUSD: Debug tool - table
fikira fikira Wizard Mis à jour 

When having a script with lot's of values, it can be difficult to seek the values you need to debug For example, here, multiple values aren't visible anymore (right side chart) ———————————————————————————————————————————————————————————————— This script show a way where you can show the values in a table on 1 particular bar, with 2 options: 1) 'middle' ->...

53
6
matrixautotable
BTCUSDT: matrixautotable
kaigouthro kaigouthro P Mis à jour 

Library "matrixautotable" Automatic Table from Matrixes with pseudo correction for na values and default color override for missing values. uses overloads in cases of cheap float only, with additional addon for strings next, then cell colors, then text colors, and tooltips last.. basic size and location are auto, include the template to speed this up... TODO...

11
0
console
BTCUSDTPERP: console
keio keio P Mis à jour 

Library "console" Simple debug console to print messages from your strategy code. USAGE : Make sure your strategy overlay is false Import the library : import keio/console/1 as console init(lines, panes) Initialise function. USAGE : var log = console.init()   Parameters:      lines : Optional. Number of lines to display      panes :...

16
3
Simple debug function
TAH: Simple debug function
HeWhoMustNotBeNamed HeWhoMustNotBeNamed Wizard Mis à jour 

Simple method I used to debug problem in my script. For loop generates 5 numbers from the given depth. At present, depth is 9 Rules for generating the combinations are as follows: First number is always 1 Two even numbers should not be adjacent to each other and two odd numbers should not be adjacent to each other Numbers should be ordered in...

64
2
Logging in Pine Script
BTCUSDT: Logging in Pine Script
QuantNomad QuantNomad P Mis à jour 

I'm building quite a lot of pretty complicated indicators/strategies in Pine Script. Quite often they don't work from the 1 try so I have to debug them heavily. In Pine Script there are no fancy debuggers so you have to be creative. You can plot values on your screens, check them in the data window, etc. If you want to display some textual information, you can...

806
12
Combination Parabolic MA/IIR/ALMA Strategy, with other goodies
BTCUSDT: Combination Parabolic MA/IIR/ALMA Strategy, with other goodies
SnorkelSteve SnorkelSteve

Okay, so this is a lot. It started mostly with me combining indicators and looking for ideal entry criteria. It is also a collection of conditions, whether used or unused, for my current chosen "best" strategy. It is currently set how I like it, but it has changed with time, and will continue to do so. Within, there are variables that are unused, but offer some...

162
4
[RS]Function - InfoPanel
EURAUD: [RS]Function - InfoPanel
RicardoSantos RicardoSantos Wizard Mis à jour 

Function to make it easy to display text information on the chart.

543
21
#TradingView C'est que de l'amour
M+50

Traders et investisseurs qui visitent notre site chaque mois.

#1

Le meilleur site web au monde pour tout ce qui concerne les investissements

4.9

Selon 1M+ de commentaires. Aucune autre application de finance n'est plus appréciée

M+10

Scripts personnalisés et idées partagés par nos utilisateurs

TradingView Chart sur @aleshkenderoficial Instagram

@aleshkenderoficial

TradingView Chart sur @aliams_david_trading_gram Instagram

@aliams_david_trading_gram

TradingView Chart sur @mytradingsetup Instagram

@mytradingsetup

TradingView Chart sur @quantfurian Instagram

@quantfurian

TradingView Chart sur @thoma_swilliams_ Instagram

@thoma_swilliams_

TradingView Chart sur @TradingView Instagram

@TradingView

TradingView Chart sur @twobrokeboystrading Instagram

@twobrokeboystrading

TradingView Chart sur @Tom Killick Instagram

@Tom Killick

TradingView Chart sur @abbygarrettart Instagram

@abbygarrettart

TradingView Chart sur @lewicz.michal Instagram

@lewicz.michal

TradingView Chart sur @nasdaq.forex Instagram

@nasdaq.forex

TradingView Chart sur @profitable_trades Instagram

@profitable_trades

TradingView Chart sur @letstalkstocks_ Instagram

@letstalkstocks_

TradingView Chart sur @mytradingsetup Instagram

@mytradingsetup

TradingView Chart sur @mytradingsetup Instagram

@mytradingsetup

TradingView Chart sur @Crypto Kemal Instagram

@Crypto Kemal

TradingView Chart sur @mytradingsetup Instagram

@mytradingsetup

TradingView Chart sur @_jontradercom_ Instagram

@_jontradercom_

Alex Honnold on the rock

Quel que soit le trade

Voyez pourquoiVoyez pourquoi
Produits
  • Graphique
  • Langage Pine Script™
  • Screener d'actions
  • Screener Forex
  • Screener de paires Crypto
  • Screener Crypto Coins
  • Carte thermique des marchés boursiers
  • Crypto Heatmap
  • Calendrier économique
  • Calendrier des bénéfices
  • Sparks
  • Flux de nouvelles
  • TradingView Desktop
  • Application mobile
  • Contrats à terme de CME Group
Société
  • A propos
  • Caractéristiques
  • Prix
  • Mur d'Amour
  • Athlètes
  • Manifeste
  • Carrières
  • Blog
  • Failles dans la sécurité
  • Page du statut
  • Conditions d'utilisation
  • Clause de non-responsabilité
  • Politique de confidentialité
  • Politique en matière de cookies
Communauté
  • Parrainer un ami
  • Idées
  • Scripts
  • Streams
  • Règles de Conduite
  • Modérateurs
  • Les Magiciens de Pine Script™
  • Chat
Pour Business
  • Widgets
  • Publicité
  • Solutions site web & courtier
  • Solutions pour la création de graphiques
  • Bibliothèque des Lightweight Charts™
  • Intégration de courtage
  • Programme de partenariat
Téléchargez sur l'App Store Téléchargez sur l'App Store Obtenir sur Google Play Obtenir sur Google Play
Télécharger l'application Desktop Télécharger l'application Desktop Tradez sur TradingView Tradez sur TradingView
Choisissez les données du marché fournies par ICE Data Services © 2023 TradingView, Inc.