summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/trading/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/trading/views.py b/app/trading/views.py
index c9dbeec..aa68192 100644
--- a/app/trading/views.py
+++ b/app/trading/views.py
@@ -17,7 +17,7 @@ class LuxTradeListView(PaginatedListView):
context['options_trades'] = LuxOptionsTrade.objects.filter(status__in=[0,2])
context['options_trades_closed'] = LuxOptionsTrade.objects.filter(status=1)
context['monthly_pl'] = LuxTrade.stats.get_month_pl()
- context['year_pl'] = LuxTrade.stats.get_month_pl()
+ context['year_pl'] = LuxTrade.stats.get_year_pl()
context['month'] = datetime.now().strftime('%h')
return context