Q4Widgets API Documentation

q4.financialStatements

Institutional Data from Zacks. For the Institutions widget, the option "showNegatives" will toggle how negative numbers appear. When true, negative numbers will be rendered with a minus symbol. When false, negative numbers will be rendered inside parenthesis.
Script link
q4.financial-statements.1.0.3.min.js
Source file
q4.financial-statements.js, line 2
Requires

Examples

<div class="institution"></div>
<script type="text/javascript">
$('.institution').institution({
    symbol: 'FCE',
    key: 'q4:761b75ad18e68a1aaca4aaaff85d7887',
    showNegatives: false
});
</script>

<div class="ratios"></div>
<script type="text/javascript">
$('.ratios').ratios({
    symbol: 'FCE',
    key: 'q4:761b75ad18e68a1aaca4aaaff85d7887',
    industryNameIndex: 0, // In the zacks feed, this is the index number of the object inside the "IND" array that contains this name. Usually 0 or 1.
    sectorNameIndex: 0 // In the zacks feed, this is the index number of the object inside the "SEC" array that contains this name. Usually 0 or 1.
});
</script>

<div class="income-statements"></div>
<script type="text/javascript">
$('.income-statements').incomeStatements({
    symbol: 'FCE',
    key: 'q4:761b75ad18e68a1aaca4aaaff85d7887'
});
</script>

<div class="cashflow"></div>
<script type="text/javascript">
$('.cashflow').cashflow({
    symbol: 'FCE',
    key: 'q4:761b75ad18e68a1aaca4aaaff85d7887'
});
</script>