Skip to content

Instantly share code, notes, and snippets.

@pschatzmann
Created January 15, 2019 15:51
Show Gist options
  • Save pschatzmann/9396881a36a636f5cf89db7d5b6d9eb7 to your computer and use it in GitHub Desktop.
Save pschatzmann/9396881a36a636f5cf89db7d5b6d9eb7 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{"cells":[{"metadata":{},"cell_type":"markdown","source":"# Usage of Smart EDGAR as Library to Access EDGAR Filings\nThe initial concept of Smart EDGAR was to provide the tools to download the data from the EDGAR website and \n- store the information as local files\n- store the information in a SQL database\n- provide reporting functionality from this data via Webservices\n\nWe have extended the funcitonality a little bit so that the Smart EDGAR Library can be used without having any data available locally. So we provide \n- an API which retrieves the information directly from the EDGAR Website.\n- Company KPIs from the EDGAR Website or pulling the data from a REST webservice\n\n## Setup\nWe install the following libraries with the help of Maven\n- Smart Edgar\n- Jupyter JDK Extensions (to display our custom Tables)"},{"metadata":{"trusted":true},"cell_type":"code","source":"%classpath config resolver maven-public http://software.pschatzmann.ch/repository/maven-public/\n%%classpath add mvn \nch.pschatzmann:smart-edgar:LATEST\nch.pschatzmann:jupyter-jdk-extensions:LATEST","execution_count":1,"outputs":[{"output_type":"stream","text":"Added new repo: maven-public\n","name":"stdout"},{"output_type":"display_data","data":{"method":"display_data","application/vnd.jupyter.widget-view+json":{"version_minor":0,"model_id":"","version_major":2}},"metadata":{}},{"output_type":"display_data","data":{"method":"display_data","application/vnd.jupyter.widget-view+json":{"version_minor":0,"model_id":"4e669849-284b-48a8-9a18-ba68de259e2b","version_major":2}},"metadata":{}}]},{"metadata":{"trusted":true},"cell_type":"code","source":"import ch.pschatzmann.display._\nimport ch.pschatzmann.edgar.base._\nimport ch.pschatzmann.edgar.reporting.company._\nimport ch.pschatzmann.edgar.dataload.rss.RSSDataSource\nimport ch.pschatzmann.edgar.utils.Utils\nimport ch.pschatzmann.edgar.base.Fact._\nimport ch.pschatzmann.edgar.dataload.online._\n\nDisplayers.setup","execution_count":2,"outputs":[{"output_type":"execute_result","execution_count":2,"data":{"text/plain":"true"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"## Access To Filings\nWe provide an API to retrieve the Company information and the related filings."},{"metadata":{},"cell_type":"markdown","source":"We can pass a ticker symbol or a company number to the constructor of the CompanyInformation"},{"metadata":{"trusted":true},"cell_type":"code","source":"%%time\nval company = new CompanyInformation(\"AAPL\")","execution_count":3,"outputs":[{"output_type":"stream","text":"CPU times: user 0 ns, sys: 398 µs, total: 398 µs \nWall Time: 1 s\n\n","name":"stdout"},{"output_type":"execute_result","execution_count":3,"data":{"text/plain":"APPLE INC (0000320193)"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"Optionally we can indicate the form type in the constructor. If no form is indicated we retrieve all documents but this is taking quite some time."},{"metadata":{"trusted":true},"cell_type":"code","source":"%%time\nval company = new CompanyInformation(\"320193\",\"10-K\")","execution_count":4,"outputs":[{"output_type":"stream","text":"CPU times: user 0 ns, sys: 288 µs, total: 288 µs \nWall Time: 642 ms\n\n","name":"stdout"},{"output_type":"execute_result","execution_count":4,"data":{"text/plain":"APPLE INC (0000320193)"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"We can list all the available filings"},{"metadata":{"trusted":true},"cell_type":"code","source":"%%time\ncompany.entries","execution_count":5,"outputs":[{"output_type":"stream","text":"CPU times: user 0 ns, sys: 630 µs, total: 630 µs \nWall Time: 1 s\n\n","name":"stdout"},{"output_type":"execute_result","execution_count":5,"data":{"text/plain":"[0000320193-18-000145:10-K, 0000320193-17-000070:10-K, 0001628280-16-020309:10-K, 0001193125-15-356351:10-K, 0001193125-14-383437:10-K, 0001193125-13-416534:10-K, 0001193125-12-444068:10-K, 0001193125-11-282113:10-K, 0001193125-10-238044:10-K, 0001193125-10-012091:10-K/A, 0001193125-09-214859:10-K, 0001193125-08-224958:10-K, 0001047469-07-009340:10-K, 0001104659-06-084288:10-K, 0001104659-05-058421:10-K, 0001047469-04-035975:10-K, 0001047469-03-041604:10-K, 0001047469-02-007674:10-K, 0000912057-01-544436:10-K405, 0000912057-00-053623:10-K, 0000912057-99-010244:10-K, 0001047469-98-044981:10-K405, 0001047469-98-001822:10-K/A, 0001047469-97-006960:10-K, 0000320193-96-000023:10-K, 0000320193-95-000016:10-K, 0000320193-94-000016:10-K]"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"We can also limit the enties with a Regex expression"},{"metadata":{"trusted":true},"cell_type":"code","source":"%%time\nvar entries = company.entries(\"10-K\")","execution_count":6,"outputs":[{"output_type":"stream","text":"CPU times: user 0 ns, sys: 284 µs, total: 284 µs \nWall Time: 440 ms\n\n","name":"stdout"},{"output_type":"execute_result","execution_count":6,"data":{"text/plain":"[0000320193-18-000145:10-K, 0000320193-17-000070:10-K, 0001628280-16-020309:10-K, 0001193125-15-356351:10-K, 0001193125-14-383437:10-K, 0001193125-13-416534:10-K, 0001193125-12-444068:10-K, 0001193125-11-282113:10-K, 0001193125-10-238044:10-K, 0001193125-09-214859:10-K, 0001193125-08-224958:10-K, 0001047469-07-009340:10-K, 0001104659-06-084288:10-K, 0001104659-05-058421:10-K, 0001047469-04-035975:10-K, 0001047469-03-041604:10-K, 0001047469-02-007674:10-K, 0000912057-00-053623:10-K, 0000912057-99-010244:10-K, 0001047469-97-006960:10-K, 0000320193-96-000023:10-K, 0000320193-95-000016:10-K, 0000320193-94-000016:10-K]"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"We can get the XBRL object which contains the informaiton of all documents"},{"metadata":{"trusted":true},"cell_type":"code","source":"%%time\nvar xbrl = company.getXBRL\nxbrl.isEmpty","execution_count":7,"outputs":[{"output_type":"stream","text":"CPU times: user 0 ns, sys: 289 µs, total: 289 µs \nWall Time: 21 s\n\n","name":"stdout"},{"output_type":"execute_result","execution_count":7,"data":{"text/plain":"false"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"On the level of the filing entry we provide the following:"},{"metadata":{"trusted":true},"cell_type":"code","source":"var entry = entries.get(0)\n","execution_count":8,"outputs":[{"output_type":"execute_result","execution_count":8,"data":{"text/plain":"0000320193-18-000145:10-K"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"We can e.g. display the Form or title ..."},{"metadata":{"trusted":true},"cell_type":"code","source":"entry.getForm","execution_count":9,"outputs":[{"output_type":"execute_result","execution_count":9,"data":{"text/plain":"10-K"},"metadata":{}}]},{"metadata":{"trusted":true},"cell_type":"code","source":"entry.getTitle","execution_count":10,"outputs":[{"output_type":"execute_result","execution_count":10,"data":{"text/plain":"10-K - Annual report [Section 13 and 15(d), not S-K Item 405]"},"metadata":{}}]},{"metadata":{"trusted":true},"cell_type":"code","source":"entry.getLink","execution_count":11,"outputs":[{"output_type":"execute_result","execution_count":11,"data":{"text/plain":"http://www.sec.gov/Archives/edgar/data/320193/000032019318000145/0000320193-18-000145-index.htm"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"Each link is pointing to a list of detailed documents:"},{"metadata":{"trusted":true},"cell_type":"code","source":"import scala.collection.JavaConverters._\n\nentry.getLinksToDocuments.iterator.asScala.toSeq.foreach(r => println(r))","execution_count":12,"outputs":[{"output_type":"stream","text":"/Archives/edgar/data/320193/000032019318000145/0000320193-18-000145-index-headers.html\n/Archives/edgar/data/320193/000032019318000145/0000320193-18-000145-index.html\n/Archives/edgar/data/320193/000032019318000145/0000320193-18-000145.txt\n/Archives/edgar/data/320193/000032019318000145/0000320193-18-000145-xbrl.zip\n/Archives/edgar/data/320193/000032019318000145/a10-k20189292018.htm\n/Archives/edgar/data/320193/000032019318000145/a10-k9_chartx38133a09.jpg\n/Archives/edgar/data/320193/000032019318000145/a10-kexhibit10172018.htm\n/Archives/edgar/data/320193/000032019318000145/a10-kexhibit10182018.htm\n/Archives/edgar/data/320193/000032019318000145/a10-kexhibit2112018.htm\n/Archives/edgar/data/320193/000032019318000145/a10-kexhibit2312018.htm\n/Archives/edgar/data/320193/000032019318000145/a10-kexhibit3112018.htm\n/Archives/edgar/data/320193/000032019318000145/a10-kexhibit3122018.htm\n/Archives/edgar/data/320193/000032019318000145/a10-kexhibit3212018.htm\n/Archives/edgar/data/320193/000032019318000145/aapl-20180929.xml\n/Archives/edgar/data/320193/000032019318000145/aapl-20180929.xsd\n/Archives/edgar/data/320193/000032019318000145/aapl-20180929_cal.xml\n/Archives/edgar/data/320193/000032019318000145/aapl-20180929_def.xml\n/Archives/edgar/data/320193/000032019318000145/aapl-20180929_lab.xml\n/Archives/edgar/data/320193/000032019318000145/aapl-20180929_pre.xml\n/Archives/edgar/data/320193/000032019318000145/FilingSummary.xml\n/Archives/edgar/data/320193/000032019318000145/Financial_Report.xlsx\n/Archives/edgar/data/320193/000032019318000145/g66145g66i24.jpg\n/Archives/edgar/data/320193/000032019318000145/R1.htm\n/Archives/edgar/data/320193/000032019318000145/R10.htm\n/Archives/edgar/data/320193/000032019318000145/R11.htm\n/Archives/edgar/data/320193/000032019318000145/R12.htm\n/Archives/edgar/data/320193/000032019318000145/R13.htm\n/Archives/edgar/data/320193/000032019318000145/R14.htm\n/Archives/edgar/data/320193/000032019318000145/R15.htm\n/Archives/edgar/data/320193/000032019318000145/R16.htm\n/Archives/edgar/data/320193/000032019318000145/R17.htm\n/Archives/edgar/data/320193/000032019318000145/R18.htm\n/Archives/edgar/data/320193/000032019318000145/R19.htm\n/Archives/edgar/data/320193/000032019318000145/R2.htm\n/Archives/edgar/data/320193/000032019318000145/R20.htm\n/Archives/edgar/data/320193/000032019318000145/R21.htm\n/Archives/edgar/data/320193/000032019318000145/R22.htm\n/Archives/edgar/data/320193/000032019318000145/R23.htm\n/Archives/edgar/data/320193/000032019318000145/R24.htm\n/Archives/edgar/data/320193/000032019318000145/R25.htm\n/Archives/edgar/data/320193/000032019318000145/R26.htm\n/Archives/edgar/data/320193/000032019318000145/R27.htm\n/Archives/edgar/data/320193/000032019318000145/R28.htm\n/Archives/edgar/data/320193/000032019318000145/R29.htm\n/Archives/edgar/data/320193/000032019318000145/R3.htm\n/Archives/edgar/data/320193/000032019318000145/R30.htm\n/Archives/edgar/data/320193/000032019318000145/R31.htm\n/Archives/edgar/data/320193/000032019318000145/R32.htm\n/Archives/edgar/data/320193/000032019318000145/R33.htm\n/Archives/edgar/data/320193/000032019318000145/R34.htm\n/Archives/edgar/data/320193/000032019318000145/R35.htm\n/Archives/edgar/data/320193/000032019318000145/R36.htm\n/Archives/edgar/data/320193/000032019318000145/R37.htm\n/Archives/edgar/data/320193/000032019318000145/R38.htm\n/Archives/edgar/data/320193/000032019318000145/R39.htm\n/Archives/edgar/data/320193/000032019318000145/R4.htm\n/Archives/edgar/data/320193/000032019318000145/R40.htm\n/Archives/edgar/data/320193/000032019318000145/R41.htm\n/Archives/edgar/data/320193/000032019318000145/R42.htm\n/Archives/edgar/data/320193/000032019318000145/R43.htm\n/Archives/edgar/data/320193/000032019318000145/R44.htm\n/Archives/edgar/data/320193/000032019318000145/R45.htm\n/Archives/edgar/data/320193/000032019318000145/R46.htm\n/Archives/edgar/data/320193/000032019318000145/R47.htm\n/Archives/edgar/data/320193/000032019318000145/R48.htm\n/Archives/edgar/data/320193/000032019318000145/R49.htm\n/Archives/edgar/data/320193/000032019318000145/R5.htm\n/Archives/edgar/data/320193/000032019318000145/R50.htm\n/Archives/edgar/data/320193/000032019318000145/R51.htm\n/Archives/edgar/data/320193/000032019318000145/R52.htm\n/Archives/edgar/data/320193/000032019318000145/R53.htm\n/Archives/edgar/data/320193/000032019318000145/R54.htm\n/Archives/edgar/data/320193/000032019318000145/R55.htm\n/Archives/edgar/data/320193/000032019318000145/R56.htm\n/Archives/edgar/data/320193/000032019318000145/R57.htm\n/Archives/edgar/data/320193/000032019318000145/R58.htm\n/Archives/edgar/data/320193/000032019318000145/R59.htm\n/Archives/edgar/data/320193/000032019318000145/R6.htm\n/Archives/edgar/data/320193/000032019318000145/R60.htm\n/Archives/edgar/data/320193/000032019318000145/R61.htm\n/Archives/edgar/data/320193/000032019318000145/R62.htm\n/Archives/edgar/data/320193/000032019318000145/R63.htm\n/Archives/edgar/data/320193/000032019318000145/R64.htm\n/Archives/edgar/data/320193/000032019318000145/R65.htm\n/Archives/edgar/data/320193/000032019318000145/R66.htm\n/Archives/edgar/data/320193/000032019318000145/R67.htm\n/Archives/edgar/data/320193/000032019318000145/R7.htm\n/Archives/edgar/data/320193/000032019318000145/R8.htm\n/Archives/edgar/data/320193/000032019318000145/R9.htm\n/Archives/edgar/data/320193/000032019318000145/report.css\n/Archives/edgar/data/320193/000032019318000145/Show.js\n","name":"stdout"},{"output_type":"execute_result","execution_count":12,"data":{"text/plain":"null"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"We can get the XBRL document link"},{"metadata":{"trusted":true},"cell_type":"code","source":"entry.getLinkToXbrl","execution_count":13,"outputs":[{"output_type":"execute_result","execution_count":13,"data":{"text/plain":"Optional[/Archives/edgar/data/320193/000032019318000145/0000320193-18-000145-xbrl.zip]"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"The base URL for the documents can be determied with"},{"metadata":{"trusted":true},"cell_type":"code","source":"entry.getLinkBase","execution_count":14,"outputs":[{"output_type":"execute_result","execution_count":14,"data":{"text/plain":"https://www.sec.gov"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"Or we can get the XBRL object"},{"metadata":{"trusted":true},"cell_type":"code","source":"%%time\nval xbrl = entry.getXBRL.get\nxbrl.isEmpty","execution_count":15,"outputs":[{"output_type":"stream","text":"CPU times: user 0 ns, sys: 203 µs, total: 203 µs \nWall Time: 573 ms\n\n","name":"stdout"},{"output_type":"execute_result","execution_count":15,"data":{"text/plain":"false"},"metadata":{}}]},{"metadata":{"trusted":true},"cell_type":"code","source":"val values = xbrl.findValues(\"NetIncomeLoss\")\nvalues.size","execution_count":16,"outputs":[{"output_type":"execute_result","execution_count":16,"data":{"text/plain":"20"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"Finally we display the xbrl values in a table"},{"metadata":{"trusted":true},"cell_type":"code","source":"import scala.collection.JavaConverters._\n\nvalues.asScala.map(factValue => factValue.getAttributes).asJava","execution_count":17,"outputs":[{"output_type":"display_data","data":{"method":"display_data","application/vnd.jupyter.widget-view+json":{"version_minor":0,"model_id":"0d4b395a-c123-42a6-ac31-1614785df3bd","version_major":2}},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"We double check the existence of xbrl documents"},{"metadata":{"trusted":true},"cell_type":"code","source":"import scala.collection.JavaConverters._\n\nnew CompanyInformation(\"320193\",\"10-K\").entries().asScala\n .map(e => (e.getForm, e.getAccessionNumber, e.getLinkToXbrl) )\n .foreach(t => println(t) )","execution_count":18,"outputs":[{"output_type":"stream","text":"(10-K,0000320193-18-000145,Optional[/Archives/edgar/data/320193/000032019318000145/0000320193-18-000145-xbrl.zip])\n(10-K,0000320193-17-000070,Optional[/Archives/edgar/data/320193/000032019317000070/0000320193-17-000070-xbrl.zip])\n(10-K,0001628280-16-020309,Optional[/Archives/edgar/data/320193/000162828016020309/0001628280-16-020309-xbrl.zip])\n(10-K,0001193125-15-356351,Optional[/Archives/edgar/data/320193/000119312515356351/0001193125-15-356351-xbrl.zip])\n(10-K,0001193125-14-383437,Optional[/Archives/edgar/data/320193/000119312514383437/0001193125-14-383437-xbrl.zip])\n(10-K,0001193125-13-416534,Optional[/Archives/edgar/data/320193/000119312513416534/0001193125-13-416534-xbrl.zip])\n(10-K,0001193125-12-444068,Optional[/Archives/edgar/data/320193/000119312512444068/0001193125-12-444068-xbrl.zip])\n(10-K,0001193125-11-282113,Optional[/Archives/edgar/data/320193/000119312511282113/0001193125-11-282113-xbrl.zip])\n(10-K,0001193125-10-238044,Optional[/Archives/edgar/data/320193/000119312510238044/0001193125-10-238044-xbrl.zip])\n(10-K/A,0001193125-10-012091,Optional.empty)\n(10-K,0001193125-09-214859,Optional.empty)\n(10-K,0001193125-08-224958,Optional.empty)\n(10-K,0001047469-07-009340,Optional.empty)\n(10-K,0001104659-06-084288,Optional.empty)\n(10-K,0001104659-05-058421,Optional.empty)\n(10-K,0001047469-04-035975,Optional.empty)\n(10-K,0001047469-03-041604,Optional.empty)\n(10-K,0001047469-02-007674,Optional.empty)\n(10-K405,0000912057-01-544436,Optional.empty)\n(10-K,0000912057-00-053623,Optional.empty)\n(10-K,0000912057-99-010244,Optional.empty)\n(10-K405,0001047469-98-044981,Optional.empty)\n(10-K/A,0001047469-98-001822,Optional.empty)\n(10-K,0001047469-97-006960,Optional.empty)\n(10-K,0000320193-96-000023,Optional.empty)\n(10-K,0000320193-95-000016,Optional.empty)\n(10-K,0000320193-94-000016,Optional.empty)\n","name":"stdout"},{"output_type":"execute_result","execution_count":18,"data":{"text/plain":"null"},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"We can retrieve the values from the XBRL filings"},{"metadata":{"trusted":true},"cell_type":"code","source":"new CompanyInformation(\"320193\",\"10-K\")\n .getXBRL.findValues(\"NetIncomeLoss\").asScala\n .map(factValue => factValue.getAttributes)\n .asJava","execution_count":19,"outputs":[{"output_type":"display_data","data":{"method":"display_data","application/vnd.jupyter.widget-view+json":{"version_minor":0,"model_id":"edf45aa5-7599-407e-9123-c9adf219f72b","version_major":2}},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"## Company KPIs Direcly from EDGAR\nThe following example is providing KPIs directly from EDGAR "},{"metadata":{"trusted":true},"cell_type":"code","source":"%%time\nval values = new CompanyEdgarValuesEdgar(new CompanyInformation(\"320193\"))\n .setFilter(new FilterYearly())\n .setParameterNames(\"NetIncomeLoss\",\"OperatingIncomeLoss\",\"ResearchAndDevelopmentExpense\",\n \"CashAndCashEquivalentsAtCarryingValue\",\"AvailableForSaleSecuritiesCurrent\",\"AccountsReceivableNetCurrent\",\n \"Revenues\",\"SalesRevenueNet\",\"InventoryNet\",\"AssetsCurrent\",\"LiabilitiesCurrent\",\"Assets\",\"EarningsPerShareBasic\",\n \"StockholdersEquity\")\n .addFormula(\"Revenue\",\"Edgar.coalesce('Revenues', 'SalesRevenueNet')\")\n .addFormula(\"QuickRatio\",\"(CashAndCashEquivalentsAtCarryingValue + AccountsReceivableNetCurrent + AvailableForSaleSecuritiesCurrent) / LiabilitiesCurrent\")\n .addFormula(\"CurrentRatio\",\"AssetsCurrent / LiabilitiesCurrent\")\n .addFormula(\"InventoryTurnover\",\"Revenue / InventoryNet\")\n .addFormula(\"NetProfitMargin\",\"NetIncomeLoss / Revenue\")\n .addFormula(\"SalesResearchRatio%\",\"ResearchAndDevelopmentExpense / Revenue *100\")\n .addFormula(\"NetIncomeResearchRatio%\",\"ResearchAndDevelopmentExpense / NetIncomeLoss * 100\")\n .addFormula(\"NetIncomeChange%\", \"NetIncomeLoss - Edgar.lag('NetIncomeLoss', -1) / Edgar.lag('NetIncomeLoss', -1) * 100 \") \n .addFormula(\"RevenueChange%\", \"Edgar.percentChange('Revenue')\" ) \n .addFormula(\"ResearchAndDevelopmentChange%\",\"Edgar.percentChange('ResearchAndDevelopmentExpense')\" )\n .removeParameterNames(\"Revenues\",\"SalesRevenueNet\")\n\nval table = values.getTable","execution_count":20,"outputs":[{"output_type":"stream","text":"CPU times: user 0 ns, sys: 250 µs, total: 250 µs \nWall Time: 5 s\n\n","name":"stdout"},{"output_type":"display_data","data":{"method":"display_data","application/vnd.jupyter.widget-view+json":{"version_minor":0,"model_id":"be8dac92-e009-4466-a36f-6ddf4f6e45c3","version_major":2}},"metadata":{}}]},{"metadata":{},"cell_type":"markdown","source":"## Company KPIs Direcly via REST\nThe following example is providing KPI directly via [REST](https://pschatzmann.ch/edgar/index.html#/DBService/post_db_companyValues)"},{"metadata":{"trusted":true},"cell_type":"code","source":"%%time\nval values = new CompanyEdgarValuesRest(new CompanyInformation(\"320193\"))\n .setFilter(new FilterYearly())\n .setParameterNames(\"NetIncomeLoss\",\"OperatingIncomeLoss\",\"ResearchAndDevelopmentExpense\",\n \"CashAndCashEquivalentsAtCarryingValue\",\"AvailableForSaleSecuritiesCurrent\",\"AccountsReceivableNetCurrent\",\n \"Revenues\",\"SalesRevenueNet\",\"InventoryNet\",\"AssetsCurrent\",\"LiabilitiesCurrent\",\"Assets\",\"EarningsPerShareBasic\",\n \"StockholdersEquity\")\n .addFormula(\"Revenue\",\"Edgar.coalesce('Revenues', 'SalesRevenueNet')\")\n .addFormula(\"QuickRatio\",\"(CashAndCashEquivalentsAtCarryingValue + AccountsReceivableNetCurrent + AvailableForSaleSecuritiesCurrent) / LiabilitiesCurrent\")\n .addFormula(\"CurrentRatio\",\"AssetsCurrent / LiabilitiesCurrent\")\n .addFormula(\"InventoryTurnover\",\"Revenue / InventoryNet\")\n .addFormula(\"NetProfitMargin\",\"NetIncomeLoss / Revenue\")\n .addFormula(\"SalesResearchRatio%\",\"ResearchAndDevelopmentExpense / Revenue *100\")\n .addFormula(\"NetIncomeResearchRatio%\",\"ResearchAndDevelopmentExpense / NetIncomeLoss * 100\")\n .addFormula(\"NetIncomeChange%\", \"NetIncomeLoss - Edgar.lag('NetIncomeLoss', -1) / Edgar.lag('NetIncomeLoss', -1) * 100 \") \n .addFormula(\"RevenueChange%\", \"Edgar.percentChange('Revenue')\" ) \n .addFormula(\"ResearchAndDevelopmentChange%\",\"Edgar.percentChange('ResearchAndDevelopmentExpense')\" )\n .removeParameterNames(\"Revenues\",\"SalesRevenueNet\")\n\nval table = values.getTable","execution_count":21,"outputs":[{"output_type":"stream","text":"CPU times: user 0 ns, sys: 215 µs, total: 215 µs \nWall Time: 2 s\n\n","name":"stdout"},{"output_type":"display_data","data":{"method":"display_data","application/vnd.jupyter.widget-view+json":{"version_minor":0,"model_id":"e3dc408b-2514-4745-8b55-aabe59b1f496","version_major":2}},"metadata":{}}]},{"metadata":{"trusted":true},"cell_type":"code","source":"","execution_count":null,"outputs":[]},{"metadata":{"trusted":true},"cell_type":"code","source":"","execution_count":null,"outputs":[]}],"metadata":{"kernelspec":{"name":"scala","display_name":"Scala","language":"scala"},"language_info":{"nbconverter_exporter":"","codemirror_mode":"text/x-scala","name":"Scala","mimetype":"","file_extension":".scala","version":"2.11.12"},"toc":{"nav_menu":{},"number_sections":false,"sideBar":false,"skip_h1_title":false,"base_numbering":1,"title_cell":"Table of Contents","title_sidebar":"Contents","toc_cell":false,"toc_position":{},"toc_section_display":false,"toc_window_display":false},"widgets":{"application/vnd.jupyter.widget-state+json":{"version_major":2,"version_minor":0,"state":{"d1d8b2c2-f0d5-497d-83b6-c937dfb05163":{"model_name":"LayoutModel","model_module":"@jupyter-widgets/base","model_module_version":"*","state":{"overflow_y":"","max_height":"","justify_content":"","overflow_x":"","max_width":"","_model_module_version":"*","align_self":"","overflow":"","msg_throttle":3,"top":"","flex":"","height":"","min_width":"","align_content":"","border":"","padding":"","margin":"","bottom":"","right":"","min_height":"","_view_module_version":"*","left":""}},"65c152cc-8a6d-464c-90e0-768c33d7a47c":{"model_name":"LayoutModel","model_module":"@jupyter-widgets/base","model_module_version":"*","state":{"overflow_y":"","max_height":"","justify_content":"","overflow_x":"","max_width":"","_model_module_version":"*","align_self":"","overflow":"","msg_throttle":3,"top":"","flex":"","height":"","min_width":"","align_content":"","border":"","padding":"","margin":"","bottom":"","right":"","min_height":"","_view_module_version":"*","left":""}},"4e669849-284b-48a8-9a18-ba68de259e2b":{"model_name":"FoldoutModel","model_module":"beakerx","model_module_version":"*","state":{"font_weight":"","visible":true,"color":null,"headerLabel":"Added jars: ","font_size":"","description":"","font_style":"","layout":"IPY_MODEL_65c152cc-8a6d-464c-90e0-768c33d7a47c","background_color":null,"msg_throttle":3,"children":["IPY_MODEL_b55d32b3-6244-4cd7-99f7-fa9c080032de"],"disabled":false,"font_family":"","hidePreview":false}},"d84a6480-c43b-4b33-b9e4-73cf9262c34c":{"model_name":"LayoutModel","model_module":"@jupyter-widgets/base","model_module_version":"*","state":{"overflow_y":"","max_height":"","justify_content":"","overflow_x":"","max_width":"","_model_module_version":"*","align_self":"","overflow":"","msg_throttle":3,"top":"","flex":"","height":"","min_width":"","align_content":"","border":"","padding":"","margin":"","bottom":"","right":"","min_height":"","_view_module_version":"*","left":""}},"b55d32b3-6244-4cd7-99f7-fa9c080032de":{"model_name":"BxHTMLModel","model_module":"beakerx","model_module_version":"*","state":{"font_weight":"","visible":true,"color":null,"font_size":"","font_style":"","layout":"IPY_MODEL_d84a6480-c43b-4b33-b9e4-73cf9262c34c","background_color":null,"msg_throttle":3,"font_family":"","placeholder":"","value":"smart-edgar-0.0.1-SNAPSHOT.jar, common-0.0.1-SNAPSHOT.jar, rome-1.7.0.jar, rome-utils-1.7.0.jar, jdom2-2.0.6.jar, slf4j-api-1.7.5.jar, slf4j-log4j12-1.7.5.jar, log4j-1.2.17.jar, postgresql-9.4.1209.jar, jersey-container-servlet-2.22.2.jar, jersey-container-servlet-core-2.22.2.jar, jersey-common-2.22.2.jar, javax.annotation-api-1.2.jar, jersey-guava-2.22.2.jar, jersey-server-2.22.2.jar, validation-api-1.1.0.Final.jar, javax.ws.rs-api-2.0.1.jar, jersey-media-json-jackson-2.22.2.jar, jersey-entity-filtering-2.22.2.jar, jackson-jaxrs-base-2.5.4.jar, jackson-jaxrs-json-provider-2.5.4.jar, jackson-module-jaxb-annotations-2.5.4.jar, jersey-media-moxy-2.22.2.jar, org.eclipse.persistence.moxy-2.6.0.jar, org.eclipse.persistence.core-2.6.0.jar, org.eclipse.persistence.asm-2.6.0.jar, jersey-media-json-processing-2.22.2.jar, javax.json-1.0.4.jar, jsonp-jaxrs-1.0.jar, jersey-media-multipart-2.22.2.jar, mimepull-1.9.6.jar, jersey-media-sse-2.22.2.jar, javax.inject-2.4.0-b34.jar, jersey-container-jdk-http-2.22.2.jar, jersey-client-2.22.2.jar, hk2-api-2.4.0-b34.jar, hk2-utils-2.4.0-b34.jar, aopalliance-repackaged-2.4.0-b34.jar, hk2-locator-2.4.0-b34.jar, javassist-3.18.1-GA.jar, jersey-media-jaxb-2.22.2.jar, osgi-resource-locator-1.0.1.jar, jackson-databind-2.6.5.jar, jackson-annotations-2.6.5.jar, jackson-core-2.6.5.jar, commons-jcs-core-2.1.jar, commons-logging-1.2.jar, commons-math3-3.6.1.jar, timeseries-forecast-1.1.1.jar, junit-4.10.jar, hamcrest-core-1.1.jar, jsoup-1.11.2.jar, jupyter-jdk-extensions-0.0.1-SNAPSHOT.jar, httpmime-4.5.6.jar, httpclient-4.5.6.jar, httpcore-4.4.10.jar, commons-codec-1.10.jar, jfreechart-1.5.0.jar"}},"0d4b395a-c123-42a6-ac31-1614785df3bd":{"model_name":"TableDisplayModel","model_module":"beakerx","model_module_version":"*","state":{"model":{"hasDoubleClickAction":false,"doubleClickTag":null,"contextMenuItems":[],"contextMenuTags":{},"type":"TableDisplay","columnNames":["date","identifier","incorporation","unitRef","prefix","companyName","parameterName","label","numberOfMonths","uri","dateLabel","file","form","contextRef","sicCode","decimals","segment","location","id","tradingSymbol","value","segmentDimension","sicDescription"],"types":["string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string"],"subtype":"ListOfMaps","stringFormatForTimes":null,"stringFormatForType":{},"stringFormatForColumn":{},"rendererForType":{},"rendererForColumn":{},"alignmentForType":{},"alignmentForColumn":{},"columnsFrozen":{},"columnsFrozenRight":{},"columnsVisible":{},"columnOrder":[],"cellHighlighters":[],"tooltips":[],"dataFontSize":null,"headerFontSize":null,"fontColor":[],"headersVertical":false,"hasIndex":null,"timeZone":null,"values":[["2016-09-24","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2015-09-27 to 2016-09-24","0000320193-18-000145-xbrl.zip","10-K","FD2016Q4YTD","3571","-6","","CA","Fact-7A297DE388D6A966A23D8BD48E69A260","AAPL","45687000000","","ELECTRONIC COMPUTERS"],["2016-09-24","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2015-09-27 to 2016-09-24","0000320193-18-000145-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","AOCI Attributable to Parent","CA","Fact-1D3E0E41000BFF5CF91D8BD48E426FBE","AAPL","0","Equity Components","ELECTRONIC COMPUTERS"],["2016-09-24","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2015-09-27 to 2016-09-24","0000320193-18-000145-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","Common Stock Including Additional Paid in Capital","CA","Fact-CD252896D664F1C044A38BD48E4C8B77","AAPL","0","Equity Components","ELECTRONIC COMPUTERS"],["2016-09-24","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2015-09-27 to 2016-09-24","0000320193-18-000145-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","Retained Earnings","CA","Fact-8CFC3A7153DB5F57C8268BD48E088425","AAPL","45687000000","Equity Components","ELECTRONIC COMPUTERS"],["2016-12-31","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","3","http://fasb.org/us-gaap/2018-01-31","2016-09-25 to 2016-12-31","0000320193-18-000145-xbrl.zip","10-K","FD2017Q1QTD","3571","-6","","CA","Fact-EB39D484D8FA8E1C7BB98BD48E622BEF","AAPL","17891000000","","ELECTRONIC COMPUTERS"],["2017-04-01","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","3","http://fasb.org/us-gaap/2018-01-31","2017-01-01 to 2017-04-01","0000320193-18-000145-xbrl.zip","10-K","FD2017Q2QTD","3571","-6","","CA","Fact-33D7D3ED1CACC03B65858BD48E4B3244","AAPL","11029000000","","ELECTRONIC COMPUTERS"],["2017-07-01","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","3","http://fasb.org/us-gaap/2018-01-31","2017-04-02 to 2017-07-01","0000320193-18-000145-xbrl.zip","10-K","FD2017Q3QTD","3571","-6","","CA","Fact-7D83CBDF1047E6538AAD8BD48E49FD33","AAPL","8717000000","","ELECTRONIC COMPUTERS"],["2017-09-30","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","3","http://fasb.org/us-gaap/2018-01-31","2017-07-02 to 2017-09-30","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4QTD","3571","-6","","CA","Fact-56A13E8E61F559F0B3C28BD48E6B5071","AAPL","10714000000","","ELECTRONIC COMPUTERS"],["2017-09-30","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2016-09-25 to 2017-09-30","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4YTD","3571","-6","","CA","Fact-E0CD235006427E228CC18BD48E69BAC8","AAPL","48351000000","","ELECTRONIC COMPUTERS"],["2017-09-30","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2016-09-25 to 2017-09-30","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","AOCI Attributable to Parent","CA","Fact-591DF55002760CE93F888BD48E0BB859","AAPL","0","Equity Components","ELECTRONIC COMPUTERS"],["2017-09-30","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2016-09-25 to 2017-09-30","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","Common Stock Including Additional Paid in Capital","CA","Fact-7A1D07F186118881E9908BD48E338288","AAPL","0","Equity Components","ELECTRONIC COMPUTERS"],["2017-09-30","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2016-09-25 to 2017-09-30","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","Retained Earnings","CA","Fact-772D58AA2493613B7E678BD48E2554DB","AAPL","48351000000","Equity Components","ELECTRONIC COMPUTERS"],["2017-12-30","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","3","http://fasb.org/us-gaap/2018-01-31","2017-10-01 to 2017-12-30","0000320193-18-000145-xbrl.zip","10-K","FD2018Q1QTD","3571","-6","","CA","Fact-F653694F5051713CE6CC8BD48E08490D","AAPL","20065000000","","ELECTRONIC COMPUTERS"],["2018-03-31","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","3","http://fasb.org/us-gaap/2018-01-31","2017-12-31 to 2018-03-31","0000320193-18-000145-xbrl.zip","10-K","FD2018Q2QTD","3571","-6","","CA","Fact-ECDE0B585CC6E1EF63928BD48DFC49FB","AAPL","13822000000","","ELECTRONIC COMPUTERS"],["2018-06-30","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","3","http://fasb.org/us-gaap/2018-01-31","2018-04-01 to 2018-06-30","0000320193-18-000145-xbrl.zip","10-K","FD2018Q3QTD","3571","-6","","CA","Fact-08F2F902990647A966518BD48E16A258","AAPL","11519000000","","ELECTRONIC COMPUTERS"],["2018-09-29","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","3","http://fasb.org/us-gaap/2018-01-31","2018-07-01 to 2018-09-29","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4QTD","3571","-6","","CA","Fact-4468F3AFC9F16441051C8BD48E02F527","AAPL","14125000000","","ELECTRONIC COMPUTERS"],["2018-09-29","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2017-10-01 to 2018-09-29","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4YTD","3571","-6","","CA","Fact-64BEEA37352BDA61FBB78BD48E7876AE","AAPL","59531000000","","ELECTRONIC COMPUTERS"],["2018-09-29","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2017-10-01 to 2018-09-29","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","AOCI Attributable to Parent","CA","Fact-541CA4B0614C1EC5311E8BD48E2302B5","AAPL","0","Equity Components","ELECTRONIC COMPUTERS"],["2018-09-29","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2017-10-01 to 2018-09-29","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","Common Stock Including Additional Paid in Capital","CA","Fact-B52A4B675E08C2EAD90A8BD48E51AB1F","AAPL","0","Equity Components","ELECTRONIC COMPUTERS"],["2018-09-29","0000320193","CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","12","http://fasb.org/us-gaap/2018-01-31","2017-10-01 to 2018-09-29","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","Retained Earnings","CA","Fact-15A1A4A02FC334B1C6708BD48E53037B","AAPL","59531000000","Equity Components","ELECTRONIC COMPUTERS"]],"tooManyRows":false}}},"edf45aa5-7599-407e-9123-c9adf219f72b":{"model_name":"TableDisplayModel","model_module":"beakerx","model_module_version":"*","state":{"model":{"hasDoubleClickAction":false,"doubleClickTag":null,"contextMenuItems":[],"contextMenuTags":{},"type":"TableDisplay","columnNames":["incorporation","unitRef","prefix","companyName","parameterName","label","uri","file","form","contextRef","sicCode","decimals","location","tradingSymbol","value","sicDescription"],"types":["string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string"],"subtype":"ListOfMaps","stringFormatForTimes":null,"stringFormatForType":{},"stringFormatForColumn":{},"rendererForType":{},"rendererForColumn":{},"alignmentForType":{},"alignmentForColumn":{},"columnsFrozen":{},"columnsFrozenRight":{},"columnsVisible":{},"columnOrder":[],"cellHighlighters":[],"tooltips":[],"dataFontSize":null,"headerFontSize":null,"fontColor":[],"headersVertical":false,"hasIndex":null,"timeZone":null,"values":[["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20110924_0","3571","-6","CA","AAPL","25922000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip",null,"eol_PE2035----1210-K0010_STD_364_20100925_0","3571","-6","CA","AAPL","14013000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip",null,"eol_PE2035----1310-K0014_STD_364_20110924_0","3571","-6","CA","AAPL","25922000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip",null,"eol_PE2035----1410-K0012_STD_364_20130928_0","3571","-6","CA","AAPL","37037000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip",null,"eol_PE2035----1210-K0010_STD_364_20100925_0_505872x500724","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip",null,"eol_PE2035----1210-K0010_STD_364_20100925_0_505872x501348","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip",null,"eol_PE2035----1210-K0010_STD_364_20100925_0_505872x503287","3571","-6","CA","AAPL","14013000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip",null,"eol_PE2035----1010-K0012_STD_364_20080927_0","3571","-6","CA","AAPL","6119000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip",null,"eol_PE2035----1310-K0014_STD_364_20110924_0_709650x713713","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip",null,"eol_PE2035----1310-K0014_STD_364_20110924_0_709650x715280","3571","-6","CA","AAPL","25922000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip",null,"eol_PE2035----1310-K0014_STD_364_20110924_0_709650x716406","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip",null,"eol_PE2035----1410-K0012_STD_364_20130928_0_907910x900178","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip",null,"eol_PE2035----1410-K0012_STD_364_20130928_0_907910x901097","3571","-6","CA","AAPL","37037000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip",null,"eol_PE2035----1210-K0010_STD_364_20110924_0","3571","-6","CA","AAPL","25922000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip",null,"eol_PE2035----1410-K0012_STD_364_20130928_0_907910x901930","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20110924_0_452905x440920","3571","-6","CA","AAPL","25922000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20150926_0","3571","-6","CA","AAPL","53394000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20110924_0_452905x443982","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20110924_0_452905x444581","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip",null,"eol_PE2035----1010-K0012_STD_364_20080927_0_411810x400328","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip",null,"eol_PE2035----1010-K0012_STD_364_20080927_0_411810x401105","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip",null,"eol_PE2035----1010-K0012_STD_364_20080927_0_411810x410600","3571","-6","CA","AAPL","6119000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip",null,"eol_PE2035----1210-K0010_STD_364_20110924_0_505872x500724","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip",null,"eol_PE2035----1210-K0010_STD_364_20110924_0_505872x501348","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20090926_0","3571","-6","CA","AAPL","8235000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip",null,"eol_PE2035----1210-K0010_STD_364_20110924_0_505872x503287","3571","-6","CA","AAPL","25922000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_364_20130928_0","3571","-6","CA","AAPL","37037000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20150926_0_1107486x1106719","3571","-6","CA","AAPL","53394000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20150926_0_1107486x1107334","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20150926_0_1107486x1113367","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_364_20140927_0","3571","-6","CA","AAPL","39510000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net income","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_364_20100925_0","3571","-6","CA","AAPL","14013000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20090926_0_452905x440920","3571","-6","CA","AAPL","8235000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20090926_0_452905x443982","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20090926_0_452905x444581","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_364_20130928_0_709650x713713","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_364_20130928_0_709650x715280","3571","-6","CA","AAPL","37037000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_364_20130928_0_709650x716406","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_371_20120929_0","3571","-6","CA","AAPL","41733000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20100925_0","3571","-6","CA","AAPL","14013000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20130928_0","3571","-6","CA","AAPL","37037000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_371_20120929_0","3571","-6","CA","AAPL","41733000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_371_20120929_0_505872x500724","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_364_20140927_0_907910x900178","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_371_20120929_0_505872x501348","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_364_20100925_0_411810x400328","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_364_20140927_0_907910x901097","3571","-6","CA","AAPL","39510000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_371_20120929_0_505872x503287","3571","-6","CA","AAPL","41733000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20100925_0_452905x443982","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_364_20140927_0_907910x901930","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_364_20100925_0_452905x444581","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_91_20110924_0","3571","-6","CA","AAPL","6623000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20130928_0_1107486x1106719","3571","-6","CA","AAPL","37037000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_91_20101225_0","3571","-6","CA","AAPL","6004000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_91_20110924_0","3571","-6","CA","AAPL","6623000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_91_20110326_0","3571","-6","CA","AAPL","5987000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20130928_0_1107486x1107334","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_91_20091226_0","3571","-6","CA","AAPL","3378000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_91_20120331_0","3571","-6","CA","AAPL","11622000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_91_20100327_0","3571","-6","CA","AAPL","3074000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20130928_0_1107486x1113367","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_91_20110625_0","3571","-6","CA","AAPL","7308000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_91_20100626_0","3571","-6","CA","AAPL","3253000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_91_20120630_0","3571","-6","CA","AAPL","8824000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_91_20101225_0","3571","-6","CA","AAPL","6004000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_91_20120929_0","3571","-6","CA","AAPL","8223000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_91_20110326_0","3571","-6","CA","AAPL","5987000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2012-01-31","0001193125-12-444068-xbrl.zip","10-K","eol_PE2035----1210-K0010_STD_98_20111231_0","3571","-6","CA","AAPL","13064000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2011-01-31","0001193125-11-282113-xbrl.zip","10-K","eol_PE2035----1110-K0007_STD_92_20110625_0","3571","-6","CA","AAPL","7308000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_371_20120929_0_709650x713713","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_371_20120929_0_709650x715280","3571","-6","CA","AAPL","41733000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_371_20120929_0","3571","-6","CA","AAPL","41733000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_371_20120929_0_709650x716406","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20140927_0","3571","-6","CA","AAPL","39510000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_91_20130928_0","3571","-6","CA","AAPL","7512000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_91_20121229_0","3571","-6","CA","AAPL","13078000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_91_20120331_0","3571","-6","CA","AAPL","11622000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_91_20130330_0","3571","-6","CA","AAPL","9547000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_91_20120630_0","3571","-6","CA","AAPL","8824000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_91_20130629_0","3571","-6","CA","AAPL","6900000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_91_20120929_0","3571","-6","CA","AAPL","8223000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2013-01-31","0001193125-13-416534-xbrl.zip","10-K","eol_PE2035----1310-K0014_STD_98_20111231_0","3571","-6","CA","AAPL","13064000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_371_20120929_0_907910x900178","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_364_20090926_0_411810x400328","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_371_20120929_0_907910x901097","3571","-6","CA","AAPL","41733000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_364_20090926_0_411810x401105","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_371_20120929_0_907910x901930","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20140927_0_1107486x1106719","3571","-6","CA","AAPL","39510000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_364_20090926_0_411810x410600","3571","-6","CA","AAPL","8235000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20140927_0_1107486x1107334","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_91_20100925_0","3571","-6","CA","AAPL","4308000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_91_20081227_0","3571","-6","CA","AAPL","2255000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_91_20121229_0","3571","-6","CA","AAPL","13078000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_364_20140927_0_1107486x1113367","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_91_20090328_0","3571","-6","CA","AAPL","1620000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_91_20090627_0","3571","-6","CA","AAPL","1828000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_91_20131228_0","3571","-6","CA","AAPL","13072000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_91_20091226_0","3571","-6","CA","AAPL","3378000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_91_20100327_0","3571","-6","CA","AAPL","3074000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_91_20130330_0","3571","-6","CA","AAPL","9547000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_91_20100626_0","3571","-6","CA","AAPL","3253000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_91_20140329_0","3571","-6","CA","AAPL","10223000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://xbrl.us/us-gaap/2009-01-31","0001193125-10-238044-xbrl.zip","10-K","eol_PE2035----1010-K0012_STD_91_20090926_0","3571","-6","CA","AAPL","2532000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_91_20130629_0","3571","-6","CA","AAPL","6900000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_91_20140628_0","3571","-6","CA","AAPL","7748000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_91_20130928_0","3571","-6","CA","AAPL","7512000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2014-01-31","0001193125-14-383437-xbrl.zip","10-K","eol_PE2035----1410-K0012_STD_91_20140927_0","3571","-6","CA","AAPL","8467000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_91_20150926_0","3571","-6","CA","AAPL","11124000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_91_20131228_0","3571","-6","CA","AAPL","13072000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_91_20141227_0","3571","-6","CA","AAPL","18024000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_91_20140329_0","3571","-6","CA","AAPL","10223000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_91_20150328_0","3571","-6","CA","AAPL","13569000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_91_20140628_0","3571","-6","CA","AAPL","7748000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_91_20150627_0","3571","-6","CA","AAPL","10677000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001193125-15-356351-xbrl.zip","10-K","eol_PE2035----1510-K0012_STD_91_20140927_0","3571","-6","CA","AAPL","8467000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2014Q4YTD","3571","-6","CA","AAPL","39510000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2014Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2014Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2014Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","CA","AAPL","39510000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2015Q1QTD","3571","-6","CA","AAPL","18024000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2015Q2QTD","3571","-6","CA","AAPL","13569000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2015Q3QTD","3571","-6","CA","AAPL","10677000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2015Q4QTD","3571","-6","CA","AAPL","11124000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2015Q4YTD","3571","-6","CA","AAPL","53394000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2015Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2015Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2015Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","CA","AAPL","53394000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2016Q1QTD","3571","-6","CA","AAPL","18361000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2016Q2QTD","3571","-6","CA","AAPL","10516000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2016Q3QTD","3571","-6","CA","AAPL","7796000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2016Q4QTD","3571","-6","CA","AAPL","9014000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2016Q4YTD","3571","-6","CA","AAPL","45687000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2015-01-31","0001628280-16-020309-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","CA","AAPL","45687000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2016Q4YTD","3571","-6","CA","AAPL","45687000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net income","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net income","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","CA","AAPL","45687000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net income","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2017Q1QTD","3571","-6","CA","AAPL","17891000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net income","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2017Q2QTD","3571","-6","CA","AAPL","11029000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2017Q3QTD","3571","-6","CA","AAPL","8717000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net income","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4QTD","3571","-6","CA","AAPL","10714000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4YTD","3571","-6","CA","AAPL","48351000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2017Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","CA","AAPL","48351000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2018Q1QTD","3571","-6","CA","AAPL","20065000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net income","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2018Q2QTD","3571","-6","CA","AAPL","13822000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2018Q3QTD","3571","-6","CA","AAPL","11519000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income Loss","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4QTD","3571","-6","CA","AAPL","14125000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4YTD","3571","-6","CA","AAPL","59531000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net income","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2018-01-31","0000320193-18-000145-xbrl.zip","10-K","FD2018Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","CA","AAPL","59531000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2015Q4YTD","3571","-6","CA","AAPL","53394000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2015Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2015Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2015Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","CA","AAPL","53394000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2016Q1QTD","3571","-6","CA","AAPL","18361000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2016Q2QTD","3571","-6","CA","AAPL","10516000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2016Q3QTD","3571","-6","CA","AAPL","7796000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2016Q4QTD","3571","-6","CA","AAPL","9014000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2016Q4YTD","3571","-6","CA","AAPL","45687000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2016Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","CA","AAPL","45687000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2017Q1QTD","3571","-6","CA","AAPL","17891000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2017Q2QTD","3571","-6","CA","AAPL","11029000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2017Q3QTD","3571","-6","CA","AAPL","8717000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2017Q4QTD","3571","-6","CA","AAPL","10714000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2017Q4YTD","3571","-6","CA","AAPL","48351000000","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2017Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2017Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockIncludingAdditionalPaidInCapitalMember","3571","-6","CA","AAPL","0","ELECTRONIC COMPUTERS"],["CA","USD","us-gaap","APPLE INC","NetIncomeLoss","Net Income (Loss) Attributable to Parent","http://fasb.org/us-gaap/2017-01-31","0000320193-17-000070-xbrl.zip","10-K","FD2017Q4YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember","3571","-6","CA","AAPL","48351000000","ELECTRONIC COMPUTERS"]],"tooManyRows":false}}},"be8dac92-e009-4466-a36f-6ddf4f6e45c3":{"model_name":"TableDisplayModel","model_module":"beakerx","model_module_version":"*","state":{"model":{"hasDoubleClickAction":false,"doubleClickTag":null,"contextMenuItems":[],"contextMenuTags":{},"type":"TableDisplay","columnNames":["date","identifier","incorporation","unitRef","companyName","sicCode","location","tradingSymbol","sicDescription","AccountsReceivableNetCurrent","Assets","AssetsCurrent","AvailableForSaleSecuritiesCurrent","CashAndCashEquivalentsAtCarryingValue","EarningsPerShareBasic","InventoryNet","LiabilitiesCurrent","NetIncomeLoss","OperatingIncomeLoss","ResearchAndDevelopmentExpense","StockholdersEquity","Revenue","QuickRatio","CurrentRatio","InventoryTurnover","NetProfitMargin","SalesResearchRatio%","NetIncomeResearchRatio%","NetIncomeChange%","RevenueChange%","ResearchAndDevelopmentChange%"],"types":["string","string","string","string","string","double","string","string","string","string","string","string","string","double","string","string","string","string","string","string","double","string","string","string","string","string","string","string","string","string","string"],"subtype":"ListOfMaps","stringFormatForTimes":null,"stringFormatForType":{},"stringFormatForColumn":{},"rendererForType":{},"rendererForColumn":{},"alignmentForType":{},"alignmentForColumn":{},"columnsFrozen":{},"columnsFrozenRight":{},"columnsVisible":{},"columnOrder":[],"cellHighlighters":[],"tooltips":[],"dataFontSize":null,"headerFontSize":null,"fontColor":[],"headersVertical":false,"hasIndex":null,"timeZone":null,"values":[["2007-09-29","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS","","","","",9352000000,"","","","","","",14531000000,"","","","","","","","","",""],["2008-09-27","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS","",36171000000,"","",11875000000,6.94,"","",6119000000,8327000000,1109000000,22297000000,37491000000,"","","",0.16,2.96,18.12,"","",""],["2009-09-26","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",3361000000,47501000000,31555000000,"",5263000000,9.22,455000000,11506000000,8235000000,11740000000,1333000000,31640000000,42905000000,"",2.74,94.3,0.19,3.11,16.19,8234999900,14.44,20.2],["2010-09-25","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",5510000000,75183000000,41678000000,14359000000,11261000000,15.41,1051000000,20722000000,14013000000,18385000000,1782000000,47791000000,65225000000,1.5,2.01,62.06,0.21,2.73,12.72,14012999900,52.02,33.68],["2011-09-24","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",5369000000,116371000000,44988000000,16137000000,9815000000,28.05,776000000,27970000000,25922000000,33790000000,2429000000,76615000000,108249000000,1.12,1.61,139.5,0.24,2.24,9.37,25921999900,65.96,36.31],["2012-09-29","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",10930000000,176064000000,57653000000,18383000000,10746000000,44.64,791000000,38542000000,41733000000,55241000000,3381000000,118210000000,156508000000,1.04,1.5,197.86,0.27,2.16,8.1,41732999900,44.58,39.19],["2013-09-28","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",13102000000,207000000000,73286000000,26287000000,14259000000,40.03,1764000000,43658000000,37037000000,48999000000,4475000000,123549000000,170910000000,1.23,1.68,96.89,0.22,2.62,12.08,37036999900,9.2,32.36],["2014-09-27","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",17460000000,231839000000,68531000000,11233000000,13844000000,6.49,2111000000,63448000000,39510000000,52503000000,6041000000,111547000000,182795000000,0.67,1.08,86.59,0.22,3.3,15.29,39509999900,6.95,34.99],["2015-09-26","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",16849000000,290345000000,89378000000,20481000000,21120000000,9.28,2349000000,80610000000,53394000000,71230000000,8067000000,119355000000,233715000000,0.73,1.11,99.5,0.23,3.45,15.11,53393999900,27.86,33.54],["2016-09-24","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",15754000000,321686000000,106869000000,46671000000,20484000000,8.35,2132000000,79006000000,45687000000,60024000000,10045000000,128249000000,215639000000,1.05,1.35,101.14,0.21,4.66,21.99,45686999900,-7.73,24.52],["2017-09-30","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",17874000000,375319000000,128645000000,53892000000,20289000000,9.27,4855000000,100814000000,48351000000,61344000000,11581000000,134047000000,229234000000,0.91,1.28,47.22,0.21,5.05,23.95,48350999900,6.3,15.29],["2018-09-29","0000320193","CA","USD","APPLE INC",3571,"CA","AAPL","ELECTRONIC COMPUTERS",23186000000,365725000000,131339000000,40388000000,25913000000,12.01,3956000000,116866000000,59531000000,70898000000,14236000000,107147000000,265595000000,0.77,1.12,67.14,0.22,5.36,23.91,59530999900,15.86,22.93]],"tooManyRows":false}}},"e3dc408b-2514-4745-8b55-aabe59b1f496":{"model_name":"TableDisplayModel","model_module":"beakerx","model_module_version":"*","state":{"model":{"hasDoubleClickAction":false,"doubleClickTag":null,"contextMenuItems":[],"contextMenuTags":{},"type":"TableDisplay","columnNames":["date","companyName","tradingSymbol","identifier","incorporation","location","sicDescription","AccountsReceivableNetCurrent","Assets","AssetsCurrent","AvailableForSaleSecuritiesCurrent","CashAndCashEquivalentsAtCarryingValue","CurrentRatio","EarningsPerShareBasic","InventoryNet","InventoryTurnover","LiabilitiesCurrent","NetIncomeChange%","NetIncomeLoss","NetIncomeResearchRatio%","NetProfitMargin","OperatingIncomeLoss","QuickRatio","ResearchAndDevelopmentChange%","ResearchAndDevelopmentExpense","Revenue","RevenueChange%","SalesResearchRatio%","StockholdersEquity"],"types":["string","string","string","string","string","string","string","string","string","string","string","double","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","string","double"],"subtype":"ListOfMaps","stringFormatForTimes":null,"stringFormatForType":{},"stringFormatForColumn":{},"rendererForType":{},"rendererForColumn":{},"alignmentForType":{},"alignmentForColumn":{},"columnsFrozen":{},"columnsFrozenRight":{},"columnsVisible":{},"columnOrder":[],"cellHighlighters":[],"tooltips":[],"dataFontSize":null,"headerFontSize":null,"fontColor":[],"headersVertical":false,"hasIndex":null,"timeZone":null,"values":[["2006-09-30","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS","","","","",6392000000,"","","","","","","","","","","","","","","","",9984000000],["2007-09-29","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS","","","","",9352000000,"",4.04,"","","","",3495000000,22.37,0.14,4407000000,"","",782000000,24578000000,"",3.18,14531000000],["2008-09-27","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",2422000000,36171000000,30006000000,10236000000,11875000000,2.64,6.94,509000000,73.66,11361000000,6118999900,6119000000,18.12,0.16,8327000000,2.16,41.82,1109000000,37491000000,52.54,2.96,22297000000],["2009-09-26","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",3361000000,47501000000,31555000000,18201000000,5263000000,2.74,9.22,455000000,94.3,11506000000,8234999900,8235000000,16.19,0.19,11740000000,2.33,20.2,1333000000,42905000000,14.44,3.11,31640000000],["2010-09-25","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",5510000000,75183000000,41678000000,14359000000,11261000000,2.01,15.41,1051000000,62.06,20722000000,14012999900,14013000000,12.72,0.21,18385000000,1.5,33.68,1782000000,65225000000,52.02,2.73,47791000000],["2011-09-24","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",5369000000,116371000000,44988000000,16137000000,9815000000,1.61,28.05,776000000,139.5,27970000000,25921999900,25922000000,9.37,0.24,33790000000,1.12,36.31,2429000000,108249000000,65.96,2.24,76615000000],["2012-09-29","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",10930000000,176064000000,57653000000,18383000000,10746000000,1.5,44.64,791000000,197.86,38542000000,41732999900,41733000000,8.1,0.27,55241000000,1.04,39.19,3381000000,156508000000,44.58,2.16,118210000000],["2013-09-28","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",13102000000,207000000000,73286000000,26287000000,14259000000,1.68,40.03,1764000000,96.89,43658000000,37036999900,37037000000,12.08,0.22,48999000000,1.23,32.36,4475000000,170910000000,9.2,2.62,123549000000],["2014-09-27","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",17460000000,231839000000,68531000000,11233000000,13844000000,1.08,6.49,2111000000,86.59,63448000000,39509999900,39510000000,15.29,0.22,52503000000,0.67,34.99,6041000000,182795000000,6.95,3.3,111547000000],["2015-09-26","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",16849000000,290479000000,89378000000,20481000000,21120000000,1.11,9.28,2349000000,99.5,80610000000,53393999900,53394000000,15.11,0.23,71230000000,0.73,33.54,8067000000,233715000000,27.86,3.45,119355000000],["2016-09-24","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",15754000000,321686000000,106869000000,46671000000,20484000000,1.35,8.35,2132000000,101.14,79006000000,45686999900,45687000000,21.99,0.21,60024000000,1.05,24.52,10045000000,215639000000,-7.73,4.66,128249000000],["2017-09-30","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",17874000000,375319000000,128645000000,53892000000,20289000000,1.28,9.27,4855000000,47.22,100814000000,48350999900,48351000000,23.95,0.21,61344000000,0.91,15.29,11581000000,229234000000,6.3,5.05,134047000000],["2018-09-29","APPLE INC","AAPL","0000320193","CA","CA","ELECTRONIC COMPUTERS",23186000000,365725000000,131339000000,40388000000,25913000000,1.12,12.01,3956000000,67.14,116866000000,59530999900,59531000000,23.91,0.22,70898000000,0.77,22.93,14236000000,265595000000,15.86,5.36,107147000000]],"tooManyRows":false}}}}}}},"nbformat":4,"nbformat_minor":2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment