From 0c3bfb9e9e79ca416ce2860a6bdd5ed642b43fa6 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 13 Nov 2018 18:41:58 -0500 Subject: [PATCH] Stack the mktcap + volumes --- piker/brokers/questrade.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/piker/brokers/questrade.py b/piker/brokers/questrade.py index 08b164d6..dea7b1ef 100644 --- a/piker/brokers/questrade.py +++ b/piker/brokers/questrade.py @@ -477,10 +477,13 @@ _qt_keys = { # 'delay': 'delay', # as subscript 'p' } +# BidAskLayout columns which will contain three cells the first stacked on top +# of the other 2 _bidasks = { 'last': ['bid', 'ask'], 'size': ['bsize', 'asize'], 'VWAP': ['low', 'high'], + 'mktcap': ['vol', '$ vol'], }