diff options
-rw-r--r-- | app/trading/templates/trading/list.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/trading/templates/trading/list.html b/app/trading/templates/trading/list.html index c43a1ff..479b3e6 100644 --- a/app/trading/templates/trading/list.html +++ b/app/trading/templates/trading/list.html @@ -79,6 +79,7 @@ <th>Entry Price</th> <th>Stop Price</th> <th>Target Price</th> + <th>Exit Price</th> <th>Number of Shares</th> <th>Total Invested</th> <th>$ at Risk</th> @@ -94,6 +95,7 @@ <td>${{object.entry_price}}</td> <td>${{object.stop_price}}</td> <td>${{object.target_price}}</td> + <td>${{object.exit_price}}</td> <td>{{object.shares}}</td> <td>${{object.amount_invested}}</td> <td>${{object.risk_dollars}}</td> |