From Idea to Alert — Resource Site

Welcome.
Start here.

Everything you need to build Pine Script indicators, connect Claude, set up alerts, and automate trade execution — all in one place.

6 Companion Videos 7 Downloads 3 Custom Indicators MT4 & MT5 Scaffolds

What brings you here today?

Pick the path that matches where you are right now. You can always come back and explore the others.

Companion videos

Six videos. One complete skill set.

Each video is designed to show what the book describes — live, on a real chart. Watch them in order, or jump to the one you need.

VIDEO 01 · 8–12 MIN

How Claude Thinks About Your Trading Logic

Beginner Chapter 2

VIDEO 02 · 10–14 MIN

The 5-Part Prompt Framework — Live Walkthrough

Beginner Chapter 4

VIDEO 03 · 14–18 MIN

Building Your First Indicator — Start to Signal

Beginner Chapter 6

VIDEO 04 · 12–15 MIN

Adding Filters Without Breaking Everything

Intermediate Chapter 7

VIDEO 05 · 16–20 MIN

Alerts, Webhooks & Connecting to MetaTrader

Advanced Chapter 9

VIDEO 06 · 10–13 MIN

Debugging Without Panic — A Calm, Repeatable Process

Beginner Chapter 8

Everything in one place.

All files are yours to keep, print, and use alongside your trading tools.

Custom Pine Script indicators

Built for this workflow.

Add these directly to TradingView. Each is mentioned in the book and companion videos.

Chapter 6 Starter

EMA Crossover Signal

The dual-EMA crossover indicator built in Video 3. Adjustable lengths, non-repainting, bar-close confirmed, with buy and sell alert conditions included.

Load on TradingView →
Chapter 7 Filter

RSI Dead Zone Filter

Blocks entries when RSI momentum is unclear — neither trending up nor down. Adjustable upper and lower thresholds. Works alongside any base indicator.

Load on TradingView →
Chapter 7 Filter

ADX Trend Strength Gate

Permits signals only when ADX confirms genuine trend strength. Configurable threshold, visual strength meter, and alert condition for trend activation.

Load on TradingView →

Quick answers.

No. The entire approach in this book is designed for traders, not programmers. You describe your logic in plain English, Claude translates it into Pine Script, and the videos show every step on screen. You will review code — but you will not need to write it from scratch.

Version 6 is the current standard and what all resources on this site are built with. Always include "Using Pine Script version 6" at the start of your Claude prompt. If your script was written in version 5, Claude can convert it — just paste the code and ask for a version 6 upgrade.

Check what your broker offers first — that often decides it. If both are available, MT4 is the simpler starting point for forex traders. MT5 is better if you trade multiple asset classes or your broker requires it. The MT4 vs MT5 Guide download covers this in full, including a decision tree and setup checklists for both.

This almost always means your signal condition is true across multiple bars, not just at the crossover event. In TradingView, make sure the alert is set to "Once Per Bar Close." In your Pine Script, the signal should use ta.crossover() or ta.crossunder() rather than a simple greater-than/less-than comparison. Video 6 and the Debugging Quick Reference Card cover exactly this scenario.

Yes — and this is one of the most powerful uses of Claude in this workflow. Paste the EA scaffold code into a Claude conversation, describe what you want to change (lot size logic, additional filters, notification settings), and Claude will make targeted modifications. Always test any changes on a demo account before going live.

Only after thorough demo testing. The webhook pipeline delivers real trade commands the moment an alert fires. A misconfigured EA on a live account can open unintended positions instantly. Test every link in the chain separately on a demo account — the TradingView alert, the webhook listener, and the EA execution — before enabling anything live. This point is repeated throughout the book because it matters.