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.
How to Use minval, maxval, and step in Pine Script Inputs (v6)
No Comments
set min/max/step values for inputs in pine script

When creating indicators or strategies in Pine Script v6, controlling user inputs is just as important as writing correct calculations.The minval, maxval, and step parameters allow you to validate inputs, prevent errors, and improve the user experience. This tutorial shows how and why to use them. Why Use minval, maxval, and step? Without constraints, users How to Use minval, maxval, and step in Pine Script Inputs (v6) Read More →

How to Use Checkboxes in Pine Script Inputs (and Why You Should)
No Comments
Using Checkboxs in Pine Script Inputs to Show/Hide Chart Elements

Checkboxes are one of the most underrated input types in Pine Script.They allow users to toggle features on and off, control logic, and clean up indicator settings — all without writing multiple scripts. In this tutorial, you’ll learn: What a checkbox input is How to create one Practical use cases A clean example using Pine How to Use Checkboxes in Pine Script Inputs (and Why You Should) Read More →

How to Connect TradingView Alerts to Telegram Bots (100% Free)
No Comments

If you use TradingView alerts and want to receive them instantly on Telegram, you might think you need Zapier, paid bots, or third-party services.Good news: you don’t. TradingView can send alerts directly to Telegram using native webhooks, completely free, with no intermediaries. In this tutorial, you’ll learn how to connect TradingView alerts to a Telegram How to Connect TradingView Alerts to Telegram Bots (100% Free) Read More →

How to Use inline Parameters in Pine Script v6 Inputs
No Comments
Pine Script v6 inputs panel showing inline parameters aligned on the same row in TradingView

Introduction When building indicators or strategies in Pine Script v6, usability matters just as much as logic.A common issue with TradingView scripts is a cluttered inputs panel, where every parameter appears on its own line. Starting with Pine Script v6, the inline parameter allows you to align multiple inputs on the same row, making your How to Use inline Parameters in Pine Script v6 Inputs Read More →

How to Group Inputs in Pine Script (v6)
No Comments
Grouped inputs in Pine Script v6 shown in the TradingView indicator settings panel

When your TradingView indicator starts growing, the Settings panel can quickly become messy. Too many inputs, unclear sections, and no visual structure make your script harder to use — even if the logic itself is solid. Fortunately, Pine Script provides a simple way to group inputs into sections, making your indicators cleaner, more professional, and How to Group Inputs in Pine Script (v6) Read More →

How to Enable or Disable Inputs in Pine Script v6 (Conditional Inputs Using active)
No Comments

Pine Script v6 lets you conditionally enable or disable an input in the settings panel based on another input (like a checkbox). This is perfect for building clean indicators where users only see (and can edit) advanced settings when they actually need them. In this tutorial, you’ll learn how to use the active parameter in How to Enable or Disable Inputs in Pine Script v6 (Conditional Inputs Using active) Read More →