syminfo.shares_outstanding_total - Pine Script Variable
syminfo.shares_outstanding_total
Section titled “syminfo.shares_outstanding_total”Overview
Section titled “Overview”The total number of shares outstanding a company has available, including restricted shares held by insiders, major shareholders, and employees.
intQualifier
Section titled “Qualifier”simple
Examples
Section titled “Examples”Example 1
Section titled “Example 1”//@version=6indicator("syminfo simple")//@variable A table containing information about a company's employees, shareholders, and shares.var result_table = table.new(position = position.top_right, columns = 2, rows = 5, border_width = 1)if barstate.islastconfirmedhistory // Add header cellstable.cell(table_id = result_table, column = 0, row = 0, text = "name")table.cell(table_id = result_table, column = 1, row = 0, text = "value") // Add employee info cells. table.cell(table_id = result_table, column = 0, row = 1, text = "employees")table.cell(table_id = result_table, column = 1, row = 1, text = str.tostring(syminfo.employees)) // Add shareholder cells. table.cell(table_id = result_table, column = 0, row = 2, text = "shareholders")table.cell(table_id = result_table, column = 1, row = 2, text = str.tostring(syminfo.shareholders)) // Add float shares outstanding cells. table.cell(table_id = result_table, column = 0, row = 3, text = "shares_outstanding_float")table.cell(table_id = result_table, column = 1, row = 3, text = str.tostring(syminfo.shares_outstanding_float)) // Add total shares outstanding cells. table.cell(table_id = result_table, column = 0, row = 4, text = "shares_outstanding_total")table.cell(table_id = result_table, column = 1, row = 4, text = str.tostring(syminfo.shares_outstanding_total))