Useful PineScripts
June 29, 2024 Ed Jordan

A collection of handy scripts I’ve found useful along the way in my PineScript journey:

Table Builder

Building tables is super useful and also tedious and annoying. TableBuilder is a library designed to make it easier to create tables in PineScript.   It allows you to more flexibly define the structure of a table before actually building it.

https://www.tradingview.com/script/D8RKHenM-TableBuilder/

Debugging Library

Debugging is a critical part of coding and historically quite obtuse in PineScript.  This library (and also a recent update to Pine which adds debugging to the console) help alleviate the pain.

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

https://www.tradingview.com/script/wqHOinCt-FrizBug/

Contrast Library

This lightweight library provides a utility method that analyzes any provided background color and automatically chooses the optimal black or white foreground color to ensure maximum visual contrast and readability.

https://www.tradingview.com/script/cvUcp6x0-Contrast-Color-Library/

Learn To Code

The goal of this script is honestly to help everyone learn about trading with bots and algos.
At least, to get started.

Level 1:
10 lines of code.
learn to plot 2 moving averages on your chart.
learn to create a signal from a crossover.
learn the very basics of Pine Script algo.

https://www.tradingview.com/script/fVyxKpgf-Level-1-Learn-to-code-simply-PineScript/

Alternative Moving Averages

A library containing a collection of non-standard moving averages.  Some very interesting ideas in here.

https://www.tradingview.com/script/S5JAKuXE/

 

Advanced Logging

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.

https://www.tradingview.com/script/OxifP2A5-LoggerLib/

 

Live Forex News

This is an incredibly handy script which integrates News from Forex Factory directly onto your charts!

https://www.tradingview.com/script/JjgkjuMY-Live-Economic-Calendar-by-toodegrees/

Import External Data Into Pine

This one is HUGE.

Pine Seeds is a service to import your custom data and access it via TradingView.

This service allows you to:

  • connect your series data to TradingView
  • open it on the TradingView chart
  • use it in the custom indicators

Use TradingView as your frontend and use a GitHub repository as your backend.

https://github.com/tradingview-pine-seeds/docs

 

Comments (0)

Leave a reply

Your email address will not be published. Required fields are marked *

*