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.
When AI Is Behind: What the New Pine Script Footprint Feature Teaches Us
No Comments

Recently, TradingView released something many Pine Script developers had been waiting for: TradingView Introduces Native Volume Footprints in Pine Script https://www.tradingview.com/blog/en/volume-footprints-in-pine-scripts-56908 With Pine Script v6, we finally got access to request.footprint() — allowing us to programmatically access footprint data inside scripts. This is a big deal. And it also exposed something very important: When new When AI Is Behind: What the New Pine Script Footprint Feature Teaches Us Read More →

AI Wrote My Pine Script Indicator… and It Lied to Me
No Comments

I wanted to build a tiny Pine Script indicator. Nothing fancy. No machine learning. No complex strategy logic. Just this: “Show a long signal when there are at least 5 green candles in the last 6 bars.” So I asked ChatGPT to write it. And it immediately produced something that looked correct… but wasn’t.The prompt Write me AI Wrote My Pine Script Indicator… and It Lied to Me Read More →

Save Time with Alert Presets in TradingView
No Comments
Set alert present in TradingView

If you actively trade or monitor markets in TradingView, you probably create a lot of alerts.Price levels, indicator conditions, strategy alerts, webhook alerts… it adds up quickly. But did you know that TradingView Alert Presets allow you to reuse alert settings and create new alerts in seconds? In this article, you’ll learn: What Alert Presets Save Time with Alert Presets in TradingView 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 Get Stock Earnings in Pine Script and Use Them in Indicators
2 Comments

Understanding a company’s earnings is crucial for making informed trading decisions. Pine Script, the programming language used on TradingView, provides a convenient way to access and utilize earnings data in your custom indicators. In this article, we’ll explore how to fetch stock earnings using the request.earnings function and incorporate them into your indicators with practical How to Get Stock Earnings in Pine Script and Use Them in Indicators Read More →

Simplifying Grid Optimization in R for Backtesting: A Minimal Code Approach
No Comments

In quantitative trading, optimizing your backtest can be a time-consuming task. However, with R’s powerful capabilities, you can streamline this process using just a few lines of code. In this article, I’ll walk you through a simple, efficient approach to implementing grid optimization for backtesting in R. Whether you’re a seasoned trader or new to Simplifying Grid Optimization in R for Backtesting: A Minimal Code Approach Read More →