@@ -204,6 +204,7 @@ def _get_style_for_value(value: float) -> str:
204204 "ticker" : (
205205 quote_column (
206206 "Ticker" ,
207+ full_name = "Ticker Symbol" ,
207208 width = 8 ,
208209 key = "ticker" ,
209210 justification = Justify .LEFT ,
@@ -215,6 +216,7 @@ def _get_style_for_value(value: float) -> str:
215216 "last" : (
216217 quote_column (
217218 "Last" ,
219+ full_name = "Market Price" ,
218220 width = 10 ,
219221 key = "last" ,
220222 cell_factory = lambda q : FloatCell (
@@ -228,6 +230,7 @@ def _get_style_for_value(value: float) -> str:
228230 "change" : (
229231 quote_column (
230232 "Change" ,
233+ full_name = "Market Change" ,
231234 width = 10 ,
232235 key = "change" ,
233236 cell_factory = lambda q : FloatCell (
@@ -242,6 +245,7 @@ def _get_style_for_value(value: float) -> str:
242245 "change_percent" : (
243246 quote_column (
244247 "Chg %" ,
248+ full_name = "Market Change Percent" ,
245249 width = 8 ,
246250 key = "change_percent" ,
247251 cell_factory = lambda q : PercentCell (
@@ -255,6 +259,7 @@ def _get_style_for_value(value: float) -> str:
255259 "open" : (
256260 quote_column (
257261 "Open" ,
262+ full_name = "Market Open" ,
258263 width = 10 ,
259264 key = "open" ,
260265 cell_factory = lambda q : FloatCell (
@@ -268,6 +273,7 @@ def _get_style_for_value(value: float) -> str:
268273 "low" : (
269274 quote_column (
270275 "Low" ,
276+ full_name = "Day Low" ,
271277 width = 10 ,
272278 key = "low" ,
273279 cell_factory = lambda q : FloatCell (
@@ -281,6 +287,7 @@ def _get_style_for_value(value: float) -> str:
281287 "high" : (
282288 quote_column (
283289 "High" ,
290+ full_name = "Day High" ,
284291 width = 10 ,
285292 key = "high" ,
286293 cell_factory = lambda q : FloatCell (
@@ -294,6 +301,7 @@ def _get_style_for_value(value: float) -> str:
294301 "_52w_low" : (
295302 quote_column (
296303 "52w Low" ,
304+ full_name = "52-Week Low" ,
297305 width = 10 ,
298306 key = "_52w_low" ,
299307 cell_factory = lambda q : FloatCell (
@@ -307,6 +315,7 @@ def _get_style_for_value(value: float) -> str:
307315 "_52w_high" : (
308316 quote_column (
309317 "52w High" ,
318+ full_name = "52-Week High" ,
310319 width = 10 ,
311320 key = "_52w_high" ,
312321 cell_factory = lambda q : FloatCell (
@@ -320,6 +329,7 @@ def _get_style_for_value(value: float) -> str:
320329 "volume" : (
321330 quote_column (
322331 "Volume" ,
332+ full_name = "Market Volume" ,
323333 width = 10 ,
324334 key = "volume" ,
325335 cell_factory = lambda q : CompactNumberCell (
@@ -332,6 +342,7 @@ def _get_style_for_value(value: float) -> str:
332342 "avg_volume" : (
333343 quote_column (
334344 "Avg Vol" ,
345+ full_name = "Average Daily Volume (3 Month)" ,
335346 width = 10 ,
336347 key = "avg_volume" ,
337348 cell_factory = lambda q : CompactNumberCell (
@@ -344,6 +355,7 @@ def _get_style_for_value(value: float) -> str:
344355 "pe" : (
345356 quote_column (
346357 "P/E" ,
358+ full_name = "Trailing Price-to-Earnings Ratio" ,
347359 width = 6 ,
348360 key = "pe" ,
349361 cell_factory = lambda q : FloatCell (
@@ -356,6 +368,7 @@ def _get_style_for_value(value: float) -> str:
356368 "dividend" : (
357369 quote_column (
358370 "Div" ,
371+ full_name = "Dividend Yield" ,
359372 width = 6 ,
360373 key = "dividend" ,
361374 cell_factory = lambda q : FloatCell (
@@ -368,6 +381,7 @@ def _get_style_for_value(value: float) -> str:
368381 "market_cap" : (
369382 quote_column (
370383 "Mkt Cap" ,
384+ full_name = "Market Capitalization" ,
371385 width = 10 ,
372386 key = "market_cap" ,
373387 cell_factory = lambda q : CompactNumberCell (
0 commit comments