From 8695542a2a6425e4a09431824362487bf9072f73 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 13 Nov 2020 12:33:59 -0500 Subject: [PATCH] Add commented ex. code for line price charts --- piker/ui/_chart.py | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/piker/ui/_chart.py b/piker/ui/_chart.py index edb9d6cd..60b55e5d 100644 --- a/piker/ui/_chart.py +++ b/piker/ui/_chart.py @@ -123,6 +123,7 @@ class ChartSpace(QtGui.QWidget): self, symbol: str, data: np.ndarray, + ohlc: bool = True, ) -> None: """Load a new contract into the charting app. """ @@ -147,7 +148,7 @@ class ChartSpace(QtGui.QWidget): if not self.v_layout.isEmpty(): self.v_layout.removeWidget(linkedcharts) - main_chart = linkedcharts.plot_main(s, data) + main_chart = linkedcharts.plot_main(s, data, ohlc=ohlc) self.v_layout.addWidget(linkedcharts) return linkedcharts, main_chart @@ -234,7 +235,7 @@ class LinkedSplitCharts(QtGui.QWidget): name=symbol.key, array=array, xaxis=self.xaxis, - ohlc=True, + ohlc=ohlc, _is_main=True, ) # add crosshair graphic @@ -746,6 +747,15 @@ async def _async_main( ohlcv = feed.shm bars = ohlcv.array + # TODO: when we start messing with line charts + # c = np.zeros(len(bars), dtype=[ + # (sym, bars.dtype.fields['close'][0]), + # ('index', 'i4'), + # ]) + # c[sym] = bars['close'] + # c['index'] = bars['index'] + # linked_charts, chart = chart_app.load_symbol(sym, c, ohlc=False) + # load in symbol's ohlc data linked_charts, chart = chart_app.load_symbol(sym, bars) @@ -849,6 +859,11 @@ async def chart_from_quotes( l, lbar, rbar, r = last_bars_range in_view = array[lbar:rbar] mx, mn = np.nanmax(in_view['high']), np.nanmin(in_view['low']) + + # TODO: when we start using line charts + # sym = chart.name + # mx, mn = np.nanmax(in_view[sym]), np.nanmin(in_view[sym]) + return last_bars_range, mx, mn last_bars_range, last_mx, last_mn = maxmin() @@ -898,6 +913,11 @@ async def chart_from_quotes( array, ) + # chart.update_curve_from_array( + # chart.name, + # TODO: when we start using line charts + # np.array(array['close'], dtype=[(chart.name, 'f8')]) + # if vwap_in_history: # # update vwap overlay line # chart.update_curve_from_array('vwap', ohlcv.array)