{"slug":"iceberg-orders-explained","qid":"print_sizes","label":"Every AAPL print on June 17, 2026, grouped by trade size","post_title":"Iceberg Orders Explained: Hidden Liquidity","post_url":"/blog/iceberg-orders-explained#q-print_sizes","columns":["print_size_bucket","prints","pct_of_prints","pct_of_shares"],"rows":[{"print_size_bucket":"under 100","prints":643334,"pct_of_prints":88.99,"pct_of_shares":22.84},{"print_size_bucket":"100 to 199","prints":58692,"pct_of_prints":8.12,"pct_of_shares":13.02},{"print_size_bucket":"200 to 499","prints":17145,"pct_of_prints":2.37,"pct_of_shares":8.77},{"print_size_bucket":"500 to 999","prints":2567,"pct_of_prints":0.36,"pct_of_shares":3.11},{"print_size_bucket":"1000 to 4999","prints":1052,"pct_of_prints":0.15,"pct_of_shares":3.5},{"print_size_bucket":"5000 and up","prints":144,"pct_of_prints":0.02,"pct_of_shares":48.77}],"shape":"ranking","sql":"WITH tape AS\n(\n    SELECT size\n    FROM global_markets.stocks_trades\n    WHERE ticker = 'AAPL'\n      AND sip_timestamp >= toDateTime('2026-06-17 04:00:00', 'UTC')\n      AND sip_timestamp <  toDateTime('2026-06-18 04:00:00', 'UTC')\n)\nSELECT\n    multiIf(size < 100,  'under 100',\n            size < 200,  '100 to 199',\n            size < 500,  '200 to 499',\n            size < 1000, '500 to 999',\n            size < 5000, '1000 to 4999',\n                         '5000 and up')                    AS print_size_bucket,\n    count()                                                AS prints,\n    round(100 * count() / sum(count()) OVER (), 2)         AS pct_of_prints,\n    round(100 * sum(size) / sum(sum(size)) OVER (), 2)     AS pct_of_shares\nFROM tape\nGROUP BY print_size_bucket\nORDER BY min(size)","computed_at":"2026-08-06T04:14:24.710455+00:00","elapsed":0.002195941}