The Quant Nomad has over 6 years’ experience in the quantitative trading industry (15+ years in programming).
He has helped more than 200 traders and companies create/optimize their algorithmic trading models.
Generating Pine Script in ChatGPT
No Comments

People are incredibly excited about the increasing popularity of ChatGPT. It has become a phenomenon and is being talked about everywhere. People are eager to experience the potential of this innovative technology for themselves. ChatGPT is also capable of coding, allowing users to create their scripts and programs using different programming languages. I wanted to Generating Pine Script in ChatGPT Read More →

Pine Script – Undeclared identifier ‘green’ / ‘color.green’ – how to fix it?
No Comments

You might see the following error in Pine Script quite often, especially if you’re trying to merge a few scripts or copy certain elements from another script. You might see this error with basically all supported colors: Undeclared identifier `color.red` Undeclared identifier `color.black` Undeclared identifier `color.white` Undeclared identifier ‘red’ Undeclared identifier ‘black’ Undeclared identifier ‘white’ Pine Script – Undeclared identifier ‘green’ / ‘color.green’ – how to fix it? Read More →

UT Bot Screener in TradingView
No Comments

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 →

Few ways to close/exit positions in Pine Script
No Comments

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 →

High/Low Volume Indicator
No Comments

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 →

How to concatenate strings in Pine Script
No Comments

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.