You have the concepts. Now let us make them effortless to apply by building a simple position-size calculator, the small tool that turns your risk rules into an exact share count in seconds, so you never size by guesswork or skip the math when you are in a hurry.
What the calculator does
A position-size calculator takes your four inputs, account size, risk percent, entry price, and stop price, and outputs the number of shares (or contracts) to trade. It is the fixed-fractional formula from Module 3, automated. The value is not the arithmetic, which is trivial; it is that having the tool in front of you removes every excuse to skip the calculation. When sizing is one quick entry away, you do it every time, even on the fast trades where discipline usually slips.
Building one in a spreadsheet
You can build this in five minutes in any spreadsheet. Create input cells for Account, Risk %, Entry, and Stop. Then add formula cells:
- Dollar Risk = Account × Risk%
- Risk Per Share = ABS(Entry − Stop)
- Shares = Dollar Risk ÷ Risk Per Share, rounded down to a whole number
- Position Value = Shares × Entry, so you can check it fits your buying power
- Actual Risk = Shares × Risk Per Share, confirming you are close to 1R after rounding
Rounding down on the share count matters: it keeps your actual risk at or just under 1R rather than over it. The Position Value line is your sanity check against account and leverage limits, if it exceeds what you can hold, the stop is too tight for this trade at your size and you pass or accept less than 1R.
Useful extras
Once the core works, a few additions make it a genuine risk cockpit. Add a current heat cell where you total the risk of your open positions, and a check that warns if this new trade would push you over your heat cap. Add an ATR field so you can compute a volatility-based stop distance directly. And add a reward-to-risk output from your entry, stop, and target, so you can reject trades whose payoff does not justify the risk before you take them.
The habit it builds
The real win is behavioural. A calculator makes the right action the easy action. Instead of eyeballing “I’ll buy 100 shares,” you type four numbers and the tool tells you the truth: maybe it is 38 shares, maybe it is 240. Over hundreds of trades, this one habit, always sizing from the formula, never from a round number that feels right, is worth more than any indicator, because it guarantees that every trade carries exactly the risk you intended.