|
|
@@ -645,6 +645,10 @@ export default class StockHeatmap extends React.Component {
|
|
|
this.circles = []
|
|
|
this.windowedData.map(d => {
|
|
|
const marketDepth = d.marketDepth;
|
|
|
+ if (+marketDepth.lastTradedQty === 0) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
const ask1 = marketDepth.sells[0];
|
|
|
const bid1 = marketDepth.buys[0];
|
|
|
const ts = d.ts;
|