Improve wording in formula

This commit is contained in:
Matthias 2020-10-08 08:23:56 +02:00
parent 1b5cb3427e
commit 48750b0ef8

View File

@ -93,11 +93,11 @@ $$ R = \frac{\text{potential_profit}}{\text{potential_loss}} $$
\end{aligned}$
Since the price might go to $0, the $100 dollars invested could turn into 0.
We do however use a stoploss of 15% - so in the worst case, we'll sell 15% below entry price (or at 8.5).
$\begin{aligned}
\text{risk} &= (\text{entry_price} - \text{stoploss}) * \text{investment} \\
\text{potential_loss} &= (\text{entry_price} - \text{stoploss}) * \text{investment} \\
&= (10 - (10 * (1 - 0.15))) * 100\\
&= 150
\end{aligned}$