diff options
author | luxagraf <sng@luxagraf.net> | 2021-07-15 13:19:54 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2021-07-15 13:19:54 -0400 |
commit | 3fcac95a6cc55b5da26e2cfa65759a141091a3ef (patch) | |
tree | 686e71aefa0a08f1c8882d43379237a9f78a38fa /app/trading | |
parent | 8af402161ed8cf7d67c5e44c36f5bad6e23c5cb2 (diff) |
fixed bug in history data
Diffstat (limited to 'app/trading')
-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> |