TradingView for Beginners
A complete step-by-step tutorial: navigation, charts, indicators, watchlists, alerts, and Pine Script
basics
Prepared August 2026
1. What TradingView Is and How to Get Started
TradingView is a browser-based charting platform and social network for traders and investors, launched in 2011. It now has
over 50 million users and lets you analyze stocks, ETFs, forex, crypto, futures, indices, and bonds all from one interface.
Nothing needs to be installed — it runs entirely in a web browser, and there's also a mobile app.
The free plan is a real, usable product, not just a trial. It includes real-time charts, every drawing tool, up to 3 indicators per
chart, 1 active alert, and paper trading (simulated trading with fake money). That's enough to learn the entire platform before
you ever consider paying.
Creating your account
1. Go to [Link] in your browser.
2. Click Sign Up (top right).
3. Choose to sign up with email, Google, Apple, or Facebook — Google/Apple is fastest.
4. Confirm your email if prompted, then you'll land directly on the main chart screen.
Note: You do not need a brokerage account to use TradingView. Charting and a live brokerage account are separate —
you can connect a broker later if you want to place real trades from the chart.
Free vs paid plans
Don't upgrade until the free plan actually limits you. A common path: use Free for 30–60 days while learning, then upgrade
only when you hit the indicator or alert caps regularly.
Plan Indicators/chart Active alerts Best for
Free 3 1 Learning the platform
Essential 5 20 Casual / swing traders who check
charts daily
Plus 10 100 Active traders running several
setups
Premium 25 400 Day traders / multi-monitor users
Ultimate Unlimited (fair use) 1,000 Professional / high-volume use
2. Navigating the Interface
The interface is organized into four toolbars around a central chart area: a top toolbar, a left toolbar, a right sidebar, and a
bottom timeline bar. Learn what each one does first, and the rest becomes muscle memory.
Loading a chart
1. Click the search box in the top-left corner (or just press the forward slash "/" key from anywhere on the chart).
2. Type a ticker: SPY (S&P 500 ETF), AAPL (Apple), BTC (Bitcoin), or EURUSD (euro/dollar).
3. Pick the correct exchange from the results — for US stocks, prefer NYSE or NASDAQ listings for the most accurate
data.
4. Click the result and the chart loads instantly.
Timeframes
Just right of the symbol box is a row of timeframe buttons: 1m, 5m, 15m, 1H, 4H, 1D, 1W, 1M. Each button sets how much
time one candle on the chart represents. Beginners should start on the 1D (daily) chart — one candle per trading day, which is
where the clearest, least noisy patterns form.
Chart types
TradingView supports over a dozen chart types, but as a beginner focus on three:
• Candlestick — the industry standard; shows open, high, low, and close for each period.
• Bar (OHLC) — the same data as candlesticks in a thinner, less visual format.
• Line — connects closing prices only; good for a quick, uncluttered trend read.
The four toolbars at a glance
Toolbar Location What it's for
Top toolbar Above the chart Symbol search, timeframe, chart type, indicators, alerts,
layout tools
Left toolbar Left edge All drawing tools: trendlines, Fibonacci, shapes, text
Right sidebar Right edge Watchlist, alerts panel, news, and the object tree
Bottom bar Below the chart Timeline, date range, and the trading/paper-trading panel
Note: Best beginner mindset: treat your first session as orientation, not optimization. A clean chart with just
candlesticks, volume, and one or two indicators is easier to learn from than a cluttered one.
3. Drawing Tools and Technical Indicators
Drawing tools (left toolbar)
The left toolbar holds every drawing and markup tool, including:
• Trend Line — click two points to draw a straight line following price direction.
• Horizontal / Vertical Line — mark support, resistance, or a specific point in time.
• Fibonacci Retracement — click a swing low and swing high to plot common retracement levels.
• Shapes and Text — triangles, rectangles, and annotations for marking patterns or leaving notes.
A star icon lets you favorite frequently used tools so they stay one click away, and an eraser icon clears drawings without
deleting the chart itself.
Adding indicators
1. Click Indicators in the top toolbar (sometimes shown as an "fx" icon).
2. Search by name — e.g., RSI, MACD, Moving Average, Bollinger Bands.
3. Click the indicator to add it to the chart; it appears either overlaid on price or in a separate pane below.
4. Click the gear icon next to any indicator's name to adjust settings like the moving-average length.
Note: Free accounts are capped at 3 indicators per chart. Beginners rarely need more than 1–2 at a time — more
indicators usually adds noise, not clarity.
4. Watchlists
The watchlist lives in the right sidebar of any chart. It's your running list of symbols to track without loading a full chart for
each one.
1. Click the list icon at the top of the right sidebar to open the watchlist panel.
2. Click the + button to open the Add Symbol dialog.
3. Type a ticker or company name, and click + next to the result to add it.
4. Use Shift+Enter to add and close the dialog in one step, or Shift+Click to keep adding several symbols in a row.
5. Click the watchlist name dropdown and choose Add Section to create named groups (e.g., "Tech," "Forex,"
"Watching") and drag symbols into them.
There's no limit to how many sections or watchlists you can create. Switching the watchlist to Advanced View shows extra
columns like fundamentals, earnings dates, and dividends for the symbols you're tracking.
Note: Keep watchlists focused. A shorter list of symbols you'll actually review each day is more useful than a long list
you never open.
5. Setting Up Alerts
Alerts let TradingView watch the market for you and send a notification when a condition you set is met, so you don't have to
sit at the chart all day. There are five alert types: price, technical/indicator, drawing tool, strategy, and watchlist — and you
can combine multiple conditions in one alert.
Creating a basic price alert
1. Right-click anywhere on the chart (or click the clock/alarm icon in the right sidebar) and choose Add Alert.
2. Set the Condition — for example, "Price crossing" a specific level.
3. Choose the trigger frequency: Once, Once Per Bar, or Once Per Bar Close (the last option filters out noisy intra-bar
wicks and is the safest default for beginners).
4. Under Notifications, check how you want to be alerted: pop-up, app notification, email, or (on paid plans) SMS and
webhook.
5. Click Create.
Watchlist-wide alerts
Instead of alerting on one symbol, open the alert dialog, click the symbol selector at the top, and choose your watchlist. The
same condition then applies to every symbol on that list — but each symbol still counts separately against your plan's alert
quota, so a 10-symbol watchlist alert uses 10 of your available slots.
Alert limits by plan
Plan Active alerts
Free 1
Essential 20
Plus 100
Premium 400
Ultimate 1,000
Note: SMS alerts require a paid plan, and webhook alerts (for connecting to a bot) require both a paid plan and two-
factor authentication enabled on your account. Email alerts are free on every plan.
6. Pine Script Basics (Building Your Own Tools)
Pine Script is TradingView's own programming language for writing custom indicators and automated strategies. You don't
need it to use TradingView well, but it's there once you outgrow the built-in indicator library.
Where to find it
1. Click Pine Editor at the bottom of the screen (it opens a code panel below the chart).
2. Start from a blank script or open one of the built-in templates.
3. Every script begins with a version and type declaration, for example: //@version=6 followed by indicator("My Script")
or strategy("My Strategy").
4. Click Add to Chart to preview your script live.
5. Use the Strategy Tester panel to backtest a strategy script against historical data before trusting it.
Note: If you're brand new to trading, learn the chart, indicators, and alerts first. Pine Script is worth learning once you
have a specific rule you want automated — not before.
7. A Simple First-Week Workflow
1. Day 1–2: Create your free account. Load 2–3 symbols you already know. Practice switching timeframes and chart
types.
2. Day 3–4: Build a watchlist of 5–10 symbols, organized into 1–2 sections.
3. Day 5: Add one indicator you understand (a simple moving average or RSI) and watch how it behaves across a few
days.
4. Day 6: Set your first price alert on a level you're actually watching.
5. Day 7: Try paper trading (simulated, risk-free) from the bottom trading panel to get comfortable with the order flow.
Note: This document is educational and does not constitute financial or investment advice. Trading involves risk —
never risk money you cannot afford to lose.