UT Bot is a pretty popular script I created on TradingView. Quite often, I receive questions if I can create a screener from it. So finally, I decided to add it to my Ultimate Custom Screener. So now you can screen for UT Bot Signals for up to 40 symbols at the same time in UT Bot Screener in TradingView Read More →
Good timing for exiting your positions is essential for good trading strategies. There are a few ways to close/exit positions in Pine Script. In this article, I’ll show you examples of all of them. First of all, in Pine Script, we can create a strategy without separated exits. If we create a strategy with longs Few ways to close/exit positions in Pine Script Read More →
I published a new indicator on TradingView: High/Low Volume by QuantNomad on TradingView.com In this indicator, I show you a better way to define high/low values of volume (or any other indicator). Quite often, I get requests from my clients that an indicator level should be “high” or that it should be above a certain High/Low Volume Indicator Read More →
String concatenation is the main string feature in any programming language. It allows multiple strings to be joined together to form one larger string. This is used in many programming languages to create more complicated strings. String concatenation can be used to combine strings of different lengths, as well as to concatenate strings of text and numerical data.
Arrays are pretty crucial for Pine Script. From the time of their release, it immediately became Pine’s essential feature. Some time ago, I published an article about how to loop through an array in Pine Script. But language evolves quite quickly, and there is already a much more convenient way to iterate through an array. How to loop/iterate through an array in Pine Script with a “for/in” statement Read More →
Sorting is an essential feature of arrays in programming, as it allows the user to organize data easily. In this article, I’ll show you how you can quickly sort arrays in Pine Script. First, let’s define an array we want to sort: The primary function to sort arrays in Pine Script is array.sort. You can Sorting an array in Pine Script Read More →