A plain-English introduction to the core ideas behind trading risk management: position sizing, stop placement, risk-to-reward thinking, and protecting your overall account. This article is educational only and does not give buy or sell advice. No indicator, pattern, or method can predict markets, and all trading carries the risk of losing money.
Risk management is the set of habits traders use to decide how much they are willing to lose on any single idea, and how to limit the damage when an idea does not work out. It is not about predicting where price will go. No indicator, pattern, or strategy can do that reliably, and every trade can end in a loss.
The core question risk management tries to answer is simple: "If I am wrong here, how much will it cost me?" Traders who think about this before entering, rather than after, often describe their decisions as calmer and more consistent. Treat the ideas below as a framework for understanding the tradeoffs, not as instructions to take any specific action.
A common educational concept is risk per trade: the amount of your account you put at stake on one position. Many traders express this as a small percentage of their account rather than a fixed cash amount, so the amount risked scales with the account over time.
The reason this idea is so widely discussed is arithmetic, not magic. A string of losses is a normal part of trading, and the larger the share of your account you risk each time, the harder it becomes to recover. Risking a smaller slice keeps any single loss survivable. There is no "correct" number that guarantees anything, and choosing a percentage does not make a trade more likely to succeed. It only defines, in advance, how much a wrong call can cost.
Position size is how many units, shares, lots, or contracts you hold. A stop-loss is a predefined price level where you plan to exit if the market moves against you, intended to cap the loss on that position. The two are linked: the distance between your entry and your stop, combined with how much you are willing to risk, is what determines a position size consistent with that risk.
For example, if you decide in advance how much money you are prepared to lose on a trade and you know how far away your stop is, the position size follows directly from those two numbers. This is why many traders set the stop first and size the trade second, rather than picking a size and hoping. Keep in mind that stops are not guaranteed fills. In fast-moving or gapping markets, an order may execute at a worse price than the stop level, an effect known as slippage.
Risk-to-reward (often written as R:R) compares how much you are risking on a trade to how much you might gain if it works out. A trade risking one unit to potentially make two would be described as roughly 1:2. Traders use this as a planning tool, not a prediction. It says nothing about whether the trade will actually reach its target.
Risk-to-reward only becomes meaningful alongside how often trades work out over a large sample. The combination of win rate and the average size of wins versus losses is sometimes discussed under the term expectancy: the average result you would expect per trade over many trades. A favorable reward ratio does not help if targets are rarely reached, and a high hit rate can still lose money if the occasional loss is large. The honest takeaway is that these are bookkeeping concepts for understanding outcomes over many trades, not levers that improve any single result. Past results do not predict future ones.
Some traders like to visualize the distance between price and a hypothetical stop level so they can think about sizing. The short Pine Script v6 example below plots the percentage distance from the current close to a user-chosen stop price. It is purely illustrative for charting and education, it does not place orders, and it is not a signal to buy or sell.
//@version=6
indicator("Stop Distance %", overlay = false)
stopPrice = input.float(0.0, "Stop price")
distPct = stopPrice > 0 ? math.abs(close - stopPrice) / close * 100 : na
plot(distPct, "Distance to stop (%)", color = color.teal)
hline(0, "Zero", color = color.gray)This simply reports how far, in percentage terms, your chosen stop sits from the latest close. How you interpret that distance, and whether you trade at all, is entirely your own decision and your own risk.
The pieces fit into one habit: before entering, define where you would be wrong (the stop), decide how much being wrong may cost (risk per trade), let that determine your position size, and only then consider the potential reward against that risk. Doing this consistently is what most educational material means by "having a plan."
None of this removes risk. Markets can move suddenly, stops can slip, and even a well-structured plan can produce a run of losses. Risk management is about keeping losses bounded and staying within limits you set in advance, not about winning. Trading carries a genuine risk of losing money, sometimes more than expected, and nothing here is financial advice or a recommendation to act. Consider seeking guidance from a licensed professional for decisions about your own money.
Educational only — not financial advice. Trading involves substantial risk of loss.