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 aece7b2..ae4098c 100644
--- a/app/trading/views.py
+++ b/app/trading/views.py
@@ -14,7 +14,7 @@ class LuxTradeListView(PaginatedListView):
context = super(LuxTradeListView, self).get_context_data(**kwargs)
context['open_trades'] = LuxTrade.objects.filter(status=0)
context['watch_trades'] = LuxTrade.objects.filter(status=2)
- context['options_trades'] = LuxOptionsTrade.objects.filter(status=2)
+ context['options_trades'] = LuxOptionsTrade.objects.filter(status=0)
context['monthly_pl'] = LuxTrade.stats.get_month_pl()
context['month'] = datetime.now().strftime('%h')
return context