LearnTradingView & ChartingPaper Trading Simulator
    Article 19 of 34

    Paper Trading Simulator

    How to use TradingView's built-in virtual environment to practice strategies risk-free.

    Rohit Singh
    Rohit SinghMr. Chartist
    April 1, 2026
    32 min read

    Mr. Chartist Workflow

    Read with a trading desk mindset.

    Every TradingView article now follows a practical pattern: understand the tool, map it to a charting workflow, apply it on Indian market instruments, and turn it into a repeatable workspace habit.

    8

    Sections

    5m

    Read

    settings

    Level

    01

    Open a clean chart and locate the exact TradingView area covered in "Paper Trading Simulator".

    02

    Apply it on one liquid NSE stock, one index, and one weekly timeframe so the concept is not learned in isolation.

    03

    Save the layout, write one note about what improved your decision-making, and remove anything that adds noise.

    Paper trading means placing trades with make-believe money on real, live market prices. Nothing is sent to an exchange, no rupee leaves your bank account, and no demat holding changes hands — but everything else looks and behaves like the real thing. TradingView builds this simulator straight into the chart, so you can practise the mechanics of trading before you practise them with your savings.

    It is useful at every stage. If you have never placed an order, it is where you learn what a limit order actually does. If you have traded for years, it is where you test a new idea on NSE:NIFTY or NSE:BANKNIFTY before committing capital. And if you want a competitive test, TradingView runs a paper-trading contest called The Leap where the portfolios are virtual but the prizes are real.

    This guide walks the whole thing end to end: opening the panel, what each field on the order ticket means, how the five order types differ, how to manage a position by dragging lines on the chart, the honest limits of simulation, and a structured 90-day practice plan built around NSE hours of 09:15–15:30 IST. Everything here is educational — it explains how the tool works, not what you should buy.

    01

    1. What is Paper Trading on TradingView?

    Paper Trading is a built-in virtual trading simulator available on ALL TradingView plans — including the completely free Basic plan. It gives you a virtual balance (the default is $100,000 USD) and lets you place buy and sell orders on any instrument using real-time market data streaming from live exchanges.

    Mechanically, TradingView is acting as a pretend broker. When you submit a paper order, it does not travel to the NSE. It sits inside TradingView's own matching logic, which watches the live price feed for your instrument and marks the order as filled the moment the feed prints a price that satisfies it. A buy limit at ₹1,420 on NSE:RELIANCE fills when the feed prints ₹1,420 or lower. From that instant, the simulator holds a position and revalues it on every tick.

    Once a position exists, the simulator does the same bookkeeping a real broker does. It tracks unrealised profit and loss — the paper gain or loss on a position you are still holding — separately from realised profit and loss, which is the number locked in once you close. It keeps working orders alive, deducts a margin block, writes every fill into an order history, and rolls the whole thing into a performance summary.

    The real advantage over a broker's standalone demo account is that the simulator lives inside the chart. You draw the trendline, mark the support zone, set the alert and place the order in the same window, using the same mouse movements you will use with real money later. There is no context switch between analysis and execution — which matters, because the switch itself is where beginners lose their level.

    tradingview.com
    1. What is Paper Trading on TradingView?
    FreeAvailable on All Plans
    $100KDefault Virtual Capital
    5Order Types Supported
    Real-TimeLive Market Data
    pine
    1//@version=5
    2strategy("Simple MACD Strategy", overlay=true)
    3[macdLine, signalLine, histLine] = ta.macd(close, 12, 26, 9)
    4
    5if ta.crossover(macdLine, signalLine)
    6 strategy.entry("Long", strategy.long)
    7
    8if ta.crossunder(macdLine, signalLine)
    9 strategy.close("Long")

    A Pine Script strategy — the kind of automated logic you can also test against Paper Trading

    Snapshot & Takeaways

    1
    Virtual money, real prices: order fills are simulated, but the price feed driving them is the live exchange feed.
    2
    Available on every plan, including free — no broker account, no KYC, no deposit.
    3
    Unrealised P&L = the paper gain on an open position. Realised P&L = the result locked in after you close it.
    4
    Works on Indian instruments: search NSE:RELIANCE, NSE:TCS, NSE:HDFCBANK, NSE:INFY, NIFTY or BANKNIFTY and trade them like any other symbol.
    5
    Nothing here touches a real exchange, so nothing here is a broker service — it is a practice environment.

    Official Resources

    02

    2. Step-by-Step Setup Guide

    Everything starts at the bottom edge of the chart. Along that edge TradingView keeps a row of tabs — Stock Screener, Pine Editor, Strategy Tester and Trading Panel. Click 'Trading Panel' and a drawer slides up from the bottom, splitting the window: chart above, broker workspace below. If the drawer is already open but collapsed to a thin strip, drag its top border upward to give it room. The panel is where the simulator lives, and it stays with you as you switch symbols, so you can hold a paper position in NSE:HDFCBANK while you study a chart of NSE:INFY above it.

    Inside the panel is a broker selector. It lists every broker TradingView can connect to, plus one entry that is not a broker at all: 'Paper Trading'. Choose it and press Connect. There is no login, no password and no verification step, because there is no external company involved — you are switching TradingView into simulation mode against its own internal ledger. Within a second the panel fills with an account summary: balance, equity, margin used and margin available. That is your virtual account, and it is now the account every order in this panel will be booked against.

    Now place something. The Buy and Sell buttons at the top of the panel open the order ticket, and the ticket has four decisions in it. Symbol is inherited from whatever chart you are looking at. Quantity is how many units — remember that Indian index derivatives trade in fixed lot sizes, so a NIFTY option is bought in whole lots, not in arbitrary numbers. Order type decides how the fill is triggered, which the next section covers in detail. And the two optional protective legs, Stop Loss and Take Profit, are the price at which the position is automatically closed for a loss and the price at which it is automatically closed for a gain. Fill those in before you submit, not after.

    After you submit, look at the three tabs inside the panel rather than at the chart. 'Positions' shows what you are currently holding, with the average entry price and the live unrealised P&L. 'Orders' shows instructions that have been accepted but not yet triggered — a limit order waiting for price to come to it sits here. 'History' is the permanent log of everything that filled. Beginners tend to watch the price and ignore these three tabs; professionals do the reverse, because a mistake almost always shows up as a wrong number in Positions long before it shows up as a loss on the chart.

    Paper TradingVirtual PortfolioBalance₹10,00,000P&L+₹48,250Return+4.83%Open PositionsSymbolQtyAvg PriceLTPP&LRELIANCE502,8402,950+₹5,500HDFCBANK1001,5201,450-₹7,000TCS253,7503,820+₹1,750INFY801,4801,520+₹3,200BUYSELL

    Step 1: Open Trading Panel

    • Click the 'Trading Panel' tab at the bottom of any chart.
    • Drag its top border upward if it opens collapsed.
    • The panel persists as you switch symbols and layouts.
    RELIANCE2,950+1.25% TodayStrong Buy

    Step 2: Connect Paper Trading

    • Choose 'Paper Trading' from the broker dropdown list.
    • Press 'Connect' — no login or verification is required.
    • Balance, equity, margin used and margin free appear instantly.
    Paper TradingVirtual PortfolioBalance₹10,00,000P&L+₹48,250Return+4.83%Open PositionsSymbolQtyAvg PriceLTPP&LRELIANCE502,8402,950+₹5,500HDFCBANK1001,5201,450-₹7,000TCS253,7503,820+₹1,750INFY801,4801,520+₹3,200BUYSELL

    Step 3: Place Your First Trade

    • Press Buy or Sell to open the order ticket.
    • Or right-click a price level on the chart and choose 'Trade'.
    • Set quantity, then the Stop Loss and Take Profit legs before submitting.
    Paper TradingVIRTUALBUYSELLQuantity100Price₹2,948.50

    Step 4: Monitor & Manage

    • Open positions draw horizontal lines across the chart.
    • Drag the Take Profit / Stop Loss lines to move those levels.
    • Read Positions, Orders and History rather than watching price.
    NIFTY 501DBANKNIFTY1DRELIANCE15mHDFCBANK1hTCS1DINFY4h

    Snapshot & Takeaways

    1
    Trading Panel tab sits along the bottom edge of the chart, beside Pine Editor and Stock Replay.
    2
    Select 'Paper Trading' in the broker list, press Connect — no credentials, because no external broker is involved.
    3
    The order ticket asks for four things: symbol, quantity, order type, and the optional Stop Loss / Take Profit legs.
    4
    Positions = what you hold now. Orders = instructions still waiting to trigger. History = the permanent record of fills.
    5
    Indian derivatives trade in fixed lot sizes — a NIFTY or BANKNIFTY option is bought in whole lots, not loose units.
    6
    Check the panel tabs after every submission; a wrong quantity is far easier to catch there than on the chart.
    03

    3. Order Types: Mastering Execution

    TradingView's Paper Trading simulator supports all five order types you will meet at a real Indian broker. Learning them in simulation is worth doing carefully, because picking the wrong one in a live market is one of the few beginner mistakes that costs money instantly rather than gradually.

    A Market Order says: fill me now, at whatever price is available. It guarantees that you get in or out; it does not guarantee the price. Use it when being out of the position matters more than the exact exit — cutting a trade that has gone against you is the classic case.

    A Limit Order says the opposite: fill me only at my price or better, and wait as long as it takes. It guarantees the price and not the fill. If NSE:TCS is trading at ₹3,180 and you want it at ₹3,140, a buy limit at ₹3,140 simply sits in the Orders tab until price comes down to you. It may never come down, and that is the trade-off you accepted.

    A Stop Order is a market order held in reserve behind a trigger price. Nothing happens until price touches the trigger; the instant it does, the order converts into a market order and fills at whatever is available. This is the mechanism behind a stop-loss. A Stop-Limit Order is the same trigger, except it releases a limit order instead — which protects you from a terrible fill but risks not filling at all if price gaps straight through your limit.

    A Bracket Order is the one worth building a habit around. It submits three instructions as a bundle: the entry, a Take Profit above it and a Stop Loss below it. The moment the entry fills, both protective legs go live, and when one of them executes the other is cancelled automatically. The reason this matters is that it forces you to name your risk and your reward before the trade exists — which is exactly the discipline that collapses first when real money is involved.

    Paper TradingVIRTUALBUYSELLQuantity100Price₹2,948.50

    Market & Limit Orders

    • Market: fills immediately at the best price currently available.
    • Limit: fills only at your stated price or better, otherwise waits.
    • Market prioritises speed. Limit prioritises price.
    • Both can be launched from the chart or from the order ticket.
    Paper TradingVIRTUALBUYSELLQuantity100Price₹2,948.50

    Stop, Stop-Limit & Bracket Orders

    • Stop: trigger price releases a market order.
    • Stop-Limit: trigger price releases a limit order instead.
    • Bracket: entry with Take Profit and Stop Loss attached from the start.
    • Bracket orders support multiple exit levels for scaling out of a position.
    Paper TradingVirtual PortfolioBalance₹10,00,000P&L+₹48,250Return+4.83%Open PositionsSymbolQtyAvg PriceLTPP&LRELIANCE502,8402,950+₹5,500HDFCBANK1001,5201,450-₹7,000TCS253,7503,820+₹1,750INFY801,4801,520+₹3,200BUYSELL

    Snapshot & Takeaways

    1
    Market = certainty of execution, no certainty of price. Limit = certainty of price, no certainty of execution.
    2
    Stop = a market order parked behind a trigger. Stop-Limit = a limit order parked behind a trigger.
    3
    Bracket = entry + Take Profit + Stop Loss as one bundle; when one exit fires, the other is cancelled.
    4
    Risk-to-Reward (R:R) is the distance from entry to stop compared with the distance from entry to target. Risking ₹2,000 to aim for ₹6,000 is 1:3.
    5
    One unit of risk is called 1R. Describing a result as '+2R' or '-1R' keeps the focus on process rather than on the rupee amount.
    6
    A stop-limit can leave you unprotected if price gaps past the limit — know that before you prefer it to a plain stop.

    Professional Tip

    Use a Bracket Order for every single practice trade, even when you are certain of the direction. It forces the stop and the target to exist before the entry does, which is the habit that survives into live trading.

    04

    4. Chart Trading: Visual Order Management

    Chart Trading is TradingView's name for managing a position by touching the chart itself rather than by typing into a ticket. It is the feature that makes the platform feel like a trading terminal instead of a chart viewer.

    When a paper position is open, TradingView draws horizontal lines across the chart at your key levels: one at the average entry price, one at the Take Profit, one at the Stop Loss. Each of these is a live control, not a label. Grab a line and drag it, and you are amending the underlying order — drag the stop-loss line up under a newly formed higher low on NSE:HDFCBANK and the working stop order updates to that price the moment you release. The number on the line updates as you move, so you can see the new distance before you commit to it.

    There is also a permanent pair of Buy and Sell buttons you can pin to the chart. Turn them on through Chart Settings, then the 'Trading' tab, then the 'Buy/Sell Buttons' toggle. They anchor to the right edge at the current price and show the live bid and ask, so a single click opens a ticket already carrying the correct symbol and a sensible price.

    The fastest route of all is the right-click. Right-click any price level on the chart and TradingView offers 'Trade at' followed by that exact price, which opens a pre-filled limit order at the level you clicked. This is the natural way to place an entry at a support zone you have already drawn: click the line, place the order, done. The whole point is that the level you analysed and the level you traded are the same level, because you never retyped it.

    BUY 1,380SL 1,540TP 1,580Unrealized P&L+₹5,5001,5801,5401,5001,4601,4201,380

    Snapshot & Takeaways

    1
    Entry, Take Profit and Stop Loss all render as draggable lines on the chart, not static labels.
    2
    Dragging a line amends the live order — the number updates as you drag, so you see the new risk before releasing.
    3
    Chart Settings → Trading → Buy/Sell Buttons pins a permanent order control to the right edge of the chart.
    4
    Right-click any price → 'Trade at' opens a limit order pre-filled at that exact level.
    5
    Placing orders directly on drawn levels removes the retyping step where mistakes usually happen.
    05

    5. Account Configuration & Reset

    The default paper account opens with $100,000 USD. That is a generous figure and it quietly distorts practice: a position that would be a serious commitment on a real Indian retail account looks trivial against six figures, so the position sizing you rehearse is not the position sizing you will use.

    To fix that, click the gear icon in the Trading Panel and choose 'Reset Paper Trading Account'. The dialog lets you set a custom Initial Balance, adjust the Leverage applied to different asset classes, and set a Commission rate so that brokerage and charges are subtracted from every simulated fill. Set the balance to something close to the capital you actually intend to trade — if that is ₹2,00,000, use the equivalent — and the sizing decisions you practise become the sizing decisions you will face.

    Resetting permanently deletes every open position, working order and history entry. Some traders use that deliberately, resetting on the first trading session of each month so that each month is a clean, self-contained block of practice with its own record. If you do that, export or screenshot the previous month's history first, because once it is gone TradingView cannot recover it.

    1,6001,5001,4001,3001,20025,00024,00023,00022,00021,000JanFebMarAprMayJunJulAugSepOctRELIANCE · 1,430.80NIFTY 50 · 24,350Left ₹Right ₹

    Snapshot & Takeaways

    1
    Set Initial Balance to match the capital you actually plan to deploy, so position sizing practice transfers to real trading.
    2
    Set Leverage to mirror the segment you are practising, instead of leaving a default that flatters your buying power.
    3
    Add a Commission figure — a strategy that only works before costs does not work.
    4
    Reset wipes positions, orders and history permanently; save the record before you clear it.
    5
    A monthly reset turns practice into discrete, comparable blocks rather than one endless blur.
    06

    6. The Leap: TradingView's Paper Trading Competition

    'The Leap' is TradingView's paper-trading competition. Participants trade virtual portfolios against each other over a fixed window, and finishers at the top of the leaderboard receive prizes from TradingView. No capital is at risk, because no capital is involved.

    Competitions typically run for roughly 30 days. On registration TradingView creates a separate competition account, distinct from your personal paper account, and that account cannot be reset for the duration of the contest — which is the point. Knowing you cannot wipe the slate changes how you treat a bad session, and that pressure is the closest a simulator gets to the psychological weight of real money.

    For an Indian participant, the value is less about the prize and more about the record. A competition run produces a fixed, timestamped sequence of decisions you cannot edit afterwards, attached to your public TradingView profile. Reviewing that sequence honestly — including the trades that went nowhere — teaches more than any number of successful practice trades you were free to delete.

    1,5601,5201,4801,4401,4001,3601,430.80RELIANCE, 1D

    Competition Format

    • Duration: approximately 30 days per competition.
    • Account: dedicated and non-resettable for the contest window.
    • Ranking: based on realised P&L at the close of the competition.
    • Eligibility: an active paid plan or free trial is required.
    RELIANCE — Price vs RevenueRevenue (₹ Cr)PriceEPSQ1 24Q2 24Q3 24Q4 24Q1 25Q2 25Q3 251,6001,5001,4001,3001,200

    Recognition

    • Cash rewards for leaderboard finishers, announced per competition.
    • Plan extensions for runners-up.
    • Category awards such as 'Most Profitable Trade'.
    • A profile badge recording the competition placement.
    Financials — RELIANCENSE · QuarterlyIncome statementBalance sheetCash flowRatiosQ4 2025Q3 2025Q2 2025Q1 2025Q4 2024Total revenue2,43,8642,35,0932,31,4592,16,2572,32,722Cost of goods sold1,56,2901,51,8421,49,8101,38,4261,50,965Gross profit87,57483,25181,64977,83181,757Operating expenses28,45027,83026,95025,60027,200Operating income59,12455,42154,69952,23154,557Net income21,93019,87818,95117,61219,299EPS — basic32.3729.3427.9726.0028.49EPS — diluted32.3729.3427.9726.0028.49₹ Cr · All values in Crores

    Critical Warning

    A competition rewards the highest realised P&L over a short window, which quietly rewards concentrated risk-taking. That is close to the opposite of what survives over a long horizon. Treat a leaderboard placing as a record of what happened in one 30-day sample, not as evidence about a method.

    07

    7. Paper Trading vs. Real Trading: The Honest Differences

    Paper trading is an excellent teacher of mechanics and a poor teacher of everything else. Knowing exactly where the gap sits is what stops the transition to live markets from being a shock.

    The first gap is execution. In simulation, your order fills at the price you asked for, in full, instantly. In a live market, a large order in a thinly traded NSE small-cap may fill in pieces at several prices, or not at all. The difference between the price you expected and the price you got is called slippage, and it is small on NSE:RELIANCE and painful on an illiquid counter. The simulator does not charge you for it, so a strategy that depends on precise entries will look better on paper than it can be in practice.

    The second gap is cost. Real Indian trading carries brokerage, exchange transaction charges, GST, STT, SEBI turnover fees and stamp duty. Together these are small per trade and very large across a year of active trading. Unless you deliberately set a commission figure in the paper account settings, none of it is deducted, so the paper equity curve is measuring a market that does not exist.

    The third gap is the one that actually matters, and it is psychological. With nothing at stake, you will hold through a drawdown calmly, cut a loser exactly at your stop, and let a winner run to target — because none of it is real. Watching an unrealised loss on a BANKNIFTY position widen from ₹10,000 to ₹15,000 while the clock runs toward 15:30 IST, knowing it is your own money, produces an entirely different set of impulses. This is why a paper record cannot tell you whether you will follow your rules; it can only tell you whether your rules are internally coherent.

    The fourth gap is market impact. Your paper order does not exist in the order book, so it never moves the price. A large real order does, particularly in less liquid instruments — you push the price away from yourself as you fill. And the fifth is timing: simulated execution is instantaneous, while a real order travels through your broker's systems and the exchange gateway, which takes measurable milliseconds during volatile openings.

    Paper TradingVirtual PortfolioBalance₹10,00,000P&L+₹48,250Return+4.83%Open PositionsSymbolQtyAvg PriceLTPP&LRELIANCE502,8402,950+₹5,500HDFCBANK1001,5201,450-₹7,000TCS253,7503,820+₹1,750INFY801,4801,520+₹3,200BUYSELL
    FeaturesTradingViewTraditional Brokers
    ExecutionFills at the exact requested price, instantlyMay slip by one or more ticks on a real order
    EmotionsNo fear or greed — the money is not realFear, greed and FOMO are present on every decision
    LiquidityOrders always fill in fullPartial fills or rejections on illiquid stocks
    Market ImpactA paper order never enters the order bookA large real order moves the price against you
    CostsZero unless you configure commissions manuallyBrokerage, STT, GST, exchange and stamp charges on every fill
    SpeedInstant simulated executionDepends on broker and exchange gateway latency
    PsychologyRules are easy to follow when nothing is at stakeFollowing rules under real pressure is the whole difficulty

    Snapshot & Takeaways

    1
    Slippage — the gap between the price you asked for and the price you got — does not exist in simulation but does in life.
    2
    Brokerage, STT, GST, exchange charges and stamp duty are only modelled if you set a commission figure yourself.
    3
    Paper fills are always complete; real orders in illiquid NSE counters can fill partially or be rejected.
    4
    A real order sits in the order book and moves price; a paper order does not exist there at all.
    5
    The largest gap is emotional, and no simulator can close it — only smaller real position sizes can.
    6
    A paper record tests whether your rules are coherent. It cannot test whether you will follow them.

    Critical Warning

    Paper trading profitability does NOT guarantee real trading profitability. The emotional component of risking real money fundamentally changes decision-making, and the simulator removes costs and slippage that a live account cannot avoid. Treat a paper record as a test of whether your process is coherent, never as evidence of what a live account would have done.

    08

    8. A Structured 90-Day Practice Plan

    Opening a paper account and clicking Buy at random teaches nothing except how to click Buy. Practice only compounds when each block of it has a defined skill to build and a defined thing to review. What follows is one way to structure three months of practice around the NSE session — 09:15 to 15:30 IST — for someone learning from scratch. It is a study structure, not a recommendation to trade.

    The first month is purely mechanical and deliberately boring. The only objective is that you can operate the platform without errors: place each of the five order types, attach a bracket, drag a stop-loss line to a new level, cancel a working order, read the Positions tab correctly, and close a position deliberately rather than by accident. Direction does not matter at all in month one. What matters is that you never again submit a buy when you meant a sell, or 500 units when you meant 50. Log every trade with the reason you took it and what happened, because that log is the raw material for months two and three.

    The second month introduces a written checklist. Before month two starts, write down the specific conditions that must all be true for you to take a trade — the structure you require on the chart, the level you enter at, where the stop sits, where the target sits, and the maximum you are willing to risk on one position. Then trade only setups that satisfy every line of it, and record whether you followed the checklist independently of whether the trade made money. Those two questions are separate, and confusing them is the single most common error in a beginner's journal. This is also where the vocabulary starts to matter: Risk-to-Reward, or R:R, is simply the distance from entry to stop compared with the distance from entry to target, so risking ₹2,000 to aim for ₹6,000 is 1:3.

    The third month is an audit rather than a curriculum. Set the paper account's initial balance to your intended real capital and switch commissions on, so the numbers finally describe a market with costs in it. Then read your own record against three plain-English measures. Profit Factor is the total money made on winning trades divided by the total money lost on losing trades — above 1.0 means the winners covered the losers over that sample, and nothing more. Maximum Drawdown is the deepest fall from a peak account value to the low that followed it, expressed as a percentage — it answers 'what is the worst hole this account has been in'. Expectancy is the average result per trade measured in R. None of these are pass marks, because a three-month sample is far too small to prove anything about a method.

    The useful output of month three is not a score. It is a set of questions you can answer with evidence from your own log: Can I state my entry rule, my stop rule and my exit rule in one sentence each? Did I follow that written plan on every trade, including the ones that lost? Do I know the worst drawdown my plan produced in this sample, and would I have continued to trade the plan through it? Have I accounted for brokerage, STT and the other charges? And do I understand that a good paper result is a statement about a small sample under simulated conditions, not a forecast? If you cannot answer those, more practice is the answer. If you can, you have a documented process — which is a different and much smaller claim than a proven edge.

    Equity CurvePerformanceNet Profit+₹48,250Win Rate64.3%Profit Factor2.14Max Drawdown-12.8%Sharpe Ratio1.87Total Trades142Trade List#SymbolSideEntryExitP&L1RELIANCELong2,8402,950+₹1,1002HDFCBANKShort1,5201,450+₹7003TCSLong3,9003,820-₹800

    Month 1: Mechanics & Order Flow

    • Skill: operate all five order types plus brackets without error.
    • Practice: place and manage orders on NIFTY, BANKNIFTY and NSE:RELIANCE.
    • Review question: did I submit anything I did not intend this week?
    • Journal: log every trade with its reason and its outcome.
    Paper TradingVIRTUALBUYSELLQuantity100Price₹2,948.50

    Month 2: Written Rules & Adherence

    • Skill: trade only setups that satisfy a pre-written checklist.
    • Practice: fix risk per position before entry, never after.
    • Review question: did I follow the plan — recorded separately from P&L?
    • Journal: track R multiples, not rupees, to keep focus on process.
    Equity CurvePerformanceNet Profit+₹48,250Win Rate64.3%Profit Factor2.14Max Drawdown-12.8%Sharpe Ratio1.87Total Trades142Trade List#SymbolSideEntryExitP&L1RELIANCELong2,8402,950+₹1,1002HDFCBANKShort1,5201,450+₹7003TCSLong3,9003,820-₹800

    Month 3: Audit & Self-Assessment

    • Skill: read your own record with costs and real sizing switched on.
    • Practice: reproduce your intended live position size and commissions.
    • Review questions: can I state my rules in one sentence each, and did I follow them?
    • Reality check: a 90-day sample describes what happened; it forecasts nothing.
    1,6001,5001,4001,3001,20025,00024,00023,00022,00021,000JanFebMarAprMayJunJulAugSepOctRELIANCE · 1,430.80NIFTY 50 · 24,350Left ₹Right ₹

    Snapshot & Takeaways

    1
    Month 1 builds error-free operation of the platform. Direction is irrelevant; mis-clicks are the enemy.
    2
    Month 2 builds adherence to a written checklist, recorded separately from whether the trade profited.
    3
    Month 3 is an audit with real capital sizing and commissions switched on.
    4
    Profit Factor = money won on winners ÷ money lost on losers. Above 1.0 means the winners covered the losers in that sample.
    5
    Maximum Drawdown = the deepest percentage fall from a peak account value to the low that followed it.
    6
    A three-month sample is too small to prove anything about a method — treat every number as a description, not a forecast.

    Professional Tip

    Many traders set a daily loss limit in simulation exactly as they would with real money — a fixed rupee figure or a fixed percentage of the account, after which they close everything and stop for the session. The point is not the number. It is that the decision to stop is made in advance, when you are calm, rather than in the moment, when you are not.

    Unlock TradingView Pro

    Gain unrestricted access to multiple charts, custom timeframes, and unlimited technical indicators to perfect your edge.

    Claim TradingView Upgrade

    Frequently Asked Questions

    Common questions about this topic

    Yes. Paper Trading is included on every TradingView plan including the free Basic plan, and it needs no broker account, no KYC and no deposit. You start with a $100,000 USD virtual balance that can be reset to any figure at any time. All five order types are available — Market, Limit, Stop, Stop-Limit and Bracket — and they are matched against the same live price feed that drives your charts.

    Official TradingView Resources

    Curated links from TradingView's Help Center & Blog

    Why can't I log into my paper trading account?

    You may not be able to log into your paper trading account if: Your live account has been migrated to a different legal entity. In that case, your old...

    Why do I receive “This username is not associated with a paper trading account” error message?

    If you have the same credentials for both Live and Paper account, please try to change the credentials on the account page of the Interactive Brokers ...

    How to change the account currency in Paper Trading

    The default Paper Trading account currency is USD, but you can choose any of the available currencies that best suit your trading needs.It is easy to ...

    How to connect or disconnect a Paper Trading account

    From this very article, click on Paper Trading — and you're almost set.Or you can:Open SuperchartsFind the Trading panel at the bottomSelect Paper Tra...

    More flexibility: change your Paper Trading account currency

    Read fresh TradingView updates: More flexibility: change your Paper Trading account currency. Discover more in our blog and stay connected with the latest platform news.

    Maximize your strategies with extended trading hours in Paper Trading

    Read fresh TradingView updates: Maximize your strategies with extended trading hours in Paper Trading. Discover more in our blog and stay connected with the latest platform news.

    Experience every stage of futures contracts in Paper Trading

    Read fresh TradingView updates: Experience every stage of futures contracts in Paper Trading. Discover more in our blog and stay connected with the latest platform news.

    The Leap show-down: compete to win in our paper trading competition

    Read fresh TradingView updates: The Leap show-down: compete to win in our paper trading competition. Discover more in our blog and stay connected with the latest platform news.

    Rohit Singh — Mr. Chartist

    Written By

    Rohit Singh

    Mr. Chartist

    With 14+ years of experience in Indian financial markets, Rohit Singh (Mr. Chartist) is a SEBI Registered Research Analyst, Amazon #1 bestselling author, and the founder of Investology — a premium trading ecosystem trusted by a 1.5 Lakh+ strong community across India.

    INH000015297Full Bio

    TradingView is a registered trademark of TradingView, Inc. All screenshots, logos, and platform imagery are the property of TradingView, Inc. and are used here for educational purposes only under fair use. This content is not affiliated with, endorsed, or sponsored by TradingView.

    (c) 2026 TradingView, Inc. All rights reserved. - www.tradingview.com