Pine

New TradingView Feature: Pine Script Tables

FAQ

New TradingView Feature: Pine Script Tables

To display any textual information on the chart I used labels. And it doesn’t look very good. Here is an example of the code with label: So in this code I just compute 3 indicators and display their values for the last labels. This solution isn’t very nice. It’s pretty tricky to style your label New TradingView Feature: Pine Script Tables Read More →

New TradingView Feature: Pine Script Tables Read More »

How to fix the `transp` argument will be deprecated soon error?

You may have noticed the following warning message in your PineScript indicator scripts: The `transp` argument will be deprecated soon. We recommend using color.new() or color.rgb() functions to specify the transparency of the plots instead. Below is an example of code that causes this warning. Why does this error occur? This warning message occurs simply

How to fix the `transp` argument will be deprecated soon error? Read More »

My PineScript indicator doesn’t work as expected? Where can I get help?

There are plenty of ways you can get help with your PineScript indicator or strategy. In this article, I will list few free and paid ways you can get help. Check official documentation and manuals TradingView has a pretty nice collection of reference guide and manuals: Official Pine Script v4 User Manual – You can

My PineScript indicator doesn’t work as expected? Where can I get help? Read More »

How to Fix Pine Script Study Error “Too Many Drawings, Cannot Clean Oldest”

Drawing objects need to be limited (per study or strategy) because they consume server resources. When you create too many drawings, Pine runtime automatically deletes old ones in a process known as garbage collection (removing data that is no longer required or in use). If something goes wrong with regards to drawings, you may encounter

How to Fix Pine Script Study Error “Too Many Drawings, Cannot Clean Oldest” Read More »