From fd0c3f23d85c712f4c823417e366891e2f15f7d6 Mon Sep 17 00:00:00 2001 From: Steffen Kruschina Date: Fri, 25 Mar 2022 14:19:26 +0100 Subject: [PATCH 1/5] SPF-85 --- Backend/package-lock.json | 223 ++++++++++++++++++++++++++++++++++++++ Backend/package.json | 1 + Backend/server.js | 72 ++++++------ 3 files changed, 264 insertions(+), 32 deletions(-) diff --git a/Backend/package-lock.json b/Backend/package-lock.json index 80e262b1..4c97c783 100644 --- a/Backend/package-lock.json +++ b/Backend/package-lock.json @@ -13,6 +13,7 @@ "body-parser": "^1.19.2", "convert-csv-to-json": "^1.3.3", "express": "^4.17.3", + "node-schedule": "^2.1.0", "request": "^2.88.2" }, "devDependencies": { @@ -303,6 +304,18 @@ "node": ">=8" } }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", @@ -505,6 +518,18 @@ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, + "node_modules/cron-parser": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-3.5.0.tgz", + "integrity": "sha512-wyVZtbRs6qDfFd8ap457w3XVntdvqcwBGxBoTvJQH9KGVKL/fB+h2k3C8AqiVxvUQKN1Ps/Ns46CNViOpVDhfQ==", + "dependencies": { + "is-nan": "^1.3.2", + "luxon": "^1.26.0" + }, + "engines": { + "node": ">=0.8" + } + }, "node_modules/crypto-random-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", @@ -560,6 +585,17 @@ "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", "dev": true }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -820,6 +856,24 @@ "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -916,6 +970,17 @@ "node": ">=6" } }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, "node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -925,6 +990,17 @@ "node": ">=4" } }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-yarn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", @@ -1096,6 +1172,21 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-npm": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", @@ -1212,6 +1303,11 @@ "node": ">=8" } }, + "node_modules/long-timeout": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/long-timeout/-/long-timeout-0.1.1.tgz", + "integrity": "sha1-lyHXiLR+C8taJMLivuGg2lXatRQ=" + }, "node_modules/lowercase-keys": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", @@ -1233,6 +1329,14 @@ "node": ">=10" } }, + "node_modules/luxon": { + "version": "1.28.0", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-1.28.0.tgz", + "integrity": "sha512-TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ==", + "engines": { + "node": "*" + } + }, "node_modules/make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", @@ -1348,6 +1452,19 @@ "node": ">= 0.6" } }, + "node_modules/node-schedule": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/node-schedule/-/node-schedule-2.1.0.tgz", + "integrity": "sha512-nl4JTiZ7ZQDc97MmpTq9BQjYhq7gOtoh7SiPH069gBFBj0PzD8HI7zyFs6rzqL8Y5tTiEEYLxgtbx034YPrbyQ==", + "dependencies": { + "cron-parser": "^3.5.0", + "long-timeout": "0.1.1", + "sorted-array-functions": "^1.3.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/nodemon": { "version": "2.0.15", "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.15.tgz", @@ -1433,6 +1550,14 @@ "node": "*" } }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", @@ -1823,6 +1948,11 @@ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, + "node_modules/sorted-array-functions": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.3.0.tgz", + "integrity": "sha512-2sqgzeFlid6N4Z2fUQ1cvFmTOLRi/sEDzSQ0OKYchqgoPmQBVyM3959qYx3fpS6Esef80KjmpgPeEr028dP3OA==" + }, "node_modules/sshpk": { "version": "1.17.0", "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", @@ -2420,6 +2550,15 @@ } } }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, "camelcase": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", @@ -2571,6 +2710,15 @@ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, + "cron-parser": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-3.5.0.tgz", + "integrity": "sha512-wyVZtbRs6qDfFd8ap457w3XVntdvqcwBGxBoTvJQH9KGVKL/fB+h2k3C8AqiVxvUQKN1Ps/Ns46CNViOpVDhfQ==", + "requires": { + "is-nan": "^1.3.2", + "luxon": "^1.26.0" + } + }, "crypto-random-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", @@ -2614,6 +2762,14 @@ "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", "dev": true }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -2811,6 +2967,21 @@ "dev": true, "optional": true }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, "get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -2885,12 +3056,25 @@ "har-schema": "^2.0.0" } }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, "has-yarn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", @@ -3016,6 +3200,15 @@ "is-path-inside": "^3.0.2" } }, + "is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, "is-npm": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-5.0.0.tgz", @@ -3111,6 +3304,11 @@ "package-json": "^6.3.0" } }, + "long-timeout": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/long-timeout/-/long-timeout-0.1.1.tgz", + "integrity": "sha1-lyHXiLR+C8taJMLivuGg2lXatRQ=" + }, "lowercase-keys": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", @@ -3126,6 +3324,11 @@ "yallist": "^4.0.0" } }, + "luxon": { + "version": "1.28.0", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-1.28.0.tgz", + "integrity": "sha512-TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ==" + }, "make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", @@ -3207,6 +3410,16 @@ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" }, + "node-schedule": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/node-schedule/-/node-schedule-2.1.0.tgz", + "integrity": "sha512-nl4JTiZ7ZQDc97MmpTq9BQjYhq7gOtoh7SiPH069gBFBj0PzD8HI7zyFs6rzqL8Y5tTiEEYLxgtbx034YPrbyQ==", + "requires": { + "cron-parser": "^3.5.0", + "long-timeout": "0.1.1", + "sorted-array-functions": "^1.3.0" + } + }, "nodemon": { "version": "2.0.15", "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.15.tgz", @@ -3268,6 +3481,11 @@ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, "on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", @@ -3575,6 +3793,11 @@ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, + "sorted-array-functions": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.3.0.tgz", + "integrity": "sha512-2sqgzeFlid6N4Z2fUQ1cvFmTOLRi/sEDzSQ0OKYchqgoPmQBVyM3959qYx3fpS6Esef80KjmpgPeEr028dP3OA==" + }, "sshpk": { "version": "1.17.0", "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", diff --git a/Backend/package.json b/Backend/package.json index 3b344bea..e7ae857e 100644 --- a/Backend/package.json +++ b/Backend/package.json @@ -14,6 +14,7 @@ "body-parser": "^1.19.2", "convert-csv-to-json": "^1.3.3", "express": "^4.17.3", + "node-schedule": "^2.1.0", "request": "^2.88.2" }, "devDependencies": { diff --git a/Backend/server.js b/Backend/server.js index f8191a37..96563a51 100644 --- a/Backend/server.js +++ b/Backend/server.js @@ -4,10 +4,19 @@ const fs = require('fs'); const axios = require('axios'); const csvToJson = require('convert-csv-to-json'); const app = express(); - - -//const apikey = 'ZSQ57OXG4YKUA0B8' //API Key Hakan; -const apikey = 'MB6DE4CNFFYGP4M7' //API Key Steffen; +const schedule = require('node-schedule'); + +const apiKeys =[ + 'ZSQ57OXG4YKUA0B8', //API Key Hakan; + 'MB6DE4CNFFYGP4M7', //API Key Steffen; + 'NOGQ7D1A1RHDGMU4', //API Key Cedrik + 'ZSQ57OXG4YKUA0B8', //API Key Hakan; + 'MB6DE4CNFFYGP4M7', //API Key Steffen; + 'NOGQ7D1A1RHDGMU4' //API Key Cedrik +] +let apiKeyIndex = 0; +let apiKey; +let url; app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ extended: true })); @@ -16,43 +25,42 @@ const routes = require('./routes/routes.js')(app, fs); // launch server on Port 3001 const server = app.listen(3001, () => { + setApiKey(); console.log('listening on port %s...', server.address().port); - updateData(); + // updateData(); }); +//Every 3 hours the API key is changed +const changeApiKey = schedule.scheduleJob('* */3 * * *', setApiKey); -//let intervalID = setInterval(updateData, 10000); - +function setApiKey(){ + console.log("API Key checked is called"); -//------------------------- -let url; + apiKey = apiKeys[apiKeyIndex]; + apiKeyIndex++; + if(apiKeyIndex == 6) + { + apiKeyIndex = 0; + } +} -function updateData(){ - console.info("update Data called"); - - // updateIntradaySeriesShare("IBM", 30); - // updateDailySeriesShare("IBM"); - // updateWeeklySeriesShare("IBM"); - // updateMonthlySeriesShare("IBM"); - - - // console.log("quoted US shares"); - // url = `https://www.alphavantage.co/query?function=LISTING_STATUS&apikey=${apikey}` - // axios.get(url) - // .then(res => res.data) - // .then(data => { - // fs.writeFileSync('data/quotedUSshares.csv',data); - // csvToJson.generateJsonFileFromCsv('data/quotedUSshares.csv','data/quotedUSshares.json'); - // }) - // .catch(error => {console.error(error)}); - +function updateListOfQuotedUSshares(){ + console.log("update list of quoted US shares"); + url = `https://www.alphavantage.co/query?function=LISTING_STATUS&apikey=${apiKey}` + axios.get(url) + .then(res => res.data) + .then(data => { + fs.writeFileSync('data/quotedUSshares.csv',data); + csvToJson.generateJsonFileFromCsv('data/quotedUSshares.csv','data/quotedUSshares.json'); + }) + .catch(error => {console.error(error)}); } //TODO überprüfen ob symbol überhaupt existiert function updateIntradaySeriesShare(symbol, interval = 30){ console.log("update Intraday Series from " + symbol); - url = `https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=${symbol}&interval=${interval}min&apikey=${apikey}`; + url = `https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=${symbol}&interval=${interval}min&apikey=${apiKey}`; let path = 'data/intraday_' + symbol + '.json'; axios.get(url) @@ -65,7 +73,7 @@ function updateIntradaySeriesShare(symbol, interval = 30){ function updateDailySeriesShare(symbol){ console.log("update Daily Series from " + symbol); - url = `https://www.alphavantage.co/query?function=TIME_SERIES_DAILY&symbol=${symbol}&apikey=${apikey}`; + url = `https://www.alphavantage.co/query?function=TIME_SERIES_DAILY&symbol=${symbol}&apikey=${apiKey}`; let path = 'data/daily_' + symbol + '.json'; axios.get(url) @@ -80,7 +88,7 @@ function updateDailySeriesShare(symbol){ function updateWeeklySeriesShare(symbol){ console.log("update Weekly Series from " + symbol); - url = `https://www.alphavantage.co/query?function=TIME_SERIES_WEEKLY&symbol=${symbol}&apikey=${apikey}`; + url = `https://www.alphavantage.co/query?function=TIME_SERIES_WEEKLY&symbol=${symbol}&apikey=${apiKey}`; let path = 'data/weekly_' + symbol + '.json'; axios.get(url) @@ -94,7 +102,7 @@ function updateWeeklySeriesShare(symbol){ function updateMonthlySeriesShare(symbol){ console.log("update Monthly Series from " + symbol); - url = `https://www.alphavantage.co/query?function=TIME_SERIES_MONTHLY&symbol=${symbol}&apikey=${apikey}`; + url = `https://www.alphavantage.co/query?function=TIME_SERIES_MONTHLY&symbol=${symbol}&apikey=${apiKey}`; let path = 'data/monthly_' + symbol + '.json'; axios.get(url) From eee00790b9afb0ba95860432423b696321966add Mon Sep 17 00:00:00 2001 From: Steffen Kruschina Date: Fri, 25 Mar 2022 18:52:30 +0100 Subject: [PATCH 2/5] SPF-86 --- Backend/data/quotedUSshares.csv | 39 +- Backend/data/quotedUSshares.json | 149831 +++++++++++++++++++------ Backend/data/symbols.txt | 3 + Backend/module/safeNewSymbol.js | 12 + Backend/module/updateDataFromAPI.js | 86 + Backend/package-lock.json | 11 + Backend/package.json | 1 + Backend/routes/daily.js | 35 +- Backend/routes/intraday.js | 35 +- Backend/routes/monthly.js | 35 +- Backend/routes/routes.js | 12 +- Backend/routes/weekly.js | 35 +- Backend/server.js | 143 +- 13 files changed, 112733 insertions(+), 37545 deletions(-) create mode 100644 Backend/data/symbols.txt create mode 100644 Backend/module/safeNewSymbol.js create mode 100644 Backend/module/updateDataFromAPI.js diff --git a/Backend/data/quotedUSshares.csv b/Backend/data/quotedUSshares.csv index 20789218..be6942f8 100644 --- a/Backend/data/quotedUSshares.csv +++ b/Backend/data/quotedUSshares.csv @@ -74,7 +74,10 @@ ACAHW,Atlantic Coastal Acquisition Corp - Warrants (02/03/2026),NASDAQ,Stock,202 ACAQ,Athena Consumer Acquisition Corp - Class A,NYSE,Stock,2021-12-13,null,Active ACAQ-U,Athena Consumer Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-10-20,null,Active ACAQ-WS,Athena Consumer Acquisition Corp - Warrants(31/07/2028),NYSE,Stock,2021-12-10,null,Active +ACAX,Alset Capital Acquisition Corp - Class A,NASDAQ,Stock,2022-03-24,null,Active +ACAXR,Alset Capital Acquisition Corp,NASDAQ,Stock,2022-03-24,null,Active ACAXU,Alset Capital Acquisition Corp - Units (1 Ord Class A & 1/2 War & 1 Right),NASDAQ,Stock,2022-02-01,null,Active +ACAXW,Alset Capital Acquisition Corp - Warrants (31/01/2027),NASDAQ,Stock,2022-03-24,null,Active ACB,Aurora Cannabis Inc,NASDAQ,Stock,2014-07-11,null,Active ACBA,Ace Global Business Acquisition Ltd,NASDAQ,Stock,2021-05-26,null,Active ACBAU,Ace Global Business Acquisition Ltd - Units (1 Ord & 1 War),NASDAQ,Stock,2021-04-06,null,Active @@ -193,7 +196,7 @@ ADRE,Invesco BLDRS Emerging Markets 50 ADR Index Fund,NASDAQ,ETF,2002-11-13,null ADRT,Ault Disruptive Technologies Corp,NYSE MKT,Stock,2022-02-09,null,Active ADRT-U,Ault Disruptive Technologies Corp - Units (1 Ord Share & 3/4 War),NYSE MKT,Stock,2021-12-16,null,Active ADRT-WS,Ault Disruptive Technologies Corp - Warrants (01/01/9999),NYSE MKT,Stock,2022-02-08,null,Active -ADS,Alliance Data System,NYSE,Stock,2001-06-15,null,Active +ADS,Bread Financial Holdings Inc,NYSE,Stock,2001-06-15,null,Active ADS-W,Alliance Data Systems Corporation ExDistribution When Issued,NYSE,Stock,2021-11-05,null,Active ADSE,Ads-Tec Energy Plc,NASDAQ,Stock,2021-12-23,null,Active ADSEW,Ads-Tec Energy Plc - Warrants (22/12/2026),NASDAQ,Stock,2021-03-10,null,Active @@ -237,7 +240,6 @@ AENZ,Aenza S.A.A,NYSE,Stock,2013-07-24,null,Active AEO,American Eagle Outfitters Inc,NYSE,Stock,1994-04-14,null,Active AEP,American Electric Power Company Inc,NASDAQ,Stock,1970-01-02,null,Active AEP-P-C,American Electric Power Company Inc Corporate Units,NYSE,Stock,2020-08-12,null,Active -AEPPL,American Electric Power Company Inc,NASDAQ,Stock,2019-03-15,null,Active AEPPZ,American Electric Power Company Inc,NASDAQ,Stock,2020-10-01,null,Active AER,Aercap Holdings N.V.,NYSE,Stock,2006-11-21,null,Active AERC,AeroClean Technologies Inc,NASDAQ,Stock,2021-11-24,null,Active @@ -465,6 +467,7 @@ ALL-P-H,Allstate Corp (The),NYSE,Stock,2019-08-02,null,Active ALL-P-I,Allstate Corp (The),NYSE,Stock,2019-11-05,null,Active ALLE,Allegion plc,NYSE,Stock,2013-11-18,null,Active ALLG,Allego NV,NYSE,Stock,2022-03-16,null,Active +ALLG-WS,Allego N.V. Warrants each exercisable for one Ordinary Share at an exercise price of 11.50 per share,NYSE,Stock,2022-03-24,null,Active ALLK,Allakos Inc,NASDAQ,Stock,2018-07-19,null,Active ALLO,Allogene Therapeutics Inc,NASDAQ,Stock,2018-10-11,null,Active ALLR,Allarity Therapeutics Inc,NASDAQ,Stock,2021-12-21,null,Active @@ -1678,7 +1681,7 @@ BSCT,Invesco BulletShares 2029 Corporate Bond ETF,NASDAQ,ETF,2019-09-12,null,Act BSCU,INVESCO BULLETSHARES 2030 CORPORATE BOND ETF ,NASDAQ,ETF,2020-09-17,null,Active BSCV,Invesco BulletShares 2031 Corporate Bond ETF,NASDAQ,ETF,2021-09-16,null,Active BSD,BlackRock Strategic Municipal Trust,NYSE,ETF,1999-08-25,null,Active -BSDE,INVESCO BULLETSHARES 2024 USD EMERGING MARKETS DEBT ETF ,NASDAQ,ETF,2018-10-19,null,Active +BSDE,Invesco BulletShares 2024 USD Emerging Markets Debt ETF,NASDAQ,ETF,2018-10-19,null,Active BSE,BlackRock New York Municipal Income Quality Trust,NYSE,ETF,2002-10-29,null,Active BSEA,ETFMG Breakwave Sea Decarbonization Tech ETF,NYSE ARCA,ETF,2021-09-21,null,Active BSEP,Innovator U.S. Equity Buffer ETF - September,BATS,ETF,2019-09-03,null,Active @@ -2056,7 +2059,7 @@ CF,CF Industries Holdings Inc,NYSE,Stock,2005-08-11,null,Active CFA,VictoryShares US 500 Volatility Wtd ETF,NASDAQ,ETF,2014-07-02,null,Active CFB,Crossfirst Bankshares Inc,NASDAQ,Stock,2019-08-15,null,Active CFBK,CF Bankshares Inc,NASDAQ,Stock,1998-12-30,null,Active -CFCV,CLEARBRIDGE FOCUS VALUE ETF ,BATS,ETF,2020-05-28,null,Active +CFCV,ClearBridge Focus Value ESG ETF,BATS,ETF,2020-05-28,null,Active CFFE,CF Acquisition Corp VIII - Class A,NASDAQ,Stock,2021-05-05,null,Active CFFEU,CF Acquisition Corp VIII - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-12,null,Active CFFEW,CF Acquisition Corp VIII - Warrants (31/03/2028),NASDAQ,Stock,2021-05-07,null,Active @@ -2127,7 +2130,7 @@ CHI,Calamos Convertible Opportunities and Income Fund,NASDAQ,ETF,2002-06-27,null CHIC,GLOBAL X MSCI CHINA COMMUNICATION SERVICES ETF ,NYSE ARCA,ETF,2010-01-22,null,Active CHIE,Global X MSCI China Energy ETF,NYSE ARCA,ETF,2010-01-22,null,Active CHIH,Global X MSCI China Health Care ETF,NYSE ARCA,ETF,2018-12-11,null,Active -CHII,GLOBAL X MSCI CHINA INDUSTRIALS ETF ,NYSE ARCA,ETF,2009-12-01,null,Active +CHII,Global X MSCI China Industrials ETF,NYSE ARCA,ETF,2009-12-01,null,Active CHIK,Global X MSCI China Information Technology ETF,NYSE ARCA,ETF,2018-12-11,null,Active CHIM,Global X MSCI China Materials ETF,NYSE ARCA,ETF,2010-01-14,null,Active CHIQ,Global X MSCI China Consumer Discretionary ETF,NYSE ARCA,ETF,2009-12-01,null,Active @@ -2927,8 +2930,10 @@ DFEN,Direxion Daily Aerospace & Defense Bull 3X Shares,NYSE ARCA,ETF,2017-05-03, DFFN,Diffusion Pharmaceuticals Inc,NASDAQ,Stock,2016-01-04,null,Active DFH,Dream Finders Homes Inc - Class A,NASDAQ,Stock,2021-01-21,null,Active DFHY,Donoghue Forlines Tactical High Yield ETF,BATS,ETF,2020-12-08,null,Active +DFIC,Dimensional International Core Equity 2 ETF,BATS,ETF,2022-03-24,null,Active DFIN,Donnelley Financial Solutions Inc,NYSE,Stock,2016-10-03,null,Active DFIP,Dimensional Inflation-Protected Securities ETF,NYSE ARCA,ETF,2021-11-16,null,Active +DFIS,Dimensional International Small Cap ETF,BATS,ETF,2022-03-24,null,Active DFIV,Dimensional International Value ETF,NYSE ARCA,ETF,2021-09-13,null,Active DFJ,WisdomTree Japan SmallCap Dividend Fund,NYSE ARCA,ETF,2006-06-16,null,Active DFND,Siren DIVCON Dividend Defender ETF,BATS,ETF,2016-01-14,null,Active @@ -2994,6 +2999,7 @@ DIBS,1stdibs.com Inc,NASDAQ,Stock,2021-06-10,null,Active DICE,DICE Therapeutics Inc,NASDAQ,Stock,2021-09-15,null,Active DIDI,DiDi Global Inc,NYSE,Stock,2021-06-30,null,Active DIG,ProShares Ultra Oil & Gas,NYSE ARCA,ETF,2007-02-01,null,Active +DIHP,Dimensional International High Profitability ETF,BATS,ETF,2022-03-24,null,Active DILA,DILA Capital Acquisition Corp - Class A,NASDAQ,Stock,2021-08-05,null,Active DILAU,DILA Capital Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-06-15,null,Active DILAW,DILA Capital Acquisition Corp - Warrants (09/06/2026),NASDAQ,Stock,2021-08-04,null,Active @@ -3011,6 +3017,7 @@ DISCB,Discovery Inc - Class B,NASDAQ,Stock,2005-11-10,null,Active DISCK,Discovery Inc - Series C,NASDAQ,Stock,2008-09-18,null,Active DISH,Dish Network Corp - Class A,NASDAQ,Stock,1995-06-21,null,Active DISHR,DISH Network Corp Rt,NASDAQ,Stock,2019-11-25,null,Active +DISV,Dimensional International Small Cap Value ETF,BATS,ETF,2022-03-24,null,Active DIT,Amcon Distributing Company,NYSE MKT,Stock,1995-08-04,null,Active DIV,Global X SuperDividend U.S. ETF,NYSE ARCA,ETF,2013-03-12,null,Active DIVA,AGFiQ Hedged Dividend Income Fund,NYSE ARCA,ETF,2015-01-15,null,Active @@ -3780,7 +3787,7 @@ EURN,Euronav NV,NYSE,Stock,2015-01-23,null,Active EUSA,iShares MSCI USA Equal Weighted ETF,NYSE ARCA,ETF,2010-05-07,null,Active EUSB,iShares ESG Advanced Total USD Bond Market ETF,NYSE ARCA,ETF,2020-06-25,null,Active EUSC,WisdomTree Europe Hedged SmallCap Equity Fund,NYSE ARCA,ETF,2015-03-04,null,Active -EVA,Enviva Inc,NYSE,Stock,2022-01-03,null,Active +EVA,Enviva Inc,NYSE,Stock,2015-04-29,null,Active EVAX,Evaxion Biotech A/S,NASDAQ,Stock,2021-02-05,null,Active EVBG,Everbridge Inc,NASDAQ,Stock,2016-09-16,null,Active EVBN,Evans Bancorp Inc,NYSE MKT,Stock,2001-07-09,null,Active @@ -5281,7 +5288,7 @@ HEQT,Simplify Hedged Equity ETF,NYSE ARCA,ETF,2021-11-02,null,Active HERA,FTAC Hera Acquisition Corp - Class A,NASDAQ,Stock,2021-04-26,null,Active HERAU,FTAC Hera Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-04,null,Active HERAW,FTAC Hera Acquisition Corp - Warrants (28/02/2026),NASDAQ,Stock,2021-04-28,null,Active -HERD,PACER CASH COWS FUND OF FUNDS ETF ,NASDAQ,ETF,2019-05-07,null,Active +HERD,Pacer Cash Cows Fund of Funds ETF,NASDAQ,ETF,2019-05-07,null,Active HERO,Global X Video Games & Esports ETF,NASDAQ,ETF,2019-10-31,null,Active HES,Hess Corporation,NYSE,Stock,1983-04-06,null,Active HESM,Hess Midstream LP - Class A,NYSE,Stock,2017-04-05,null,Active @@ -5569,7 +5576,7 @@ HYLD,High Yield ETF,NYSE ARCA,ETF,2010-12-01,null,Active HYLN,Hyliion Holdings Corporation - Class A,NYSE,Stock,2019-04-22,null,Active HYLN-WS,Hyliion Holdings Corp Wt Exp 10012025,NYSE,Stock,2020-10-02,null,Active HYLS,First Trust Tactical High Yield ETF,NASDAQ,ETF,2013-02-27,null,Active -HYLV,IQ S&P HIGH YIELD LOW VOLATILITY BOND ETF ,NYSE ARCA,ETF,2017-02-15,null,Active +HYLV,IQ S&P High Yield Low Volatility Bond ETF,NYSE ARCA,ETF,2017-02-15,null,Active HYMB,SPDR Nuveen Bloomberg High Yield Municipal Bond ETF,NYSE ARCA,ETF,2011-04-14,null,Active HYMC,Hycroft Mining Holding Corporation - Class A,NASDAQ,Stock,2018-03-12,null,Active HYMCL,Hycroft Mining Holding Corporation - Warrants (01/01/9999),NASDAQ,Stock,2021-01-26,null,Active @@ -5668,7 +5675,7 @@ IBTB,iShares iBonds Dec 2022 Term Treasury ETF,NASDAQ,ETF,2020-03-03,null,Active IBTD,iShares iBonds Dec 2023 Term Treasury ETF,NASDAQ,ETF,2020-03-03,null,Active IBTE,iShares iBonds Dec 2024 Term Treasury ETF,NASDAQ,ETF,2020-02-28,null,Active IBTF,iShares iBonds Dec 2025 Term Treasury ETF,NASDAQ,ETF,2020-02-28,null,Active -IBTG,ISHARES IBONDS DEC 2026 TERM TREASURY ETF ,NASDAQ,ETF,2020-02-28,null,Active +IBTG,iShares iBonds Dec 2026 Term Treasury ETF,NASDAQ,ETF,2020-02-28,null,Active IBTH,ISHARES IBONDS DEC 2027 TERM TREASURY ETF ,NASDAQ,ETF,2020-02-28,null,Active IBTI,ISHARES IBONDS DEC 2028 TERM TREASURY ETF ,NASDAQ,ETF,2020-02-28,null,Active IBTJ,ISHARES IBONDS DEC 2029 TERM TREASURY ETF ,NASDAQ,ETF,2020-02-28,null,Active @@ -5941,7 +5948,7 @@ INMU,BlackRock Intermediate Muni Income Bond ETF,NYSE ARCA,ETF,2021-03-18,null,A INN,Summit Hotel Properties Inc,NYSE,Stock,2011-02-09,null,Active INN-P-E,Summit Hotel Properties Inc,NYSE,Stock,2017-11-03,null,Active INN-P-F,Summit Hotel Properties Inc,NYSE,Stock,2021-08-06,null,Active -INNO,Harbor ETF Trust - Harbor Disruptive Innovation ETF,NYSE ARCA,Stock,2021-12-20,null,Active +INNO,Harbor Disruptive Innovation ETF,NYSE ARCA,Stock,2021-12-20,null,Active INNV,InnovAge Holding Corp,NASDAQ,Stock,2021-03-04,null,Active INO,Inovio Pharmaceuticals Inc,NASDAQ,Stock,1998-12-08,null,Active INOD,Innodata Inc,NASDAQ,Stock,1993-08-11,null,Active @@ -6247,7 +6254,7 @@ JBSS,Sanfilippo (John B.) & Son Inc,NASDAQ,Stock,1991-12-04,null,Active JBT,John Bean Technologies Corp,NYSE,Stock,2008-07-22,null,Active JCAP-P-B,Jernigan Capital Inc,NYSE,Stock,2018-01-22,null,Active JCE,Nuveen Core Equity Alpha Fund,NYSE,ETF,2007-03-28,null,Active -JCI,Johnson Controls International plc,NYSE,Stock,1985-03-27,null,Active +JCI,Johnson Controls International plc,NYSE,Stock,2022-03-22,null,Active JCIC,Jack Creek Investment Corp - Class A,NASDAQ,Stock,2021-03-17,null,Active JCICU,Jack Creek Investment Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-01-22,null,Active JCICW,Jack Creek Investment Corp - Warrants (01/10/2025),NASDAQ,Stock,2021-03-15,null,Active @@ -7005,7 +7012,7 @@ LTRN,Lantern Pharma Inc,NASDAQ,Stock,2020-06-11,null,Active LTRPA,Liberty TripAdvisor Holdings Inc - Series A,NASDAQ,Stock,2014-08-27,null,Active LTRPB,Liberty TripAdvisor Holdings Inc - Series B,NASDAQ,Stock,2014-08-28,null,Active LTRX,Lantronix Inc,NASDAQ,Stock,2000-08-04,null,Active -LTRY,Lottery.com Inc,NASDAQ,Stock,2018-06-13,null,Active +LTRY,MDI ENTERTAINMENT INC,NASDAQ,Stock,2021-10-29,null,Active LTRYW,Lottery.com Inc - Warrants (29/10/2026),NASDAQ,Stock,2018-06-13,null,Active LTS-P-A,Ladenburg Thalmann Financial Services Inc 800 Series A Cumulative Redeemable Preferred Stock Liquidation Preference 2500 per share,NYSE MKT,Stock,2014-09-22,null,Active LU,Lufax Holding Ltd,NYSE,Stock,2020-10-30,null,Active @@ -9513,6 +9520,7 @@ RF,Regions Financial Corp,NYSE,Stock,1990-03-26,null,Active RF-P-B,Regions Financial Corp,NYSE,Stock,2014-09-22,null,Active RF-P-C,Regions Financial Corp,NYSE,Stock,2019-04-24,null,Active RF-P-E,Regions Financial Corp,NYSE,Stock,2021-04-27,null,Active +RFACU,RF Acquisition Corp - Units (1 Ord Class A & 1/2 War & 1 Right ),NASDAQ,Stock,2022-03-24,null,Active RFCI,RiverFront Dynamic Core Income ETF,NYSE ARCA,ETF,2016-06-17,null,Active RFDA,RiverFront Dynamic US Dividend Advantage ETF,NYSE ARCA,ETF,2016-06-07,null,Active RFDI,First Trust RiverFront Dynamic Developed International ETF,NASDAQ,ETF,2016-04-14,null,Active @@ -9560,7 +9568,7 @@ RIDE,Lordstown Motors Corp - Class A,NASDAQ,Stock,2019-04-17,null,Active RIET,Hoya Capital High Dividend Yield ETF,NYSE ARCA,ETF,2021-09-22,null,Active RIG,Transocean Ltd,NYSE,Stock,1993-05-28,null,Active RIGL,Rigel Pharmaceuticals,NASDAQ,Stock,2000-11-29,null,Active -RIGS,RIVERFRONT STRATEGIC INCOME FUND ,NYSE ARCA,ETF,2013-10-09,null,Active +RIGS,RiverFront Strategic Income Fund,NYSE ARCA,ETF,2013-10-09,null,Active RIGZ,Viridi Cleaner Energy Crypto-Mining & Semiconductor ETF,NYSE ARCA,ETF,2021-07-20,null,Active RILY,B. Riley Financial Inc,NASDAQ,Stock,2015-07-16,null,Active RILYG,B. Riley Financial Inc,NASDAQ,Stock,2021-12-06,null,Active @@ -9670,6 +9678,7 @@ ROCC,Ranger Oil Corp - Class A,NASDAQ,Stock,2016-11-15,null,Active ROCG,Roth CH Acquisition IV Company,NASDAQ,Stock,2021-09-03,null,Active ROCGU,Roth CH Acquisition IV Co - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-08-06,null,Active ROCGW,Roth CH Acquisition IV Co - Warrants (01/07/2026),NASDAQ,Stock,2021-09-07,null,Active +ROCI,ROC ETF,BATS,ETF,2022-03-24,null,Active ROCK,Gibraltar Industries Inc,NASDAQ,Stock,1993-11-05,null,Active ROCL,Roth CH Acquisition V Company,NASDAQ,Stock,2022-01-06,null,Active ROCLU,Roth CH Acquisition V Co - Unit (1 Ordinary share & 1/2 Wrt),NASDAQ,Stock,2021-12-01,null,Active @@ -10516,7 +10525,7 @@ SPWH,Sportsman`s Warehouse Holdings Inc,NASDAQ,Stock,2014-04-17,null,Active SPWR,Sunpower Corp,NASDAQ,Stock,2005-11-17,null,Active SPXB,ProShares S&P 500 Bond ETF,NYSE ARCA,ETF,2018-05-03,null,Active SPXC,SPX Corp,NYSE,Stock,1985-07-01,null,Active -SPXE,S&P 500 EX-ENERGY ETF ,NYSE ARCA,ETF,2015-09-24,null,Active +SPXE,ProShares S&P 500 Ex-Energy ETF,NYSE ARCA,ETF,2015-09-24,null,Active SPXL,Direxion Daily S&P 500 Bull 3X Shares,NYSE ARCA,ETF,2008-11-05,null,Active SPXN,S&P 500 EX-FINANCIALS ETF ,NYSE ARCA,ETF,2015-09-24,null,Active SPXS,Direxion Daily S&P 500 Bear 3X Shares,NYSE ARCA,ETF,2008-11-19,null,Active @@ -10965,6 +10974,7 @@ TGA,Transglobe Energy Corp,NASDAQ,Stock,1994-05-10,null,Active TGAA,Target Global Acquisition I Corp - Class A,NASDAQ,Stock,2022-02-01,null,Active TGAAU,Target Global Acquisition I Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-12-09,null,Active TGAAW,Target Global Acquisition I Corp - Warrants (09/03/2026),NASDAQ,Stock,2022-02-01,null,Active +TGAN,Transphorm Inc,NASDAQ,Stock,2020-07-29,null,Active TGB,Taseko Mines Ltd,NYSE MKT,Stock,1994-06-02,null,Active TGH,Textainer Group Holdings Ltd,NYSE,Stock,2007-10-10,null,Active TGH-P-A,Textainer Group Holdings Ltd,NYSE,Stock,2021-04-07,null,Active @@ -12452,6 +12462,7 @@ ZSL,ProShares UltraShort Silver,NYSE ARCA,ETF,2008-12-03,null,Active ZT,Zimmer Energy Transition Acquisition Corp - Class A,NASDAQ,Stock,2021-08-17,null,Active ZTAQU,Zimmer Energy Transition Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-06-16,null,Active ZTAQW,Zimmer Energy Transition Acquisition Corp - Warrants (16/06/2026),NASDAQ,Stock,2021-08-17,null,Active +ZTEK,Zentek Ltd,NASDAQ,Stock,2012-04-02,null,Active ZTEST,,BATS,Stock,2011-10-05,null,Active ZTO,ZTO Express (Cayman) Inc,NYSE,Stock,2016-10-27,null,Active ZTR,Virtus Total Return Fund Inc,NYSE,ETF,1989-06-30,null,Active diff --git a/Backend/data/quotedUSshares.json b/Backend/data/quotedUSshares.json index fb3f3562..b911de99 100644 --- a/Backend/data/quotedUSshares.json +++ b/Backend/data/quotedUSshares.json @@ -1,37436 +1,112403 @@ [ { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "A,Agilent Technologies Inc,NYSE,Stock,1999-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AA,Alcoa Corp,NYSE,Stock,2016-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAA,AAF FIRST PRIORITY CLO BOND ETF ,NYSE ARCA,ETF,2020-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAAU,Goldman Sachs Physical Gold ETF,BATS,ETF,2018-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAC,Ares Acquisition Corporation - Class A,NYSE,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAC-U,Ares Acquisition Corporation - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAC-WS,Ares Acquisition Corporation - Warrants (01/01/9999),NYSE,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AACG,ATA Creativity Global,NASDAQ,Stock,2008-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AACI,Armada Acquisition Corp I,NASDAQ,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AACIU,Armada Acquisition Corp I - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AACIW,Armada Acquisition Corp I - Warrants (13/08/2026),NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AADI,Aadi Bioscience Inc,NASDAQ,Stock,2017-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AADR,AdvisorShares Dorsey Wright ADR ETF,NASDAQ,ETF,2010-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAIC,Arlington Asset Investment Corp - Class A,NYSE,Stock,1997-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAIC-P-B,Arlington Asset Investment Corp,NYSE,Stock,2017-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAIC-P-C,Arlington Asset Investment Corp,NYSE,Stock,2019-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAIN,Arlington Asset Investment Corp,NYSE,Stock,2021-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAL,American Airlines Group Inc,NASDAQ,Stock,2005-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAM-P-A,Apollo Asset Management Inc,NYSE,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAM-P-B,Apollo Asset Management Inc,NYSE,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAMC,Altisource Asset Management Corp,NYSE MKT,Stock,2012-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAME,Atlantic American Corp,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAN,Aarons Company Inc (The),NYSE,Stock,2020-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAN-W,Aarons Holdings Company Inc When Issued,NYSE,Stock,2020-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAOI,Applied Optoelectronics Inc,NASDAQ,Stock,2013-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAON,AAON Inc,NASDAQ,Stock,1992-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAP,Advance Auto Parts Inc,NYSE,Stock,2001-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAPL,Apple Inc,NASDAQ,Stock,1980-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAQC,Accelerate Acquisition Corp - Class A,NYSE,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAQC-U,Accelerate Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAQC-WS,Accelerate Acquisition Corp - Warrants (15/03/2028),NYSE,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAT,American Assets Trust Inc,NYSE,Stock,2011-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AATC,Autoscope Technologies Corporation,NASDAQ,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAU,Almaden Minerals Ltd,NYSE MKT,Stock,2005-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAWW,Atlas Air Worldwide Holdings Inc,NASDAQ,Stock,2005-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AAXJ,iShares MSCI All Country Asia ex Japan ETF,NASDAQ,ETF,2008-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AB,AllianceBernstein Holding Lp,NYSE,Stock,1988-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABB,ABB Ltd,NYSE,Stock,2001-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABBV,Abbvie Inc,NYSE,Stock,2013-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABC,Amerisource Bergen Corp,NYSE,Stock,1995-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABCB,Ameris Bancorp,NASDAQ,Stock,1994-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABCL,AbCellera Biologics Inc,NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABCM,Abcam,NASDAQ,Stock,2010-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABEO,Abeona Therapeutics Inc,NASDAQ,Stock,1980-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABEQ,ABSOLUTE CORE STRATEGY ETF ,NYSE ARCA,ETF,2020-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABEV,Ambev S.A.,NYSE,Stock,1997-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABG,Asbury Automotive Group Inc,NYSE,Stock,2002-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABGI,ABG Acquisition Corp I - Class A,NASDAQ,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABIO,ARCA biopharma Inc,NASDAQ,Stock,1997-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABM,ABM Industries Inc,NYSE,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABMD,Abiomed Inc,NASDAQ,Stock,1987-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABNB,Airbnb Inc - Class A,NASDAQ,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABOS,Acumen Pharmaceuticals Inc,NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABR,Arbor Realty Trust Inc,NYSE,Stock,2004-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABR-P-D,Arbor Realty Trust Inc,NYSE,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABR-P-E,Arbor Realty Trust Inc,NYSE,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABR-P-F,Arbor Realty Trust Inc,NYSE,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABSI,Absci Corp,NASDAQ,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABST,Absolute Software Corporation,NASDAQ,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABT,Abbott Laboratories,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABTX,Allegiance Bancshares Inc,NASDAQ,Stock,2015-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABUS,Arbutus Biopharma Corp,NASDAQ,Stock,2015-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ABVC,ABVC BioPharma Inc,NASDAQ,Stock,2017-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AC,Associated Capital Group Inc - Class A,NYSE,Stock,2015-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACA,Arcosa Inc,NYSE,Stock,2018-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACAB,Atlantic Coastal Acquisition Corp II - Class A,NASDAQ,Stock,2022-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACABU,Atlantic Coastal Acquisition Corp II - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACABW,Atlantic Coastal Acquisition Corp II - Warrants (13/01/2027),NASDAQ,Stock,2022-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACAD,Acadia Pharmaceuticals Inc,NASDAQ,Stock,2004-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACAH,Atlantic Coastal Acquisition Corp - Class A,NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACAHU,Atlantic Coastal Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACAHW,Atlantic Coastal Acquisition Corp - Warrants (02/03/2026),NASDAQ,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACAQ,Athena Consumer Acquisition Corp - Class A,NYSE,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACAQ-U,Athena Consumer Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACAQ-WS,Athena Consumer Acquisition Corp - Warrants(31/07/2028),NYSE,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACAXU,Alset Capital Acquisition Corp - Units (1 Ord Class A & 1/2 War & 1 Right),NASDAQ,Stock,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACB,Aurora Cannabis Inc,NASDAQ,Stock,2014-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACBA,Ace Global Business Acquisition Ltd,NASDAQ,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACBAU,Ace Global Business Acquisition Ltd - Units (1 Ord & 1 War),NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACBAW,Ace Global Business Acquisition Ltd - Warrants (26/03/2026),NASDAQ,Stock,2021-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACC,American Campus Communities Inc,NYSE,Stock,2004-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACCD,Accolade Inc,NASDAQ,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACCO,Acco Brands Corporation,NYSE,Stock,2005-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACDI,Ascendant Digital Acquisition Corp III - Class A,NYSE,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACDI-U,Ascendant Digital Acquisition Corp III - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACDI-WS,Ascendant Digital Acquisition Corp III - Warrants (01/01/9999),NYSE,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACEL,Accel Entertainment Inc - Class A1,NYSE,Stock,2019-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACER,Acer Therapeutics Inc,NASDAQ,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACES,ALPS Clean Energy ETF,NYSE ARCA,ETF,2018-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACET,Adicet Bio Inc,NASDAQ,Stock,2018-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACEV,ACE Convergence Acquisition Corp - Class A,NASDAQ,Stock,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACEVU,ACE Convergence Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACEVW,ACE Convergence Acquisition Corp - Warrants (30/09/2027),NASDAQ,Stock,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACGL,Arch Capital Group Ltd,NASDAQ,Stock,1995-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACGLN,Arch Capital Group Ltd,NASDAQ,Stock,2021-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACGLO,Arch Capital Group Ltd,NASDAQ,Stock,2017-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACH,Aluminum Corporation Of China Ltd.,NYSE,Stock,2001-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACHC,Acadia Healthcare Company Inc,NASDAQ,Stock,1994-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACHL,Achilles Therapeutics Plc,NASDAQ,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACHR,Archer Aviation Inc - Class A,NYSE,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACHR-WS,Archer Aviation Inc Wt,NYSE,Stock,2021-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACHV,Achieve Life Sciences Inc,NASDAQ,Stock,1995-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACI,Albertsons Companies Inc - Class A,NYSE,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACII,Atlas Crest Investment Corp II - Class A,NYSE,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACII-U,Atlas Crest Investment Corp II - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACII-WS,Atlas Crest Investment Corp II - Warrants (01/01/9999),NYSE,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACIO,ETF Series Solutions Aptus Collared Income Opportunity ETF,BATS,ETF,2019-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACIU,AC Immune SA,NASDAQ,Stock,2016-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACIW,ACI Worldwide Inc,NASDAQ,Stock,1995-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACKIT,Ackrell SPAC Partners I Co - Subunits (1 Ord & 0.5 War),NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACKIU,Ackrell SPAC Partners I Co - Units ( 1Subunit & 0.5 War),NASDAQ,Stock,2020-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACKIW,Ackrell SPAC Partners I Co - Warrants (21/12/2025),NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACLS,Axcelis Technologies Inc,NASDAQ,Stock,2000-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACLX,Arcellx Inc,NASDAQ,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACM,AECOM,NYSE,Stock,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACMR,ACM Research Inc - Class A,NASDAQ,Stock,2017-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACN,Accenture plc - Class A,NYSE,Stock,2001-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACNB,ACNB Corp,NASDAQ,Stock,1996-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACND-WS,Ascendant Digital Acquisition Corp Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50 per share,NYSE,Stock,2020-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACOR,Acorda Therapeutics Inc,NASDAQ,Stock,2006-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACP,Aberdeen Income Credit Strategies Fund,NYSE,ETF,2011-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACP-P-A,Aberdeen Income Credit Strategies Fund,NYSE,Stock,2021-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACP-R-W,Aberdeen Income Credit Strategies Fund Rights expiring June 16 2021 When Issued,NYSE,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACQR,Independence Holdings Corp - Class A,NASDAQ,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACQRU,Independence Holdings Corp - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACQRW,Independence Holdings Corp - Warrants (31/03/2028),NASDAQ,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACR,ACRES Commercial Realty Corp,NYSE,Stock,2006-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACR-P-C,ACRES Commercial Realty Corp,NYSE,Stock,2014-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACR-P-D,ACRES Commercial Realty Corp,NYSE,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACRE,Ares Commercial Real Estate Corp,NYSE,Stock,2012-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACRO,Acropolis Infrastructure Acquisition Corp - Class A,NYSE,Stock,2021-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACRO-U,Acropolis Infrastructure Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACRO-WS,Acropolis Infrastructure Acquisition Corp - Warrants (30/03/2026),NYSE,Stock,2021-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACRS,Aclaris Therapeutics Inc,NASDAQ,Stock,2015-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACRX,Acelrx Pharmaceuticals Inc,NASDAQ,Stock,2011-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACSI,AMERICAN CUSTOMER SATISFACTION ETF ,BATS,ETF,2016-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACST,Acasti Pharma Inc - Class A,NASDAQ,Stock,2011-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACT,Enact Holdings Inc,NASDAQ,Stock,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACTD,ArcLight Clean Transition Corp II - Class A,NASDAQ,Stock,2021-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACTDU,ArcLight Clean Transition Corp II - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACTDW,ArcLight Clean Transition Corp II - Warrants (16/03/2028),NASDAQ,Stock,2021-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACTG,Acacia Research Corp,NASDAQ,Stock,2002-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACTTW,Act II Global Acquisition Corp Warrants 30042026,NASDAQ,Stock,2019-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACTV,LeaderShares Activist Leaders ETF,NYSE ARCA,ETF,2020-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACU,Acme United Corp,NYSE MKT,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACV,Virtus AllianzGI Diversified Income & Convertible Fund,NYSE,ETF,2015-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACVA,ACV Auctions Inc - Class A,NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACVF,American Conservative Values ETF,NYSE ARCA,ETF,2020-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACWF,iShares MSCI Global Multifactor ETF,NYSE ARCA,ETF,2015-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACWI,iShares MSCI ACWI ETF,NASDAQ,ETF,2008-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACWV,iShares MSCI Global Min Vol Factor ETF,BATS,ETF,2011-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACWX,iShares MSCI ACWI ex US ETF,NASDAQ,ETF,2008-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACXP,Acurx Pharmaceuticals Inc,NASDAQ,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ACY,Aerocentury Corp,NYSE MKT,Stock,1998-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADAG,Adagene Inc,NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADAL,Anthemis Digital Acquisitions I Corp - Class A,NASDAQ,Stock,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADALU,Anthemis Digital Acquisitions I Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADALW,Anthemis Digital Acquisitions I Corp - Warrants (18/10/2026),NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADAP,Adaptimmune Therapeutics Plc,NASDAQ,Stock,2015-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADBE,Adobe Inc,NASDAQ,Stock,1986-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADC,Agree Realty Corp,NYSE,Stock,1994-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADC-P-A,Agree Realty Corp,NYSE,Stock,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADCT,Adc Therapeutics SA,NYSE,Stock,2020-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADER,26 Capital Acquisition Corp - Class A,NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADERU,26 Capital Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADERW,26 Capital Acquisition Corp - Warrants (31/12/2027),NASDAQ,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADES,Advanced Emissions Solutions Inc,NASDAQ,Stock,2004-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADEX,Adit Edtech Acquisition Corp,NYSE,Stock,2021-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADEX-U,Adit Edtech Acquisition Corp - Units (1 Ord Share & 1/2 War),NYSE,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADEX-WS,Adit Edtech Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADFI,Anfield Dynamic Fixed Income ETF,BATS,ETF,2020-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADGI,Adagio Therapeutics Inc,NASDAQ,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADI,Analog Devices Inc,NASDAQ,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADIL,Adial Pharmaceuticals Inc,NASDAQ,Stock,2018-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADILW,Adial Pharmaceuticals Inc Warrants 31072023,NASDAQ,Stock,2018-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADIV,SmartETFs Asia Pacific Dividend Builder ETF,NYSE ARCA,ETF,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADM,Archer Daniels Midland Company,NYSE,Stock,1983-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADMA,Adma Biologics Inc,NASDAQ,Stock,2013-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADME,Aptus Drawdown Managed Equity ETF,BATS,ETF,2016-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADMP,Adamis Pharmaceuticals Corp,NASDAQ,Stock,1995-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADN,Advent Technologies Holdings Inc - Class A,NASDAQ,Stock,2019-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADNT,Adient plc,NYSE,Stock,2016-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADOC,Edoc Acquisition Corp - Class A,NASDAQ,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADOCR,Edoc Acquisition Corp,NASDAQ,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADOCW,Edoc Acquisition Corp - Warrants (30/11/2027),NASDAQ,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADP,Automatic Data Processing Inc,NASDAQ,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADPT,Adaptive Biotechnologies Corp,NASDAQ,Stock,2019-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADRA,Adara Acquisition Corp - Class A,NYSE MKT,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADRA-U,Adara Acquisition Corp - Units (1Ord Class A & 0.5 Warr),NYSE MKT,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADRA-WS,Adara Acquisition Corp - Warrants (11/02/2026),NYSE MKT,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADRE,Invesco BLDRS Emerging Markets 50 ADR Index Fund,NASDAQ,ETF,2002-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADRT,Ault Disruptive Technologies Corp,NYSE MKT,Stock,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADRT-U,Ault Disruptive Technologies Corp - Units (1 Ord Share & 3/4 War),NYSE MKT,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADRT-WS,Ault Disruptive Technologies Corp - Warrants (01/01/9999),NYSE MKT,Stock,2022-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADS,Alliance Data System,NYSE,Stock,2001-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADS-W,Alliance Data Systems Corporation ExDistribution When Issued,NYSE,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADSE,Ads-Tec Energy Plc,NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADSEW,Ads-Tec Energy Plc - Warrants (22/12/2026),NASDAQ,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADSK,Autodesk Inc,NASDAQ,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADT,ADT Inc,NYSE,Stock,2018-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADTH,AdTheorent Holding Company Inc,NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADTHW,AdTheorent Holding Company Inc - Warrants (22/12/2026),NASDAQ,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADTN,Adtran Inc,NASDAQ,Stock,1994-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADTX,Aditxt Inc,NASDAQ,Stock,2020-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADUS,Addus HomeCare Corporation,NASDAQ,Stock,2009-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADV,Advantage Solutions Inc - Class A,NASDAQ,Stock,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADVM,Adverum Biotechnologies Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADVWW,Advantage Solutions Inc - Warrants (28/10/2025),NASDAQ,Stock,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADX,Adams Diversified Equity Fund,NYSE,ETF,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ADXN,Addex Therapeutics Ltd,NASDAQ,Stock,2020-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AE,Adams Resources & Energy Inc,NYSE MKT,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEAC,Authentic Equity Acquisition Corp - Class A,NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEACU,Authentic Equity Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEACW,Authentic Equity Acquisition Corp - Warrants (31/10/2027),NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEAE,AltEnergy Acquisition Corp - Class A,NASDAQ,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEAEU,AltEnergy Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEAEW,AltEnergy Acquisition Corp - Warrants (29/10/2026),NASDAQ,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEE,Ameren Corp,NYSE,Stock,1998-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEF,Aberdeen Emerging Markets Equity Income Fund Inc,NYSE MKT,ETF,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEFC,Aegon Funding Company LLC,NYSE,Stock,2019-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEG,Aegon N. V.,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEHA,Aesther Healthcare Acquisition Corp - Class A,NASDAQ,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEHAU,Aesther Healthcare Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEHAW,Aesther Healthcare Acquisition Corp - Warrants (14/09/2026),NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEHL,Antelope Enterprise Holdings Ltd,NASDAQ,Stock,2007-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEHR,Aehr Test Systems,NASDAQ,Stock,1997-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEI,Alset EHome International Inc,NASDAQ,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEIS,Advanced Energy Industries Inc,NASDAQ,Stock,1995-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEL,American Equity Investment Life Holding Company,NYSE,Stock,2003-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEL-P-A,American Equity Investment Life Holding Company 5.95 PRF PERPETUAL USD 25 Ser A 11000th,NYSE,Stock,2019-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEL-P-B,American Equity Investment Life Holding Company,NYSE,Stock,2020-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEM,Agnico Eagle Mines Ltd,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEMB,AMERICAN CENTURY EMERGING MARKETS BOND ETF ,NYSE ARCA,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEMD,Aethlon Medical Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AENZ,Aenza S.A.A,NYSE,Stock,2013-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEO,American Eagle Outfitters Inc,NYSE,Stock,1994-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEP,American Electric Power Company Inc,NASDAQ,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEP-P-C,American Electric Power Company Inc Corporate Units,NYSE,Stock,2020-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEPPL,American Electric Power Company Inc,NASDAQ,Stock,2019-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEPPZ,American Electric Power Company Inc,NASDAQ,Stock,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AER,Aercap Holdings N.V.,NYSE,Stock,2006-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AERC,AeroClean Technologies Inc,NASDAQ,Stock,2021-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AERI,Aerie Pharmaceuticals Inc,NASDAQ,Stock,2013-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AES,AES Corp,NYSE,Stock,1991-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AESC,AES Corp,NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AESE,Allied Esports Entertainment Inc,NASDAQ,Stock,2017-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AESR,Anfield U.S. Equity Sector Rotation ETF,BATS,ETF,2019-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEVA,Aeva Technologies Inc,NYSE,Stock,2020-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEVA-WS,Aeva Technologies Inc - Warrants (29/10/2024),NYSE,Stock,2020-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEY,Addvantage Technologies Group,NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEYE,AudioEye Inc,NASDAQ,Stock,2013-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AEZS,Aeterna Zentaris Inc,NASDAQ,Stock,2000-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFAC,Arena Fortify Acquisition Corp - Class A,NASDAQ,Stock,2022-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFACU,Arena Fortify Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFACW,Arena Fortify Acquisition Corp - Warrants (10/11/2026),NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFAQ,AF Acquisition Corp - Class A,NASDAQ,Stock,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFAQU,AF Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFAQW,AF Acquisition Corp - Warrants (16/03/2026),NASDAQ,Stock,2021-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFB,AllianceBernstein National Municipal Income Fund Inc,NYSE,ETF,2002-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFBI,Affinity Bancshares Inc,NASDAQ,Stock,2021-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFCG,AFC Gamma Inc,NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFG,American Financial Group Inc,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFGB,American Financial Group Inc,NYSE,Stock,2019-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFGC,American Financial Group Inc,NYSE,Stock,2019-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFGD,American Financial Group Inc,NYSE,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFGE,American Financial Group Inc,NYSE,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFI,Armstrong Flooring Inc,NYSE,Stock,2016-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFIB,Acutus Medical Inc,NASDAQ,Stock,2020-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFIF,Anfield Universal Fixed Income ETF,BATS,ETF,2018-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFK,VANECK AFRICA INDEX ETF ,NYSE ARCA,ETF,2008-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFL,Aflac Inc,NYSE,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFLG,First Trust Active Factor Large Cap ETF,NYSE ARCA,ETF,2019-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFMC,FIRST TRUST ACTIVE FACTOR MID CAP ETF ,NYSE ARCA,ETF,2019-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFMD,Affimed N.V.,NASDAQ,Stock,2014-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFRM,Affirm Holdings Inc - Class A,NASDAQ,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFSM,FIRST TRUST ACTIVE FACTOR SMALL CAP ETF ,NYSE ARCA,ETF,2019-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFT,Apollo Senior Floating Rate Fund Inc,NYSE,ETF,2011-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFTR,AfterNext HealthTech Acquisition Corp - Class A,NYSE,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFTR-U,AfterNext HealthTech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFTR-WS,AfterNext HealthTech Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFTY,PACER CSOP FTSE CHINA A50 ETF ,NYSE ARCA,ETF,2015-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AFYA,Afya Ltd - Class A,NASDAQ,Stock,2019-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AG,First Majestic Silver Corporation,NYSE,Stock,2006-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGAC,African Gold Acquisition Corp - Class A,NYSE,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGAC-U,African Gold Acquisition Corp - Units (1 Ord Class A & 3/4 War),NYSE,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGAC-WS,African Gold Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGBA,Agba Acquisition Ltd,NASDAQ,Stock,2019-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGBAR,Agba Acquisition Ltd,NASDAQ,Stock,2019-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGBAU,Agba Acquisition Ltd - Unit (1 Ordinary share 1 Wrt & 1 Rts ),NASDAQ,Stock,2019-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGBAW,Agba Acquisition Ltd - Warrants (10/05/2024),NASDAQ,Stock,2019-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGCB,Altimeter Growth Corp 2 - Class A,NYSE,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGCO,AGCO Corp,NYSE,Stock,1992-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGD,Aberdeen Global Dynamic Dividend Fund,NYSE,ETF,2006-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGE,AgeX Therapeutics Inc,NYSE MKT,Stock,2018-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGEN,Agenus Inc,NASDAQ,Stock,2000-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGFS,AgroFresh Solutions Inc,NASDAQ,Stock,2015-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGFY,Agrify Corp,NASDAQ,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGG,iShares Core U.S. Aggregate Bond ETF,NYSE ARCA,ETF,2003-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGGH,Simplify Aggregate Bond PLUS Credit Hedge ETF,NYSE ARCA,ETF,2022-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGGR,Agile Growth Corp - Class A,NASDAQ,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGGRU,Agile Growth Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGGRW,Agile Growth Corp - Warrants (09/03/2026),NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGGY,WisdomTree Yield Enhanced U.S. Aggregate Bond Fund,NYSE ARCA,ETF,2015-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGI,Alamos Gold Inc - Class A,NYSE,Stock,2009-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGIL,AgileThought Inc - Class A,NASDAQ,Stock,2020-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGILW,AgileThought Inc - Warrants(20/08/2026),NASDAQ,Stock,2020-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGIO,Agios Pharmaceuticals Inc,NASDAQ,Stock,2013-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGL,Agilon Health Inc,NYSE,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGLE,Aeglea BioTherapeutics Inc,NASDAQ,Stock,2016-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGM,Federal Agricultural Mortgage Corp - Class C,NYSE,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGM-A,Federal Agricultural Mortgage Corp - Class A,NYSE,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGM-P-C,Federal Agricultural Mortgage Corporation Preferred Series C Fixed to Fltg,NYSE,Stock,2014-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGM-P-D,Federal Agricultural Mortgage Corporation 5700 NonCumulative Preferred Stock Series D,NYSE,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGM-P-E,,NYSE,Stock,2020-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGM-P-F,Federal Agricultural Mortgage Corp,NYSE,Stock,2020-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGM-P-G,Federal Agricultural Mortgage Corp,NYSE,Stock,2021-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGMH,AGM Group Holdings Inc - Class A,NASDAQ,Stock,2018-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGNC,AGNC Investment Corp,NASDAQ,Stock,2008-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGNCM,AGNC Investment Corp FXDFR PRF PERPETUAL USD 25 Ser D 11000th int,NASDAQ,Stock,2019-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGNCN,AGNC Investment Corp Depositary Shares Each Representing a 11000th Interest in a Share of 700 Series C FixedToFloating Rate Cumulative Redeemable Preferre,NASDAQ,Stock,2017-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGNCO,AGNC Investment Corp,NASDAQ,Stock,2019-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGNCP,AGNC Investment Corp,NASDAQ,Stock,2020-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGND,WISDOMTREE NEGATIVE DURATION U.S. AGGREGATE BOND FUND NA,NASDAQ,ETF,2013-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGNG,Global X Aging Population ETF,NASDAQ,ETF,2016-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGO,Assured Guaranty Ltd,NYSE,Stock,2004-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGOV,ETC Gavekal Asia Pacific Government Bond ETF,NYSE ARCA,ETF,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGOX,Adaptive Alpha Opportunities ETF,NYSE ARCA,ETF,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGQ,ProShares Ultra Silver,NYSE ARCA,ETF,2008-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGR,Avangrid Inc,NYSE,Stock,2015-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGRI,AgriFORCE Growing Systems Ltd,NASDAQ,ETF,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGRIW,AgriFORCE Growing Systems Ltd - Warrants (14/06/2026),NASDAQ,Stock,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGRO,Adecoagro S.A.,NYSE,Stock,2011-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGRX,Agile Therapeutics Inc,NASDAQ,Stock,2014-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGS,PlayAGS Inc,NYSE,Stock,2018-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGT,ISHARES MSCI ARGENTINA AND GLOBAL EXPOSURE ETF ,BATS,ETF,2017-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGTC,Applied Genetic Technologies Corp,NASDAQ,Stock,2014-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGTI,Agiliti Inc,NYSE,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGX,Argan Inc,NYSE,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGYS,Agilysys Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGZ,iShares Agency Bond ETF,NYSE ARCA,ETF,2008-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AGZD,WisdomTree Interest Rate Hedged U.S. Aggregate Bond Fund,NASDAQ,ETF,2013-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHCO,AdaptHealth Corp,NASDAQ,Stock,2018-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHG,Akso Health Group,NASDAQ,Stock,2006-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHH,Armada Hoffler Properties Inc,NYSE,Stock,2013-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHH-P-A,Armada Hoffler Properties Inc,NYSE,Stock,2019-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHHX,Adaptive High Income ETF,NYSE ARCA,ETF,2021-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHI,Advanced Human Imaging Ltd,NASDAQ,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHL-P-C,Aspen Insurance Holdings Limited 595 FixedtoFloating Rate Perpetual NonCumulative Preference Shares,NYSE,Stock,2013-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHL-P-D,Aspen Insurance Holdings Limited 5625 Perpetual NonCumulative Preference Shares,NYSE,Stock,2016-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHL-P-E,Aspen Insurance Hldgs,NYSE,Stock,2019-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHPA,Avista Public Acquisition Corp II - Class A,NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHPAU,Avista Public Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHPAW,Avista Public Acquisition Corp II - Warrants (06/04/2026),NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHPI,Allied Healthcare Product Inc,NASDAQ,Stock,1992-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHRN,Ahren Acquisition Corp - Class A,NASDAQ,Stock,2022-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHRNU,Ahren Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHRNW,Ahren Acquisition Corp - Warrants (09/12/2026),NASDAQ,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHT,Ashford Hospitality Trust Inc,NYSE,Stock,2003-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHT-P-D,Ashford Hospitality Trust Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHT-P-F,Ashford Hospitality Trust Inc,NYSE,Stock,2016-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHT-P-G,Ashford Hospitality Trust Inc,NYSE,Stock,2016-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHT-P-H,Ashford Hospitality Trust Inc,NYSE,Stock,2017-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHT-P-I,Ashford Hospitality Trust Inc,NYSE,Stock,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AHYB,American Century Select High Yield ETF,NYSE ARCA,ETF,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AI,C3.ai Inc - Class A,NYSE,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIA,iShares Asia 50 ETF,NASDAQ,ETF,2007-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIB,AIB Acquisition Corp - Class A,NASDAQ,Stock,2022-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIBBR,AIB Acquisition Corp,NASDAQ,Stock,2022-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIBBU,AIB Acquisition Corp - Units (1 Ord Share Class A & 1 Right),NASDAQ,Stock,2022-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIC,Arlington Asset Investment Corp,NYSE,Stock,2015-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIEQ,AI Powered Equity ETF,NYSE ARCA,ETF,2017-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIF,Apollo Tactical Income Fund Inc,NYSE,ETF,2013-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIG,American International Group Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIG-P-A,American International Group Inc,NYSE,Stock,2019-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIH,Aesthetic Medical International Holdings Group Ltd,NASDAQ,Stock,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIHS,Senmiao Technology Ltd,NASDAQ,Stock,2018-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIIQ,AI POWERED INTERNATIONAL EQUITY ETF ,NYSE ARCA,ETF,2018-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIKI,AIkido Pharma Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AILG,ALPHA INTELLIGENT - LARGE CAP GROWTH ETF ,NYSE ARCA,ETF,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AILV,ALPHA INTELLIGENT - LARGE CAP VALUE ETF ,NYSE ARCA,ETF,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIM,AIM ImmunoTech Inc,NYSE MKT,Stock,1996-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIMC,Altra Industrial Motion Corp,NASDAQ,Stock,2006-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIN,Albany International Corp - Class A,NYSE,Stock,1987-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AINC,Ashford Inc,NYSE MKT,Stock,2014-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AINV,Apollo Investment Corporation,NASDAQ,Stock,2004-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIO,Virtus AllianzGI Artificial Intelligence & Technology Opportunities Fd,NYSE,Stock,2019-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIP,Arteris Inc,NASDAQ,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIQ,Global X Artificial Intelligence & Technology ETF,NASDAQ,ETF,2018-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIR,AAR Corp,NYSE,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIRC,Apartment Income REIT Corp - Class A,NYSE,Stock,2020-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIRG,Airgain Inc,NASDAQ,Stock,2016-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIRI,Air Industries Group,NYSE MKT,Stock,2000-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIRR,First Trust RBA American Industrial Renaissance ETF,NASDAQ,ETF,2014-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIRS,Airsculpt Technologies Inc,NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIRT,Air T Inc,NASDAQ,Stock,1984-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIRTP,Air T Inc,NASDAQ,Stock,2019-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIRTW,Air T Inc - Warrants (30/08/2021),NASDAQ,Stock,2019-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIT,Applied Industrial Technologies Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIV,Apartment Investment & Management Co. - Class A,NYSE,Stock,1994-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIVI,WisdomTree International AI Enhanced Value Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIVL,WisdomTree U.S. AI Enhanced Value Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIZ,Assurant Inc,NYSE,Stock,2004-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AIZN,Assurant Inc,NYSE,Stock,2020-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AJAX-WS,Ajax I - Warrants (27/10/2025),NYSE,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AJG,Arthur J. Gallagher & Company,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AJRD,Aerojet Rocketdyne Holdings Inc,NYSE,Stock,1981-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AJX,Great Ajax Corp,NYSE,Stock,2015-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AJXA,Great Ajax Corp,NYSE,Stock,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKA,a.k.a. Brands Holding Corp,NYSE,Stock,2021-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKAM,Akamai Technologies Inc,NASDAQ,Stock,1999-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKAN,Akanda Corp,NASDAQ,Stock,2022-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKBA,Akebia Therapeutics Inc,NASDAQ,Stock,2014-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKIC,Sports Ventures Acquisition Corp - Class A,NASDAQ,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKICU,Sports Ventures Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKICW,Sports Ventures Acquisition Corp - Warrants (30/11/2027),NASDAQ,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKO-A,Embotelladora Andina S.A.,NYSE,Stock,1994-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKO-B,Embotelladora Andina S.A.,NYSE,Stock,1997-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKR,Acadia Realty Trust,NYSE,Stock,1993-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKRO,Akero Therapeutics Inc,NASDAQ,Stock,2019-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKTS,Akoustis Technologies Inc,NASDAQ,Stock,2015-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKTX,Akari Therapeutics Plc,NASDAQ,Stock,2015-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKU,Akumin Inc,NASDAQ,Stock,2018-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKUS,Akouos Inc,NASDAQ,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AKYA,Akoya Biosciences Inc,NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AL,Air Lease Corp - Class A,NYSE,Stock,2011-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AL-P-A,Air Lease Corporation 6150 FixedtoFloating Rate NonCumulative Perpetual Preferred Stock Series A,NYSE,Stock,2019-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALAC,Alberton Acquisition Corp,NASDAQ,Stock,2018-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALACR,Alberton Acquisition Corp,NASDAQ,Stock,2018-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALACU,Alberton Acquisition Corp - Units (1 Ord 1 Warr & 1Rts),NASDAQ,Stock,2018-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALACW,Alberton Acquisition Corp - Warrants (26/04/2025),NASDAQ,Stock,2018-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALB,Albemarle Corp,NYSE,Stock,1994-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALBO,Albireo Pharma Inc,NASDAQ,Stock,2007-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALC,Alcon Inc,NYSE,Stock,2019-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALCC,AltC Acquisition Corp - Class A,NYSE,Stock,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALCO,Alico Inc,NASDAQ,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALDX,Aldeyra Therapeutics Inc,NASDAQ,Stock,2014-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALE,Allete Inc,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALEC,Alector Inc,NASDAQ,Stock,2019-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALEX,Alexander & Baldwin Inc,NYSE,Stock,2012-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALF,ALFI Inc,NASDAQ,Stock,2021-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALFA,ESS AlphaClone Alternative Alpha ETF,BATS,ETF,2012-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALFIW,ALFI Inc - Warrants (01/03/2025),NASDAQ,Stock,2021-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALG,Alamo Group Inc,NYSE,Stock,1993-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALGM,Allegro Microsystems Inc,NASDAQ,Stock,2020-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALGN,Align Technology Inc,NASDAQ,Stock,2001-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALGS,Aligos Therapeutics Inc,NASDAQ,Stock,2020-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALGT,Allegiant Travel,NASDAQ,Stock,2006-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALHC,Alignment Healthcare Inc,NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALIM,Alimera Sciences Inc,NASDAQ,Stock,2010-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALIN-P-A,Altera Infrastructure L.P,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALIN-P-B,Altera Infrastructure L.P,NYSE,Stock,2015-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALIN-P-E,Altera Infrastructure L.P,NYSE,Stock,2018-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALIT,Alight Inc - Class A,NYSE,Stock,2020-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALIT-WS,Alight Inc Wt,NYSE,Stock,2021-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALJJ,Alj Regional Holdings Inc,NASDAQ,Stock,1996-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALK,Alaska Air Group Inc,NYSE,Stock,1983-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALKS,Alkermes plc,NASDAQ,Stock,1991-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALKT,Alkami Technology Inc,NASDAQ,Stock,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALL,Allstate Corp (The),NYSE,Stock,1993-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALL-P-A,Allstate Corporation The Dep Shs Repstg 11000th Perp Pfd Ser A,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALL-P-B,Allstate Corp (The),NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALL-P-G,Allstate Corp (The),NYSE,Stock,2018-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALL-P-H,Allstate Corp (The),NYSE,Stock,2019-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALL-P-I,Allstate Corp (The),NYSE,Stock,2019-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALLE,Allegion plc,NYSE,Stock,2013-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALLG,Allego NV,NYSE,Stock,2022-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALLK,Allakos Inc,NASDAQ,Stock,2018-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALLO,Allogene Therapeutics Inc,NASDAQ,Stock,2018-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALLR,Allarity Therapeutics Inc,NASDAQ,Stock,2021-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALLT,Allot Ltd,NASDAQ,Stock,2006-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALLY,Ally Financial Inc,NYSE,Stock,2014-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALNA,Allena Pharmaceuticals Inc,NASDAQ,Stock,2017-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALNY,Alnylam Pharmaceuticals Inc,NASDAQ,Stock,2004-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALOR,ALSP Orchid Acquisition Corp I - Class A,NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALORU,ALSP Orchid Acquisition Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALORW,ALSP Orchid Acquisition Corp I - Warrants (30/11/2028),NASDAQ,Stock,2022-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALOT,AstroNova Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALP-P-Q,Alabama Power Company 500 Class A Preferred Stock Cumulative Par Value 1 Per Share Stated Capital 25 Per Share,NYSE,Stock,2017-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALPA,Alpha Healthcare Acquisition Corp III - Class A,NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALPAU,Alpha Healthcare Acquisition Corp III - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALPAW,Alpha Healthcare Acquisition Corp III - Warrants (01/04/2026),NASDAQ,Stock,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALPN,Alpine Immune Sciences Inc,NASDAQ,Stock,2015-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALPP,Alpine 4 Holdings Inc - Class A,NASDAQ,Stock,2017-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALR,AlerisLife Inc,NASDAQ,Stock,2001-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALRM,Alarm.com Holdings Inc,NASDAQ,Stock,2015-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALRN,Aileron Therapeutics Inc,NASDAQ,Stock,1986-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALRS,Alerus Financial Corp,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALSA,Alpha Star Acquisition Corp,NASDAQ,Stock,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALSAR,Alpha Star Acquisition Corp,NASDAQ,Stock,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALSAU,Alpha Star Acquisition Corp - Units (1 1 Right 1 War),NASDAQ,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALSAW,Alpha Star Acquisition Corp - Warrants (13/12/2026),NASDAQ,Stock,2022-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALSN,Allison Transmission Holdings Inc,NYSE,Stock,2012-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALT,Altimmune Inc,NASDAQ,Stock,2005-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTG,Alta Equipment Group Inc - Class A,NYSE,Stock,2019-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTG-P-A,Alta Equipment Group Inc,NYSE,Stock,2020-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTL,Pacer Lunt Large Cap Alternator ETF,NYSE ARCA,ETF,2020-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTO,Alto Ingredients Inc,NASDAQ,Stock,2005-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTR,Altair Engineering Inc - Class A,NASDAQ,Stock,2017-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTS,PROSHARES MORNINGSTAR ALTERNATIVES SOLUTION ETF ,BATS,ETF,2014-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTU,Altitude Acquisition Corp - Class A,NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTUU,Altitude Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTUW,Altitude Acquisition Corp - Warrants (30/11/2027),NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALTY,Global X Alternative Income ETF,NASDAQ,ETF,2015-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALV,Autoliv Inc,NYSE,Stock,1997-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALVR,AlloVir Inc,NASDAQ,Stock,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALX,Alexander`s Inc,NYSE,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALXO,Alx Oncology Holdings Inc,NASDAQ,Stock,2020-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALYA,Alithya Group Inc - Class A - Class A (Sub Voting),NASDAQ,Stock,2018-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ALZN,Alzamend Neuro Inc,NASDAQ,Stock,2021-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AM,Antero Midstream Corp,NYSE,Stock,2014-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMAL,Amalgamated Financial Corp,NASDAQ,Stock,2018-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMAM,Ambrx Biopharma Inc,NYSE,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMAO,American Acquisition Opportunity Inc - Class A,NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMAOU,American Acquisition Opportunity Inc - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMAOW,American Acquisition Opportunity Inc - Warrants (17/03/2026),NASDAQ,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMAT,Applied Materials Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMAX,RH Hedged Multi-Asset Income ETF,NYSE ARCA,ETF,2021-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMBA,Ambarella Inc,NASDAQ,Stock,2012-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMBC,AMBAC Financial Group Inc,NYSE,Stock,2013-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMBC-WS,AMBAC Financial Group Inc - Warrants (30/04/2023),NYSE,Stock,2013-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMBO,Ambow Education Holding Ltd,NYSE MKT,Stock,2018-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMBP,Ardagh Metal Packaging S.A.,NYSE,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMBP-WS,Ardagh Metal Packaging S.A. Warrants each exercisable for one Share at an exercise price of 11.50 per share,NYSE,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMC,AMC Entertainment Holdings Inc - Class A,NYSE,Stock,2013-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMCI,AMCI Acquisition Corp II - Class A,NASDAQ,Stock,2021-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMCIU,AMCI Acquisition Corp II - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2018-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMCIW,AMCI Acquisition Corp II - Warrants (24/03/2026),NASDAQ,Stock,2019-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMCR,Amcor Plc,NYSE,Stock,2019-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMCX,AMC Networks Inc - Class A,NASDAQ,Stock,2011-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMD,Advanced Micro Devices Inc,NASDAQ,Stock,1983-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AME,Ametek Inc,NYSE,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMED,Amedisys Inc,NASDAQ,Stock,1994-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMEH,Apollo Medical Holdings Inc,NASDAQ,Stock,2000-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMER,EMLES MADE IN AMERICA ETF ,BATS,ETF,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMG,Affiliated Managers Group Inc,NYSE,Stock,1997-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMGN,AMGEN Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMH,American Homes 4 Rent - Class A,NYSE,Stock,2013-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMH-P-F,American Homes 4 Rent 5875 Series F Cumulative Redeemable Perpetual Preferred Shares,NYSE,Stock,2017-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMH-P-G,American Homes 4 Rent Series G cumulative redeemable perpetual preferred shares of beneficial interest,NYSE,Stock,2017-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMH-P-H,American Homes 4 Rent Series H cumulative redeemable perpetual Preferred Shares of Beneficial Interest,NYSE,Stock,2018-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMJ,JPMorgan Chase & Company,NYSE ARCA,ETF,2009-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMK,Assetmark Financial Holdings Inc,NYSE,Stock,2019-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMKR,AMKOR Technology Inc,NASDAQ,Stock,1998-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMLP,Alerian MLP ETF,NYSE ARCA,ETF,2010-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMLX,Amylyx Pharmaceuticals Inc,NASDAQ,Stock,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMN,AMN Healthcare Services Inc,NYSE,Stock,2001-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMNA,ETRACS Alerian Midstream Energy Index ETN,NYSE ARCA,ETF,2020-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMNB,American National Bankshares Inc,NASDAQ,Stock,1999-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMND,UBS AG London Branch,NYSE ARCA,Stock,2020-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMOM,QRAFT AI Enhanced U.S. Large Cap Momentum ETF,NYSE ARCA,ETF,2019-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMOT,Allied Motion Technologies Inc,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMOV,America Movil S.A.B.DE C.V.,NYSE,Stock,2001-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMP,Ameriprise Financial Inc,NYSE,Stock,2005-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPE,Ampio Pharmaceuticals Inc,NYSE MKT,Stock,2010-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPG,Amplitech Group Inc,NASDAQ,Stock,1995-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPGW,Amplitech Group Inc - Warrants (01/01/2026),NASDAQ,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPH,Amphastar Pharmaceuticals Inc,NASDAQ,Stock,2014-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPI,Advanced Merger Partners Inc - Class A,NYSE,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPI-U,Advanced Merger Partners Inc - Units (1 Ord Share Class A & 1/6 War),NYSE,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPI-WS,Advanced Merger Partners Inc - Warrants (01/01/9999),NYSE,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPL,Amplitude Inc - Class A,NASDAQ,Stock,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPS,Altus Power Inc - Class A,NYSE,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPS-WS,Altus Power Inc - Warrants (01/01/9999),NYSE,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMPY,Amplify Energy Corp,NYSE,Stock,2012-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMR,Alpha Metallurgical Resources Inc,NYSE,Stock,2016-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMRC,Ameresco Inc - Class A,NYSE,Stock,2010-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMRK,A-Mark Precious Metals Inc,NASDAQ,Stock,2014-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMRN,Amarin Corp,NASDAQ,Stock,1993-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMRS,Amyris Inc,NASDAQ,Stock,2010-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMRX,Amneal Pharmaceuticals Inc - Class A,NYSE,Stock,2009-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMS,American Shared Hospital Services,NYSE MKT,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMSC,American Superconductor Corp,NASDAQ,Stock,1991-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMSF,Amerisafe Inc,NASDAQ,Stock,2005-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMST,Amesite Inc,NASDAQ,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMSWA,American Software Inc - Class A,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMT,American Tower Corp,NYSE,Stock,1998-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMTB,Amerant Bancorp Inc - Class A,NASDAQ,Stock,2018-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMTD,AMTD IDEA Group,NYSE,Stock,2019-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMTI,Applied Molecular Transport Inc,NASDAQ,Stock,2020-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMTR,UBS AG London Branch,NYSE ARCA,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMTX,Aemetis Inc,NASDAQ,Stock,2014-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMUB,AMUB,NYSE ARCA,ETF,2015-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMWD,American Woodmark Corp,NASDAQ,Stock,1986-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMWL,American Well Corporation - Class A,NYSE,Stock,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMX,America Movil S.A.B.DE C.V.,NYSE,Stock,2001-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMYT,Amryt Pharma Plc,NASDAQ,Stock,2019-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMZA,InfraCap MLP ETF,NYSE ARCA,ETF,2014-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AMZN,Amazon.com Inc,NASDAQ,Stock,1997-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AN,Autonation Inc,NYSE,Stock,1992-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANAB,AnaptysBio Inc,NASDAQ,Stock,2017-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANAC,Arctos NorthStar Acquisition Corp - Class A,NYSE,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANAC-U,Arctos NorthStar Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANAC-WS,Arctos NorthStar Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANAT,American National Group Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANDE,Andersons Inc,NASDAQ,Stock,1996-02-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANEB,Anebulo Pharmaceuticals Inc,NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANET,Arista Networks Inc,NYSE,Stock,2014-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANEW,PROSHARES MSCI TRANSFORMATIONAL CHANGES ETF ,NYSE ARCA,ETF,2020-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANF,Abercrombie & Fitch Co. - Class A,NYSE,Stock,1996-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANGH,Anghami Inc,NASDAQ,Stock,2022-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANGHW,Anghami Inc - Warrants (28/01/2027),NASDAQ,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANGI,Angi Inc - Class A,NASDAQ,Stock,2011-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANGL,VanEck Fallen Angel High Yield Bond ETF,NASDAQ,ETF,2012-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANGN,Angion Biomedica Corp,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANGO,Angiodynamic Inc,NASDAQ,Stock,2004-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANIK,Anika Therapeutics Inc,NASDAQ,Stock,1993-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANIP,ANI Pharmaceuticals Inc,NASDAQ,Stock,2000-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANIX,Anixa Biosciences Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANNX,Annexon Inc,NASDAQ,Stock,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANPC,AnPac Bio-Medical Science Co Ltd,NASDAQ,Stock,2020-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANSS,Ansys Inc,NASDAQ,Stock,1996-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANTE,AirNet Technology Inc,NASDAQ,Stock,2007-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANTM,Anthem Inc,NYSE,Stock,2001-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANVS,Annovis Bio Inc,NYSE,Stock,2020-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANY,Sphere 3D Corp,NASDAQ,Stock,2008-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANZU,Anzu Special Acquisition Corp I - Class A,NASDAQ,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANZUU,Anzu Special Acquisition Corp I - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ANZUW,Anzu Special Acquisition Corp I - Warrants (27/01/2026),NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOA,iShares Core Aggressive Allocation ETF,NYSE ARCA,ETF,2008-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOD,Aberdeen Total Dynamic Dividend Fund,NYSE,ETF,2007-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOGO,Arogo Capital Acquisition Corp - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOGOW,Arogo Capital Acquisition Corp - Warrants (23/12/2026),NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOK,iShares Core Conservative Allocation ETF,NYSE ARCA,ETF,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOM,iShares Core Moderate Allocation ETF,NYSE ARCA,ETF,2008-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOMR,Angel Oak Mortgage Inc,NYSE,Stock,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AON,Aon plc. - Class A,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOR,iShares Core Growth Allocation ETF,NYSE ARCA,ETF,2008-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AORT,Artivion Inc,NYSE,Stock,1993-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOS,A.O. Smith Corp,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOSL,Alpha & Omega Semiconductor Ltd,NASDAQ,Stock,2010-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOUT,American Outdoor Brands Inc,NASDAQ,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AOUTV,American Outdoor Brands Inc,NASDAQ,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AP,Ampco-Pittsburgh Corp,NYSE,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AP-WS,Ampco-Pittsburgh Corp - Warrants (01/08/2025),NYSE MKT,Stock,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APA,APA Corporation,NASDAQ,Stock,1979-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APAC,StoneBridge Acquisition Corp - Class A,NASDAQ,Stock,2021-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APACU,StoneBridge Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APACW,StoneBridge Acquisition Corp - Warrants (11/04/2026),NASDAQ,Stock,2021-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APAM,Artisan Partners Asset Management Inc - Class A,NYSE,Stock,2013-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APCA,AP Acquisition Corp - Class A,NYSE,Stock,2022-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APCA-U,AP Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APCA-WS,AP Acquisition Corp - Warrants (07/12/2026),NYSE,Stock,2022-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APCX,AppTech Payments Corp,NASDAQ,Stock,2009-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APCXW,AppTech Payments Corp - Warrants (17/12/2026),NASDAQ,Stock,2022-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APD,Air Products & Chemicals Inc,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APDN,Applied Dna Sciences Inc,NASDAQ,Stock,2003-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APEI,American Public Education Inc,NASDAQ,Stock,2007-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APEN,Apollo Endosurgery Inc,NASDAQ,Stock,2005-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APG,APi Group Corporation,NYSE,Stock,2020-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APGB,Apollo Strategic Growth Capital II - Class A,NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APGB-U,Apollo Strategic Growth Capital II - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APGB-WS,Apollo Strategic Growth Capital II - Warrants (12/02/2028),NYSE,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APH,Amphenol Corp - Class A,NYSE,Stock,1991-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "API,Agora Inc,NASDAQ,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APLE,Apple Hospitality REIT Inc,NYSE,Stock,2015-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APLS,Apellis Pharmaceuticals Inc,NASDAQ,Stock,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APLT,Applied Therapeutics Inc,NASDAQ,Stock,2019-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APM,Aptorum Group Ltd - Class A,NASDAQ,Stock,2018-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APMI,AxonPrime Infrastructure Acquisition Corp - Class A,NASDAQ,Stock,2021-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APMIU,AxonPrime Infrastructure Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APMIW,AxonPrime Infrastructure Acquisition Corp - Warrants (31/05/2028),NASDAQ,Stock,2021-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APN,Apeiron Capital Investment Corp - Class A,NYSE,Stock,2021-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APN-U,Apeiron Capital Investment Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APN-WS,Apeiron Capital Investment Corp - Warrants(02/04/2026),NYSE,Stock,2021-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APO,Apollo Global Management Inc - Class A (New),NYSE,Stock,2011-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APOG,Apogee Enterprises Inc,NASDAQ,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APOP,,NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APP,Applovin Corp - Class A,NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APPF,Appfolio Inc - Class A,NASDAQ,Stock,2015-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APPH,AppHarvest Inc,NASDAQ,Stock,2020-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APPHW,AppHarvest Inc - Warrants (30/06/2027),NASDAQ,Stock,2020-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APPN,Appian Corp - Class A,NASDAQ,Stock,2017-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APPS,Digital Turbine Inc,NASDAQ,Stock,2006-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APR,Apria Inc,NASDAQ,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APRE,Aprea Therapeutics Inc,NASDAQ,Stock,2019-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APRN,Blue Apron Holdings Inc - Class A,NYSE,Stock,2017-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APRZ,TrueShares Structured Outcome (April) ETF,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APSG,Apollo Strategic Growth Capital - Class A,NYSE,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APSG-U,Apollo Strategic Growth Capital - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APSG-WS,Apollo Strategic Growth Capital - Warrants (29/10/2027),NYSE,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APT,Alpha Pro Tech Ltd,NYSE MKT,Stock,1999-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APTM,Alpha Partners Technology Merger Corp - Class A,NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APTMU,Alpha Partners Technology Merger Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APTMW,Alpha Partners Technology Merger Corp - Warrants (31/03/2028),NASDAQ,Stock,2021-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APTO,Aptose Biosciences Inc,NASDAQ,Stock,2014-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APTS,Preferred Apartment Communities Inc - Class A,NYSE,Stock,2011-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APTV,Aptiv PLC,NYSE,Stock,2011-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APTV-P-A,,NYSE,Stock,2020-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APTX,Aptinyx Inc,NASDAQ,Stock,2018-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APVO,Aptevo Therapeutics Inc,NASDAQ,Stock,2016-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APWC,Asia Pacific Wire & Cable,NASDAQ,Stock,2003-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APXH,APEX HealthCare ETF,BATS,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APXI,APx Acquisition Corp I - Class A,NASDAQ,Stock,2022-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APXIU,APx Acquisition Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APXIW,APx Acquisition Corp I - Warrants (30/11/2026),NASDAQ,Stock,2022-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "APYX,Apyx Medical Corp,NASDAQ,Stock,2019-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQB,AquaBounty Technologies Inc,NASDAQ,Stock,2017-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQGX,AI Quality Growth ETF,NYSE ARCA,ETF,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQMS,Aqua Metals Inc,NASDAQ,Stock,2015-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQN,Algonquin Power & Utilities Corp,NYSE,Stock,2009-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQNA,Algonquin Power & Utilities Corp,NYSE,Stock,2018-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQNB,Algonquin Power & Utilities Corp,NYSE,Stock,2019-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQNU,Algonquin Power & Utilities Corp,NYSE,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQST,Aquestive Therapeutics Inc,NASDAQ,Stock,2018-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQUA,Evoqua Water Technologies Corp,NYSE,Stock,2017-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AQWA,GLOBAL X CLEAN WATER ETF ,NASDAQ,ETF,2021-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AR,Antero Resources Corp,NYSE,Stock,2013-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARAV,Aravive Inc,NASDAQ,Stock,2014-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARAY,Accuray Inc,NASDAQ,Stock,2007-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARB,AltShares Merger Arbitrage ETF,NYSE ARCA,ETF,2020-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARBE,Arbe Robotics Ltd,NASDAQ,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARBEW,Arbe Robotics Ltd - Warrants (07/10/2026),NASDAQ,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARBG,Aequi Acquisition Corp - Class A,NASDAQ,Stock,2021-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARBGU,Aequi Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARBGW,Aequi Acquisition Corp - Warrants(27/10/2025),NASDAQ,Stock,2021-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARBK,Argo Blockchain Plc,NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARBKL,Argo Blockchain Plc,NASDAQ,Stock,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARC,ARC Document Solutions Inc,NYSE,Stock,2005-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCB,ArcBest Corp,NASDAQ,Stock,1992-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCC,Ares Capital Corp,NASDAQ,Stock,2004-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCE,Arco Platform Ltd - Class A,NASDAQ,Stock,2018-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCH,Arch Resources Inc - Class A,NYSE,Stock,2016-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCK,Arbor Rapha Capital Bioholdings Corp I - Class A,NASDAQ,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCKU,Arbor Rapha Capital Bioholdings Corp I - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCKW,Arbor Rapha Capital Bioholdings Corp I - Warrants (31/10/2028),NASDAQ,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCM,Arrow Reserve Capital Management ETF,BATS,ETF,2017-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCO,Arcos Dorados Holdings Inc - Class A,NYSE,Stock,2011-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARCT,Arcturus Therapeutics Holdings Inc,NASDAQ,Stock,2013-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARDC,Ares Dynamic Credit Allocation Fund Inc,NYSE,ETF,2012-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARDS,Aridis Pharmaceuticals Inc,NASDAQ,Stock,2018-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARDX,Ardelyx Inc,NASDAQ,Stock,2014-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARE,Alexandria Real Estate Equities Inc,NYSE,Stock,1997-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AREB,American Rebel Holdings Inc,NASDAQ,Stock,2018-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AREBW,American Rebel Holdings Inc - Warrants (21/01/2027),NASDAQ,Stock,2022-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AREC,American Resources Corporation - Class A,NASDAQ,Stock,2017-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AREN,Arena Group Holdings Inc (The),NYSE MKT,Stock,2007-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARES,Ares Management Corp - Class A,NYSE,Stock,2014-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARGD,Argo Group US Inc,NYSE,Stock,2018-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARGO,Argo Group International Holdings Ltd,NYSE,Stock,2007-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARGO-P-A,Argo Group International Holdings Ltd,NYSE,Stock,2020-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARGT,GLOBAL X MSCI ARGENTINA ETF ,NYSE ARCA,ETF,2011-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARGU,Argus Capital Corp - Class A,NASDAQ,Stock,2021-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARGUU,Argus Capital Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARGUW,Argus Capital Corp - Warrants (31/08/2028),NASDAQ,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARGX,Argen X SE,NASDAQ,Stock,2017-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARHS,Arhaus Inc Class A,NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARI,Apollo Commercial Real Estate Finance Inc,NYSE,Stock,2009-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARIS,Aris Water Solutions Inc - Class A,NYSE,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARIZ,Arisz Acquisition Corp,NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARIZR,Arisz Acquisition Corp,NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARIZU,Arisz Acquisition Corp - Units (1 Ord Share & 1Right & 1 War),NASDAQ,Stock,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARIZW,Arisz Acquisition Corp - Warrants (16/11/2026),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARKF,ARK Fintech Innovation ETF,NYSE ARCA,ETF,2019-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARKG,ARK Genomic Revolution ETF,BATS,ETF,2014-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARKK,ARK Innovation ETF,NYSE ARCA,ETF,2014-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARKO,ARKO Corp - Class A,NASDAQ,Stock,2017-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARKQ,ARK Autonomous Technology & Robotics ETF,BATS,ETF,2014-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARKR,Ark Restaurants Corp,NASDAQ,Stock,1985-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARKW,ARK Next Generation Internet ETF,NYSE ARCA,ETF,2014-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARKX,ARK Space Exploration & Innovation ETF,BATS,ETF,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARL,American Realty Investors Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARLO,Arlo Technologies Inc,NYSE,Stock,2018-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARLP,Alliance Resource Partners LP,NASDAQ,Stock,1999-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARMK,Aramark,NYSE,Stock,2013-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARMP,Armata Pharmaceuticals Inc,NYSE MKT,Stock,2011-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARMR,Armor US Equity Index ETF,NYSE ARCA,ETF,2020-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARNC,Arconic Corporation,NYSE,Stock,2020-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AROC,Archrock Inc,NYSE,Stock,2015-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AROW,Arrow Financial Corp,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARQQ,Arqit Quantum Inc,NASDAQ,Stock,2021-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARQQW,Arqit Quantum Inc - Warrants (02/11/2026),NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARQT,Arcutis Biotherapeutics Inc,NASDAQ,Stock,2020-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARR,ARMOUR Residential REIT Inc,NYSE,Stock,2007-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARR-P-B,ARMOUR Residential REIT Inc Preferred Series B,NYSE,Stock,2013-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARR-P-C,ARMOUR Residential REIT Inc,NYSE,Stock,2020-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARRW,Arrowroot Acquisition Corp - Class A,NASDAQ,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARRWU,Arrowroot Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARRWW,Arrowroot Acquisition Corp - Warrants (02/03/2026),NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARRY,Array Technologies Inc,NASDAQ,Stock,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTA,Artisan Acquisition Corp - Class A,NASDAQ,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTAU,Artisan Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTAW,Artisan Acquisition Corp - Warrants (09/04/2026),NASDAQ,Stock,2021-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTE,Artemis Strategic Investment Corp - Class A,NASDAQ,Stock,2021-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTEU,Artemis Strategic Investment Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTEW,Artemis Strategic Investment Corp - Warrants (30/09/2026),NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTL,Artelo Biosciences Inc,NASDAQ,Stock,2017-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTLW,Artelo Biosciences Inc - Warrants (18/06/2024),NASDAQ,Stock,2019-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTNA,Artesian Resources Corp - Class A,NASDAQ,Stock,1996-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARTW,Art`s-way Manufacturing Co. Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARVL,Arrival,NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARVN,Arvinas Inc,NASDAQ,Stock,2018-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARW,Arrow Electronics Inc,NYSE,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARWR,Arrowhead Pharmaceuticals Inc,NASDAQ,Stock,1997-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARYAW,Arya Sciences Acquisition Corp Warrants 10102025,NASDAQ,Stock,2018-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARYD,Arya Sciences Acquisition Corp IV - Class A,NASDAQ,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ARYE,ARYA Sciences Acquisition Corp V - Class A,NASDAQ,Stock,2021-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASA,ASA Gold and Precious Metals Ltd,NYSE,ETF,1978-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASAI,Sendas Distribuidora S.A.,NYSE,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASAI-W,Sendas Distribuidora S.A. American Depositary Share each representing one When Issued,NYSE,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASAN,Asana Inc - Class A,NYSE,Stock,2020-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASAQ,Atlantic Avenue Acquisition Corp - Class A,NYSE,Stock,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASAQ-U,Atlantic Avenue Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASAQ-WS,Atlantic Avenue Acquisition Corp - Warrants(01/01/9999),NYSE,Stock,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASAX,Astrea Acquisition Corp - Class A,NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASAXU,Astrea Acquisition Corp - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASAXW,Astrea Acquisition Corp - Warrants (28/01/2028),NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASB,Associated Banc-Corp,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASB-P-E,Associated Banc-Corp,NYSE,Stock,2018-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASB-P-F,Associated Banc-Corp,NYSE,Stock,2020-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASC,Ardmore Shipping Corp,NYSE,Stock,2013-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASCA,ASPAC I Acquisition Corp - Class A,NASDAQ,Stock,2022-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASCAR,ASPAC I Acquisition Corp,NASDAQ,Stock,2022-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASCAU,ASPAC I Acquisition Corp - Units (1 Ord Share Class A 3/4 War & 1 Rts),NASDAQ,Stock,2022-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASCAW,ASPAC I Acquisition Corp - Warrants (09/12/2026),NASDAQ,Stock,2022-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASEA,Global X FTSE Southeast Asia ETF,NYSE ARCA,ETF,2011-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASET,FlexShares Real Assets Allocation Index Fund,NASDAQ,ETF,2015-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASG,Liberty All-Star Growth Fund Inc,NYSE,ETF,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASGI,Aberdeen Standard Global Infrastructure Income Fund,NYSE,Stock,2020-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASGN,ASGN Inc,NYSE,Stock,1992-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASH,Ashland Global Holdings Inc,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASHR,Xtrackers Harvest CSI 300 China A-Shares ETF,NYSE ARCA,ETF,2013-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASHS,Xtrackers Harvest CSI 500 China A-Shares Small Cap ETF,NYSE ARCA,ETF,2014-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASHX,Xtrackers MSCI China A-Inclusion Equity ETF,NYSE ARCA,ETF,2015-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASIX,AdvanSix Inc,NYSE,Stock,2016-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASLE,AerSale Corp,NASDAQ,Stock,2019-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASLN,ASLAN Pharmaceuticals Ltd,NASDAQ,Stock,2018-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASM,Avino Silver & Gold Mines Ltd,NYSE MKT,Stock,2005-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASMB,Assembly Biosciences Inc,NASDAQ,Stock,2010-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASML,ASML Holding NV,NASDAQ,Stock,1995-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASND,Ascendis Pharma A/S,NASDAQ,Stock,2015-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASO,Academy Sports and Outdoors Inc,NASDAQ,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPA,Abri SPAC I Inc,NASDAQ,Stock,2021-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPAU,Abri SPAC I Inc - Units (1 Ord & 1 War),NASDAQ,Stock,2021-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPAW,Abri SPAC I Inc - Warrants (18/09/2026),NASDAQ,Stock,2021-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPC,Alpha Capital Acquisition Co - Class A,NASDAQ,Stock,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPCU,Alpha Capital Acquisition Co - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPCW,Alpha Capital Acquisition Co - Warrants (16/02/2026),NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPN,Aspen Aerogels Inc,NYSE,Stock,2014-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPS,Altisource Portfolio Solutions S.A.,NASDAQ,Stock,2009-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPU,Aspen Group Inc,NASDAQ,Stock,2012-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASPY,ASYMsharesASYMmetric S&P 500 ETF,NYSE ARCA,ETF,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASR,Grupo Aeroportuario Del Sureste S.A.,NYSE,Stock,2000-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASRT,Assertio Holdings Inc,NASDAQ,Stock,2003-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASRV,Ameriserv Financial Inc,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASRVP,AmeriServ Financial Inc AmeriServ Financial Trust I,NASDAQ,Stock,2021-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASTC,Astrotech Corp,NASDAQ,Stock,1995-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASTE,Astec Industries Inc,NASDAQ,Stock,1986-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASTL,Algoma Steel Group Inc,NASDAQ,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASTLW,Algoma Steel Group Inc - Warrants (19/10/2026),NASDAQ,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASTR,Astra Space Inc - Class A,NASDAQ,Stock,2020-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASTS,AST SpaceMobile Inc - Class A,NASDAQ,Stock,2019-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASTSW,AST SpaceMobile Inc - Warrants (06/04/2026),NASDAQ,Stock,2019-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASUR,Asure Software Inc,NASDAQ,Stock,1992-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASX,ASE Technology Holding Co.Ltd,NYSE,Stock,2000-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASXC,Asensus Surgical Inc,NYSE MKT,Stock,1992-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASYS,Amtech Systems Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASZ,Austerlitz Acquisition Corp II - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASZ-U,Austerlitz Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ASZ-WS,Austerlitz Acquisition Corp II - Warrants (01/01/9999),NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATA,Americas Technology Acquisition Corp,NYSE,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATA-U,Americas Technology Acquisition Corp - Units (1 Ord & 1/2 War),NYSE,Stock,2020-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATA-WS,Americas Technology Acquisition Corp - Warrants (31/12/2027),NYSE,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAC-WS,Altimar Acquisition Corporation Redeemable Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2020-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAI,ATAI Life Sciences N.V.,NASDAQ,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAK,Aurora Technology Acquisition Corp - Class A,NASDAQ,Stock,2022-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAKR,Aurora Technology Acquisition Corp,NASDAQ,Stock,2022-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAKU,Aurora Technology Acquisition Corp - Units (1 Ord Class A 1 War & 1 Rights),NASDAQ,Stock,2022-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAKW,Aurora Technology Acquisition Corp - Warrants (27/01/2027),NASDAQ,Stock,2022-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAQ,Altimar Acquisition Corp III - Class A,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAQ-U,Altimar Acquisition Corp III - Units (1 Ord Class A & 1/4 War),NYSE,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAQ-WS,Altimar Acquisition Corp III Warrants each whole warrant exercisable for one Class A Ordinary Share at an exercise price of 11.50 per share,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATAX,America First Multifamily Investors LP,NASDAQ,Stock,1986-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATC,Atotech Ltd,NYSE,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATCO,Atlas Corp,NYSE,Stock,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATCO-P-D,Atlas Corp,NYSE,Stock,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATCO-P-E,Atlas Corp,NYSE,Stock,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATCO-P-G,Atlas Corp,NYSE,Stock,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATCO-P-H,Atlas Corp,NYSE,Stock,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATCO-P-I,Atlas Corp,NYSE,Stock,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATCOL,Atlas Corp,NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATCX,Atlas Technical Consultants Inc - Class A,NASDAQ,Stock,2019-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEC,Alphatec Holdings Inc,NASDAQ,Stock,2006-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEK,Athena Technology Acquisition Corp II - Class A,NYSE,Stock,2022-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEK-U,Athena Technology Acquisition Corp II - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEK-WS,Athena Technology Acquisition Corp II - Warrants (01/01/9999),NYSE,Stock,2022-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEN,A10 Networks Inc,NYSE,Stock,2014-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATER,Aterian Inc,NASDAQ,Stock,2019-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEST-A,ATEST.A,NYSE MKT,Stock,2016-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEST-B,ATEST.B,NYSE MKT,Stock,2018-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEST-C,ATESTC,NYSE MKT,Stock,2018-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEST-G,ATESTG,NYSE MKT,Stock,2017-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEST-H,ATEST.H,NYSE MKT,Stock,2017-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEST-L,ATEST.L,NYSE MKT,Stock,2017-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATEX,Anterix Inc,NASDAQ,Stock,2015-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATFV,Alger 35 ETF,NYSE ARCA,ETF,2021-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATGE,Adtalem Global Education Inc,NYSE,Stock,1991-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATH-P-A,Athene Holding LTD,NYSE,Stock,2019-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATH-P-B,Athene Holding Ltd,NYSE,Stock,2019-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATH-P-C,Athene Holding Ltd,NYSE,Stock,2020-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATH-P-D,Athene Holding Ltd,NYSE,Stock,2020-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATHA,Athira Pharma Inc,NASDAQ,Stock,2020-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATHE,Alterity Therapeutics Ltd,NASDAQ,Stock,2002-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATHM,Autohome Inc,NYSE,Stock,2013-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATHN-WS,Athena Technology Acquisition Corp Redeemable Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATHX,Athersys Inc,NASDAQ,Stock,2007-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATI,Allegheny Technologies Inc,NYSE,Stock,1999-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATIF,ATIF Holdings Ltd,NASDAQ,Stock,2019-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATIP,ATI Physical Therapy Inc - Class A,NYSE,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATIP-WS,ATI Physical Therapy Inc - Warrants (10/08/2027),NYSE,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATISW,Attis Industries Inc Warrants,NASDAQ,Stock,2017-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATKR,Atkore Inc,NYSE,Stock,2016-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATLC,Atlanticus Holdings Corp,NASDAQ,Stock,1999-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATLCL,Atlanticus Holdings Corp,NASDAQ,Stock,2021-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATLCP,Atlanticus Holdings Corp,NASDAQ,Stock,2021-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATLO,Ames National Corp,NASDAQ,Stock,2000-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATMH,All Things Mobile Analytic Inc,NASDAQ,Stock,2012-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATMP,Barclays ETN Select MLP ETN,BATS,ETF,2013-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATNF,180 Life Sciences Corp,NASDAQ,Stock,2017-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATNFW,180 Life Sciences Corp - Warrants (07/11/2025),NASDAQ,Stock,2017-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATNI,ATN International Inc,NASDAQ,Stock,1991-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATNM,Actinium Pharmaceuticals Inc,NYSE MKT,Stock,2012-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATNX,Athenex Inc,NASDAQ,Stock,2017-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATO,Atmos Energy Corp,NYSE,Stock,1983-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATOM,Atomera Inc,NASDAQ,Stock,2016-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATOS,Atossa Therapeutics Inc,NASDAQ,Stock,2012-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATR,Aptargroup Inc,NYSE,Stock,1993-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATRA,Atara Biotherapeutics Inc,NASDAQ,Stock,2014-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATRC,Atricure Inc,NASDAQ,Stock,2005-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATRI,Atrion Corp,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATRO,Astronics Corp,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATRS,Antares Pharma Inc,NASDAQ,Stock,1996-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATSG,Air Transport Services Group Inc,NASDAQ,Stock,2003-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATSPT,Archimedes Tech SPAC Partners Co - Subunit (1 Ord & 1/4 War),NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATSPU,Archimedes Tech SPAC Partners Co - Units (1 Subunit & 1/4 War),NASDAQ,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATSPW,Archimedes Tech SPAC Partners Co - Warrants (10/03/2026),NASDAQ,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATTO,Atento S.A.,NYSE,Stock,2014-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATUS,Altice USA Inc - Class A,NYSE,Stock,2017-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATVC,Tribe Capital Growth Corp I - Class A,NASDAQ,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATVCU,Tribe Capital Growth Corp I - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATVCW,Tribe Capital Growth Corp I - Warrants (24/02/2026),NASDAQ,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATVI,Activision Blizzard Inc,NASDAQ,Stock,1993-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATXI,Avenue Therapeutics Inc,NASDAQ,Stock,2017-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATXS,Astria Therapeutics Inc,NASDAQ,Stock,2015-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ATY,AcuityAds Holdings Inc,NASDAQ,Stock,2016-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AU,AngloGold Ashanti Ltd,NYSE,Stock,1998-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUB,Atlantic Union Bankshares Corp,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUBAP,Atlantic Union Bankshares Corp,NASDAQ,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUBN,Auburn National Bancorp Inc,NASDAQ,Stock,1995-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUD,Audacy Inc - Class A,NYSE,Stock,1999-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUDC,Audiocodes,NASDAQ,Stock,1999-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUGX,Augmedix Inc,NASDAQ,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUGZ,TRUESHARES STRUCTURED OUTCOME (AUGUST) ETF ,BATS,ETF,2020-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUID,Ipsidy Inc,NASDAQ,Stock,2017-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUMN,Golden Minerals Company,NYSE MKT,Stock,2009-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUPH,Aurinia Pharmaceuticals Inc,NASDAQ,Stock,2014-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUR,Aurora Innovation Inc - Class A,NASDAQ,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AURA,Aura Biosciences Inc,NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AURC,Aurora Acquisition Corp - Class A,NASDAQ,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AURCU,Aurora Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AURCW,Aurora Acquisition Corp - Warrants (02/03/2026),NASDAQ,Stock,2021-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUROW,Aurora Innovation Inc - Warrants (03/11/2026),NASDAQ,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUS,Austerlitz Acquisition Corp I - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUS-U,Austerlitz Acquisition Corp I - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUS-WS,Austerlitz Acquisition Corp I - Warrants (01/01/9999),NYSE,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUSF,Global X Adaptive U.S. Factor ETF,NYSE ARCA,ETF,2018-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUTL,Autolus Therapeutics plc,NASDAQ,Stock,2018-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUTO,AutoWeb Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUUD,Auddia Inc,NASDAQ,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUUDW,Auddia Inc - Warrants - Series A (17/10/2025),NASDAQ,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUVI,Applied UV Inc,NASDAQ,Stock,2020-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUVIP,Applied UV Inc,NASDAQ,Stock,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AUY,Yamana Gold Inc,NYSE,Stock,2004-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVA,Avista Corp,NYSE,Stock,1987-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVAC,Avalon Acquisition Inc - Class A,NASDAQ,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVACU,Avalon Acquisition Inc - Units (1 Ord Share Class A & 3/4 War),NASDAQ,Stock,2021-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVACW,Avalon Acquisition Inc - Warrants (18/03/2026),NASDAQ,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVAH,Aveanna Healthcare Holdings Inc,NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVAL,Grupo Aval Acciones y Valores S.A.,NYSE,Stock,2014-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVAN,Avanti Acquisition Corp - Class A,NYSE,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVAN-U,Avanti Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVAN-WS,Avanti Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVAV,AeroVironment Inc,NASDAQ,Stock,2007-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVB,Avalonbay Communities Inc,NYSE,Stock,1994-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVCO,Avalon GloboCare Corp,NASDAQ,Stock,2016-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVCT,American Virtual Cloud Technologies Inc,NASDAQ,Stock,2017-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVCTW,American Virtual Cloud Technologies Inc - Warrants(07/04/2025),NASDAQ,Stock,2017-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVD,American Vanguard Corp,NYSE,Stock,1988-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVDE,Avantis International Equity ETF,NYSE ARCA,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVDG,AVDR US LargeCap ESG ETF,BATS,ETF,2020-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVDL,Avadel Pharmaceuticals plc,NASDAQ,Stock,1996-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVDR,AVDR US LargeCap Leading ETF,BATS,ETF,2020-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVDV,Avantis International Small Cap Value ETF,NYSE ARCA,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVDX,AvidXchange Holdings Inc,NASDAQ,Stock,2021-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVEM,Avantis Emerging Markets Equity ETF,NYSE ARCA,ETF,2019-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVEO,AVEO Pharmaceuticals Inc,NASDAQ,Stock,2010-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVES,Avantis Emerging Markets Value ETF,NYSE ARCA,ETF,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVGO,Broadcom Inc,NASDAQ,Stock,2009-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVGOP,Broadcom Inc,NASDAQ,Stock,2019-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVGR,Avinger Inc,NASDAQ,Stock,2015-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVHI,Achari Ventures Holdings Corp I,NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVHIU,Achari Ventures Holdings Corp I - Units (1 Ord Share & 1 War),NASDAQ,Stock,2021-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVHIW,Achari Ventures Holdings Corp I - Warrants (01/01/2026),NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVID,Avid Technology Inc,NASDAQ,Stock,1993-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVIG,Avantis Core Fixed Income ETF,NYSE ARCA,ETF,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVIR,Atea Pharmaceuticals Inc,NASDAQ,Stock,2020-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVIV,Avantis International Large Cap Value ETF,NYSE ARCA,ETF,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVK,Advent Convertible and Income Fund,NYSE,ETF,2003-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVLR,Avalara Inc,NYSE,Stock,2018-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVLV,Avantis U.S. Large Cap Value ETF,NYSE ARCA,ETF,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVMU,AVANTIS CORE MUNICIPAL FIXED INCOME ETF ,NYSE ARCA,ETF,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVNS,Avanos Medical Inc,NYSE,Stock,2014-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVNT,Avient Corp,NYSE,Stock,1999-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVNW,Aviat Networks Inc,NASDAQ,Stock,1991-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVO,Mission Produce Inc,NASDAQ,Stock,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVPT,AvePoint Inc - Class A,NASDAQ,Stock,2019-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVPTW,AvePoint Inc - Warrants (18/09/2026),NASDAQ,Stock,2019-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVRE,Avantis Real E state ETF,NYSE ARCA,ETF,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVRO,AvroBio Inc,NASDAQ,Stock,2018-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVSC,Avantis U.S Small Cap Equity ETF,NYSE ARCA,ETF,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVSD,Avantis Responsible International Equity ETF,NYSE ARCA,ETF,2022-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVSF,Avantis Short-Term Fixed Income ETF,NYSE ARCA,ETF,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVSU,Avantis Responsible U.S. Equity ETF,NYSE ARCA,ETF,2022-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVT,Avnet Inc,NASDAQ,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVTE,Aerovate Therapeutics Inc,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVTR,Avantor Inc,NYSE,Stock,2019-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVTR-P-A,Avantor Inc,NYSE,Stock,2019-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVTX,Avalo Therapeutics Inc,NASDAQ,Stock,2015-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVUS,Avantis U.S. Equity ETF,NYSE ARCA,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVUV,Avantis U.S. Small Cap Value ETF,NYSE ARCA,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVXL,Anavex Life Sciences Corporation,NASDAQ,Stock,2006-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVY,Avery Dennison Corp,NYSE,Stock,1983-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AVYA,Avaya Holdings Corp,NYSE,Stock,2017-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWAY,ETFMG Travel Tech ETF,NYSE ARCA,ETF,2011-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWF,AllianceBernstein Global High Income Fund,NYSE,ETF,1993-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWH,Aspira Women`s Health Inc,NASDAQ,Stock,2000-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWI,Armstrong World Industries Inc,NYSE,Stock,2006-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWK,American Water Works Co. Inc,NYSE,Stock,2008-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWP,Aberdeen Global Premier Properties Fund,NYSE,ETF,2007-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWR,American States Water Company,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWRE,Aware Inc,NASDAQ,Stock,1996-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWTM,AWARE ULTRA-SHORT DURATION ENHANCED INCOME ETF ,NYSE ARCA,ETF,2019-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWX,Avalon Holdings Corp - Class A,NYSE MKT,Stock,1998-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AWYX,ETFMG 2X DAILY TRAVEL TECH ETF ,NYSE ARCA,ETF,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AX,Axos Financial Inc,NYSE,Stock,2018-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXAC-U,AXIOS Sustainable Growth Acquisition Corp - Units (1 Ord Class A 1 Right & 1 War),NYSE,Stock,2022-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXDX,Accelerate Diagnostics Inc,NASDAQ,Stock,1996-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXGN,Axogen Inc,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXH,Industrial Human Capital Inc,NYSE,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXH-U,Industrial Human Capital Inc - Units (1 Ord Share & 1 War),NYSE,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXH-WS,Industrial Human Capital Inc - Warrants (27/11/2026),NYSE,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXL,American Axle & Manufacturing Holdings Inc,NYSE,Stock,1999-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXLA,Axcella Health Inc,NASDAQ,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXNX,Axonics Inc,NASDAQ,Stock,2018-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXON,Axon Enterprise Inc,NASDAQ,Stock,2001-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXP,American Express Company,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXR,AMREP Corp,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXS,Axis Capital Holdings Ltd,NYSE,Stock,2003-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXS-P-D,Axis Capital Holdings Limited Preferred Series D Bermuda,NYSE,Stock,2013-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXS-P-E,Axis Capital Holdings Limited Depositary Shares Series E,NYSE,Stock,2016-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXSM,Axsome Therapeutics Inc,NASDAQ,Stock,2015-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXTA,Axalta Coating Systems Ltd,NYSE,Stock,2014-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXTI,AXT Inc,NASDAQ,Stock,1998-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AXU,Alexco Resource Corp,NYSE MKT,Stock,2006-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AY,Atlantica Sustainable Infrastructure Plc,NASDAQ,Stock,2014-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AYI,Acuity Brands Inc,NYSE,Stock,2001-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AYLA,Ayala Pharmaceuticals Inc,NASDAQ,Stock,2020-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AYRO,AYRO Inc,NASDAQ,Stock,2018-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AYTU,Aytu BioPharma Inc,NASDAQ,Stock,2017-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AYX,Alteryx Inc - Class A,NYSE,Stock,2017-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZ,A2Z Smart Technologies Corp,NASDAQ,Stock,2020-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZAA,AllianzIM U.S. Large Cap Buffer10 Apr ETF,NYSE ARCA,ETF,2020-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZAJ,AllianzIM U.S. Large Cap Buffer10 Jan ETF,NYSE ARCA,ETF,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZAL,AllianzIM U.S. Large Cap Buffer10 Jul ETF,NYSE ARCA,ETF,2020-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZAO,AllianzIM U.S. Large Cap Buffer10 Oct ETF,NYSE ARCA,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZBA,AllianzIM U.S. Large Cap Buffer20 Apr ETF,NYSE ARCA,ETF,2020-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZBJ,AllianzIM U.S. Large Cap Buffer20 Jan ETF,NYSE ARCA,ETF,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZBL,AllianzIM U.S. Large Cap Buffer20 Jul ETF,NYSE ARCA,ETF,2020-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZBO,AllianzIM U.S. Large Cap Buffer20 Oct ETF,NYSE ARCA,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZEK,AZEK Company Inc - Class A,NYSE,Stock,2020-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZN,Astrazeneca plc,NASDAQ,Stock,1993-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZO,Autozone Inc,NYSE,Stock,1991-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZPN,Aspen Technology Inc,NASDAQ,Stock,1994-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZRE,Azure Power Global Ltd,NYSE,Stock,2016-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZTA,Azenta Inc,NASDAQ,Stock,1995-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZUL,Azul S.A.,NYSE,Stock,2017-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZYO,Aziyo Biologics Inc - Class A,NASDAQ,Stock,2020-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "AZZ,AZZ Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "B,Barnes Group Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BA,Boeing Company,NYSE,Stock,1962-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAB,Invesco Taxable Municipal Bond ETF,NYSE ARCA,ETF,2009-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BABA,Alibaba Group Holding Ltd,NYSE,Stock,2014-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC,Bank Of America Corp,NYSE,Stock,1986-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-B,Bank Of America Corp,NYSE,Stock,2018-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-E,Bank Of America Corp,NYSE,Stock,2006-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-K,Bank Of America Corp,NYSE,Stock,2018-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-L,Bank Of America Corp,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-M,Bank Of America Corp,NYSE,Stock,2019-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-N,Bank Of America Corp. PRF PERPETUAL USD Ser LL DpSh11000th,NYSE,Stock,2019-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-O,Bank Of America Corp,NYSE,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-P,Bank Of America Corp,NYSE,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-Q,Bank Of America Corp,NYSE,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-S,Bank Of America Corp,NYSE,Stock,2022-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-Y,Bank of America Corporation Depositary Shares Series Y,NYSE,Stock,2015-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAC-P-Y-CL,,NYSE,Stock,2012-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BACA,Berenson Acquisition Corp I - Class A,NYSE,Stock,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BACA-U,Berenson Acquisition Corp I - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BACA-WS,Berenson Acquisition Corp I - Warrants (01/08/2026),NYSE,Stock,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAD,B.A.D. ETF,NYSE ARCA,ETF,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAF,BlackRock Municipal Income Investment Quality Trust,NYSE,ETF,2002-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAFN,BayFirst Financial Corp,NASDAQ,Stock,2019-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAH,Booz Allen Hamilton Holding Corp - Class A,NYSE,Stock,2010-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAK,Braskem S.A.,NYSE,Stock,1999-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAL,iPathA Series B Bloomberg Cotton Subindex Total Return ETN,NYSE ARCA,ETF,2018-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BALT,Innovator Defined Wealth Shield ETF,BATS,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BALY,Ballys Corporation,NYSE,Stock,2019-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAM,Brookfield Asset Management Inc - Class A,NYSE,Stock,1983-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAMH,Brookfield Finance Inc,NYSE,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAMI,Brookfield Finance I (UK) plc,NYSE,Stock,2020-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAMR,Brookfield Asset Management Reinsurance Partners Ltd (Exchangeable Shares Sub Voting) - Class A,NYSE,Stock,2021-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BANC,Banc of California Inc,NYSE,Stock,2002-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAND,Bandwidth Inc - Class A,NASDAQ,Stock,2017-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BANF,Bancfirst Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BANFP,BancFirst Corporation 72 Cumulative Trust Preferred Securities,NASDAQ,Stock,2004-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BANR,Banner Corp,NASDAQ,Stock,1995-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BANX,ArrowMark Financial Corp,NASDAQ,Stock,2013-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAOS,Baosheng Media Group Holdings Ltd,NASDAQ,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAP,Credicorp Ltd,NYSE,Stock,1995-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAPR,Innovator U.S. Equity Buffer ETF - April,BATS,ETF,2019-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAR,GraniteShares Gold Shares,NYSE ARCA,ETF,2017-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BARK,BARK Inc - Class A,NYSE,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BARK-WS,BARK Inc - Warrants (01/05/2026),NYSE,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BASE,Couchbase Inc,NASDAQ,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BATL,Battalion Oil Corp (New),NYSE MKT,Stock,2019-12-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BATRA,Liberty Media Corp (Tracking Stock - Braves) Series A,NASDAQ,Stock,2016-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BATRK,Liberty Media Corp (Tracking Stock - Braves) Series C,NASDAQ,Stock,2016-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BATT,Amplify Lithium & Battery Technology ETF,NYSE ARCA,ETF,2018-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAUG,Innovator U.S. Equity Buffer ETF - August,BATS,ETF,2019-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BAX,Baxter International Inc,NYSE,Stock,1981-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BB,BlackBerry Ltd,NYSE,Stock,1999-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBAI,BigBear.ai Inc,NYSE,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBAI-WS,BigBear.ai Inc Redeemable Warrants each exercisable for one share of Common Stock at an exercise price of 11.50 per share,NYSE,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBAR,BBVA Argentina,NYSE,Stock,1993-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBAX,JPMorgan BetaBuilders Developed Asia Pacific ex-Japan ETF,BATS,ETF,2018-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBBY,Bed Bath & Beyond Inc,NASDAQ,Stock,1992-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBC,Virtus LifeSci Biotech Clinical Trials ETF,NYSE ARCA,ETF,2014-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBCA,JPMorgan BetaBuilders Canada ETF,BATS,ETF,2018-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBCP,Concrete Pumping Holdings Inc - Class A,NASDAQ,Stock,2017-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBD,Banco Bradesco S.A.,NYSE,Stock,2001-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBDC,Barings BDC Inc,NYSE,Stock,2018-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBDO,Banco Bradesco S.A.,NYSE,Stock,2012-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBEU,JPMorgan BetaBuilders Europe ETF,BATS,ETF,2018-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBF,BlackRock Municipal Income Investment Trust,NYSE,ETF,2001-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBGI,Beasley Broadcast Group Inc - Class A,NASDAQ,Stock,2000-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBH,VanEck Biotech ETF,NASDAQ,ETF,1999-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBI,Brickell Biotech Inc,NASDAQ,Stock,1993-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBIG,Vinco Ventures Inc,NASDAQ,Stock,2018-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBIN,JPMorgan BetaBuilders International Equity ETF,BATS,ETF,2019-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBIO,BridgeBio Pharma Inc,NASDAQ,Stock,2019-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBJP,JPMorgan BetaBuilders Japan ETF,BATS,ETF,2018-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBK,BlackRock Municipal Bond Trust,NYSE,ETF,2002-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBLG,Bone Biologics Corp,NASDAQ,Stock,2016-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBLGW,Bone Biologics Corp - Warrants (13/10/2026),NASDAQ,Stock,2021-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBLN,Babylon Holdings Ltd - Class A,NYSE,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBLN-WS,Babylon Holdings Ltd - Warrants (21/10/2026),NYSE,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBMC,JPMorgan BetaBuilders U.S. Mid Cap Equity ETF,NYSE ARCA,ETF,2020-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBN,BlackRock Taxable Municipal Bond Trust,NYSE,ETF,2010-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBP,Virtus LifeSci Biotech Products ETF,NYSE ARCA,ETF,2014-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBQ,BBQ Holdings Inc,NASDAQ,Stock,1996-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBRE,JPMorgan BetaBuilders MSCI U.S. REIT ETF,BATS,ETF,2018-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBSA,JPMORGAN BETABUILDERS 1-5 YEAR U.S. AGGREGATE BOND ETF ,BATS,ETF,2019-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBSC,JPMorgan BetaBuilders U.S. Small Cap Equity ETF,NYSE ARCA,ETF,2020-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBSI,Barrett Business Services Inc,NASDAQ,Stock,1993-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBU,Brookfield Business Partners L.P.,NYSE,Stock,2016-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBUC,Brookfield Business Corporation Class A Exchangeable Subordinate,NYSE,Stock,2022-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBUC-W,Brookfield Business Corporation Class A Exchangeable Subordinate WhenIssued,NYSE,Stock,2022-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBUS,JPMorgan BetaBuilders U.S. Equity ETF,BATS,ETF,2019-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBVA,Banco Bilbao Vizcaya Argentaria.,NYSE,Stock,1988-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBW,Build A Bear Workshop Inc,NYSE,Stock,2004-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBWI,Bath & Body Works Inc,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBWI-W,Bath & Body Works Inc Exdistribution WhenIssued,NYSE,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BBY,Best Buy Co. Inc,NYSE,Stock,1985-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BC,Brunswick Corp,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BC-P-A,Brunswick Corp,NYSE,Stock,2018-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BC-P-B,Brunswick Corp,NYSE,Stock,2018-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BC-P-C,Brunswick Corp,NYSE,Stock,2019-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCAB,BioAtla Inc,NASDAQ,Stock,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCAC,Brookline Capital Acquisition Corp,NASDAQ,Stock,2021-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCACU,Brookline Capital Acquisition Corp - Units (1 Ord Share & 1/2 War),NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCACW,Brookline Capital Acquisition Corp - Warrants (01/09/2025),NASDAQ,Stock,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCAT,BlackRock Capital Allocation Trust,NYSE,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCBP,BCB Bancorp Inc (NJ),NASDAQ,Stock,2003-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCC,Boise Cascade Company,NYSE,Stock,2013-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCD,abrdn Bloomberg All Comm Longer Dt Strategy K-1 Free ETF,NYSE ARCA,ETF,2017-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCDA,BioCardia Inc,NASDAQ,Stock,2008-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCDAW,BioCardia Inc - Warrants (26/07/2022),NASDAQ,Stock,2019-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCE,BCE Inc,NYSE,Stock,1982-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCEL,Atreca Inc - Class A,NASDAQ,Stock,2019-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCH,Banco de Chile,NYSE,Stock,2002-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCI,abrdn Bloomberg All Commodity Strategy K-1 Free ETF,NYSE ARCA,ETF,2017-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCIM,abrdn Bloomberg Industrial Metals Strategy K-1 Free ETF,NYSE ARCA,ETF,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCLI,Brainstorm Cell Therapeutics Inc,NASDAQ,Stock,2003-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCM,iPath Pure Beta Broad Commodity ETN,NYSE ARCA,ETF,2011-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCML,BayCom Corp,NASDAQ,Stock,2012-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCO,Brink`s Company,NYSE,Stock,1996-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCOR,Blucora Inc,NASDAQ,Stock,1998-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCOV,Brightcove Inc,NASDAQ,Stock,2012-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCOW,1895 Bancorp of Wisconsin Inc,NASDAQ,Stock,2019-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCPC,Balchem Corp,NASDAQ,Stock,1986-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCRX,Biocryst Pharmaceuticals Inc,NASDAQ,Stock,1994-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCS,Barclays plc,NYSE,Stock,1986-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCSA,Blockchain Coinvestors Acquisition Corp I - Class A,NASDAQ,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCSAU,Blockchain Coinvestors Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCSAW,Blockchain Coinvestors Acquisition Corp I - Warrants (01/09/2026),NASDAQ,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCSF,Bain Capital Specialty Finance Inc,NYSE,Stock,2018-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCTX,BriaCell Therapeutics Corp,NASDAQ,Stock,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCTXW,BriaCell Therapeutics Corp - Warrants (24/02/2025),NASDAQ,Stock,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCV,Bancroft Fund Ltd,NYSE MKT,ETF,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCV-P-A,Bancroft Fund Ltd,NYSE MKT,Stock,2016-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCX,BlackRock Resources & Commodities Strategy Trust,NYSE,ETF,2011-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BCYC,Bicycle Therapeutics Plc,NASDAQ,Stock,2019-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDC,Belden Inc,NYSE,Stock,1993-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDCX,UBS AG London Branch,NYSE ARCA,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDCZ,BDCZ,NYSE ARCA,ETF,2015-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDEC,Innovator U.S. Equity Buffer ETF - December,BATS,ETF,2019-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDJ,BlackRock Enhanced Equity Dividend Trust,NYSE,ETF,2005-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDL,Flanigan`s Enterprises Inc,NYSE MKT,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDN,Brandywine Realty Trust,NYSE,Stock,1986-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDR,Blonder Tongue Laboratories Inc,NYSE MKT,Stock,1995-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDRY,Breakwave Dry Bulk Shipping ETF,NYSE ARCA,ETF,2018-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDSI,Biodelivery Sciences International,NASDAQ,Stock,2002-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDSX,Biodesix Inc,NASDAQ,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDTX,Black Diamond Therapeutics Inc,NASDAQ,Stock,2020-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDX,Becton Dickinson And Company,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDXA,Becton Dickinson and Company Depositary Shares each Representing a 120th Interest in a Share of 6125 Mandatory Convertible Preferred Stock Series A 100 par,NYSE,Stock,2017-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BDXB,Becton Dickinson And Company,NYSE,Stock,2020-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BE,Bloom Energy Corp - Class A,NYSE,Stock,2018-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEAM,Beam Therapeutics Inc,NASDAQ,Stock,2020-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEAT,HeartBeam Inc,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEATW,HeartBeam Inc - Warrants (31/10/2026),NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BECN,Beacon Roofing Supply Inc - Class A,NASDAQ,Stock,2004-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BECO,BlackRock Future Climate and Sustainable Economy ETF,NYSE ARCA,ETF,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEDU,Bright Scholar Education Holdings Ltd,NYSE,Stock,2017-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEDZ,AdvisorShares Hotel ETF,NYSE ARCA,ETF,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEEM,Beam Global,NASDAQ,Stock,2010-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEEMW,Beam Global - Warrants (30/12/2023),NASDAQ,Stock,2019-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEKE,KE Holdings Inc,NYSE,Stock,2020-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BELFA,Bel Fuse Inc - Class A,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BELFB,Bel Fuse Inc - Class B,NASDAQ,Stock,1998-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEN,Franklin Resources Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BENE,Benessere Capital Acquisition Corp - Class A,NASDAQ,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BENER,Benessere Capital Acquisition Corp,NASDAQ,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BENEU,Benessere Capital Acquisition Corp - Units (1 Ord Class A 1 Rts & 3/4 War),NASDAQ,Stock,2021-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BENEW,Benessere Capital Acquisition Corp - Warrants (22/12/2025),NASDAQ,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEP,Brookfield Renewable Partners LP,NYSE,Stock,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEP-P-A,Brookfield Renewable Partners LP 525 Class A Preferred Limited Partnership Units Series 17,NYSE,Stock,2020-02-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEP-W,Brookfield Renewable Partners L.P. Limited Partnership Units ExDistribution When Issued,NYSE,Stock,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEPC,Brookfield Renewable Corporation - Class A - Class A (Sub Voting),NYSE,Stock,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEPCW,Brookfield Renewable Corporation Class A Subordinate When Issued,NYSE,Stock,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEPH,Brookfield BRP Holdings (Canada) Inc,NYSE,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEPI,Brookfield BRP Holdings (Canada) Inc,NYSE,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEPW,Brookfield Renewable Partners L.P. Limited Partnership Units ExDistribution When Issued,NYSE,Stock,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BERY,Berry Global Group Inc,NYSE,Stock,2012-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BERZ,Bank of Montreal,NYSE ARCA,Stock,2021-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BEST,BEST Inc,NYSE,Stock,2017-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BETZ,Roundhill Sports Betting & iGaming ETF,NYSE ARCA,ETF,2020-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BF-A,Brown-Forman Corp - Class A,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BF-B,Brown-Forman Corp - Class B,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFAC,Battery Future Acquisition Corp - Class A,NYSE,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFAC-U,Battery Future Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFAC-WS,Battery Future Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFAM,Bright Horizons Family Solutions Inc,NYSE,Stock,2013-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFC,Bank First Corp,NASDAQ,Stock,2002-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFEB,Innovator U.S. Equity Buffer ETF - February,BATS,ETF,2020-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFI,BurgerFi International Inc,NASDAQ,Stock,2018-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFIIW,BurgerFi International Inc - Warrants (16/12/2025),NASDAQ,Stock,2018-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFIN,Bankfinancial Corp,NASDAQ,Stock,2005-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFIT,Global X Health & Wellness ETF,NASDAQ,ETF,2016-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFIX,Build Bond Innovation ETF,NYSE ARCA,ETF,2022-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFK,BlackRock Municipal Income Trust,NYSE,ETF,2001-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFLY,Butterfly Network Inc - Class A,NYSE,Stock,2020-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFLY-WS,Butterfly Network Inc - Warrants (27/05/2025),NYSE,Stock,2020-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFO,BlackRock Florida Municipal 2020 Term Tr,NYSE,ETF,2003-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFOR,BARRON'S 400 ETF ,NYSE ARCA,ETF,2013-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFRI,Biofrontera Inc,NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFRIW,Biofrontera Inc - Warrants (27/10/2026),NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFS,Saul Centers Inc,NYSE,Stock,1993-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFS-P-D,Saul Centers Inc Depositary Shares Series D,NYSE,Stock,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFS-P-E,Saul Centers Inc. PRF PERPETUAL USD Ser E Rep 1100th,NYSE,Stock,2019-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFST,Business First Bancshares Inc,NASDAQ,Stock,2018-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFT-U,Foley Trasimene Acquisition Corp II Units each consisting of one share of Class A common stock and onethird of one warrant,NYSE,Stock,2020-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFT-WS,Foley Trasimene Acquisition Corp II Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50 per share,NYSE,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFTR,BlackRock Future Innovators ETF,NYSE ARCA,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFY,BlackRock New York Municipal Income Trust II,NYSE,ETF,2002-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BFZ,BlackRock California Municipal Income Trust,NYSE,ETF,2001-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BG,Bunge Ltd,NYSE,Stock,2001-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGB,Blackstone Strategic Credit Fund,NYSE,ETF,2012-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGCP,BGC Partners Inc - Class A,NASDAQ,Stock,1999-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGFV,Big 5 Sporting Goods Corp,NASDAQ,Stock,2002-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGH,Barings Global Short Duration High Yield Fund,NYSE,ETF,2012-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGI,Birks Group Inc - Class A,NYSE MKT,Stock,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGIO,BlackRock 2022 Global Income Opportunity Trust,NYSE,ETF,2017-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGLD,FT Cboe Vest Gold Strategy Quarterly Buffer ETF,BATS,ETF,2021-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGNE,BeiGene Ltd,NASDAQ,Stock,2016-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGR,BlackRock Global Energy Resources Trus,NYSE,ETF,2004-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGRN,iShares USD Green Bond ETF,NASDAQ,ETF,2018-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGRY,Berkshire Grey Inc - Class A,NASDAQ,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGRYW,Berkshire Grey Inc - Warrants (21/07/2026),NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGS,B&G Foods Inc,NYSE,Stock,2007-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGSF,BGSF Inc,NYSE,Stock,2014-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGSX,Build Acquisition Corp - Class A,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGSX-U,Build Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGSX-WS,Build Acquisition Corp Redeemable warrants each whole warrant exercisable for one Class A common stock at an exercise price of 11.50,NYSE,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGT,BlackRock Floating Rate Income Trust,NYSE,ETF,2004-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGX,Blackstone Long-Short Credit Income Fund,NYSE,ETF,2011-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BGY,BlackRock Enhanced International Dividend Trust,NYSE,ETF,2007-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BH,Biglari Holdings Inc - Class B,NYSE,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BH-A,Biglari Holdings Inc - Class A,NYSE,Stock,2018-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHAC,Crixus BH3 Acquisition Co - Class A,NASDAQ,Stock,2021-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHACU,Crixus BH3 Acquisition Co - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHACW,Crixus BH3 Acquisition Co - Warrants (04/10/2026),NASDAQ,Stock,2021-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHAT,Blue Hat Interactive Entertainment Technology,NASDAQ,Stock,2019-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHB,Bar Harbor Bankshares Inc,NYSE MKT,Stock,1997-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHC,Bausch Health Companies Inc,NYSE,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHE,Benchmark Electronics Inc,NYSE,Stock,1990-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHF,Brighthouse Financial Inc,NASDAQ,Stock,2017-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHFAL,Brighthouse Financial Inc 625 Junior Subordinated Debentures due 2058,NASDAQ,Stock,2018-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHFAM,Brighthouse Financial Inc,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHFAN,Brighthouse Financial Inc,NASDAQ,Stock,2020-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHFAO,Brighthouse Financial Inc,NASDAQ,Stock,2020-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHFAP,Brighthouse Financial Inc. Depositary Shares 6.6 NonCumulative Preferred Stock Series A,NASDAQ,Stock,2019-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHG,Bright Health Group Inc,NYSE,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHIL,Benson Hill Inc,NYSE,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHIL-WS,Benson Hill Inc Wt,NYSE,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHK,BlackRock Core Bond Trust,NYSE,ETF,2001-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHLB,Berkshire Hills Bancorp Inc,NYSE,Stock,2000-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHP,BHP Group Ltd,NYSE,Stock,1987-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHR,Braemar Hotels & Resorts Inc,NYSE,Stock,2013-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHR-P-B,Braemar Hotels & Resorts Inc,NYSE,Stock,2016-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHR-P-D,Braemar Hotels & Resorts Inc,NYSE,Stock,2018-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHSE,Bull Horn Holdings Corp,NASDAQ,Stock,2020-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHSEU,Bull Horn Holdings Corp - Unit (1 Ordinary share & 1 War),NASDAQ,Stock,2020-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHSEW,Bull Horn Holdings Corp - Warrants (31/10/2025),NASDAQ,Stock,2020-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHV,BlackRock Virginia Municipal Bond Trust,NYSE,ETF,2002-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BHVN,Biohaven Pharmaceutical Holding Company Ltd,NYSE,Stock,2017-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIB,ProShares Ultra Nasdaq Biotechnology,NASDAQ,ETF,2010-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIBL,Inspire 100 ETF,NYSE ARCA,ETF,2017-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BICK,First Trust BICK Index Fund,NASDAQ,ETF,2010-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIDS,Amplify Digital & Online Trading ETF,NYSE ARCA,ETF,2021-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIDU,Baidu Inc,NASDAQ,Stock,2005-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIF,Boulder Growth & Income Fund Inc,NYSE,ETF,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIG,Big Lots Inc,NYSE,Stock,1985-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIGC,BigCommerce Holdings Inc Series 1,NASDAQ,Stock,2020-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIGY,DEFIANCE NEXT GEN BIG DATA ETF ,NYSE ARCA,ETF,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIGZ,BlackRock Innovation & Growth Trust,NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIIB,Biogen Inc,NASDAQ,Stock,1991-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIL,SPDR Bloomberg 1-3 Month T-Bill ETF,NYSE ARCA,ETF,2007-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BILI,Bilibili Inc,NASDAQ,Stock,2018-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BILL,Bill.com Holdings Inc,NYSE,Stock,2019-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BILS,SPDR Bloomberg 3-12 Month T-Bill ETF,NYSE ARCA,ETF,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIMI,BIMI International Medical Inc,NASDAQ,Stock,2006-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIO,Bio-Rad Laboratories Inc - Class A,NYSE,Stock,1980-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIO-B,Bio-Rad Laboratories Inc - Class B,NYSE,Stock,1999-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIOC,Biocept Inc,NASDAQ,Stock,2005-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIOL,Biolase Inc,NASDAQ,Stock,1992-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIOS,BioPlus Acquisition Corp - Class A,NASDAQ,Stock,2022-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIOSU,BioPlus Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIOSW,BioPlus Acquisition Corp - Warrants (02/12/2026),NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIOT,Biotech Acquisition Co - Class A,NASDAQ,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIOTU,Biotech Acquisition Co - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIOTW,Biotech Acquisition Co - Warrants (30/11/2027),NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIOX,Bioceres Crop Solutions Corp,NASDAQ,Stock,2018-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIP,Brookfield Infrastructure Partners L.P,NYSE,Stock,2008-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIP-P-A,Brookfield Infrastructure Partners L.P,NYSE,Stock,2020-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIP-P-B,Brookfield Infrastructure Partners L.P,NYSE,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIPC,Brookfield Infrastructure Corp - Class A (Subordinate Share),NYSE,Stock,2020-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIPH,Brookfield Infrastructure Finance ULC,NYSE,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIPI,BIP Bermuda Holdings I Ltd,NYSE,Stock,2022-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIRD,Allbirds Inc Class A,NASDAQ,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIS,ProShares UltraShort Nasdaq Biotechnology,NASDAQ,ETF,2010-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIT,BlackRock Multi-Sector Income Trust,NYSE,ETF,2013-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BITE,Bite Acquisition Corp,NYSE,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BITE-U,Bite Acquisition Corp - Units (1 Ord & 1/2 War),NYSE,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BITE-WS,Bite Acquisition Corp - Warrants (12/02/2031),NYSE,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BITF,Bitfarms Ltd,NASDAQ,Stock,2018-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BITO,ProShares Bitcoin Strategy ETF,NYSE ARCA,ETF,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BITQ,Bitwise Crypto Industry Innovators ETF,NYSE ARCA,ETF,2021-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BITS,Global X Blockchain & Bitcoin Strategy ETF,NASDAQ,ETF,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIV,Vanguard Intermediate-Term Bond ETF,NYSE ARCA,ETF,2007-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIVI,BioVie Inc,NASDAQ,Stock,2014-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BIZD,VanEck BDC Income ETF,NYSE ARCA,ETF,2013-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BJ,BJ`s Wholesale Club Holdings Inc,NYSE,Stock,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BJAN,Innovator U.S. Equity Buffer ETF - January,BATS,ETF,2019-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BJDX,Bluejay Diagnostics Inc,NASDAQ,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BJK,VanEck Gaming ETF,NASDAQ,ETF,2008-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BJRI,BJ`s Restaurant Inc,NASDAQ,Stock,1996-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BJUL,Innovator U.S. Equity Buffer ETF - July,BATS,ETF,2018-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BJUN,Innovator U.S. Equity Buffer ETF - June,BATS,ETF,2019-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BK,Bank Of New York Mellon Corp,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKAG,BNY Mellon Core Bond ETF,NYSE ARCA,ETF,2020-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKCC,BlackRock Capital Investment Corp,NASDAQ,Stock,2007-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKCH,Global X Blockchain ETF,NASDAQ,ETF,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKCI,BNY Mellon Concentrated International ETF,NYSE ARCA,ETF,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKD,Brookdale Senior Living Inc,NYSE,Stock,2005-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKE,Buckle Inc,NYSE,Stock,1992-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKEM,BNY MELLON EMERGING MARKETS EQUITY ETF ,NYSE ARCA,ETF,2020-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKEP,Blueknight Energy Partners LP,NASDAQ,Stock,2010-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKEPP,Blueknight Energy Partners LP,NASDAQ,Stock,2012-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKES,BNY MELLON SUSTAINABLE GLOBAL EMERGING MARKETS ETF ,NYSE ARCA,ETF,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKF,iShares MSCI BIC ETF,NYSE ARCA,ETF,2007-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKH,Black Hills Corporation,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKHY,BNY Mellon High Yield Beta ETF,NYSE ARCA,ETF,2020-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKI,Black Knight Inc - Class A,NYSE,Stock,2015-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKIE,BNY Mellon International Equity ETF,NYSE ARCA,ETF,2020-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKIS,BNY MELLON SUSTAINABLE INTERNATIONAL EQUITY ETF ,NYSE ARCA,ETF,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKK,Blackrock Municipal 2020 Term Trust,NYSE,ETF,2003-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKKT,Bakkt Holdings Inc - Class A,NYSE,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKKT-WS,Bakkt Holdings Inc Warrant,NYSE,Stock,2021-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKLC,BNY Mellon US Large Cap Core Equity ETF,NYSE ARCA,ETF,2020-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKLN,Invesco Senior Loan ETF,NYSE ARCA,ETF,2011-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKMC,BNY MELLON US MID CAP CORE EQUITY ETF ,NYSE ARCA,ETF,2020-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKN,BlackRock Investment Quality Municipal Trust,NYSE,ETF,1993-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKNG,Booking Holdings Inc,NASDAQ,Stock,1999-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKR,Baker Hughes Co - Class A,NASDAQ,Stock,2017-07-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKSB,BNY MELLON SHORT DURATION CORPORATE BOND ETF ,NYSE ARCA,ETF,2020-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKSC,Bank Of South Carolina Corp,NASDAQ,Stock,1986-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKSE,BNY Mellon US Small Cap Core Equity ETF,NYSE ARCA,ETF,2020-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKSY,BlackSky Technology Inc - Class A,NYSE,Stock,2019-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKSY-WS,BlackSky Technology Inc Wt Exp 10302024,NYSE,Stock,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKT,BlackRock Income Trust Inc,NYSE,ETF,1988-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKTI,BK Technologies Corp,NYSE MKT,Stock,1990-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKU,BankUnited Inc,NYSE,Stock,2011-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKUI,BNY MELLON ULTRA SHORT INCOME ETF ,NYSE ARCA,ETF,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKUS,BNY MELLON SUSTAINABLE US EQUITY ETF ,NYSE ARCA,ETF,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BKYI,Bio-Key International Inc,NASDAQ,Stock,2002-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BL,BlackLine Inc,NASDAQ,Stock,2016-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLBD,Blue Bird Corp,NASDAQ,Stock,2014-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLBX,Blackboxstocks Inc,NASDAQ,Stock,2016-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLCM,Bellicum Pharmaceuticals Inc,NASDAQ,Stock,2014-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLCN,Siren Nasdaq NexGen Economy ETF,NASDAQ,ETF,2018-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLCT,BlueCity Holdings Ltd,NASDAQ,Stock,2020-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLD,TopBuild Corp,NYSE,Stock,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLDE,Blade Air Mobility Inc - Class A,NASDAQ,Stock,2019-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLDEW,Blade Air Mobility Inc - Warrants (07/05/2026),NASDAQ,Stock,2020-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLDG,Cambria Global Real Estate ETF,BATS,ETF,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLDP,Ballard Power Systems Inc,NASDAQ,Stock,1995-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLDR,Builders Firstsource Inc,NYSE,Stock,2005-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLE,BlackRock Municipal Income Trust II,NYSE,ETF,2002-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLES,Inspire Global Hope ETF,NYSE ARCA,ETF,2017-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLEU,bleuacacia Ltd - Class A,NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLEUR,bleuacacia Ltd,NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLEUU,bleuacacia Ltd - Units (1 Ord Share Class A &1Right & 1/2 War),NASDAQ,Stock,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLEUW,bleuacacia Ltd - Warrants (30/10/2026),NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLFS,Biolife Solutions Inc,NASDAQ,Stock,1992-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLFY,Blue Foundry Bancorp,NASDAQ,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLHY,VIRTUS NEWFLEET HIGH YIELD BOND ETF ,NYSE ARCA,ETF,2016-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLI,Berkeley Lights Inc,NASDAQ,Stock,2020-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLIN,Bridgeline Digital Inc,NASDAQ,Stock,2007-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLK,Blackrock Inc,NYSE,Stock,1999-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLKB,Blackbaud Inc,NASDAQ,Stock,2004-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLKC,INVESCO ALERIAN GALAXY BLOCKCHAIN USERS AND DECENTRALIZED COMMERCE ETF ,BATS,ETF,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLL,Ball Corp,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLMN,Bloomin Brands Inc,NASDAQ,Stock,2012-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLND,Blend Labs Inc - Class A,NYSE,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLNG,Belong Acquisition Corp - Class A,NASDAQ,Stock,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLNGU,Belong Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLNGW,Belong Acquisition Corp - Warrants (23/03/2026),NASDAQ,Stock,2021-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLNK,Blink Charging Company,NASDAQ,Stock,2018-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLNKW,Blink Charging Co - Warrants (31/01/2023),NASDAQ,Stock,2018-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLOK,Amplify Transformational Data Sharing ETF,NYSE ARCA,ETF,2018-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLPH,Bellerophon Therapeutics Inc,NASDAQ,Stock,2015-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLRX,Bioline Rx Ltd,NASDAQ,Stock,2011-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLSA,BCLS Acquisition Corp - Class A,NASDAQ,Stock,2020-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLTS,Bright Lights Acquisition Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLTSU,Bright Lights Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLTSW,Bright Lights Acquisition Corp - Warrants (01/01/2028),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLU,Bellus Health Inc,NASDAQ,Stock,2008-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLUA,BlueRiver Acquisition Corp - Class A,NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLUA-U,BlueRiver Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLUA-WS,BlueRiver Acquisition Corp - Warrants (04/01/2026),NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLUE,Bluebird bio Inc,NASDAQ,Stock,2013-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLV,Vanguard Long-Term Bond ETF,NYSE ARCA,ETF,2007-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLW,BlackRock Ltd Duration Income Trust,NYSE,ETF,2003-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLX,Banco Latinoamericano De Comercio Exterior SA - Class E,NYSE,Stock,1992-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BLZE,Backblaze Inc - Class A,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMA,Banco Macro S.A.,NYSE,Stock,2006-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMAC,Black Mountain Acquisition Corp - Class A,NYSE,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMAC-U,Black Mountain Acquisition Corp - Units (1 Ord Class A & 0.75 War),NYSE,Stock,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMAC-WS,Black Mountain Acquisition Corp - Warrants (15/10/2027),NYSE,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMAQ,Blockchain Moon Acquisition Corp,NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMAQR,Blockchain Moon Acquisition Corp,NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMAQU,Blockchain Moon Acquisition Corp - Units (1 Ord 1 War & 1 Rts),NASDAQ,Stock,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMAQW,Blockchain Moon Acquisition Corp - Warrants (14/10/2026),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMAR,Innovator U.S. Equity Buffer ETF - March,BATS,ETF,2020-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMAY,Innovator U.S. Equity Buffer ETF - May,BATS,ETF,2020-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMBL,Bumble Inc - Class A,NASDAQ,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BME,BlackRock Health Sciences Trust,NYSE,ETF,2005-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMEA,Biomea Fusion Inc,NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMED,BlackRock Future Health ETF,NYSE ARCA,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMEZ,BlackRock Health Sciences Trust II,NYSE,Stock,2020-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMI,Badger Meter Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BML-P-G,Bank Of America Corp,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BML-P-H,Bank Of America Corp,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BML-P-J,Bank Of America Corp,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BML-P-L,Bank Of America Corp,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMO,Bank of Montreal,NYSE,Stock,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMRA,Biomerica Inc,NASDAQ,Stock,2005-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMRC,Bank of Marin Bancorp,NASDAQ,Stock,1999-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMRN,Biomarin Pharmaceutical Inc,NASDAQ,Stock,1999-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMTX,BM Technologies Inc - Class A,NYSE MKT,Stock,2018-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMTX-WS,BM Technologies Inc - Warrants (30/09/2025),NYSE MKT,Stock,2018-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMY,Bristol-Myers Squibb Company,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BMYR,BristolMyers Squibb Company Contingent Value Rights,NYSE,Stock,2019-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BND,Vanguard Total Bond Market ETF,NASDAQ,ETF,2007-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNDC,FlexShares Core Select Bond Fund,NYSE ARCA,ETF,2016-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNDD,Quadratic Deflation ETF,NYSE ARCA,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNDW,Vanguard Total World Bond ETF,NASDAQ,ETF,2018-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNDX,Vanguard Total International Bond ETF,NASDAQ,ETF,2013-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNE,BLUE HORIZON BNE ETF ,NYSE ARCA,ETF,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNED,Barnes & Noble Education Inc,NYSE,Stock,2015-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNFT,Benefitfocus Inc,NASDAQ,Stock,2013-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNGE,First Trust S-Network Streaming and Gaming ETF,NYSE ARCA,ETF,2022-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNGO,Bionano Genomics Inc,NASDAQ,Stock,2018-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNGOW,Bionano Genomics Inc Warrants 21082023,NASDAQ,Stock,2018-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNIX,Bannix Acquisition Corp,NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNIXR,Bannix Acquisition Corp,NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNIXW,Bannix Acquisition Corp - Warrants (31/07/2026),NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNKD,Bank of Montreal,NYSE ARCA,ETF,2019-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNKU,Bank of Montreal,NYSE ARCA,ETF,2019-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNL,Broadstone Net Lease Inc,NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNNR,Banner Acquisition Corp - Class A,NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNNRU,Banner Acquisition Corp - Units (1 Ord ShareClass A & 1/2 War),NASDAQ,Stock,2021-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNNRW,Banner Acquisition Corp - Warrants (07/09/2026),NASDAQ,Stock,2021-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNO,United States Brent Crude Oil Fund,NYSE ARCA,ETF,2010-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNOV,Innovator U.S. Equity Buffer ETF - November,BATS,ETF,2019-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNOX,Bionomics Ltd,NASDAQ,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNR,Burning Rock Biotech Ltd,NASDAQ,Stock,2020-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNS,Bank Of Nova Scotia,NYSE,Stock,1999-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNSO,Bonso Electronics International,NASDAQ,Stock,1989-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNTC,Benitec Biopharma Inc,NASDAQ,Stock,2015-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNTCW,Benitec Biopharma Ltd,NASDAQ,Stock,2015-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNTX,BioNTech SE,NASDAQ,Stock,2019-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BNY,BlackRock New York Municipal Income Trust,NYSE,ETF,2001-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOAC,Bluescape Opportunities Acquisition Corp - Class A,NYSE,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOAC-U,Bluescape Opportunities Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOAC-WS,Bluescape Opportunities Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOAS,BOA Acquisition Corp - Class A,NYSE,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOAS-U,BOA Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOAS-WS,BOA Acquisition Corp - Warrants (22/02/2028),NYSE,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOAT,SonicShares Global Shipping ETF,NYSE ARCA,ETF,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOB,Merlyn.AI Best-of-Breed Core Momentum ETF,BATS,ETF,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOC,Boston Omaha Corp - Class A,NYSE,Stock,2017-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOCN,Blue Ocean Acquisition Corp - Class A,NASDAQ,Stock,2022-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOCNU,Blue Ocean Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOCNW,Blue Ocean Acquisition Corp - Warrants (02/12/2026),NASDAQ,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOCT,Innovator U.S. Equity Buffer ETF - October,BATS,ETF,2018-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BODY,Beachbody Company Inc (The) - Class A,NYSE,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BODY-WS,Beachbody Company Inc (The) - Warrants (31/12/2027),NYSE,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOE,BlackRock Enhanced Global Dividend Trust,NYSE,ETF,2005-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOH,Bank of Hawaii Corp,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOH-P-A,Bank of Hawaii Corp,NYSE,Stock,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOIL,ProShares Ultra Bloomberg Natural Gas,NYSE ARCA,ETF,2011-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOKF,BOK Financial Corp,NASDAQ,Stock,1991-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOLT,Bolt Biotherapeutics Inc,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BON,Bon Natural Life Ltd,NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOND,PIMCO Active Bond ETF,NYSE ARCA,ETF,2012-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOOM,DMC Global Inc,NASDAQ,Stock,1989-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOOT,Boot Barn Holdings Inc,NYSE,Stock,2014-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BORR,Borr Drilling Ltd,NYSE,Stock,2018-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOSC,B.O.S. Better Online Solutions,NASDAQ,Stock,1996-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOSS,Global X Founder-Run Companies ETF,BATS,ETF,2017-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOTJ,Bank of James Financial Group Inc,NASDAQ,Stock,2000-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOTZ,Global X Funds Global X Robotics & Artificial Intelligence ETF,NASDAQ,ETF,2016-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOUT,Innovator IBD(R) Breakout Opportunities ETF,NYSE ARCA,ETF,2018-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOWL,Bowlero Corp - Class A,NYSE,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOWL-WS,Bowlero Corp - Warrants (01/03/2026),NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOWXU,WeWork Inc - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOX,Box Inc - Class A,NYSE,Stock,2015-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOXD,Boxed Inc,NYSE,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOXD-WS,Boxed Inc Warrants each whole warrant exercisable to purchase one share of Common Stock at an exercise price of 11.50 per share,NYSE,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOXDWS,Boxed Inc - Warrants (18/12/2025),NYSE,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BOXL,Boxlight Corporation - Class A,NASDAQ,Stock,2017-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BP,BP plc,NYSE,Stock,1977-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPAC,Bullpen Parlay Acquisition Co - Class A,NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPACU,Bullpen Parlay Acquisition Co - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPACW,Bullpen Parlay Acquisition Co - Warrants (03/12/2026),NASDAQ,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPMC,Blueprint Medicines Corp,NASDAQ,Stock,2015-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPMP,BP Midstream Partners LP,NYSE,Stock,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPOP,Popular Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPOPM,Popular Capital Trust II,NASDAQ,Stock,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPRN,Bank of Princeton,NASDAQ,Stock,2016-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPT,BP Prudhoe Bay Royalty Trust,NYSE,Stock,1989-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPTH,Bio-Path Holdings Inc,NASDAQ,Stock,2008-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPTS,Biophytis,NASDAQ,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPYPM,Brookfield Property Preferred LP,NASDAQ,Stock,2021-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPYPN,Brookfield Property Partners L.P.,NASDAQ,Stock,2020-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPYPO,Brookfield Property Partners L.P.,NASDAQ,Stock,2019-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BPYPP,Brookfield Property Partners L.P.,NASDAQ,Stock,2019-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BQ,Boqii Holding Ltd,NYSE,Stock,2020-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BQH,BlackRock New York Municipal Bond Trust,NYSE,ETF,2002-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BR,Broadridge Financial Solutions Inc,NYSE,Stock,2007-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRAC,Broad Capital Acquisition Corp,NASDAQ,Stock,2022-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRACR,Broad Capital Acquisition Corp,NASDAQ,Stock,2022-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRACU,Broad Capital Acquisition Corp - Units (1 Ord & 1 Rts),NASDAQ,Stock,2022-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRAG,Bragg Gaming Group Inc,NASDAQ,Stock,2021-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRBR,Bellring Brands Inc,NYSE,Stock,2019-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRBR-W,BellRing Brands Inc When Issued,NYSE,Stock,2022-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRBS,Blue Ridge Bankshares Inc (VA),NYSE MKT,Stock,2007-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRC,Brady Corp - Class A,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRCC,BRC Inc - Class A,NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRCN,Burcon Nutrascience Corp,NASDAQ,Stock,2011-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRD,Beard Energy Transition Acquisition Corp - Class A,NYSE,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRD-U,Beard Energy Transition Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRD-WS,Beard Energy Transition Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRDG,Bridge Investment Group Holdings Inc - Class A,NYSE,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRDS,Bird Global Inc - Class A,NYSE,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRDS-WS,Bird Global Inc - Warrants (01/01/9999),NYSE,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BREZ,Breeze Holdings Acquisition Corp,NASDAQ,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BREZR,Breeze Holdings Acquisition Corp,NASDAQ,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BREZW,Breeze Holdings Acquisition Corp - Warrants (20/11/2022),NASDAQ,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRF,VANECK BRAZIL SMALL-CAP ETF ,NYSE ARCA,ETF,2009-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRFH,Barfresh Food Group Inc,NASDAQ,Stock,2012-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRFS,BRF S.A.,NYSE,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRG,Bluerock Residential Growth REIT Inc - Class A,NYSE MKT,Stock,2014-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRG-P-C,Bluerock Residential Growth REIT Inc 7625 Series C Cumulative Redeemable Preferred Stock,NYSE MKT,Stock,2016-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRG-P-D,Bluerock Residential Growth REIT Inc 7125 Series D Cumulative Preferred Stock 001 par value per share,NYSE MKT,Stock,2016-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRID,Bridgford Foods Corporation,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRIV,B Riley Principal 250 Merger Corp - Class A,NASDAQ,Stock,2021-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRIVU,B Riley Principal 250 Merger Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRIVW,B Riley Principal 250 Merger Corp - Warrants (06/04/2026),NASDAQ,Stock,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRK-A,Berkshire Hathaway Inc - Class A,NYSE,Stock,1980-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRK-B,Berkshire Hathaway Inc - Class B,NYSE,Stock,1996-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRKH,BurTech Acquisition Corp - Class A,NASDAQ,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRKHU,BurTech Acquisition Corp - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRKHW,BurTech Acquisition Corp - Warrants (18/12/2026),NASDAQ,Stock,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRKL,Brookline Bancorp Inc,NASDAQ,Stock,1998-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRKR,Bruker Corp,NASDAQ,Stock,2000-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRLI,Brilliant Acquisition Corp,NASDAQ,Stock,2020-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRLIR,Brilliant Acquisition Corp,NASDAQ,Stock,2020-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRLIU,Brilliant Acquisition Corp - Unit (1 Ordinary share 1 War and 1 Rts),NASDAQ,Stock,2020-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRLIW,Brilliant Acquisition Corp - Warrants (31/03/2025),NASDAQ,Stock,2020-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRLT,Brilliant Earth Group Inc Class A,NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRMK,Broadmark Realty Capital Inc,NYSE,Stock,2019-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRMK-WS,Broadmark Realty Capital Inc - Warrants (15/11/2024),NYSE MKT,Stock,2019-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRN,Barnwell Industries Inc,NYSE MKT,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRO,Brown & Brown Inc,NYSE,Stock,1992-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BROG,Brooge Energy Ltd,NASDAQ,Stock,2018-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BROGR,Twelve Seas Investment Company Rights,NASDAQ,Stock,2018-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BROS,Dutch Bros Inc - Class A,NYSE,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRP,BRP Group Inc - Class A,NASDAQ,Stock,2019-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRPM,B. Riley Principal 150 Merger Corp - Class A,NASDAQ,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRPMU,B. Riley Principal 150 Merger Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRPMW,B. Riley Principal 150 Merger Corp - Warrants (01/03/2028),NASDAQ,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRQS,Borqs Technologies Inc,NASDAQ,Stock,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRSP,BrightSpire Capital Inc - Class A,NYSE,Stock,2018-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRT,BRT Apartments Corp,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRTX,BioRestorative Therapies Inc,NASDAQ,Stock,2007-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRX,Brixmor Property Group Inc,NYSE,Stock,2013-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRY,Berry Corp,NASDAQ,Stock,2018-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRZE,Braze Inc - Class A,NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BRZU,Direxion Daily MSCI Brazil Bull 2X Shares,NYSE ARCA,ETF,2013-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSAC,Banco Santander Chile SA,NYSE,Stock,1994-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSAQ,Black Spade Acquisition Co - Class A,NYSE,Stock,2021-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSAQ-U,Black Spade Acquisition Co - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSAQ-WS,Black Spade Acquisition Co - Warrants (01/01/9999),NYSE,Stock,2021-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSBE,Invesco BulletShares 2022 USD Emerging Markets Debt ETF,NASDAQ,ETF,2018-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSBK,Bogota Financial Corp,NASDAQ,Stock,2020-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSBR,Banco Santander (Brasil) S.A.,NYSE,Stock,2009-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCE,Invesco BulletShares 2023 USD Emerging Markets Debt ETF,NASDAQ,ETF,2018-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCM,Invesco BulletShares 2022 Corporate Bond ETF,NASDAQ,ETF,2013-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCN,Invesco BulletShares 2023 Corporate Bond ETF,NASDAQ,ETF,2014-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCO,Invesco BulletShares 2024 Corporate Bond ETF,NASDAQ,ETF,2014-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCP,Invesco BulletShares 2025 Corporate Bond ETF,NASDAQ,ETF,2015-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCQ,Invesco BulletShares 2026 Corporate Bond ETF,NASDAQ,ETF,2016-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCR,Invesco BulletShares 2027 Corporate Bond ETF,NASDAQ,ETF,2017-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCS,INVESCO BULLETSHARES 2028 CORPORATE BOND ETF ,NASDAQ,ETF,2018-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCT,Invesco BulletShares 2029 Corporate Bond ETF,NASDAQ,ETF,2019-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCU,INVESCO BULLETSHARES 2030 CORPORATE BOND ETF ,NASDAQ,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSCV,Invesco BulletShares 2031 Corporate Bond ETF,NASDAQ,ETF,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSD,BlackRock Strategic Municipal Trust,NYSE,ETF,1999-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSDE,INVESCO BULLETSHARES 2024 USD EMERGING MARKETS DEBT ETF ,NASDAQ,ETF,2018-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSE,BlackRock New York Municipal Income Quality Trust,NYSE,ETF,2002-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSEA,ETFMG Breakwave Sea Decarbonization Tech ETF,NYSE ARCA,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSEP,Innovator U.S. Equity Buffer ETF - September,BATS,ETF,2019-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSET,Bassett Furniture Industries Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSFC,Blue Star Foods Corp,NASDAQ,Stock,2020-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSGA,Blue Safari Group Acquisition Corp - Class A,NASDAQ,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSGAR,Blue Safari Group Acquisition Corp,NASDAQ,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSGAU,Blue Safari Group Acquisition Corp - Units (1 Ord Class A & 1 Right),NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSGM,Biosig Technologies Inc,NASDAQ,Stock,2014-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSIG,BrightSphere Investment Group Inc,NYSE,Stock,2018-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSJM,Invesco BulletShares 2022 High Yield Corporate Bond ETF,NASDAQ,ETF,2014-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSJN,Invesco BulletShares 2023 High Yield Corporate Bond ETF,NASDAQ,ETF,2015-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSJO,Invesco BulletShares 2024 High Yield Corporate Bond ETF,NASDAQ,ETF,2016-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSJP,Invesco BulletShares 2025 High Yield Corporate Bond ETF,NASDAQ,ETF,2017-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSJQ,Invesco BulletShares 2026 High Yield Corporate Bond ETF,NASDAQ,ETF,2018-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSJR,Invesco BulletShares 2027 High Yield Corporate Bond ETF,NASDAQ,ETF,2019-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSJS,Invesco BulletShares 2028 High Yield Corporate Bond ETF,NASDAQ,ETF,2020-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSJT,Invesco BulletShares 2029 High Yield Corporate Bond ETF,NASDAQ,ETF,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSKY,Big Sky Growth Partners Inc - Class A,NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSKYU,Big Sky Growth Partners Inc - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSKYW,Big Sky Growth Partners Inc - Warrants (01/04/2026),NASDAQ,Stock,2021-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSL,Blackstone Senior Floating Rate Term Fund,NYSE,ETF,2010-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSM,Black Stone Minerals L.P.,NYSE,Stock,2015-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMM,Invesco BulletShares 2022 Municipal Bond ETF,NASDAQ,ETF,2019-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMN,Invesco BulletShares 2023 Municipal Bond ETF,NASDAQ,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMO,INVESCO BULLETSHARES 2024 MUNICIPAL BOND ETF ,NASDAQ,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMP,Invesco BulletShares 2025 Municipal Bond ETF,NASDAQ,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMQ,INVESCO BULLETSHARES 2026 MUNICIPAL BOND ETF ,NASDAQ,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMR,INVESCO BULLETSHARES 2027 MUNICIPAL BOND ETF ,NASDAQ,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMS,Invesco BulletShares 2028 Municipal Bond ETF,NASDAQ,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMT,INVESCO BULLETSHARES 2029 MUNICIPAL BOND ETF ,NASDAQ,ETF,2019-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMU,INVESCO BULLETSHARES 2030 MUNICIPAL BOND ETF ,NASDAQ,ETF,2020-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMV,Invesco BulletShares 2031 Municipal Bond ETF,NASDAQ,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSMX,Banco Santander Mexico S.A.,NYSE,Stock,2012-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSQR,BSquare Corp,NASDAQ,Stock,1999-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSRR,Sierra Bancorp,NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BST,BlackRock Science and Technology Trust,NYSE,ETF,2014-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BST-R,BlackRock Science and Technology Trust Rights,NYSE,Stock,2021-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BST-R-W,BlackRock Science and Technology Trust Rights expiring July 14 2021 When Issued,NYSE,Stock,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSTP,Innovator Buffer Step-Up Strategy ETF,NYSE ARCA,ETF,2022-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSTZ,BlackRock Science and Technology Trust II,NYSE,Stock,2019-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSV,Vanguard Short-Term Bond ETF,NYSE ARCA,ETF,2007-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSVN,Bank7 Corp,NASDAQ,Stock,2018-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSX,Boston Scientific Corp,NYSE,Stock,1992-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSX-P-A,,NYSE,Stock,2020-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BSY,Bentley Systems Inc - Class B,NASDAQ,Stock,2020-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTA,BlackRock LongTerm Municipal Advantage Trust,NYSE,ETF,2006-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTAI,BioXcel Therapeutics Inc,NASDAQ,Stock,2018-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTAL,AGFiQ U.S. Market Neutral Anti-Beta Fund,NYSE ARCA,ETF,2011-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTB,Bit Brother Ltd - Class A,NASDAQ,Stock,2015-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTBD,BT Brands Inc,NASDAQ,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTBDW,BT Brands Inc - Warrants (12/11/2026),NASDAQ,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTBT,Bit Digital Inc,NASDAQ,Stock,2018-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTCM,BIT Mining Ltd,NYSE,Stock,2013-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTCR,Volt Crypto Industry Revolution and Tech ETF,NYSE ARCA,ETF,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTCS,BTCS Inc,NASDAQ,Stock,2014-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTCY,Biotricity Inc,NASDAQ,Stock,2016-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTEC,Principal Healthcare Innovators ETF,NASDAQ,ETF,2016-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTEK,BlackRock Future Tech ETF,NYSE ARCA,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTF,Valkyrie Bitcoin Strategy ETF,NASDAQ,ETF,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTG,B2gold Corp,NYSE MKT,Stock,2008-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTHM,BlackRock Future U.S. Themes ETF,NYSE ARCA,ETF,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTI,British American Tobacco Plc,NYSE,Stock,1980-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTN,Ballantyne Strong Inc,NYSE MKT,Stock,2000-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTNB,Bridgetown 2 Holdings Ltd - Class A,NASDAQ,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTO,John Hancock Financial Opportunities Fund,NYSE,ETF,1994-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTOG,China Xiangtai Food Co Ltd,NASDAQ,Stock,2019-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTRS,BTRS Holdings Inc - Class 1,NASDAQ,Stock,2019-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTT,BlackRock Municipal 2030 Target Term Trust,NYSE,ETF,2012-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTTR,Better Choice Company Inc,NYSE MKT,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTTX,Better Therapeutics Inc,NASDAQ,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTU,Peabody Energy Corp New,NYSE,Stock,2017-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTWN,Bridgetown Holdings Ltd - Class A,NASDAQ,Stock,2020-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTWNU,Bridgetown Holdings Ltd - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2020-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTWNW,Bridgetown Holdings Ltd - Warrants (14/10/2025),NASDAQ,Stock,2020-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTX,Brooklyn ImmunoTherapeutics Inc,NASDAQ,Stock,1992-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BTZ,BlackRock Credit Allocation Income Trust,NYSE,ETF,2006-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUD,Anheuser-Busch In Bev SA/NV,NYSE,Stock,2009-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUDX,Cannabis Growth ETF,NYSE ARCA,ETF,2021-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUFB,Innovator Laddered Allocation Buffer ETF,BATS,ETF,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUFD,FT Cboe Vest Fund of Deep Buffer ETFs,BATS,ETF,2021-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUFF,Innovator Laddered Allocation Power Buffer ETF,BATS,ETF,2016-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUFG,FT Cboe Vest Buffered Allocation Growth ETF,BATS,ETF,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUFR,FT Cboe Vest Fund of Buffer ETFs,BATS,ETF,2020-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUFT,FT Cboe Vest Buffered Allocation Defensive ETF,BATS,ETF,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUG,Global X Cybersecurity ETF,NASDAQ,ETF,2019-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUI,BlackRock Utility Infrastructure & Power Opportunities Trust,NYSE,ETF,2011-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUL,Pacer US Cash Cows Growth ETF,NYSE ARCA,ETF,2019-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BULZ,Bank of Montreal,NYSE ARCA,Stock,2021-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUR,Burford Capital Ltd,NYSE,Stock,2015-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BURL,Burlington Stores Inc,NYSE,Stock,2013-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUSE,First Busey Corp,NASDAQ,Stock,1998-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUYZ,Franklin Disruptive Commerce ETF,BATS,ETF,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BUZZ,VanEck Social Sentiment ETF,NYSE ARCA,ETF,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BV,BrightView Holdings Inc,NYSE,Stock,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BVAL,BRAND VALUE ETF,NYSE ARCA,ETF,2017-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BVH,Bluegreen Vacations Holding Corporation - Class A,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BVN,Compania de Minas Buenaventura S.A.,NYSE,Stock,1996-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BVS,Bioventus Inc - Class A,NASDAQ,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BVXV,Biondvax Pharmaceuticals Ltd,NASDAQ,Stock,2015-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BW,Babcock & Wilcox Enterprises Inc,NYSE,Stock,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BW-P-A,Babcock & Wilcox Enterprises Inc,NYSE,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWA,BorgWarner Inc,NYSE,Stock,1993-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWAC,Better World Acquisition Corp,NASDAQ,Stock,2020-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWACU,Better World Acquisition Corp - Units (1 Ord & 1 War),NASDAQ,Stock,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWACW,Better World Acquisition Corp - Warrants (27/10/2025),NASDAQ,Stock,2020-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWAQ,Blue World Acquisition Corp - Class A,NASDAQ,Stock,2022-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWAQR,Blue World Acquisition Corp,NASDAQ,Stock,2022-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWAQU,Blue World Acquisition Corp - Units (1 Ord Class A & 1/2 War & 1 Right),NASDAQ,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWAQW,Blue World Acquisition Corp - Warrants (10/01/2029),NASDAQ,Stock,2022-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWAY,Brainsway Ltd,NASDAQ,Stock,2019-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWB,Bridgewater Bancshares Inc,NASDAQ,Stock,2018-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWBBP,Bridgewater Bancshares Inc,NASDAQ,Stock,2021-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWC,Blue Whale Acquisition Corp I - Class A,NASDAQ,Stock,2021-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWCAU,Blue Whale Acquisition Corp I - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWCAW,Blue Whale Acquisition Corp I - Warrants (30/07/2026),NASDAQ,Stock,2021-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWEN,Broadwind Inc,NASDAQ,Stock,2004-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWFG,Bankwell Financial Group Inc,NASDAQ,Stock,2010-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWG,BrandywineGLOBAL - Global Income Opportunities Fund Inc,NYSE,ETF,2012-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWMN,Bowman Consulting Group Ltd,NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWMX,Betterware de Mexico S.A.B. de C.V.,NASDAQ,Stock,2020-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWNB,Babcock & Wilcox Enterprises Inc,NYSE,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWSN,Babcock & Wilcox Enterprises Inc,NYSE,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWV,Blue Water Vaccines Inc,NASDAQ,Stock,2022-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWX,SPDR Bloomberg International Treasury Bond ETF,NYSE ARCA,ETF,2007-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWXT,BWX Technologies Inc,NYSE,Stock,2010-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BWZ,SPDR Bloomberg Short Term International Treasury Bond ETF,NYSE ARCA,ETF,2009-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BX,Blackstone Inc,NYSE,Stock,2007-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BXC,Bluelinx Hldgs Inc,NYSE,Stock,2004-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BXMT,Blackstone Mortgage Trust Inc - Class A,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BXMX,Nuveen SP 500 BuyWrite Income Fund,NYSE,ETF,2004-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BXP,Boston Properties Inc,NYSE,Stock,1997-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BXRX,Baudax Bio Inc,NASDAQ,Stock,2019-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BXS-P-A,BancorpSouth Bank,NYSE,Stock,2019-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BXSL,Blackstone Secured Lending Fund.,NYSE,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BY,Byline Bancorp Inc,NYSE,Stock,2017-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYD,Boyd Gaming Corp,NYSE,Stock,1993-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYFC,Broadway Financial Corp,NASDAQ,Stock,1996-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYLD,iShares Yield Optimized Bond ETF,NYSE ARCA,ETF,2014-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYM,BlackRock Municipal Income Quality Trust,NYSE,ETF,2002-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYN,Banyan Acquisition Corp - Class A,NYSE,Stock,2022-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYN-U,Banyan Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYN-WS,Banyan Acquisition Corp - Warrants (30/09/2028),NYSE,Stock,2022-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYND,Beyond Meat Inc,NASDAQ,Stock,2019-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYNOU,byNordic Acquisition Corporation - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYRN,Byrna Technologies Inc,NASDAQ,Stock,2011-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYSI,BeyondSpring Inc,NASDAQ,Stock,2017-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYTE,ROUNDHILL IO DIGITAL INFRASTRUCTURE ETF ,NYSE ARCA,ETF,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYTS,BYTE Acquisition Corp - Class A,NASDAQ,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYTSU,BYTE Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BYTSW,BYTE Acquisition Corp - Warrants (18/03/2026),NASDAQ,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BZ,Kanzhun Ltd,NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BZFD,BuzzFeed Inc - Class A,NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BZFDW,BuzzFeed Inc - Warrants (01/12/2026),NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BZH,Beazer Homes USA Inc,NYSE,Stock,1994-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BZM,BlackRock Maryland Municipal Bond Trust,NYSE,ETF,2002-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BZQ,ProShares UltraShort MSCI Brazil Capped ETF,NYSE ARCA,ETF,2009-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "BZUN,Baozun Inc,NASDAQ,Stock,2015-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "C,Citigroup Inc,NYSE,Stock,1977-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "C-P-J,Citigroup Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "C-P-K,Citigroup Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "C-P-N,Citigroup Capital VIII 7875 Fixed rate Floating Rate trust Preferred Securities TruPS,NYSE,Stock,2010-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAAP,Corporacion America Airports S.A.,NYSE,Stock,2018-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAAS,China Automotive Systems Inc,NASDAQ,Stock,2003-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CABA,Cabaletta Bio Inc,NASDAQ,Stock,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CABO,Cable One Inc,NYSE,Stock,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAC,Camden National Corp,NASDAQ,Stock,1997-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CACC,Credit Acceptance Corp,NASDAQ,Stock,1992-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CACG,ClearBridge All Cap Growth ESG ETF,NASDAQ,ETF,2017-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CACI,Caci International Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CADE,Cadence Bancorporation - Class A,NYSE,Stock,1985-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CADE-P-A,Cadence Bank 5.50 Non Cum Pfd Ser A,NYSE,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CADL,Candel Therapeutics Inc,NASDAQ,Stock,2021-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAE,Cae Inc,NYSE,Stock,1996-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAF,Morgan Stanley China A Share Fund Inc,NYSE,ETF,2006-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAG,Conagra Brands Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAH,Cardinal Health Inc,NYSE,Stock,1987-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAJ,Canon Inc,NYSE,Stock,1980-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAKE,Cheesecake Factory Inc,NASDAQ,Stock,1992-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAL,Caleres Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CALA,Calithera Biosciences Inc,NASDAQ,Stock,2014-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CALB,California Bancorp,NASDAQ,Stock,2017-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CALF,Pacer US Small Cap Cash Cows 100 ETF,BATS,ETF,2017-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CALM,Cal-Maine Foods Inc,NASDAQ,Stock,1996-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CALT,Calliditas Therapeutics AB,NASDAQ,Stock,2020-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CALX,Calix Inc,NYSE,Stock,2010-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAMP,Calamp Corp,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAMT,Camtek Ltd,NASDAQ,Stock,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAN,Canaan Inc,NASDAQ,Stock,2019-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CANE,Teucrium Sugar Fund,NYSE ARCA,ETF,2011-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CANF,Can-Fite Biopharma Ltd,NYSE MKT,Stock,2012-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CANG,Cango Inc,NYSE,Stock,2018-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CANO,Cano Health Inc - Class A,NYSE,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CANO-WS,Cano Health Inc Warrants,NYSE,Stock,2021-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAPD,Barclays Bank PLC,NYSE ARCA,ETF,2012-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAPL,CrossAmerica Partners LP,NYSE,Stock,2012-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAPR,Capricor Therapeutics Inc,NASDAQ,Stock,2007-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAR,Avis Budget Group Inc,NASDAQ,Stock,1990-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CARA,Cara Therapeutics Inc,NASDAQ,Stock,2014-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CARE,Carter Bankshares Inc,NASDAQ,Stock,2012-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CARG,CarGurus Inc - Class A,NASDAQ,Stock,2017-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CARR,Carrier Global Corp,NYSE,Stock,2020-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CARS,Cars.com,NYSE,Stock,2017-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CARV,Carver Bancorp Inc,NASDAQ,Stock,1994-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CARZ,First Trust S-Network Future Vehicles & Technology ETF,NASDAQ,ETF,2011-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAS,Cascade Acquisition Corp - Class A,NYSE,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAS-U,Cascade Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAS-WS,Cascade Acquisition Corp Redeemable Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50,NYSE,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CASA,Casa Systems Inc,NASDAQ,Stock,2017-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CASH,Meta Financial Group Inc,NASDAQ,Stock,1993-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CASI,CASI Pharmaceuticals Inc,NASDAQ,Stock,1996-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CASS,Cass Information Systems Inc,NASDAQ,Stock,1996-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CASY,Casey`s General Stores Inc,NASDAQ,Stock,1983-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CAT,Caterpillar Inc,NYSE,Stock,1962-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CATC,Cambridge Bancorp,NASDAQ,Stock,2017-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CATH,Global X S&P 500 Catholic Values ETF,NASDAQ,ETF,2016-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CATO,Cato Corp - Class A,NYSE,Stock,1987-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CATY,Cathay General Bancorp,NASDAQ,Stock,1990-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CB,Chubb Ltd,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBAN,Colony Bankcorp Inc,NASDAQ,Stock,1998-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBAT,CBAK Energy Technology Inc,NASDAQ,Stock,2002-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBAY,Cymabay Therapeutics Inc,NASDAQ,Stock,2014-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBD,Cia Brasileira De Distr-pao De Acucar ADR (),NYSE,Stock,1996-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBD-W,Companhia Brasileira de Distribuicao American Depositary Shares ExDistribution When Issued,NYSE,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBFV,CB Financial Services Inc,NASDAQ,Stock,2001-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBH,Virtus AllianzGI Convertible & Income 2024 Target Term Fund,NYSE,ETF,2017-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBIO,Catalyst Biosciences Inc,NASDAQ,Stock,2006-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBL,CBL& Associates Properties Inc - New,NYSE,Stock,2021-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBLS,Changebridge Capital Long/Short Equity ETF,NYSE ARCA,ETF,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBNK,Capital Bancorp Inc,NASDAQ,Stock,2018-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBO,NYSE LISTED TEST STOCK FOR CTS AND CQS,NYSE,Stock,2013-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBO-P-A,,NYSE,Stock,2019-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBOE,Cboe Global Markets Inc,BATS,Stock,2010-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBON,VanEck China Bond ETF,NYSE ARCA,ETF,2014-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBRE,CBRE Group Inc - Class A,NYSE,Stock,2004-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBRG,Chain Bridge I - Class A,NASDAQ,Stock,2022-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBRGU,Chain Bridge I - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBRGW,Chain Bridge I - Warrants (10/11/2026),NASDAQ,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBRL,Cracker Barrel Old Country Store Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBSE,CHANGEBRIDGE CAPITAL SUSTAINABLE EQUITY ETF ,NYSE ARCA,ETF,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBSH,Commerce Bancshares Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBT,Cabot Corp,NYSE,Stock,1980-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBTX,CBTX Inc,NASDAQ,Stock,2017-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBU,Community Bank System Inc,NYSE,Stock,1985-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBX,NYSE LISTED TEST,NYSE,Stock,2011-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CBZ,Cbiz Inc,NYSE,Stock,1995-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CC,Chemours Company,NYSE,Stock,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCAC-U,CITIC Capital Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCAI,Cascadia Acquisition Corp - Class A,NASDAQ,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCAIU,Cascadia Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCAIW,Cascadia Acquisition Corp - Warrants (30/09/2028),NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCAP,Crescent Capital BDC Inc,NASDAQ,Stock,2020-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCB,Coastal Financial Corp,NASDAQ,Stock,2018-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCBG,Capital City Bank Group Inc,NASDAQ,Stock,1997-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCC-WS,Churchill Capital Corp Wt Exp 2023,NYSE,Stock,2018-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCCC,C4 Therapeutics Inc,NASDAQ,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCCS,CCC Intelligent Solutions Holdings Inc,NYSE,Stock,2021-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCCS-WS,CCC Intelligent Solutions Holdings Inc Warrants,NYSE,Stock,2021-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCD,Calamos Dynamic Convertible and Income Fund,NASDAQ,ETF,2015-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCEL,Cryo-Cell International Inc,NASDAQ,Stock,1994-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCEP,Coca-Cola Europacific Partners Plc,NASDAQ,Stock,1986-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCF,Chase Corp,NYSE MKT,Stock,1995-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCI,Crown Castle International Corp,NYSE,Stock,1998-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCI-P-A,Crown Castle International Corporation 6875 Mandatory Convertible Preferred Stock Series A,NYSE,Stock,2017-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCJ,Cameco Corp,NYSE,Stock,1996-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCK,Crown Holdings Inc,NYSE,Stock,1984-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCL,Carnival Corp (Paired Stock),NYSE,Stock,1989-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCLP,CSI Compressco LP,NASDAQ,Stock,2011-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCM,Concord Medical Services,NYSE,Stock,2009-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCMP,CMC Materials Inc,NASDAQ,Stock,2000-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCNC,Code Chain New Continent Ltd,NASDAQ,Stock,2015-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCNE,CNB Financial Corp (PA),NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCNEP,CNB Financial Corp (PA),NASDAQ,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCO,Clear Channel Outdoor Holdings Inc,NYSE,Stock,2005-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCOI,Cogent Communications Holdings Inc,NASDAQ,Stock,2002-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCOR,Core Alternative ETF,NYSE ARCA,ETF,2017-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCRD,CoreCard Corporation - Class A,NYSE,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCRN,Cross Country Healthcares Inc,NASDAQ,Stock,2001-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCRV,ISHARES COMMODITY CURVE CARRY STRATEGY ETF ,NYSE ARCA,ETF,2020-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCS,Century Communities Inc,NYSE,Stock,2014-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCSI,CHROMATICS COLOR SCIENCES INTERNATIONAL INC,NASDAQ,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCSIV,Consensus Cloud Solutions Inc,NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCTS,Cactus Acquisition Corp 1 Ltd - Class A,NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCTSU,Cactus Acquisition Corp 1 Ltd - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCTSW,Cactus Acquisition Corp 1 Ltd - Warrants(17/08/2028),NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCU,Compania Cervecerias Unidas S.A.,NYSE,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCV,Churchill Capital Corp V - Class A,NYSE,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCV-U,Churchill Capital Corp V - Units (1 Ord Class A & 1/4 War),NYSE,Stock,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCV-WS,Churchill Capital Corp V - Warrants (29/10/2027),NYSE,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCVI,Churchill Capital Corp VI - Class A,NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCVI-U,Churchill Capital Corp VI - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCVI-WS,Churchill Capital Corp VI - Warrants (01/01/9999),NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCXI,ChemoCentryx Inc,NASDAQ,Stock,2012-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CCZ,Comcast Corp,NYSE,Stock,1999-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CD,Chindata Group Holdings Ltd,NASDAQ,Stock,2020-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDAK,Codiak Biosciences Inc,NASDAQ,Stock,2020-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDAQ,Compass Digital Acquisition Corp - Class A,NASDAQ,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDAQU,Compass Digital Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDAQW,Compass Digital Acquisition Corp - Warrants (29/09/2026),NASDAQ,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDAY,Ceridian HCM Holding Inc,NYSE,Stock,2018-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDC,VictoryShares US EQ Income Enhanced Volatility Wtd ETF,NASDAQ,ETF,2014-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDE,Coeur Mining Inc,NYSE,Stock,1990-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDEV,Centennial Resource Development Inc - Class A,NASDAQ,Stock,2016-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDK,CDK Global Inc,NASDAQ,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDL,VictoryShares US Large Cap High Div Volatility Wtd ETF,NASDAQ,ETF,2015-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDLA,Candela Medical Inc,NASDAQ,Stock,2017-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDLX,Cardlytics Inc,NASDAQ,Stock,2018-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDMO,Avid Bioservices Inc,NASDAQ,Stock,2018-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDNA,Caredx Inc,NASDAQ,Stock,2014-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDNS,Cadence Design Systems Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDR,Cedar Realty Trust Inc,NYSE,Stock,1993-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDR-P-B,Cedar Realty Trust Inc,NYSE,Stock,2012-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDR-P-C,Cedar Realty Trust Inc,NYSE,Stock,2017-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDRE,Cadre Holdings Inc,NYSE,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDRO,Codere Online Luxembourg S.A,NASDAQ,Stock,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDROW,Codere Online Luxembourg S.A - Warrants (23/11/2026),NASDAQ,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDTX,Cidara Therapeutics Inc,NASDAQ,Stock,2015-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDW,CDW Corp,NASDAQ,Stock,2013-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDX,Simplify High Yield PLUS Credit Hedge ETF,NYSE ARCA,ETF,2022-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDXC,Chromadex Corp,NASDAQ,Stock,2008-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDXS,Codexis Inc,NASDAQ,Stock,2010-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDZI,Cadiz Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CDZIP,Cadiz Inc,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CE,Celanese Corp - Series A,NYSE,Stock,2005-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEA,China Eastern Airlines Corporation Ltd,NYSE,Stock,1997-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEAD,CEA Industries Inc,NASDAQ,Stock,2013-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEADW,CEA Industries Inc - Warrants (11/02/2027),NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CECE,Ceco Environmental Corp,NASDAQ,Stock,1992-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEE,Central and Eastern Europe Fund Inc (The),NYSE,ETF,1990-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEF,Sprott Physical Gold and Silver Trust,NYSE ARCA,ETF,1990-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEFA,Global X S&P Catholic Values Developed ex-U.S. ETF,NASDAQ,ETF,2020-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEFD,UBS AG London Branch,NYSE ARCA,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEFS,Saba Closed-End Funds ETF,BATS,ETF,2017-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEFZ,UBS AG London Branch ETRACS Monthly Pay 2X Leveraged Closed End Fd ETN Ser B 12102043,NYSE ARCA,ETF,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEG,Constellation Energy Corporation,NASDAQ,Stock,2022-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEGVV,Constellation Energy Corporation,NASDAQ,Stock,2022-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEI,Camber Energy Inc,NYSE MKT,Stock,2007-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEIX,Consol Energy Inc,NYSE,Stock,2017-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CELC,Celcuity Inc,NASDAQ,Stock,2017-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CELG-R,BristolMyers Squibb Company. Contingent Value Rt 12312030,NYSE,Stock,2019-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CELGR,BristolMyers Squibb Company Celegne Contingent Value Rights,NYSE,Stock,2019-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CELH,Celsius Holdings Inc,NASDAQ,Stock,2007-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CELP,Cypress Environmental Partners L.P.,NYSE,Stock,2014-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CELU,Celularity Inc - Class A,NASDAQ,Stock,2019-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CELUW,Celularity Inc - Warrants (16/07/2026),NASDAQ,Stock,2019-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CELZ,Creative Medical Technology Holdings Inc,NASDAQ,Stock,2015-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEM,ClearBridge MLP and Midstream Fund Inc,NYSE,ETF,2010-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEMB,iShares J.P. Morgan EM Corporate Bond ETF,BATS,ETF,2012-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEMI,Chembio Diagnostics Inc,NASDAQ,Stock,2004-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEN,Center Coast Brookfield MLP & Energy Infrastructure Fund,NYSE,ETF,2013-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CENH,Arqit Quantum Inc - Class A,NASDAQ,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CENN,Cenntro Electric Group Ltd,NASDAQ,Stock,2009-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CENQ,CENAQ Energy Corp - Class A,NASDAQ,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CENQU,CENAQ Energy Corp - Units (1 Ord Class A & 0.75 War),NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CENQW,CENAQ Energy Corp - Warrants (04/02/2026),NASDAQ,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CENT,Central Garden & Pet Company,NASDAQ,Stock,1993-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CENTA,Central Garden & Pet Co. - Class A,NASDAQ,Stock,2007-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CENX,Century Aluminum Company,NASDAQ,Stock,1996-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEPU,Central Puerto,NYSE,Stock,2018-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEQP,Crestwood Equity Partners LP,NYSE,Stock,2001-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEQP-P,Crestwood Equity Partners LP Preferred Units representing limited partner interests,NYSE,Stock,2018-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CERE,Cerevel Therapeutics Holdings Inc,NASDAQ,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEREW,Cerevel Therapeutics Holdings Inc - Warrants (27/10/2025),NASDAQ,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CERN,Cerner Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CERS,Cerus Corp,NASDAQ,Stock,1997-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CERT,Certara Inc,NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CET,Central Securities Corp,NYSE MKT,ETF,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CETX,Cemtrex Inc,NASDAQ,Stock,2015-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CETXP,Cemtrex Inc,NASDAQ,Stock,2017-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEV,Eaton Vance California Municipal Income Trust,NYSE MKT,ETF,1999-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEVA,Ceva Inc,NASDAQ,Stock,2002-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEW,WisdomTree Emerging Currency Strategy Fund,NYSE ARCA,ETF,2009-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CEY,VICTORYSHARES EMERGING MARKET HIGH DIV VOLATILITY WTD ETF ,NASDAQ,ETF,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CF,CF Industries Holdings Inc,NYSE,Stock,2005-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFA,VictoryShares US 500 Volatility Wtd ETF,NASDAQ,ETF,2014-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFB,Crossfirst Bankshares Inc,NASDAQ,Stock,2019-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFBK,CF Bankshares Inc,NASDAQ,Stock,1998-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFCV,CLEARBRIDGE FOCUS VALUE ETF ,BATS,ETF,2020-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFFE,CF Acquisition Corp VIII - Class A,NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFFEU,CF Acquisition Corp VIII - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFFEW,CF Acquisition Corp VIII - Warrants (31/03/2028),NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFFI,C & F Financial Corp,NASDAQ,Stock,1998-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFFN,Capitol Federal Financial,NASDAQ,Stock,1999-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFFS,CF Acquisition Corp VII - Class A,NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFFSU,CF Acquisition Corp VII - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFFSW,CF Acquisition Corp VII - Warrants (31/03/2028),NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFG,Citizens Financial Group Inc,NYSE,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFG-P-D,Citizens Financial Group Inc Depositary Shares Series D,NYSE,Stock,2019-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFG-P-E,Citizens Financial Group Inc,NYSE,Stock,2019-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFIV,CF Acquisition Corp IV - Class A,NASDAQ,Stock,2021-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFIVU,CF Acquisition Corp IV - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFIVW,CF Acquisition Corp IV - Warrants (31/12/2027),NASDAQ,Stock,2021-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFLT,Confluent Inc Class A,NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFMS,Conformis Inc,NASDAQ,Stock,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFO,VictoryShares US 500 Enhanced Volatility Wtd ETF,NASDAQ,ETF,2014-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFR,Cullen Frost Bankers Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFR-P-A,CullenFrost Bankers Inc Perpetual Preferred Series A,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFR-P-A-CL,CullenFrost Bankers Inc. Perpetual Preferred Series A,NYSE,Stock,2020-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFR-P-B,Cullen Frost Bankers Inc,NYSE,Stock,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFRX,ContraFect Corp,NASDAQ,Stock,2014-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFSB,CFSB Bancorp Inc,NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFVI,CF Acquisition Corp VI - Class A,NASDAQ,Stock,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFVIU,CF Acquisition Corp VI - Units (1 Ord Class A & 1/4 War),NASDAQ,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFVIW,CF Acquisition Corp VI - Warrants (17/02/2026),NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CFX,Colfax Corp,NYSE,Stock,2008-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CG,Carlyle Group Inc (The),NASDAQ,Stock,2012-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGA,China Green Agriculture Inc,NYSE,Stock,2008-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGABL,Carlyle Finance LLC,NASDAQ,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGAU,Centerra Gold Inc,NYSE,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGBD,TCG BDC Inc,NASDAQ,Stock,2017-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGC,Canopy Growth Corporation,NASDAQ,Stock,2014-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGCP,Capital Group Core Plus Income ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGDV,Capital Group Dividend Value ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGEM,Cullinan Oncology Inc,NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGEN,Compugen Ltd,NASDAQ,Stock,2000-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGGO,Capital Group Global Growth Equity ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGGR,Capital Group Growth ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGNT,Cognyte Software Ltd,NASDAQ,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGNX,Cognex Corp,NASDAQ,Stock,1989-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGO,Calamos Global Total Return Fund,NASDAQ,ETF,2005-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGRN,Capstone Green Energy Corp,NASDAQ,Stock,2000-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGTX,Cognition Therapeutics Inc,NASDAQ,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGUS,Capital Group Core Equity ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGW,Invesco S&P Global Water Index ETF,NYSE ARCA,ETF,2007-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CGXU,Capital Group International Focus Equity ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHAA,Catcha Investment Corp - Class A,NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHAA-U,Catcha Investment Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHAA-WS,Catcha Investment Corp - Warrants (01/01/9999),NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHAC-U,BiomX Inc - Units (1 Ord & 1 War),NYSE MKT,Stock,2018-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHAD,Direxion Daily CSI 300 China A Share Bear 1X Shares,NYSE ARCA,ETF,2015-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHAU,DIREXION DAILY CSI 300 CHINA A SHARE BULL 2X SHARES ,NYSE ARCA,ETF,2015-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHB,GLOBAL X CHINA BIOTECH INNOVATION ETF ,NASDAQ,ETF,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHCI,Comstock Holding Co. Inc - Class A,NASDAQ,Stock,2004-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHCO,City Holding Company,NASDAQ,Stock,1993-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHCT,Community Healthcare Trust Inc,NYSE,Stock,2015-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHD,Church & Dwight Co. Inc,NYSE,Stock,1986-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHDN,Churchill Downs Inc,NASDAQ,Stock,1993-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHE,Chemed Corp,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHEF,Chefs` Warehouse Inc,NASDAQ,Stock,2011-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHEK,Check-Cap Ltd,NASDAQ,Stock,2015-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHEKZ,CheckCap Ltd Warrants Series C 03052023,NASDAQ,Stock,2018-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHGG,Chegg Inc,NYSE,Stock,2013-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHGX,AXS Change Finance ESG ETF,NYSE ARCA,ETF,2017-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHH,Choice Hotels International Inc,NYSE,Stock,1996-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHI,Calamos Convertible Opportunities and Income Fund,NASDAQ,ETF,2002-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIC,GLOBAL X MSCI CHINA COMMUNICATION SERVICES ETF ,NYSE ARCA,ETF,2010-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIE,Global X MSCI China Energy ETF,NYSE ARCA,ETF,2010-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIH,Global X MSCI China Health Care ETF,NYSE ARCA,ETF,2018-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHII,GLOBAL X MSCI CHINA INDUSTRIALS ETF ,NYSE ARCA,ETF,2009-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIK,Global X MSCI China Information Technology ETF,NYSE ARCA,ETF,2018-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIM,Global X MSCI China Materials ETF,NYSE ARCA,ETF,2010-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIQ,Global X MSCI China Consumer Discretionary ETF,NYSE ARCA,ETF,2009-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIR,Global X MSCI China Real Estate ETF,NYSE ARCA,ETF,2018-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIS,GLOBAL X MSCI CHINA CONSUMER STAPLES ETF ,NYSE ARCA,ETF,2018-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIU,GLOBAL X MSCI CHINA UTILITIES ETF ,NYSE ARCA,ETF,2018-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHIX,Global X MSCI China Financials ETF,NYSE ARCA,ETF,2010-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHK,Chesapeake Energy Corp - New,NASDAQ,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHKEL,Chesapeake Energy Corp - Warrants - Class C (01/03/2026),NASDAQ,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHKEW,Chesapeake Energy Corp - Warrants - Class A (01/03/2026),NASDAQ,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHKEZ,Chesapeake Energy Corp - Warrants - Class B (01/03/2026),NASDAQ,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHKP,Check Point Software Technolgies,NASDAQ,Stock,1996-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHMG,Chemung Financial Corp,NASDAQ,Stock,1999-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHMI,Cherry Hill Mortgage Investment Corporation,NYSE,Stock,2013-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHMI-P-A,Cherry Hill Mortgage Investment Corporation,NYSE,Stock,2017-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHMI-P-B,Cherry Hill Mortgage Investment Corporation 8250 Series B FixedtoFloating Rate Cumulative Redeemable Preferred Stock,NYSE,Stock,2019-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHN,China Fund Inc,NYSE,ETF,1992-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHNA,Loncar China BioPharma ETF,NASDAQ,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHNG,Change Healthcare Inc,NASDAQ,Stock,2019-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHNG 6,Change Healthcare Inc,NASDAQ,Stock,2019-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHNGV,Change Healthcare Inc,NASDAQ,Stock,2020-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHNR,China Natural Resources Inc,NASDAQ,Stock,1995-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHPM,CHP Merger Corp - Class A,NASDAQ,Stock,2020-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHPMU,CHP Merger Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2019-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHPMW,CHP Merger Corp - Warrants (22/11/2024),NASDAQ,Stock,2020-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHPT,ChargePoint Holdings Inc - Class A,NYSE,Stock,2019-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHRA,Charah Solutions Inc,NYSE,Stock,2018-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHRB,Charah Solutions Inc,NYSE,Stock,2021-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHRS,Coherus Biosciences Inc,NASDAQ,Stock,2014-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHRW,C.H. Robinson Worldwide Inc,NASDAQ,Stock,1997-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHS,Chico`s Fas Inc,NYSE,Stock,1993-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHSCL,CHS Inc,NASDAQ,Stock,2015-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHSCM,CHS Inc,NASDAQ,Stock,2014-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHSCN,CHS Inc,NASDAQ,Stock,2014-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHSCO,CHS Inc,NASDAQ,Stock,2013-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHSCP,CHS Inc,NASDAQ,Stock,2003-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHT,Chunghwa Telecom,NYSE,Stock,2003-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHTR,Charter Communications Inc - Class A,NASDAQ,Stock,2010-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHUY,Chuy`s Holdings Inc,NASDAQ,Stock,2012-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHW,Calamos Global Dynamic Income Fund,NASDAQ,ETF,2007-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHWA,CHW Acquisition Corp,NASDAQ,Stock,2021-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHWAU,CHW Acquisition Corp - Units (1 Ord & 1 War),NASDAQ,Stock,2021-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHWAW,CHW Acquisition Corp - Warrants (01/03/2028),NASDAQ,Stock,2021-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHWY,Chewy Inc - Class A,NYSE,Stock,2019-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHX,ChampionX Corporation,NASDAQ,Stock,2018-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHX-W,ChampionX Corporation Additional Shares When Issued,NYSE,Stock,2020-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CHY,Calamos Convertible Hi Income Fund,NASDAQ,ETF,2003-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CI,Cigna Corp,NYSE,Stock,1982-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIA,Citizens Inc - Class A,NYSE,Stock,1988-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIAN,Cian Plc,NYSE,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIB,Bancolombia S.A.,NYSE,Stock,1995-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIBR,First Trust NASDAQ Cybersecurity ETF,NASDAQ,ETF,2015-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CID,VICTORYSHARES INTERNATIONAL HIGH DIV VOLATILITY WTD ETF ,NASDAQ,ETF,2015-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIDM,Cinedigm Corp - Class A,NASDAQ,Stock,2003-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIEN,CIENA Corp,NYSE,Stock,1997-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIF,MFS Intermediate High Income Fund,NYSE,ETF,1988-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIFR,Cipher Mining Inc,NASDAQ,Stock,2020-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIFRW,Cipher Mining Inc - Warrants (26/08/2026),NASDAQ,Stock,2020-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIG,Cia Energetica De Minas Gerais,NYSE,Stock,1996-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIG-C,Cia Energetica De Minas Gerais,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIGI,Colliers International Group Inc,NASDAQ,Stock,1995-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIH,China Index Holdings Ltd,NASDAQ,Stock,2019-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CII,BlackRock Enhanced Capital and Income Fd,NYSE,ETF,2004-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIIG,CIIG Capital Partners II Inc - Class A,NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIIGU,CIIG Capital Partners II Inc - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIIGW,CIIG Capital Partners II Inc - Warrants (28/02/2028),NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIK,Credit Suisse Asset Management Income Fund Inc,NYSE MKT,ETF,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIL,VICTORYSHARES INTERNATIONAL VOLATILITY WTD ETF ,NASDAQ,ETF,2015-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIM,Chimera Investment Corp,NYSE,Stock,2007-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIM-P-A,Chimera Investment Corp,NYSE,Stock,2016-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIM-P-B,Chimera Investment Corp,NYSE,Stock,2017-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIM-P-C,Chimera Investment Corp,NYSE,Stock,2018-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIM-P-D,Chimera Investment Corp,NYSE,Stock,2019-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CINC,CinCor Pharma Inc,NASDAQ,Stock,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CINF,Cincinnati Financial Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CING,Cingulate Inc,NASDAQ,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CINGW,Cingulate Inc - Warrants (03/12/2026),NASDAQ,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CINT,CI&T Inc Class A,NYSE,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIO,City Office REIT Inc,NYSE,Stock,2014-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIO-P-A,City Office REIT Inc,NYSE,Stock,2016-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CION,CION Invt Corp,NYSE,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIR,Circor International Inc,NYSE,Stock,1999-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CISO,Cerberus Cyber Sentinel Corp,NASDAQ,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CITE,Cartica Acquisition Corp - Class A,NASDAQ,Stock,2022-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CITEU,Cartica Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CITEW,Cartica Acquisition Corp - Warrants (30/04/2028),NASDAQ,Stock,2022-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIVB,Civista Bancshares Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIVBP,Civista Bancshares Inc,NASDAQ,Stock,2014-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIVI,Civitas Resources Inc New,NYSE,Stock,2011-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIX,Compx International Inc - Class A,NYSE MKT,Stock,1998-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIXX,CI Financial Corp,NYSE,Stock,2020-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIZ,VICTORYSHARES DEVELOPED ENHANCED VOLATILITY WTD ETF ,NASDAQ,ETF,2014-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CIZN,Citizens Holding Company,NASDAQ,Stock,1999-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CJJD,China Jo-Jo Drugstores Inc,NASDAQ,Stock,2008-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CKPT,Checkpoint Therapeutics Inc,NASDAQ,Stock,2016-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CKX,CKX Lands Inc,NYSE MKT,Stock,1999-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CL,Colgate-Palmolive Company,NYSE,Stock,1977-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLA-U,Colonnade Acquisition Corp Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant,NYSE,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAA,Colonnade Acquisition Corp II - Class A,NYSE,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAA-U,Colonnade Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAA-WS,Colonnade Acquisition Corp II - Warrants (01/01/9999),NYSE,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAQ,CleanTech Acquisition Corp,NASDAQ,Stock,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAQR,CleanTech Acquisition Corp,NASDAQ,Stock,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAQU,CleanTech Acquisition Corp - Units (1 Ord Share 1 Rts & 1/2 War),NASDAQ,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAQW,CleanTech Acquisition Corp - Warrants (30/07/2026),NASDAQ,Stock,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAR,Clarus Corp,NASDAQ,Stock,1998-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAS,Class Acceleration Corp - Class A,NYSE,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAS-U,Class Acceleration Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAS-WS,Class Acceleration Corp - Warrants (31/03/2028),NYSE,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAY,Chavant Capital Acquisition Corp,NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAYU,Chavant Capital Acquisition Corp - Units (1 Ord Share & 3/4 War),NASDAQ,Stock,2021-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLAYW,Chavant Capital Acquisition Corp - Warrants (16/07/2021),NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLB,Core Laboratories N.V.,NYSE,Stock,1995-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLBK,Columbia Financial Inc,NASDAQ,Stock,2018-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLBR,Colombier Acquisition Corp - Class A,NYSE,Stock,2021-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLBR-U,Colombier Acquisition Corp Units each consisting of one share of Class A common stock and onethird of one redeemable warrant,NYSE,Stock,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLBR-WS,Colombier Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLBS,Caladrius Biosciences Inc,NASDAQ,Stock,1999-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLBT,Cellebrite DI Ltd,NASDAQ,Stock,2021-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLBTW,Cellebrite DI Ltd - Warrants (30/08/2026),NASDAQ,Stock,2020-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLDL,Direxion Daily Cloud Computing Bull 2X Shares,NYSE ARCA,ETF,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLDS,Direxion Daily Cloud Computing Bear 2X Shares,NYSE ARCA,ETF,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLDT,Chatham Lodging Trust,NYSE,Stock,2010-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLDT-P-A,Chatham Lodging Trust,NYSE,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLDX,Celldex Therapeutics Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLEU,China Liberal Education Holdings Ltd,NASDAQ,Stock,2020-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLF,Cleveland-Cliffs Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLFD,Clearfield Inc,NASDAQ,Stock,1986-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLGN,CollPlant Biotechnologies Ltd New,NASDAQ,Stock,2018-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLH,Clean Harbors Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLIM,Climate Real Impact Solutions II Acquisition Corp - Class A,NYSE,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLIM-U,Climate Real Impact Solutions II Acquisition Corp - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLIM-WS,Climate Real Impact Solutions II Acquisition Corp - Warrants (29/01/2026),NYSE,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLINU,Clean Earth Acquisitions Corp - Units (1 Ord Share Class A 1 Right & 1/2 War),NASDAQ,Stock,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLIR,ClearSign Technologies Corp,NASDAQ,Stock,2012-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLIX,ProShares Long Online/Short Stores ETF,NYSE ARCA,ETF,2017-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLLS,Cellectis,NASDAQ,Stock,2015-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLM,Cornerstone Strategic Value Fund,NYSE MKT,ETF,2002-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLMA,iClima Climate Change Solutions ETF,NYSE ARCA,ETF,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLMT,Calumet Specialty Products Partners L.P.,NASDAQ,Stock,2006-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNE,Clean Energy Fuels Corp,NASDAQ,Stock,2007-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNN,Clene Inc,NASDAQ,Stock,2020-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNNW,Clene Inc - Warrants (30/12/2025),NASDAQ,Stock,2020-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNR,IQ Cleaner Transport ETF,NYSE ARCA,ETF,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNY-P-B,Colony Capital Inc 825 Series B cumulative redeemable perpetual preferred stock,NYSE,Stock,2017-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNY-P-B-CL,,NYSE,Stock,2019-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNY-P-E,Colony Capital Inc 875 Series E cumulative redeemable perpetual preferred stock,NYSE,Stock,2017-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNY-P-E-CL,,NYSE,Stock,2019-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNY-P-H,Colony Capital Inc,NYSE,Stock,2017-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLNY-P-J,Colony Capital Inc,NYSE,Stock,2017-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLOE,Clover Leaf Capital Corp - Class A,NASDAQ,Stock,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLOER,Clover Leaf Capital Corp,NASDAQ,Stock,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLOEU,Clover Leaf Capital Corp - Units (1 Ord Share Class A & 1 Right),NASDAQ,Stock,2021-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLOU,Global X Cloud Computing ETF,NASDAQ,ETF,2019-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLOV,Clover Health Investments Corp - Class A,NASDAQ,Stock,2020-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLOVW,Clover Health Investments Corp - Warrants (23/08/2021),NASDAQ,Stock,2021-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLPR,Clipper Realty Inc,NYSE,Stock,2017-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLPS,CLPS Inc,NASDAQ,Stock,2018-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLPT,ClearPoint Neuro Inc,NASDAQ,Stock,2016-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLR,Continental Resources Inc (OKLA),NYSE,Stock,2007-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLRB,Cellectar Biosciences Inc,NASDAQ,Stock,2005-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLRG,IQ Chaikin U.S. Large Cap ETF,NASDAQ,ETF,2017-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLRM,Clarim Acquisition Corp - Class A,NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLRMU,Clarim Acquisition Corp - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLRMW,Clarim Acquisition Corp - Warrants (05/01/2026),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLRO,ClearOne Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLS,Celestica Inc,NYSE,Stock,1998-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLSA,Cabana Target Leading Sector Aggressive ETF,NYSE ARCA,ETF,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLSC,Cabana Target Leading Sector Conservative ETF,NYSE ARCA,ETF,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLSD,Clearside Biomedical Inc,NASDAQ,Stock,2016-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLSE,Convergence Long/Short Equity ETF,BATS,ETF,2022-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLSK,Cleanspark Inc,NASDAQ,Stock,2016-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLSM,Cabana Target Leading Sector Moderate ETF,NYSE ARCA,ETF,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLSN,Celsion Corp,NASDAQ,Stock,1999-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLST,Catalyst Bancorp Inc,NASDAQ,Stock,2021-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLTL,Invesco Treasury Collateral ETF,NYSE ARCA,ETF,2017-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLVR,Clever Leaves Holdings Inc,NASDAQ,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLVRW,Clever Leaves Holdings Inc - Warrants (18/12/2025),NASDAQ,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLVS,Clovis Oncology Inc,NASDAQ,Stock,2011-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLVT,Clarivate Plc,NYSE,Stock,2018-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLVT-P-A,Clarivate Plc,NYSE,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLW,Clearwater Paper Corp,NYSE,Stock,2008-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLWT,Euro Tech Holdings Co. Ltd,NASDAQ,Stock,1997-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLX,Clorox Company,NYSE,Stock,1983-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CLXT,Calyxt Inc,NASDAQ,Stock,2017-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CM,Canadian Imperial Bank Of Commerce,NYSE,Stock,1997-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMA,Comerica Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMAX,CareMax Inc - Class A,NASDAQ,Stock,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMAXW,CareMax Inc - Warrants (08/06/2026),NASDAQ,Stock,2020-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMBM,Cambium Networks Corp,NASDAQ,Stock,2019-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMBS,iShares CMBS ETF,NYSE ARCA,ETF,2012-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMC,Commercial Metals Company,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMCA,Capitalworks Emerging Markets Acquisition Corp - Class A,NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMCAU,Capitalworks Emerging Markets Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMCAW,Capitalworks Emerging Markets Acquisition Corp - Warrants (19/11/2026),NASDAQ,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMCL,Caledonia Mining Corporation Plc,NYSE MKT,Stock,2017-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMCM,Cheetah Mobile Inc,NYSE,Stock,2014-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMCO,Columbus Mckinnon Corp,NASDAQ,Stock,1996-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMCSA,Comcast Corp - Class A,NASDAQ,Stock,1988-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMCT,Creative Media & Community Trust,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMCTP,Creative Media & Community Trust,NASDAQ,Stock,2018-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMDY,iShares Bloomberg Roll Select Commodity Strategy ETF,NYSE ARCA,ETF,2018-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CME,CME Group Inc - Class A,NASDAQ,Stock,2002-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMF,iShares California Muni Bond ETF,NYSE ARCA,ETF,2007-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMG,Chipotle Mexican Grill,NYSE,Stock,2006-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMI,Cummins Inc,NYSE,Stock,1984-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMLS,Cumulus Media Inc - Class A,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMLT,EQRx Inc - Class A,NASDAQ,Stock,2021-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMMB,Chemomab Therapeutics Ltd,NASDAQ,Stock,2019-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMP,Compass Minerals International Inc,NYSE,Stock,2003-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMPI,Checkmate Pharmaceuticals Inc,NASDAQ,Stock,2020-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMPO,CompoSecure Inc - Class A,NASDAQ,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMPOW,CompoSecure Inc - Warrants (27/12/2026),NASDAQ,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMPR,Cimpress plc,NASDAQ,Stock,2005-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMPS,Compass Pathways Plc,NASDAQ,Stock,2020-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMPX,Compass Therapeutics Inc,NASDAQ,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMRE,Costamare Inc,NYSE,Stock,2010-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMRE-P-B,Costamare Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMRE-P-C,Costamare Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMRE-P-D,Costamare Inc,NYSE,Stock,2015-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMRE-P-E,Costamare Inc,NYSE,Stock,2018-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMRX,Chimerix Inc,NASDAQ,Stock,2013-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMS,CMS Energy Corporation,NYSE,Stock,1984-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMS-P-B,Consumers Energy Company,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMS-P-C,CMS Energy Corporation,NYSE,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMSA,CMS Energy Corporation,NYSE,Stock,2018-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMSC,CMS Energy Corporation,NYSE,Stock,2018-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMSD,CMS Energy Corporation,NYSE,Stock,2019-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMT,Core Molding Technologies,NYSE MKT,Stock,1988-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMTG,Claros Mortgage Trust Inc,NYSE,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMTL,Comtech Telecommunications Corp,NASDAQ,Stock,1992-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CMU,MFS High Yield Municipal Trust,NYSE,ETF,1987-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CN,Xtrackers MSCI All China Equity ETF,NYSE ARCA,ETF,2014-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNA,CNA Financial Corp,NYSE,Stock,1985-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNBS,Amplify Seymour Cannabis ETF,NYSE ARCA,ETF,2019-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNC,Centene Corp,NYSE,Stock,2001-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNCE,Concert Pharmaceuticals Inc,NASDAQ,Stock,2014-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNCR,ETCT Loncar Cancer Immunotherapy ETF,NASDAQ,ETF,2015-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CND,Concord Acquisition Corp - Class A,NYSE,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CND-U,Concord Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2020-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CND-WS,Concord Acquisition Corp - Warrants (28/11/2025),NYSE,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNDA,Concord Acquisition Corp II - Class A,NYSE,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNDA-U,Concord Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNDA-WS,Concord Acquisition Corp II - Warrants(01/01/9999),NYSE,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNDB,Concord Acquisition Corp III - Class A,NYSE,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNDB-U,Concord Acquisition Corp III - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNDB-WS,Concord Acquisition Corp III - Warrants (01/01/9999),NYSE,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNDT,Conduent Inc,NASDAQ,Stock,2017-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNET,ZW Data Action Technologies Inc,NASDAQ,Stock,2009-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNEY,CN Energy Group Inc,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNF,CNFinance Holdings Ltd,NYSE,Stock,2018-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNFR,Conifer Holdings Inc,NASDAQ,Stock,2015-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNFRL,Conifer Holdings Inc,NASDAQ,Stock,2018-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNGL,Canna Global Acquisition Corp - Class A,NASDAQ,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNGLU,Canna Global Acquisition Corp - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2021-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNGLW,Canna Global Acquisition Corp - Warrants (30/11/2026),NASDAQ,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNHI,CNH Industrial NV,NYSE,Stock,2013-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNI,Canadian National Railway Company,NYSE,Stock,1996-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNK,Cinemark Holdings Inc,NYSE,Stock,2007-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNM,Core & Main Inc Class A,NYSE,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNMD,Conmed Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNNB,Cincinnati Bancorp Inc,NASDAQ,Stock,2017-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNNE,Cannae Holdings Inc,NYSE,Stock,2017-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNO,CNO Financial Group Inc,NYSE,Stock,2003-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNO-P-A,CNO Financial Group Inc,NYSE,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNOB,ConnectOne Bancorp Inc,NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNOBP,ConnectOne Bancorp Inc,NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNP,Centerpoint Energy Inc,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNQ,Canadian Natural Resources Ltd,NYSE,Stock,2000-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNR,Cornerstone Building Brands Inc,NYSE,Stock,1992-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNRG,SPDR S&P Kensho Clean Power ETF,NYSE ARCA,ETF,2018-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNS,Cohen & Steers Inc,NYSE,Stock,2004-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNSL,Consolidated Communications Holdings Inc,NASDAQ,Stock,2005-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNSP,Cns Pharmaceuticals Inc,NASDAQ,Stock,2019-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNTA,Centessa Pharmaceuticals plc,NASDAQ,Stock,2021-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNTB,Connect Biopharma Holdings Ltd,NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNTG,Centogene NV,NASDAQ,Stock,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNTQ,Chardan NexTech Acquisition 2 Corp,NASDAQ,Stock,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNTQU,Chardan NexTech Acquisition 2 Corp - Units (1 Ord Share & 3/4War),NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNTQW,Chardan NexTech Acquisition 2 Corp - Warrants (29/07/2026),NASDAQ,Stock,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNTX,Context Therapeutics Inc,NASDAQ,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNTY,Century Casinos Inc,NASDAQ,Stock,1993-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNVY,Convey Health Solutions Holdings Inc,NYSE,Stock,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNX,CNX Resources Corp,NYSE,Stock,1999-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNXC,Concentrix Corporation,NASDAQ,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNXCV,Concentrix Corporation,NASDAQ,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNXN,PC Connection Inc,NASDAQ,Stock,1998-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNXT,VanEck ChiNext ETF,NYSE ARCA,ETF,2014-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CNYA,iShares MSCI China A ETF,BATS,ETF,2016-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CO,Global Cord Blood Corp,NYSE,Stock,2007-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COCO,Vita Coco Company Inc (The),NASDAQ,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COCP,Cocrystal Pharma Inc,NASDAQ,Stock,2011-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CODA,Coda Octopus Group Inc,NASDAQ,Stock,2003-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CODI,Compass Diversified Holdings,NYSE,Stock,2006-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CODI-P-A,Compass Diversified Holdings 7250 Series A Preferred Shares representing beneficial interest in,NYSE,Stock,2017-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CODI-P-B,Compass Diversified Holdings 7875 Series B FixedtoFloating Rate Cumulative Preferred Shares representing beneficial interests in,NYSE,Stock,2018-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CODI-P-C,Compass Diversified Holdings 7.875 PRF PERPETUAL USD 25 Ser C,NYSE,Stock,2019-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CODX,Co-Diagnostics Inc,NASDAQ,Stock,2017-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COE,China Online Education Group,NYSE,Stock,2016-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COF,Capital One Financial Corp,NYSE,Stock,1994-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COF-P-I,Capital One Financial Corp. PRF PERPETUAL USD 25 Dp Sh Rp 140th Sr I,NYSE,Stock,2019-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COF-P-J,Capital One Financial Corp,NYSE,Stock,2020-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COF-P-K,Capital One Financial Corp,NYSE,Stock,2020-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COF-P-L,Capital One Financial Corp,NYSE,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COF-P-N,Capital One Financial Corp,NYSE,Stock,2021-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COF-P-P,Capital One Financial Corp Pfd Ser B,NYSE,Stock,2012-08-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COF-P-P-CL,,NYSE,Stock,2020-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COFS,Choiceone Financial Services Inc,NASDAQ,Stock,2001-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COGT,Cogent Biosciences Inc,NASDAQ,Stock,2018-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COHN,Cohen & Company Inc,NYSE MKT,Stock,2004-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COHR,Coherent Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COHU,Cohu Inc,NASDAQ,Stock,1986-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COIN,Coinbase Global Inc - Class A,NASDAQ,Stock,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COKE,Coca-Cola Consolidated Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COLB,Columbia Banking System Inc,NASDAQ,Stock,1992-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COLD,Americold Realty Trust,NYSE,Stock,2018-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COLI,Colicity Inc - Class A,NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COLIU,Colicity Inc - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COLIW,Colicity Inc - Warrants (24/02/2026),NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COLL,Collegium Pharmaceutical Inc,NASDAQ,Stock,2015-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COLM,Columbia Sportswear Company,NASDAQ,Stock,1998-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COM,Direxion Auspice Broad Commodity Strategy ETF,NYSE ARCA,ETF,2017-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COMB,GraniteShares Bloomberg Commodity Broad Strategy No K-1 ETF,NYSE ARCA,ETF,2017-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COMM,CommScope Holding Company Inc,NASDAQ,Stock,2013-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COMP,Compass Inc - Class A,NYSE,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COMS,ComSovereign Holding Corp,NASDAQ,Stock,2020-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COMSP,ComSovereign Holding Corp,NASDAQ,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COMSW,ComSovereign Holding Corp - Warrants (18/12/2025),NASDAQ,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COMT,iShares GSCI Commodity Dynamic Roll Strategy ETF,NASDAQ,ETF,2014-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CONE,CyrusOne Inc,NASDAQ,Stock,2013-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CONN,Conns Inc,NASDAQ,Stock,2003-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CONX,CONX Corp - Class A,NASDAQ,Stock,2020-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CONXU,CONX Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2020-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CONXW,CONX Corp - Warrants (30/10/2027),NASDAQ,Stock,2020-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COO,Cooper Companies Inc,NYSE,Stock,1983-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COOK,Traeger Inc,NYSE,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COOL,Corner Growth Acquisition Corp - Class A,NASDAQ,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COOLU,Corner Growth Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COOLW,Corner Growth Acquisition Corp - Warrants (01/01/2027),NASDAQ,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COOP,Mr. Cooper Group Inc,NASDAQ,Stock,2012-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COP,Conoco Phillips,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COPX,Global X Copper Miners ETF,NYSE ARCA,ETF,2010-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORN,Teucrium Corn Fund,NYSE ARCA,ETF,2010-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORP,PIMCO Investment Grade Corporate Bond Index Exchange-Traded Fund,NYSE ARCA,ETF,2010-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORR,CorEnergy Infrastructure Trust Inc,NYSE,Stock,2007-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORR-P-A,CorEnergy Infrastructure Trust Inc,NYSE,Stock,2015-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORS,Corsair Partnering Corp - Class A,NYSE,Stock,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORS-U,Corsair Partnering Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORS-WS,Corsair Partnering Corp - Warrants (01/01/9999),NYSE,Stock,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORT,Corcept Therapeutics Inc,NASDAQ,Stock,2004-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORZ,Core Scientific Inc,NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CORZW,Core Scientific Inc - Warrants (19/01/2027),NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COSM,Cosmos Holdings Inc,NASDAQ,Stock,2012-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COST,Costco Wholesale Corp,NASDAQ,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COTY,Coty Inc - Class A,NYSE,Stock,2013-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COUP,Coupa Software Inc,NASDAQ,Stock,2016-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COUR,Coursera Inc,NYSE,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COVA,COVA Acquisition Corp - Class A,NASDAQ,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COVAU,COVA Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COVAW,COVA Acquisition Corp - Warrants (05/02/2026),NASDAQ,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COW,iPathA Series B Bloomberg Livestock Subindex Total Return ETN,NYSE ARCA,ETF,2018-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COWN,Cowen Inc - Class A,NASDAQ,Stock,2006-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COWNL,Cowen Inc,NASDAQ,Stock,2018-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "COWZ,Pacer US Cash Cows 100 ETF,BATS,ETF,2017-07-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CP,Canadian Pacific Railway Ltd,NYSE,Stock,1983-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPA,Copa Holdings S.A. - Class A,NYSE,Stock,2005-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPAA,Conyers Park III Acquisition Corp - Class A,NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPAAU,Conyers Park III Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPAC,Cementos Pacasmayo S.A.A.,NYSE,Stock,2012-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPAQU,Counter Press Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPAR,Catalyst Partners Acquisition Corp - Class A,NASDAQ,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPARU,Catalyst Partners Acquisition Corp - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPARW,Catalyst Partners Acquisition Corp - Warrants (12/05/2026),NASDAQ,Stock,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPB,Campbell Soup Company,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPE,Callon Petroleum Company,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPER,United States Copper Index Fund,NYSE ARCA,ETF,2011-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPF,Central Pacific Financial Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPG,Crescent Point Energy Corp,NYSE,Stock,2006-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPHC,Canterbury Park Holding Corp,NASDAQ,Stock,2008-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPHI,China Pharma Holdings Inc,NYSE MKT,Stock,2002-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPI,IQ Real Return ETF,NYSE ARCA,ETF,2009-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPIX,Cumberland Pharmaceuticals Inc,NASDAQ,Stock,2009-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPK,Chesapeake Utilities Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPLP,Capital Product Partners L P,NASDAQ,Stock,2007-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPNG,Coupang Inc - Class A,NYSE,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPOP,Pop Culture Group Co Ltd - Class A,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPRI,Capri Holdings Ltd,NYSE,Stock,2011-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPRT,Copart Inc,NASDAQ,Stock,1994-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPRX,Catalyst Pharmaceuticals Inc,NASDAQ,Stock,2006-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPS,Cooper-Standard Holdings Inc,NYSE,Stock,2010-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPSH,CPS Technologies Corporation,NASDAQ,Stock,1997-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPSI,Computer Programs & Systems Inc,NASDAQ,Stock,2002-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPSS,Consumer Portfolio Service Inc,NASDAQ,Stock,1993-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPT,Camden Property Trust,NYSE,Stock,1993-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPTAG,Logan Ridge Finance Corporation,NASDAQ,Stock,2017-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPTAL,Capitala Finance Corp 6 Notes Due 2022,NASDAQ,Stock,2017-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPTK,Crown PropTech Acquisitions - Class A,NYSE,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPTK-U,Crown PropTech Acquisitions - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPTK-WS,Crown PropTech Acquisitions - Warrants (01/01/9999),NYSE,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPTN,Cepton Inc,NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPTNW,Cepton Inc - Warrants (10/02/2027),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPUH,Compute Health Acquisition Corp - Class A,NYSE,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPUH-U,Compute Health Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPUH-WS,Compute Health Acquisition Corp - Warrants (25/01/2026),NYSE,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CPZ,Calamos Long/Short Equity & Dynamic Income Trust,NASDAQ,Stock,2019-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CQP,Cheniere Energy Partners LP,NYSE MKT,Stock,2007-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CQQQ,Invesco China Technology ETF,NYSE ARCA,ETF,2010-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CR,Crane Company,NYSE,Stock,1984-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRAI,CRA International Inc,NASDAQ,Stock,1998-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRAK,VANECK OIL REFINERS ETF ,NYSE ARCA,ETF,2015-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRBN,iShares MSCI ACWI Low Carbon Target ETF,NYSE ARCA,ETF,2014-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRBP,Corbus Pharmaceuticals Holdings Inc,NASDAQ,Stock,2014-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRBU,Caribou Biosciences Inc,NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRC,California Resources Corporation - New,NYSE,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRCT,Cricut Inc - Class A,NASDAQ,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRD-A,Crawford & Co. - Class A,NYSE,Stock,1992-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRD-B,Crawford & Co. - Class B,NYSE,Stock,1990-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRDF,Cardiff Oncology Inc,NASDAQ,Stock,2004-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRDL,Cardiol Therapeutics Inc - Class A,NASDAQ,Stock,2019-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRDO,Credo Technology Group Holding Ltd,NASDAQ,Stock,2022-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CREC,Crescera Capital Acquisition Corp - Class A,NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRECU,Crescera Capital Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRECW,Crescera Capital Acquisition Corp - Warrants (18/11/2026),NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CREG,Smart Powerr Corp,NASDAQ,Stock,2004-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRESW,Cresud - Warrants (08/03/2026),NASDAQ,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRESY,Cresud,NASDAQ,Stock,1997-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CREX,Creative Realities Inc,NASDAQ,Stock,2013-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CREXW,Creative Realities Inc Warrants 09112022,NASDAQ,Stock,2018-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRF,Cornerstone Total Return Fund,NYSE MKT,ETF,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRGY,Crescent Energy Company - Class A,NYSE,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRH,CRH Plc,NYSE,Stock,1993-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRHC,Cohn Robbins Holdings Corp - Class A,NYSE,Stock,2020-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRHC-U,Cohn Robbins Holdings Corp Units each consisting of one Class A ordinary share and onethird of one redeemable warrant,NYSE,Stock,2020-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRHC-WS,Cohn Robbins Holdings Corp - Warrants (28/08/2025),NYSE,Stock,2020-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRI,Carters Inc,NYSE,Stock,2003-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRIS,Curis Inc,NASDAQ,Stock,2000-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRK,Comstock Resources Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRKN,Crown ElectroKinetics Corp,NASDAQ,Stock,2020-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRL,Charles River Laboratories International Inc,NYSE,Stock,2000-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRM,Salesforce.Com Inc,NYSE,Stock,2004-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRMD,CorMedix Inc,NASDAQ,Stock,2010-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRMT,Americas Car Mart Inc,NASDAQ,Stock,1993-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRNC,Cerence Inc,NASDAQ,Stock,2019-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRNT,Ceragon Networks Ltd,NASDAQ,Stock,2000-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRNX,Crinetics Pharmaceuticals Inc,NASDAQ,Stock,2018-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CROC,ProShares UltraShort Australian Dollar,NYSE ARCA,ETF,2012-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRON,Cronos Group Inc,NASDAQ,Stock,2016-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CROX,Crocs Inc,NASDAQ,Stock,2006-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRPT,First Trust SkyBridge Crypto Industry and Digital Economy ETF,NYSE ARCA,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRS,Carpenter Technology Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRSP,CRISPR Therapeutics AG,NASDAQ,Stock,2016-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRSR,Corsair Gaming Inc,NASDAQ,Stock,2020-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRT,Cross Timbers Royalty Trust,NYSE,Stock,1992-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRTD,Creatd Inc,NASDAQ,Stock,2013-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRTDW,Creatd Inc - Warrants (01/01/2025),NASDAQ,Stock,2020-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRTO,Criteo S.A,NASDAQ,Stock,2013-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRTX,Cortexyme Inc,NASDAQ,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRU,Crucible Acquisition Corp - Class A,NYSE,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRU-U,Crucible Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRU-WS,Crucible Acquisition Corp - Warrants(26/12/2025),NYSE,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRUS,Cirrus Logic Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRUZ,Defiance Hotel Airline and Cruise ETF,NYSE ARCA,ETF,2021-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRVL,Corvel Corp,NASDAQ,Stock,1991-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRVS,Corvus Pharmaceuticals Inc,NASDAQ,Stock,2016-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRWD,Crowdstrike Holdings Inc - Class A,NASDAQ,Stock,2019-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRWS,Crown Crafts Inc,NASDAQ,Stock,2003-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRXT,Clarus Therapeutics Holdings Inc,NASDAQ,Stock,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRXTW,Clarus Therapeutics Holdings Inc - Warrants (09/09/2026),NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRZN,Corazon Capital V838 Monoceros Corp - Class A,NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRZNU,Corazon Capital V838 Monoceros Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CRZNW,Corazon Capital V838 Monoceros Corp - Warrants (24/03/2026),NASDAQ,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CS,Credit Suisse Group AG,NYSE,Stock,1995-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSA,VICTORYSHARES US SMALL CAP VOLATILITY WTD ETF ,NASDAQ,ETF,2015-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSAN,Cosan S.A,NYSE,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSAN-W,Cosan S.A. American Depositary Shares each representing one When Issued,NYSE,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSB,VictoryShares US Small Cap High Div Volatility Wtd ETF,NASDAQ,ETF,2015-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSBR,Champions Oncology Inc,NASDAQ,Stock,2007-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSCO,Cisco Systems Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSCW,Color Star Technology Co Ltd,NASDAQ,Stock,2008-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSD,Invesco S&P Spin-Off ETF,NYSE ARCA,ETF,2006-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSF,VictoryShares US Discovery Enhanced Volatility Wtd ETF,NASDAQ,ETF,2014-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSGP,Costar Group Inc,NASDAQ,Stock,1998-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSGS,CSG Systems International Inc,NASDAQ,Stock,1996-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSH,Morgan Creek - Exos Active SPAC Arbitrage ETF,NYSE ARCA,ETF,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSII,Cardiovascular Systems Inc,NASDAQ,Stock,2006-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSIQ,Canadian Solar Inc,NASDAQ,Stock,2006-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSL,Carlisle Companies Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSLM,Consilium Acquisition Corp I Ltd - Class A,NASDAQ,Stock,2022-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSLMR,Consilium Acquisition Corp I Ltd,NASDAQ,Stock,2022-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSLMU,Consilium Acquisition Corp I Ltd - Units (1 Ord Class A 1 Right & 1/2 War),NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSLMW,Consilium Acquisition Corp I Ltd - Warrants (12/01/2027),NASDAQ,Stock,2022-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSM,ProShares Large Cap Core Plus,BATS,ETF,2009-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSML,IQ Chaikin U.S. Small Cap ETF,NASDAQ,ETF,2017-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSPI,CSP Inc,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSQ,Calamos Strategic Total Return Fund,NASDAQ,ETF,2004-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSR,Centerspace,NYSE,Stock,1997-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSR-P-C,Centerspace,NYSE,Stock,2017-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSSE,Chicken Soup for the Soul Entertainment Inc - Class A,NASDAQ,Stock,2017-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSSEN,Chicken Soup for the Soul Entertainment Inc,NASDAQ,Stock,2020-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSSEP,Chicken Soup for the Soul Entertainment Inc,NASDAQ,Stock,2018-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSTA,Constellation Acquisition Corp I - Class A,NYSE,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSTA-U,Constellation Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSTA-WS,Constellation Acquisition Corp I - Warrants (29/01/2028),NYSE,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSTE,Caesarstone Ltd,NASDAQ,Stock,2012-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSTL,Castle Biosciences Inc,NASDAQ,Stock,2019-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSTM,Constellium SE - Class A,NYSE,Stock,2013-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSTR,CapStar Financial Holdings Inc,NASDAQ,Stock,2016-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSV,Carriage Services Inc,NYSE,Stock,1996-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSWC,Capital Southwest Corp,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSWI,CSW Industrials Inc,NASDAQ,Stock,2015-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CSX,CSX Corp,NASDAQ,Stock,1980-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTA,Simplify Managed Futures Strategy ETF,NYSE ARCA,Stock,2022-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTA-P-A,EI du Pont de Nemours and Company Preferred Stock,NYSE,Stock,2002-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTA-P-B,EI du Pont de Nemours and Company Preferred Stock,NYSE,Stock,1998-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTAC-U,Cerberus Telecom Acquisition Corp Units each consisting of one Class A ordinary share and onethird of one redeemable warrant,NYSE,Stock,2020-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTAC-WS,Cerberus Telecom Acquisition Corp Warrants included as part of the Units each whole warrant exercisable for one Class A ordinary share at an exercise price of,NYSE,Stock,2020-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTAQ,Carney Technology Acquisition Corp II - Class A,NASDAQ,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTAQU,Carney Technology Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTAQW,Carney Technology Acquisition Corp II - Warrants (10/12/2025),NASDAQ,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTAS,Cintas Corporation,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTBB,Qwest Corporation,NYSE,Stock,2016-08-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTBI,Community Trust Bancorp Inc,NASDAQ,Stock,1993-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTDD,Qwest Corporation 675 Notes due 2057,NYSE,Stock,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTEC,Global X CleanTech ETF,NASDAQ,ETF,2020-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTEK,CynergisTek Inc,NYSE MKT,Stock,2017-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTEST,,NYSE,Stock,2019-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTEX,ProShares S&P Kensho Cleantech ETF,NYSE ARCA,ETF,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTG,Computer Task Group Inc,NASDAQ,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTGO,Contango Ore Inc,NYSE MKT,Stock,2010-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTHR,Charles & Colvard Ltd,NASDAQ,Stock,1997-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTIB,Yunhong CTI Ltd,NASDAQ,Stock,2003-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTIC,CTI BioPharma Corp,NASDAQ,Stock,1997-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTK,CooTek (Cayman) Inc,NYSE,Stock,2018-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTKB,Cytek BioSciences Inc,NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTLP,Cantaloupe Inc,NASDAQ,Stock,1999-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTLT,Catalent Inc,NYSE,Stock,2014-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTMX,CytomX Therapeutics Inc,NASDAQ,Stock,2015-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTO,CTO Realty Growth Inc - New - New,NYSE,Stock,1992-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTO-P-A,CTO Realty Growth Inc,NYSE,Stock,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTOS,Custom Truck One Source Inc,NYSE,Stock,2017-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTOS-WS,Custom Truck One Source Inc - Warrants (01/01/2025),NYSE,Stock,2019-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTR,ClearBridge MLP and Midstream Total Return Fund Inc,NYSE,ETF,2012-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTRA,Coterra Energy Inc,NYSE,Stock,1990-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTRE,CareTrust REIT Inc,NASDAQ,Stock,2014-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTRM,Castor Maritime Inc,NASDAQ,Stock,2019-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTRN,Citi Trends Inc,NASDAQ,Stock,2005-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTRU,ARK TRANSPARENCY ETF ,BATS,ETF,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTS,CTS Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTSH,Cognizant Technology Solutions Corp - Class A,NASDAQ,Stock,1998-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTSO,Cytosorbents Corp,NASDAQ,Stock,2013-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTT,CatchMark Timber Trust Inc - Class A,NYSE,Stock,2013-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTV,Innovid Corp,NYSE,Stock,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTV-WS,Innovid Corp - Warrants (17/02/2028),NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTVA,Corteva Inc,NYSE,Stock,2019-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTXR,Citius Pharmaceuticals Inc,NASDAQ,Stock,2017-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTXRW,Citius Pharmaceuticals Inc - Warrants(02/08/2022),NASDAQ,Stock,2017-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CTXS,Citrix Systems Inc,NASDAQ,Stock,1995-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUBA,Herzfeld Caribbean Basin Fund Inc,NASDAQ,ETF,1994-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUBB,,NYSE,Stock,2019-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUBE,CubeSmart,NYSE,Stock,2004-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUBI,Customers Bancorp Inc,NYSE,Stock,2012-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUBI-P-E,Customers Bancorp Inc FixedtoFloating Rate NonCumulative Perpetual Preferred Stock Series E,NYSE,Stock,2016-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUBI-P-F,Customers Bancorp Inc FixedtoFloating Rate NonCumulative Perpetual Preferred Stock Series F,NYSE,Stock,2016-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUBS,ASIAN GROWTH CUBS ETF ,NYSE ARCA,ETF,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUE,Cue Biopharma Inc,NASDAQ,Stock,2018-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUEN,Cuentas Inc,NASDAQ,Stock,2008-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUENW,Cuentas Inc - Warrants (01/02/2024),NASDAQ,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUK,Carnival plc,NYSE,Stock,2000-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CULL,Cullman Bancorp Inc,NASDAQ,Stock,2013-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CULP,Culp Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CURE,Direxion Daily Healthcare Bull 3X Shares,NYSE ARCA,ETF,2011-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CURI,CuriosityStream Inc - Class A,NASDAQ,Stock,2020-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CURIW,CuriosityStream Inc - Warrants (14/10/2025),NASDAQ,Stock,2020-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CURO,CURO Group Holdings Corp,NYSE,Stock,2017-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CURV,Torrid Holdings Inc,NYSE,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUT,Invesco MSCI Global Timber ETF,NYSE ARCA,ETF,2007-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUTR,Cutera Inc,NASDAQ,Stock,2004-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CUZ,Cousins Properties Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVAC,CureVac N.V.,NASDAQ,Stock,2020-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVAR,Cultivar ETF,BATS,ETF,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVBF,CVB Financial Corp,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVCO,Cavco Industries Inc,NASDAQ,Stock,2003-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVCY,Central Valley Community Bancorp,NASDAQ,Stock,1999-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVE,Cenovus Energy Inc,NYSE,Stock,2009-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVE-WS,Cenovus Energy Inc - Warrants (01/01/2026),NYSE,Stock,2021-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVEO,Civeo Corp,NYSE,Stock,2014-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVET,Covetrus Inc,NASDAQ,Stock,2019-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVGI,Commercial Vehicle Group Inc,NASDAQ,Stock,2004-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVGW,Calavo Growers Inc,NASDAQ,Stock,2002-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVI,CVR Energy Inc,NYSE,Stock,2007-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVII,Churchill Capital Corp VII - Class A,NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVII-U,Churchill Capital Corp VII - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVII-WS,Churchill Capital Corp VII - Warrants (29/02/2028),NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVLG,Covenant Logistics Group Inc - Class A,NASDAQ,Stock,1994-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVLT,Commvault Systems Inc,NASDAQ,Stock,2006-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVLY,Codorus Valley Bancorp Inc,NASDAQ,Stock,1997-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVM,Cel-Sci Corp,NYSE MKT,Stock,1991-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVNA,Carvana Co. - Class A,NYSE,Stock,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVR,Chicago Rivet & Machine Company,NYSE MKT,Stock,1992-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVRX,CVRx Inc,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVS,CVS Health Corp,NYSE,Stock,1984-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVT,Cvent Holding Corp,NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVTI,,NASDAQ,Stock,2020-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVU,CPI Aerostructures Inc,NYSE MKT,Stock,1993-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVV,CVD Equipment Corp,NASDAQ,Stock,1999-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVX,Chevron Corp,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CVY,Invesco Zacks Multi-Asset Income ETF,NYSE ARCA,ETF,2006-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CW,Curtiss-Wright Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWAN,Clearwater Analytics Holdings Inc Class A,NYSE,Stock,2021-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWB,SPDR Bloomberg Convertible Securities ETF,NYSE ARCA,ETF,2009-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWBC,Community West Bancshares,NASDAQ,Stock,1996-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWBR,CohBar Inc,NASDAQ,Stock,2015-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWC,Clockwise Capital Innovation ETF,NYSE ARCA,ETF,2022-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWCO,Consolidated Water Co. Ltd,NASDAQ,Stock,1995-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWEB,Direxion Daily CSI China Internet Index Bull 2X Shares,NYSE ARCA,ETF,2016-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWEN,Clearway Energy Inc - Class C,NYSE,Stock,2013-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWEN-A,Clearway Energy Inc - Class A,NYSE,Stock,2015-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWENA,Clearway Energy Inc Class A,NYSE,Stock,2015-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWH,Camping World Holdings Inc - Class A,NYSE,Stock,2016-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWI,SPDR(R) MSCI ACWI EX-US ETF ,NYSE ARCA,ETF,2007-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWK,Cushman & Wakefield plc,NYSE,Stock,2018-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWS,AdvisorShares Focused Equity ETF,NYSE ARCA,ETF,2016-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWST,Casella Waste Systems Inc - Class A,NASDAQ,Stock,1997-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CWT,California Water Service Group,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CX,Cemex S.A.B. De C.V.,NYSE,Stock,1999-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CXAC,C5 Acquisition Corp - Class A,NYSE,Stock,2022-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CXAC-U,C5 Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CXAC-WS,C5 Acquisition Corp - Warrants (31/12/2028),NYSE,Stock,2022-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CXDO,Crexendo Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CXE,MFS High Income Municipal Trust,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CXH,MFS Investment Grade Municipal Trust,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CXM,Sprinklr Inc Class A,NYSE,Stock,2021-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CXSE,WisdomTree China ex-State-Owned Enterprises Fund,NASDAQ,ETF,2012-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CXW,CoreCivic Inc,NYSE,Stock,1997-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYA,Simplify Tail Risk Strategy ETF,NYSE ARCA,ETF,2021-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYAD,Celyad Oncology,NASDAQ,Stock,2015-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYAN,Cyanotech Corp,NASDAQ,Stock,1993-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYB,WisdomTree Chinese Yuan Strategy Fund,NYSE ARCA,ETF,2008-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYBE,Cyberoptics Corp,NASDAQ,Stock,1991-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYBN,Cybin Inc,NYSE MKT,Stock,2019-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYBR,CyberArk Software Ltd,NASDAQ,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYCC,Cyclacel Pharmaceuticals Inc,NASDAQ,Stock,2004-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYCCP,Cyclacel Pharmaceuticals Inc,NASDAQ,Stock,2005-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYCN,Cyclerion Therapeutics Inc,NASDAQ,Stock,2019-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYD,China Yuchai International,NYSE,Stock,1994-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYH,Community Health Systems Inc,NYSE,Stock,2000-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYN,Cyngn Inc,NASDAQ,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYRN,CYREN Ltd,NASDAQ,Stock,1999-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYRX,CryoPort Inc,NASDAQ,Stock,2009-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYRXW,CryoPort Inc Wt Exp 06302020,NASDAQ,Stock,2015-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYT,Cyteir Therapeutics Inc,NASDAQ,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYTH,Cyclo Therapeutics Inc - Class A,NASDAQ,Stock,2011-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYTHW,Cyclo Therapeutics Inc - Warrants (14/11/2025),NASDAQ,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYTK,Cytokinetics Inc,NASDAQ,Stock,2004-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYTO,Altamira Therapeutics Ltd,NASDAQ,Stock,2014-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CYXT,Cyxtera Technologies Inc - Class A,NASDAQ,Stock,2020-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CZA,Invesco Zacks Mid-Cap ETF,NYSE ARCA,ETF,2007-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CZNC,Citizens & Northern Corp,NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CZOO,Cazoo Group Ltd - Class A,NYSE,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CZOO-WS,Cazoo Group Ltd Wt,NYSE,Stock,2021-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CZR,Caesars Entertainment Inc,NASDAQ,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "CZWI,Citizens Community Bancorp Inc MD,NASDAQ,Stock,2004-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "D,Dominion Energy Inc,NYSE,Stock,1984-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAC,Danaos Corporation,NYSE,Stock,2006-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DADA,Dada Nexus Ltd,NASDAQ,Stock,2020-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAIO,Data io Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAKT,Daktronics Inc,NASDAQ,Stock,1994-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAL,Delta Air Lines Inc,NYSE,Stock,2007-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DALI,First Trust Dorsey Wright DALI 1 ETF,NASDAQ,ETF,2018-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DALN,DallasNews Corporation - Class A,NASDAQ,Stock,2008-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DALS,DA32 Life Science Tech Acquisition Corp - Class A,NASDAQ,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DALT,Anfield Diversified Alternatives ETF,BATS,ETF,2017-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAM,VanEck Digital Assets Mining ETF,NASDAQ,ETF,2022-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAN,Dana Inc,NYSE,Stock,2008-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAO,Youdao Inc,NYSE,Stock,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAOO,Crypto 1 Acquisition Corp - Class A,NASDAQ,Stock,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAOOU,Crypto 1 Acquisition Corp - Units (1 Ord Share Class A & 3/4 War),NASDAQ,Stock,2021-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAOOW,Crypto 1 Acquisition Corp - Warrants (30/04/2028),NASDAQ,Stock,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAPP,VanEck Digital Transformation ETF,NASDAQ,ETF,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAPR,FT Cboe Vest U.S. Equity Deep Buffer ETF - April,BATS,ETF,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAR,Darling Ingredients Inc,NYSE,Stock,1994-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DARE,Dare Bioscience Inc,NASDAQ,Stock,2014-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DASH,DoorDash Inc - Class A,NYSE,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAT,ProShares Big Data Refiners ETF,NYSE ARCA,ETF,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DATS,DatChat Inc,NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DATSW,DatChat Inc - Warrants - Series A (13/08/2024),NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAUG,FT Cboe Vest U.S. Equity Deep Buffer ETF - August,BATS,ETF,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAVA,Endava plc,NYSE,Stock,2018-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAVE,Dave Inc - Class A,NASDAQ,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAVEW,Dave Inc - Warrants (05/01/2026),NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAWN,Day One Biopharmaceuticals Inc,NASDAQ,Stock,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DAX,Global X DAX Germany ETF,NASDAQ,ETF,2014-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DB,Deutsche Bank AG,NYSE,Stock,1996-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBA,Invesco DB Agriculture Fund,NYSE ARCA,ETF,2007-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBAW,Xtrackers MSCI All World ex US Hedged Equity ETF,NYSE ARCA,ETF,2014-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBB,Invesco DB Base Metals Fund,NYSE ARCA,ETF,2007-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBC,Invesco DB Commodity Index Tracking Fund,NYSE ARCA,ETF,2006-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBD,Diebold Nixdorf Inc,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBE,Invesco DB Energy Fund,NYSE ARCA,ETF,2007-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBEF,Xtrackers MSCI EAFE Hedged Equity ETF,NYSE ARCA,ETF,2011-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBEH,IM DBI HEDGE STRATEGY ETF ,NYSE ARCA,ETF,2019-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBEM,Xtrackers MSCI Emerging Markets Hedged Equity ETF,NYSE ARCA,ETF,2011-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBEU,Xtrackers MSCI Europe Hedged Equity ETF,NYSE ARCA,ETF,2013-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBEZ,Xtrackers MSCI Eurozone Hedged Equity ETF,NYSE ARCA,ETF,2014-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBGI,Digital Brands Group Inc,NASDAQ,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBGIW,Digital Brands Group Inc - Warrants (01/05/2026),NASDAQ,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBGR,Xtrackers MSCI Germany Hedged Equity ETF,NYSE ARCA,ETF,2011-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBI,Designer Brands Inc - Class A,NYSE,Stock,2005-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBJA,Innovator Double Stacker 9 Buffer ETF - January,BATS,ETF,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBJP,Xtrackers MSCI Japan Hedged Equity ETF,NYSE ARCA,ETF,2011-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBL,DoubleLine Opportunistic Credit Fund,NYSE,ETF,2012-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBLV,AdvisorShares DoubleLine Value Equity ETF,NYSE ARCA,ETF,2011-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBMF,IM DBI MANAGED FUTURES STRATEGY ETF ,NYSE ARCA,ETF,2019-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBO,Invesco DB Oil Fund,NYSE ARCA,ETF,2007-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBOC,Innovator Double Stacker 9 Buffer ETF - October,BATS,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBP,Invesco DB Precious Metals Fund,NYSE ARCA,ETF,2007-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBRG,DigitalBridge Group Inc - Class A,NYSE,Stock,2014-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBRG-P-G,DigitalBridge Group Inc 7.50 Cum Red Perp Pfd Ser G,NYSE,Stock,2021-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBRG-P-H,DigitalBridge Group Inc 7.125 Cum Red Perp Pfd Ser H,NYSE,Stock,2021-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBRG-P-I,DigitalBridge Group Inc 7.15 Cum Red Perp Pfd Ser I,NYSE,Stock,2021-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBRG-P-J,DigitalBridge Group Inc 7.125 Cum Red Perp Pfd Ser J,NYSE,Stock,2021-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBS,Invesco DB Silver Fund,NYSE ARCA,ETF,2007-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBTX,Decibel Therapeutics Inc,NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBV,Invesco DB G10 Currency Harvest Fund,NYSE ARCA,ETF,2006-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBVT,DBV Technologies,NASDAQ,Stock,2014-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DBX,Dropbox Inc - Class A,NASDAQ,Stock,2018-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCBO,Docebo Inc,NASDAQ,Stock,2020-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCF,BNY Mellon Alcentra Global Credit Income 2024 Target Term Fund Inc,NYSE,ETF,2017-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCFC,Tritium DCFC Ltd,NASDAQ,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCFCW,Tritium DCFC Ltd - Warrants (13/01/2027),NASDAQ,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCGO,DocGo Inc,NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCGOW,DocGo Inc - Warrants (05/11/2026),NASDAQ,Stock,2020-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCI,Donaldson Co. Inc,NYSE,Stock,1987-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCO,Ducommun Inc,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCOM,Dime Community Bancshares Inc,NASDAQ,Stock,1999-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCOMP,Dime Community Bancshares Inc,NASDAQ,Stock,2020-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCP,DCP Midstream LP,NYSE,Stock,2005-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCP-P-B,DCP Midstream LP 7875 Series B FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units,NYSE,Stock,2018-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCP-P-C,DCP Midstream LP 795 Series C FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units,NYSE,Stock,2018-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCPH,Deciphera Pharmaceuticals Inc,NASDAQ,Stock,2017-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCRD,Decarbonization Plus Acquisition Corp IV - Class A,NASDAQ,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCRDU,Decarbonization Plus Acquisition Corp IV - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCRDW,Decarbonization Plus Acquisition Corp IV - Warrants (15/07/2026),NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCT,Duck Creek Technologies Inc,NASDAQ,Stock,2020-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCTH,Delcath Systems Inc,NASDAQ,Stock,2002-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DCUE,Dominion Energy 7.25 06-01-22,NYSE,Stock,2019-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DD,DuPont de Nemours Inc,NYSE,Stock,1962-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DD-WD,DuPont de Nemours Inc When Distributed,NYSE,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDD,3D Systems Corp,NYSE,Stock,1990-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDEC,FT Cboe Vest U.S. Equity Deep Buffer ETF - December,BATS,ETF,2020-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDF,Delaware Investments Dividend and Income Fund Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDG,ProShares Short Oil & Gas,NYSE ARCA,ETF,2008-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDI,DoubleDown Interactive Co Ltd,NASDAQ,Stock,2021-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDIV,First Trust Dorsey Wright Momentum & Dividend ETF,NASDAQ,ETF,2014-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDL,Dingdong (Cayman) Ltd,NYSE,Stock,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDLS,WisdomTree Dynamic Currency Hedged International SmallCap Equity Fund,BATS,ETF,2016-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDM,ProShares Ultra Dow30,NYSE ARCA,ETF,2006-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDOG,Datadog Inc - Class A,NASDAQ,Stock,2019-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDS,Dillard`s Inc - Class A,NYSE,Stock,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDT,Dillards Capital Trust I,NYSE,Stock,1998-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DDWM,WisdomTree Dynamic Currency Hedged International Equity Fund,BATS,ETF,2016-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DE,Deere & Company,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEA,Easterly Government Properties Inc,NYSE,Stock,2015-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DECK,Deckers Outdoor Corp,NYSE,Stock,1993-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DECZ,TrueShares Structured Outcome (December) ETF,BATS,ETF,2020-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEED,First Trust Exchange-Traded Fund VIII ETF,NYSE ARCA,ETF,2020-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEEF,XTRACKERS FTSE DEVELOPED EX US COMPREHENSIVE FACTOR ETF ,NYSE ARCA,ETF,2015-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEEP,Roundhill Acquirers Deep Value ETF,NYSE ARCA,ETF,2014-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEF,Invesco Defensive Equity ETF,NYSE ARCA,ETF,2006-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEFN,Emles Protective Allocation ETF,BATS,ETF,2020-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEI,Douglas Emmett Inc,NYSE,Stock,2006-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEIF,Sterling Capital Diverse Multi-Manager Active ETF,NYSE ARCA,ETF,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DELL,Dell Technologies Inc - Class C,NYSE,Stock,2018-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEM,WisdomTree Emerging Markets High Dividend Fund,NYSE ARCA,ETF,2007-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEMZ,Democratic Large Cap Core ETF,NASDAQ,ETF,2020-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEN,Denbury Inc - New,NYSE,Stock,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DENN,Denny`s Corp,NASDAQ,Stock,1998-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEO,Diageo plc,NYSE,Stock,1996-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DERM,Journey Medical Corp,NASDAQ,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DES,WisdomTree U.S. SmallCap Dividend Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DESP,Despegar.com Corp,NYSE,Stock,2017-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEUS,Xtrackers Russell US Multifactor ETF,NYSE ARCA,ETF,2015-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEW,WisdomTree Global High Dividend Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DEX,Delaware Enhanced Global Dividend Income Fund,NYSE,ETF,2007-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFAC,Dimensional U.S. Core Equity 2 ETF,NYSE ARCA,ETF,2021-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFAE,Dimensional Emerging Core Equity Market ETF,NYSE ARCA,ETF,2020-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFAI,Dimensional International Core Equity Market ETF,NYSE ARCA,ETF,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFAR,Dimensional US Real Estate ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFAS,Dimensional U.S. Small Cap ETF,NYSE ARCA,ETF,2021-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFAT,Dimensional U.S. Targeted Value ETF,NYSE ARCA,ETF,2021-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFAU,Dimensional US Core Equity Market ETF,NYSE ARCA,ETF,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFAX,Dimensional World ex U.S. Core Equity 2 ETF,NYSE ARCA,ETF,2021-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFCF,Dimensional Core Fixed Income ETF,NYSE ARCA,ETF,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFE,WISDOMTREE EUROPE SMALLCAP DIVIDEND FUND N/A,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFEB,FT Cboe Vest U.S. Equity Deep Buffer ETF - February,BATS,ETF,2020-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFEN,Direxion Daily Aerospace & Defense Bull 3X Shares,NYSE ARCA,ETF,2017-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFFN,Diffusion Pharmaceuticals Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFH,Dream Finders Homes Inc - Class A,NASDAQ,Stock,2021-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFHY,Donoghue Forlines Tactical High Yield ETF,BATS,ETF,2020-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFIN,Donnelley Financial Solutions Inc,NYSE,Stock,2016-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFIP,Dimensional Inflation-Protected Securities ETF,NYSE ARCA,ETF,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFIV,Dimensional International Value ETF,NYSE ARCA,ETF,2021-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFJ,WisdomTree Japan SmallCap Dividend Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFND,Siren DIVCON Dividend Defender ETF,BATS,ETF,2016-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFNL,Davis Select Financial ETF,BATS,ETF,2017-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFNM,Dimensional National Municipal Bond ETF,NYSE ARCA,ETF,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFNV,Donoghue Forlines Risk Managed Innovation ETF,BATS,ETF,2020-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFP,Flaherty & Crumrine Dynamic Preferred and Income Fund Inc,NYSE,ETF,2013-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFRA,Donoghue Forlines Yield Enhanced Real Asset ETF,BATS,ETF,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFS,Discover Financial Services,NYSE,Stock,2007-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFSD,Dimensional Short-Duration Fixed Income ETF,NYSE ARCA,ETF,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFSV,Dimensional US Small Cap Value ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DFUS,Dimensional U.S. Equity ETF,NYSE ARCA,ETF,2021-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DG,Dollar General Corp,NYSE,Stock,2009-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGAZ,VelocityShares 3x Inv Natural Gas ETN,NYSE ARCA,ETF,2012-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGHI,Digihost Technology Inc,NASDAQ,Stock,2021-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGICA,Donegal Group Inc - Class A,NASDAQ,Stock,2001-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGICB,Donegal Group Inc - Class B,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGII,Digi International Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGIN,VanEck Digital India ETF,NYSE ARCA,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGL,Invesco DB Gold Fund,NYSE ARCA,ETF,2007-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGLD,,NASDAQ,Stock,2020-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGLY,Digital Ally Inc,NASDAQ,Stock,2007-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGNU,Dragoneer Growth Opportunities Corp III - Class A,NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGP,PowerShares DB Gold Double Long ETN,NYSE ARCA,ETF,2008-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGRE,WISDOMTREE EMERGING MARKETS QUALITY DIVIDEND GROWTH FUND N/A,NASDAQ,ETF,2013-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGRO,iShares Core Dividend Growth ETF,NYSE ARCA,ETF,2014-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGRS,WisdomTree U.S. SmallCap Quality Dividend Growth Fund,NASDAQ,ETF,2013-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGRW,WisdomTree U.S. Quality Dividend Growth Fund,NASDAQ,ETF,2013-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGS,WisdomTree Emerging Markets SmallCap Dividend Fund,NYSE ARCA,ETF,2007-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGT,SPDR Global Dow ETF,NYSE ARCA,ETF,2000-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGX,Quest Diagnostics Inc,NYSE,Stock,1996-12-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DGZ,Deutsche Bank AG London,NYSE ARCA,ETF,2008-02-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DH,Definitive Healthcare Corp - Class A,NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHAC,Digital Health Acquisition Corp,NASDAQ,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHACU,Digital Health Acquisition Corp - Unit (1 Ordinary share & 1 Wrt),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHACW,Digital Health Acquisition Corp - Warrants(02/11/2026),NASDAQ,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHBC,DHB Capital Corp - Class A,NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHBCU,DHB Capital Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHBCW,DHB Capital Corp - Warrants (31/03/2028),NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHC,Diversified Healthcare Trust,NASDAQ,Stock,2000-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHCA,DHC Acquisition Corp - Class A,NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHCAU,DHC Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHCAW,DHC Acquisition Corp - Warrants (25/02/2026),NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHCNI,Diversified Healthcare Trust,NASDAQ,Stock,2012-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHCNL,Diversified Healthcare Trust,NASDAQ,Stock,2016-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHF,Dreyfus High Yield Strategies Fund,NYSE,ETF,1998-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHHC,DiamondHead Holdings Corp - Class A,NASDAQ,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHHCU,DiamondHead Holdings Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHHCW,DiamondHead Holdings Corp - Warrants (21/01/2026),NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHI,D.R. Horton Inc,NYSE,Stock,1992-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHIL,Diamond Hill Investment Group Inc - Class A,NASDAQ,Stock,1997-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHR,Danaher Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHR-P-A,Danaher Corp,NYSE,Stock,2019-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHR-P-B,,NYSE,Stock,2020-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHS,WisdomTree U.S. High Dividend Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHT,DHT Holdings Inc,NYSE,Stock,2005-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHX,DHI Group Inc,NYSE,Stock,2007-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DHY,Credit Suisse High Yield Bond Fund,NYSE MKT,ETF,1998-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIA,SPDR Dow Jones Industrial Average ETF,NYSE ARCA,ETF,1998-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIAL,Columbia Diversified Fixed Income Allocation ETF,NYSE ARCA,ETF,2017-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIAX,Nuveen Dow 30SM Dynamic Overwrite Fund,NYSE,ETF,2014-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIBS,1stdibs.com Inc,NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DICE,DICE Therapeutics Inc,NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIDI,DiDi Global Inc,NYSE,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIG,ProShares Ultra Oil & Gas,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DILA,DILA Capital Acquisition Corp - Class A,NASDAQ,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DILAU,DILA Capital Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DILAW,DILA Capital Acquisition Corp - Warrants (09/06/2026),NASDAQ,Stock,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIM,WISDOMTREE INTERNATIONAL MIDCAP DIVIDEND FUND N/A,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIN,Dine Brands Global Inc,NYSE,Stock,1991-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DINO,HF Sinclair Corporation,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DINT,Davis Select International ETF,BATS,ETF,2018-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIOD,Diodes Inc,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIS,Walt Disney Co (The),NYSE,Stock,1962-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DISA,Disruptive Acquisition Corp I - Class A,NASDAQ,Stock,2021-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DISAU,Disruptive Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DISAW,Disruptive Acquisition Corp I - Warrants (06/03/2026),NASDAQ,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DISCA,Discovery Inc - Class A,NASDAQ,Stock,2005-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DISCB,Discovery Inc - Class B,NASDAQ,Stock,2005-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DISCK,Discovery Inc - Series C,NASDAQ,Stock,2008-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DISH,Dish Network Corp - Class A,NASDAQ,Stock,1995-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DISHR,DISH Network Corp Rt,NASDAQ,Stock,2019-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIT,Amcon Distributing Company,NYSE MKT,Stock,1995-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIV,Global X SuperDividend U.S. ETF,NYSE ARCA,ETF,2013-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIVA,AGFiQ Hedged Dividend Income Fund,NYSE ARCA,ETF,2015-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIVB,iShares U.S. Dividend and Buyback ETF,BATS,ETF,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIVO,Amplify CPW Enhanced Dividend Income ETF,NYSE ARCA,ETF,2016-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIVS,SmartETFs Dividend Builder ETF,NYSE ARCA,ETF,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DIVZ,TrueShares Low Volatility Equity Income ETF,NYSE ARCA,ETF,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DJAN,FT Cboe Vest U.S. Equity Deep Buffer ETF - January,BATS,ETF,2021-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DJCB,UBS AG London Branch ETRACS Bloomberg Commodity Index Total Return ETN Ser B 10312039,NYSE ARCA,ETF,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DJCO,Daily Journal Corporation,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DJD,Invesco Dow Jones Industrial Average Dividend ETF,NYSE ARCA,ETF,2015-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DJIA,Global X Dow 30 Covered Call ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DJP,Barclays Bank PLC,NYSE ARCA,ETF,2006-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DJUL,FT Cboe Vest U.S. Equity Deep Buffer ETF - July,BATS,ETF,2020-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DJUN,FT Cboe Vest U.S. Equity Deep Buffer ETF - June,BATS,ETF,2020-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DK,Delek US Holdings Inc,NYSE,Stock,2006-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DKDCA,Data Knights Acquisition Corp - Class A,NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DKDCU,Data Knights Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DKDCW,Data Knights Acquisition Corp - Warrants (05/05/2026),NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DKL,Delek Logistics Partners LP,NYSE,Stock,2012-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DKNG,DraftKings Inc - Class A,NASDAQ,Stock,2019-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DKS,Dicks Sporting Goods Inc,NYSE,Stock,2002-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DKT,Deutsch Bk Contingent Cap Tr V Tr Pfd Secs,NYSE,Stock,2008-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLA,Delta Apparel Inc,NYSE MKT,Stock,2000-07-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLB,Dolby Laboratories Inc - Class A,NYSE,Stock,2005-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLBR,Citigroup Global Markets Holdings Inc VelocityShares Short LIBOR ETN,NYSE ARCA,ETF,2017-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLCA,Deep Lake Capital Acquisition Corp - Class A,NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLCAU,Deep Lake Capital Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLCAW,Deep Lake Capital Acquisition Corp - Warrants (04/01/2026),NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLHC,DLH Holdings Corp,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLN,WisdomTree U.S. LargeCap Dividend Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLNG,Dynagas LNG Partners LP,NYSE,Stock,2013-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLNG-P-A,Dynagas LNG Partners LP 900 Series A Cumulative Redeemable Preferred Units,NYSE,Stock,2015-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLNG-P-B,Dynagas LNG Partners LP Pfd Unit Ser B FixedFltg,NYSE,Stock,2018-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLO,DLocal Ltd Class A,NASDAQ,Stock,2021-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLPN,Dolphin Entertainment Inc,NASDAQ,Stock,2017-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLR,Digital Realty Trust Inc,NYSE,Stock,2004-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLR-P-J,Digital Realty Trust Inc,NYSE,Stock,2017-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLR-P-K,Digital Realty Trust Inc,NYSE,Stock,2019-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLR-P-L,,NYSE,Stock,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLS,WISDOMTREE INTERNATIONAL SMALLCAP DIVIDEND FUND N/A,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLTH,Duluth Holdings Inc - Class B,NASDAQ,Stock,2015-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLTR,Dollar Tree Inc,NASDAQ,Stock,1995-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLX,Deluxe Corp,NYSE,Stock,1987-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DLY,DoubleLine Yield Opportunities Fund,NYSE,Stock,2020-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DM,Desktop Metal Inc - Class A,NYSE,Stock,2019-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DM-WS,Desktop Metal Inc Wt Exp 03312026,NYSE,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMA,Destra Multi-Alternative Fund,NYSE,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMAC,DiaMedica Therapeutics Inc,NASDAQ,Stock,2008-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMAQ,Deep Medicine Acquisition Corp - Class A,NASDAQ,Stock,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMAQR,Deep Medicine Acquisition Corp,NASDAQ,Stock,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMAR,FT Cboe Vest U.S. Equity Deep Buffer ETF - March,BATS,ETF,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMAT,Global X Disruptive Materials ETF,NASDAQ,ETF,2022-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMAY,FT Cboe Vest U.S. Equity Deep Buffer ETF - May,BATS,ETF,2020-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMB,BNY Mellon Municipal Bond Infrastructure Fund Inc,NYSE,ETF,2013-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMCY,Democracy International Fund,NYSE ARCA,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMDV,AAM S&P DEVELOPED MARKETS HIGH DIVIDEND VALUE ETF ,NYSE ARCA,ETF,2018-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMF,BNY Mellon Municipal Income Inc,NYSE MKT,ETF,1991-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMLP,Dorchester Minerals LP,NASDAQ,Stock,2003-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMO,Western Asset Mrtg Defined Oppn Fund Inc,NYSE,ETF,2010-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMRC,Digimarc Corporation,NASDAQ,Stock,1999-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMRE,DeltaShares S&P EM 100 & Managed Risk ETF,NYSE ARCA,ETF,2019-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMRI,DeltaShares S&P International Managed Risk ETF,NYSE ARCA,ETF,2017-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMRL,DeltaShares S&P 500 Managed Risk ETF,NYSE ARCA,ETF,2017-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMRM,DeltaShares S&P 400 Managed Risk ETF,NYSE ARCA,ETF,2017-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMRS,DeltaShares S&P 600 Managed Risk ETF,NYSE ARCA,ETF,2017-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMS,Digital Media Solutions Inc - Class A,NYSE,Stock,2020-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMS-WS,Digital Media Solutions Inc - Warrants (15/07/2025),NYSE,Stock,2020-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMTK,DermTech Inc,NASDAQ,Stock,2017-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMXF,iShares ESG Advanced MSCI EAFE ETF,NASDAQ,ETF,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMYD-U,dMY Technology Group Inc II Units each consisting of one share of Class A common stock and onethird of one redeemable warrant,NYSE,Stock,2020-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMYS,dMY Technology Group Inc VI - Class A,NYSE,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMYS-U,dMY Technology Group Inc VI - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMYS-WS,dMY Technology Group Inc VI - Warrants (01/01/9999),NYSE,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DMYT-U,Rush Street Interactive Inc - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNA,Ginkgo Bioworks Holdings Inc - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNA-WS,Ginkgo Bioworks Holdings Inc - Warrants (23/02/2026),NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNAA,Social Capital Suvretta Holdings Corp I - Class A,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNAB,Social Capital Suvretta Holdings Corp II - Class A,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNAC,Social Capital Suvretta Holdings Corp III - Class A,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNAD,Social Capital Suvretta Holdings Corp IV - Class A,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNAY,Codex DNA Inc,NASDAQ,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNB,Dun & Bradstreet Holdings Inc,NYSE,Stock,2020-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNI,Dividend And Income Fund Inc,NYSE,ETF,1998-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNL,WisdomTree Global ex-U.S. Quality Dividend Growth Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNLI,Denali Therapeutics Inc,NASDAQ,Stock,2017-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNMR,Danimer Scientific Inc - Class A,NYSE,Stock,2020-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNN,Denison Mines Corp,NYSE MKT,Stock,2005-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNOV,FT Cboe Vest U.S. Equity Deep Buffer ETF - November,BATS,ETF,2019-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNOW,NOW Inc,NYSE,Stock,2014-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNP,DNP Select Income Fund Inc,NYSE,ETF,1987-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNUT,Krispy Kreme Inc,NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNZ,D and Z Media Acquisition Corp - Class A,NYSE,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNZ-U,D and Z Media Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DNZ-WS,D and Z Media Acquisition Corp - Warrants (27/01/2026),NYSE,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOC,Physicians Realty Trust,NYSE,Stock,2013-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOCN,DigitalOcean Holdings Inc,NYSE,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOCS,Doximity Inc - Class A,NYSE,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOCT,FT Cboe Vest U.S. Equity Deep Buffer ETF - October,BATS,ETF,2020-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOCU,DocuSign Inc,NASDAQ,Stock,2018-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOG,ProShares Short Dow30,NYSE ARCA,ETF,2006-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOGZ,Dogness (International) Corp - Class A,NASDAQ,Stock,2017-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOL,WISDOMTREE INTERNATIONAL LARGECAP DIVIDEND FUND N/A,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOLE,Dole plc,NYSE,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOMA,Doma Holdings Inc - New,NYSE,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOMA-WS,Doma Holdings Inc Wt Exp 07282026,NYSE,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOMO,Domo Inc - Class B,NASDAQ,Stock,2018-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DON,WisdomTree U.S. MidCap Dividend Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOOO,BRP Inc,NASDAQ,Stock,2013-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOOR,Masonite International Corp,NYSE,Stock,2009-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DORM,Dorman Products Inc,NASDAQ,Stock,1991-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOUG,Douglas Elliman Inc,NYSE,Stock,2021-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOV,Dover Corp,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOW,Dow Inc,NYSE,Stock,2019-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOX,Amdocs Ltd,NASDAQ,Stock,1998-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOYU,DouYu International Holdings Ltd,NASDAQ,Stock,2019-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DOZR,DIREXION DAILY US INFRASTRUCTURE BULL 2X SHARES ,NYSE ARCA,ETF,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DPCS,DP Cap Acquisition Corp I - Class A,NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DPCSU,DP Cap Acquisition Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DPCSW,DP Cap Acquisition Corp I - Warrants (08/11/2026),NASDAQ,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DPG,Duff & Phelps Utility and Infrastructure Fund Inc,NYSE,ETF,2011-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DPK,DIREXION DAILY MSCI DEVELOPED MARKETS BEAR 3X SHARES ,NYSE ARCA,ETF,2008-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DPRO,Draganfly Inc,NASDAQ,Stock,2019-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DPST,Direxion Daily Regional Banks Bull 3X Shares,NYSE ARCA,ETF,2015-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DPW,,NYSE,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DPZ,Dominos Pizza Inc,NYSE,Stock,2004-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DQ,Daqo New Energy Corp,NYSE,Stock,2010-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRAY,Macondray Capital Acquisition Corp I - Class A,NASDAQ,Stock,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRAYU,Macondray Capital Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRAYW,Macondray Capital Acquisition Corp I - Warrants (31/05/2028),NASDAQ,Stock,2021-08-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRCT,Direct Digital Holdings Inc Class A,NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRCTW,Direct Digital Holdings Inc - Warrants (03/02/2027),NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRD,DRDGold Ltd,NYSE,Stock,1996-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRE,Duke Realty Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRH,Diamondrock Hospitality Company,NYSE,Stock,2005-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRH-P-A,Diamondrock Hospitality Company,NYSE,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRI,Darden Restaurants Inc,NYSE,Stock,1995-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRIO,DarioHealth Corp,NASDAQ,Stock,2014-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRIP,Direxion Daily S&P Oil & Gas Exp. & Prod. Bear 2X Shares,NYSE ARCA,ETF,2015-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRIV,Global X Autonomous & Electric Vehicles ETF,NASDAQ,ETF,2018-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRMA,Dermata Therapeutics Inc,NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRMAW,Dermata Therapeutics Inc - Warrants (13/08/2026),NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRN,Direxion Daily Real Estate Bull 3X Shares,NYSE ARCA,ETF,2009-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRQ,Dril-Quip Inc,NYSE,Stock,1997-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRRX,Durect Corp,NASDAQ,Stock,2000-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRSK,Aptus Defined Risk ETF,BATS,ETF,2018-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRTS,Alpha Tau Medical Ltd - Class A,NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRTSW,Alpha Tau Medical Ltd - Warrants (07/03/2027),NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRTT,DIRTT Environmental Solutions Ltd,NASDAQ,Stock,2014-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRUG,Bright Minds Biosciences Inc,NASDAQ,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRV,Direxion Daily Real Estate Bear 3X Shares,NYSE ARCA,ETF,2009-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRVN,Driven Brands Holdings Inc,NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DRW,WISDOMTREE GLOBAL EX-U.S. REAL ESTATE FUND N/A,NYSE ARCA,ETF,2007-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DS,Drive Shack Inc,NYSE,Stock,2002-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DS-P-B,Drive Shack Inc Preferred Series B,NYSE,Stock,2016-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DS-P-C,Drive Shack Inc Preferred Series C,NYSE,Stock,2016-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DS-P-D,Drive Shack Inc Pfd Ser D,NYSE,Stock,2016-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSAC,Duddell Street Acquisition Corp - Class A,NASDAQ,Stock,2020-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSACU,Duddell Street Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSACW,Duddell Street Acquisition Corp - Warrants (21/10/2025),NASDAQ,Stock,2020-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSAQ,Direct Selling Acquisition Corp - Class A,NYSE,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSAQ-U,Direct Selling Acquisition Corp Units each consisting of one share of Class A common stock and onehalf of redeemable warrant,NYSE,Stock,2021-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSAQ-WS,Direct Selling Acquisition Corp - Warrants (30/09/2028),NYSE,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSCF,Discipline Fund ETF,NYSE ARCA,ETF,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSE,Duff & Phelps Select MLP and Midstream Energy Fund Inc,NYSE,ETF,2014-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSEP,FT Cboe Vest U.S. Equity Deep Buffer ETF - September,BATS,ETF,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSEY,Diversey Holdings Ltd,NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSGN,Design Therapeutics Inc,NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSGX,Descartes Systems Group Inc,NASDAQ,Stock,1999-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSI,iShares MSCI KLD 400 Social Index Fund,NYSE ARCA,ETF,2006-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSJA,Innovator Double Stacker ETF - January,BATS,ETF,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSKE,Daseke Inc,NASDAQ,Stock,2015-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSL,Doubleline Income Solutions Fund,NYSE,ETF,2013-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSLV,,NASDAQ,Stock,2020-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSM,BNY Mellon Strategic Municipal Bond Fund Inc,NYSE,ETF,1990-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSOC,Innovator Double Stacker ETF - October,BATS,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSP,Viant Technology Inc - Class A,NASDAQ,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSPC,The De-SPAC ETF,NASDAQ,ETF,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSS,DSS Inc,NYSE MKT,Stock,1997-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSTL,Distillate U.S. Fundamental Stability & Value ETF,NYSE ARCA,ETF,2018-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSTX,Distillate International Fundamental Stability & Value ETF,NYSE ARCA,ETF,2020-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSU,BlackRock Debt Strategies Fund Inc,NYSE,ETF,1998-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSWL,Deswell Industries Inc,NASDAQ,Stock,1995-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSX,Diana Shipping Inc,NYSE,Stock,2005-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DSX-P-B,Diana Shipping Inc Perpetual Preferred Shares Series B Marshall Islands,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DT,Dynatrace Inc,NYSE,Stock,2019-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTB,DTE Energy Company,NYSE,Stock,2020-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTC,Solo Brands Inc - Class A,NYSE,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTD,WisdomTree U.S. Total Dividend Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTE,DTE Energy Company,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTE 6.25,DTE Energy Company. Units,NYSE,Stock,2019-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTE-W,DTE Energy Company ExDistribution When Issued,NYSE,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTEA,Davidstea Inc,NASDAQ,Stock,2015-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTEC,ALPS Disruptive Technologies ETF,NYSE ARCA,ETF,2017-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTF,DTF Tax-Free Income 2028 Term Fund Inc,NYSE,ETF,1991-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTG,DTE Energy Company,NYSE,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTH,WisdomTree International High Dividend Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTIL,Precision Biosciences Inc,NASDAQ,Stock,2019-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTLA-P,Brookfield DTLA Inc 7625 Series A Cumulative Redeemable Preferred Stock,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTM,DT Midstream Inc,NYSE,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTM-W,DT Midstream Inc When Issued,NYSE,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTO,PowerShares DB Crude Oil Double Short ETN,NYSE ARCA,ETF,2008-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTOC,Digital Transformation Opportunities Corp - Class A,NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTOCU,Digital Transformation Opportunities Corp - Units (1 Ord Class A & 1/4 War),NASDAQ,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTOCW,Digital Transformation Opportunities Corp - Warrants (31/03/2028),NASDAQ,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTOX,Amplify Cleaner Living ETF,NYSE ARCA,ETF,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTRT,DTRT Health Acquisition Corp - Class A,NASDAQ,Stock,2021-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTRTU,DTRT Health Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTRTW,DTRT Health Acquisition Corp - Warrants (31/08/2029),NASDAQ,Stock,2021-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTSS,Datasea Inc,NASDAQ,Stock,2016-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTST,Data Storage Corp,NASDAQ,Stock,2010-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTSTW,Data Storage Corp - Warrants (13/05/2026),NASDAQ,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DTW,DTE Energy Company,NYSE,Stock,2017-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUC,Duff & Phelps Utility & Corporate Bond Trust,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUDE,Merlyn.AI SectorSurfer Momentum ETF,BATS,ETF,2020-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUET,DUET Acquisition Corp - Class A,NASDAQ,Stock,2022-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUETU,DUET Acquisition Corp - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUETW,DUET Acquisition Corp - Warrants (18/01/2027),NASDAQ,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUG,ProShares UltraShort Oil & Gas,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUHP,Dimensional US High Profitability ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUK,Duke Energy Corp,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUK-P-A,Duke Energy Corporation Depositary Shares Series A,NYSE,Stock,2019-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUKB,Duke Energy Corporation 5625 Junior Subordinated Debentures due 2078,NYSE,Stock,2018-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUNE,Dune Acquisition Corporation - Class A,NASDAQ,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUNEU,Dune Acquisition Corporation - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUNEW,Dune Acquisition Corporation - Warrants (17/12/2025),NASDAQ,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUO,Fangdd Network Group Ltd,NASDAQ,Stock,2019-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUOL,Duolingo Inc - Class A,NASDAQ,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUOT,Duos Technologies Group Inc,NASDAQ,Stock,2015-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DURA,VanEck Morningstar Durable Dividend ETF,BATS,ETF,2018-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUSA,Davis Select U.S. Equity ETF,BATS,ETF,2017-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUSL,Direxion Daily Industrials Bull 3X Shares,NYSE ARCA,ETF,2017-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DUST,Direxion Daily Gold Miners Index Bear 2X Shares,NYSE ARCA,ETF,2010-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DV,DoubleVerify Holdings Inc,NYSE,Stock,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DVA,DaVita Inc,NYSE,Stock,1995-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DVAX,Dynavax Technologies Corp,NASDAQ,Stock,2004-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DVLU,First Trust Dorsey Wright Momentum & Value ETF,NASDAQ,ETF,2018-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DVN,Devon Energy Corp,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DVOL,First Trust Dorsey Wright Momentum & Low Volatility ETF,NASDAQ,ETF,2018-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DVY,iShares Select Dividend ETF,NASDAQ,ETF,2003-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DVYA,iShares Asia/Pacific Dividend ETF,NYSE ARCA,ETF,2012-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DVYE,iShares Emerging Markets Dividend ETF,NYSE ARCA,ETF,2012-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWAC,Digital World Acquisition Corp - Class A,NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWACU,Digital World Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWACW,Digital World Acquisition Corp - Warrants (30/06/2028),NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWAS,Invesco DWA SmallCap Momentum ETF,NASDAQ,ETF,2012-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWAT,ARROW DWA TACTICAL: MACRO ETF ,NASDAQ,ETF,2014-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWAW,AdvisorShares Dorsey Wright FSM All Cap World ETF,NASDAQ,ETF,2019-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWCR,Arrow DWA Tactical: International ETF,NASDAQ,ETF,2017-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWEQ,AdvisorShares Dorsey Wright Alpha Equal Weight ETF,NASDAQ,ETF,2019-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWIN,Delwinds Insurance Acquisition Corp - Class A,NYSE,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWIN-U,Delwinds Insurance Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWIN-WS,Delwinds Insurance Acquisition Corp - Warrants (01/08/2027),NYSE,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWLD,Davis Select Worldwide ETF,BATS,ETF,2017-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWM,WisdomTree International Equity Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWMC,AdvisorShares Dorsey Wright Micro-Cap ETF,NASDAQ,ETF,2018-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWMF,WisdomTree International Multifactor ETF,NYSE ARCA,ETF,2018-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWPP,FIRST TRUST DORSEY WRIGHT PEOPLE'S PORTFOLIO ETF ,NASDAQ,ETF,2012-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWSH,AdvisorShares Dorsey Wright Short ETF,NASDAQ,ETF,2018-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWSN,Dawson Geophysical Company,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWT,VelocityShares 3x Inverse Crude Oil ETNs linked to the SP GSCI Crude Oil Index ER,NYSE ARCA,ETF,2016-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWUS,ADVISORSHARES DORSEY WRIGHT FSM US CORE ETF ,NASDAQ,ETF,2019-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DWX,SPDR S&P International Dividend ETF,NYSE ARCA,ETF,2008-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DX,Dynex Capital Inc,NYSE,Stock,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DX-P-A,Dynex Capital Inc Preferred Stock Series A,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DX-P-A-CL,Dynex Capital Inc. Preferred Stock Series A,NYSE,Stock,2020-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DX-P-C,Dynex Capital Inc,NYSE,Stock,2020-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXB,Deutsche Bk Contingent Cap TR II Tr Pfd Sec,NYSE,Stock,2007-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXB-CL,Deutsche Bk Contingent Cap TR II Tr Pfd Sec,NYSE,Stock,2020-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXBCL,Deutsche Bk Contingent Cap TR II Tr Pfd Sec,NYSE,Stock,2007-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXC,DXC Technology Company,NYSE,Stock,2017-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXCM,Dexcom Inc,NASDAQ,Stock,2005-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXD,ProShares UltraShort Dow30,NYSE ARCA,ETF,2006-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXF,Dunxin Financial Holdings Ltd.,NYSE MKT,Stock,2018-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXGE,WisdomTree Germany Hedged Equity Fund,NASDAQ,ETF,2013-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXJ,WisdomTree Japan Hedged Equity Fund,NYSE ARCA,ETF,2006-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXJS,WisdomTree Japan Hedged SmallCap Equity Fund,NASDAQ,ETF,2013-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXLG,Destination XL Group Inc,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXPE,DXP Enterprises Inc,NASDAQ,Stock,1998-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXR,Daxor Corp,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DXYN,Dixie Group Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DY,Dycom Industries Inc,NYSE,Stock,1990-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DYAI,Dyadic International Inc DE,NASDAQ,Stock,2004-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DYB,WISDOMTREE DYNAMIC BEARISH U.S. EQUITY FUND NA,BATS,ETF,2015-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DYFN,Angel Oak Dynamic Financial Strategies Income Term Trust,NYSE,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DYLD,LeaderShares Dynamic Yield ETF,NYSE ARCA,ETF,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DYN,Dyne Therapeutics Inc,NASDAQ,Stock,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DYNF,BlackRock U.S. Equity Factor Rotation ETF,NYSE ARCA,ETF,2019-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DYNS,Dynamics Special Purpose Corp Class A,NASDAQ,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DYNT,Dynatronics Corp,NASDAQ,Stock,1994-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DZSI,DZS Inc,NASDAQ,Stock,2003-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "DZZ,PowerShares DB Gold Double Short ETN,NYSE ARCA,ETF,2008-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "E,Eni Spa,NYSE,Stock,1995-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EA,Electronic Arts Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAC,Edify Acquisition Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EACPU,Edify Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EACPW,Edify Acquisition Corp - Warrants (25/11/2025),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAD,Allspring Income Opportunities Fund,NYSE MKT,ETF,2003-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAF,GrafTech International Ltd,NYSE,Stock,2018-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAFD,Simplify Developed Ex-US PLUS Downside Convexity ETF,NYSE ARCA,ETF,2022-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAGG,iShares ESG Aware U.S. Aggregate Bond ETF,NYSE ARCA,ETF,2018-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAI,Entergy Arkansas LLC,NYSE,Stock,2016-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAOA,ISHARES ESG AWARE AGGRESSIVE ALLOCATION ETF ,BATS,ETF,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAOK,iShares ESG Aware Conservative Allocation ETF,BATS,ETF,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAOM,ISHARES ESG AWARE MODERATE ALLOCATION ETF ,BATS,ETF,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAOR,iShares ESG Aware Growth Allocation ETF,BATS,ETF,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAPR,Innovator Emerging Markets Power Buffer ETF April,NYSE ARCA,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAR,Eargo Inc,NASDAQ,Stock,2020-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EARN,Ellington Residential Mortgage REIT,NYSE,Stock,2013-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EASG,Xtrackers MSCI EAFE ESG Leaders Equity ETF,NYSE ARCA,ETF,2018-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAST,Eastside Distilling Inc,NASDAQ,Stock,2018-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EAT,Brinker International Inc,NYSE,Stock,1989-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EATV,VegTech Plant-based Innovation & Climate ETF,NYSE ARCA,ETF,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EATZ,ADVISORSHARES RESTAURANT ETF ,NYSE ARCA,ETF,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EB,Eventbrite Inc - Class A,NYSE,Stock,2018-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBAC,European Biotech Acquisition Corp - Class A,NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBACU,European Biotech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBACW,European Biotech Acquisition Corp - Warrants (06/03/2026),NASDAQ,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBAY,EBay Inc,NASDAQ,Stock,1998-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBC,Eastern Bankshares Inc,NASDAQ,Stock,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBET,Esports Technologies Inc,NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBF,Ennis Inc,NYSE,Stock,1987-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBIX,Ebix Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBIZ,Global X E-commerce ETF,NASDAQ,ETF,2018-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBLU,Ecofin Global Water ESG Fund,NYSE ARCA,ETF,2017-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBMT,Eagle Bancorp Montana Inc,NASDAQ,Stock,2000-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBND,SPDR Bloomberg Emerging Markets Local Bond ETF,NYSE ARCA,ETF,2011-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBON,Ebang International Holdings Inc - Class A,NASDAQ,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBR,Centrais Eletricas Brasileiras S.A.,NYSE,Stock,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBR-B,Centrais Eletricas Brasileiras S.A.,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBS,Emergent Biosolutions Inc,NYSE,Stock,2006-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EBTC,Enterprise Bancorp Inc,NASDAQ,Stock,2005-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EC,Ecopetrol SA,NYSE,Stock,2008-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECAT,BlackRock ESG Capital Allocation Trust,NYSE,Stock,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECC,Eagle Point Credit Company Inc,NYSE,ETF,2014-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECC-P-D,Eagle Point Credit Company Inc 6.75 Series D Preferred Stock,NYSE,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECCA,Eagle Point Credit Company Inc 775 Pfd Ser A 2022,NYSE,Stock,2015-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECCA-CL,,NYSE,Stock,2019-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECCACL,Eagle Point Credit Company Inc. Series A Term Preferred Stock due 2022,NYSE,Stock,2015-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECCC,Eagle Point Credit Company Inc,NYSE,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECCV,Eagle Point Credit Company Inc,NYSE,Stock,2022-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECCW,Eagle Point Credit Company Inc,NYSE,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECCX,Eagle Point Credit Company Inc 66875 Notes due 2028,NYSE,Stock,2018-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECF,Ellsworth Growth and Income Fund Ltd,NYSE MKT,ETF,1990-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECF-P-A,Ellsworth Growth and Income Fund Ltd,NYSE MKT,ETF,2017-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECH,iShares MSCI Chile ETF,BATS,ETF,2007-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECL,Ecolab Inc,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECL-WD,Ecolab Inc. When Distributed,NYSE,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECLN,First Trust EIP Carbon Impact ETF,NYSE ARCA,ETF,2019-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECNS,iShares MSCI China Small-Cap ETF,NYSE ARCA,ETF,2010-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECOL,US Ecology Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECOLW,US Ecology Inc - Warrants (17/10/2023),NASDAQ,Stock,2019-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECOM,ChannelAdvisor Corp,NYSE,Stock,2013-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECON,Columbia Emerging Markets Consumer ETF,NYSE ARCA,ETF,2010-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECOR,ElectroCore Inc,NASDAQ,Stock,2018-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECOW,Pacer Emerging Markets Cash Cows 100 ETF,NASDAQ,ETF,2019-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECOZ,TrueShares ESG Active Opportunities ETF,NYSE ARCA,ETF,2020-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECPG,Encore Capital Group Inc,NASDAQ,Stock,1999-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECT,Eca Marcellus Trust I,NYSE,Stock,2010-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ECVT,Ecovyst Inc,NYSE,Stock,2021-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ED,Consolidated Edison Inc,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDAP,EDAP TMS S.A.,NASDAQ,Stock,1997-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDC,Direxion Daily Emerging Markets Bull 3X Shares,NYSE ARCA,ETF,2008-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDD,Morgan Stanley Emerging Markets Domestic Debt Fund Inc,NYSE,ETF,2007-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDEN,ISHARES MSCI DENMARK ETF ,BATS,ETF,2012-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDF,Stone Harbor Emerging Markets Income Fund,NYSE,ETF,2010-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDI,Stone Harbor Emerging Markets Total Income Fund,NYSE,ETF,2012-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDIT,Editas Medicine Inc,NASDAQ,Stock,2016-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDIV,SPDR S&P Emerging Markets Dividend ETF,NYSE ARCA,ETF,2011-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDN,Empresa Distribuidora y Comercial Norte S.A.,NYSE,Stock,2007-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDNC,Endurance Acquisition Corp - Class A,NASDAQ,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDNCU,Endurance Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDNCW,Endurance Acquisition Corp - Warrants (01/09/2026),NASDAQ,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDOC,Global X Telemedicine & Digital Health ETF,NASDAQ,ETF,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDOG,ALPS EMERGING SECTOR DIVIDEND DOGS ETF ,NYSE ARCA,ETF,2014-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDOW,First Trust Dow 30 Equal Weight ETF,NYSE ARCA,ETF,2017-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDR,Endeavor Group Holdings Inc - Class A,NYSE,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDRY,EuroDry Ltd,NASDAQ,Stock,2018-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDSA,Edesa Biotech Inc,NASDAQ,Stock,2015-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDTK,Skillful Craftsman Education Technology Ltd,NASDAQ,Stock,2020-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDTX,EdtechX Holdings Acquisition Corp II - Class A,NASDAQ,Stock,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDTXU,EdtechX Holdings Acquisition Corp II - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDTXW,EdtechX Holdings Acquisition Corp II - Warrants (10/12/2025),NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDU,New Oriental Education & Technology Group Inc,NYSE,Stock,2006-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDUC,Educational Development Corp,NASDAQ,Stock,1993-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDUT,Global X Education ETF,NASDAQ,ETF,2020-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDV,Vanguard Extended Duration Treasury ETF,NYSE ARCA,ETF,2007-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EDZ,Direxion Daily MSCI Emerging Markets Bear 3X Shares,NYSE ARCA,ETF,2008-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEA,European Equity Fund Inc,NYSE,ETF,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEB,INVESCO BRIC ETF,NYSE ARCA,ETF,2006-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEFT,Euronet Worldwide Inc,NASDAQ,Stock,1997-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEH,ELEMENTS Linked to the SPECTRUM Large Cap US Sector Momentum Index ETN,NYSE ARCA,ETF,2007-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEIQ,Elite Education Group International Ltd,NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EELV,Invesco S&P Emerging Markets Low Volatility ETF,NYSE ARCA,ETF,2012-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEM,ISHARES MSCI EMERGING MARKETS ETF ,NYSE ARCA,ETF,2003-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEMA,iShares MSCI Emerging Markets Asia ETF,NASDAQ,ETF,2012-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEMD,AAM S&P EMERGING MARKETS HIGH DIVIDEND VALUE ETF ,NYSE ARCA,ETF,2017-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEMO,INVESCO S&P EMERGING MARKETS MOMENTUM ETF ,NYSE ARCA,ETF,2012-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEMS,ISHARES MSCI EMERGING MARKETS SMALL-CAP ETF ,NYSE ARCA,ETF,2011-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEMV,iShares MSCI Emerging Markets Min Vol Factor ETF,BATS,ETF,2011-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEMX,SPDR MSCI EMERGING MARKETS FOSSIL FUEL RESERVES FREE ETF ,NYSE ARCA,ETF,2016-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EERN,DRIVEWEALTH POWER SAVER ETF ,NYSE ARCA,ETF,2021-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EES,WisdomTree U.S. SmallCap Fund,NYSE ARCA,ETF,2007-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EET,ProShares Ultra MSCI Emerging Markets,NYSE ARCA,ETF,2009-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEV,ProShares UltraShort MSCI Emerging Markets,NYSE ARCA,ETF,2007-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EEX,Emerald Holding Inc,NYSE,Stock,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFA,iShares MSCI EAFE ETF,NYSE ARCA,ETF,2001-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFAD,ProShares MSCI EAFE Dividend Growers ETF,BATS,ETF,2014-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFAS,GLOBAL X MSCI SUPERDIVIDEND EAFE ETF ,NASDAQ,ETF,2016-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFAV,iShares MSCI EAFE Min Vol Factor ETF,BATS,ETF,2011-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFAX,SPDR MSCI EAFE Fossil Fuel Reserves Free ETF,NYSE ARCA,ETF,2016-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFC,Ellington Financial Inc,NYSE,Stock,2010-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFC-P-A,Ellington Financial Inc,NYSE,Stock,2019-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFC-P-B,Ellington Financial Inc,NYSE,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFF,Eaton Vance FloatingRate Income Plus Fund,NYSE,ETF,2013-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFG,iShares MSCI EAFE Growth ETF,BATS,ETF,2005-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFIV,SPDR S&P 500 ESG ETF,NYSE ARCA,ETF,2020-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFIX,First Trust TCW Emerging Markets Debt ETF,NYSE ARCA,ETF,2021-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFL,Eaton Vance Floating-Rate 2022 Target Term Trust,NYSE,ETF,2017-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFNL,iShares MSCI Finland ETF,BATS,ETF,2012-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFO,ProShares Ultra MSCI EAFE,NYSE ARCA,ETF,2009-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFOI,Energy Focus Inc,NASDAQ,Stock,2014-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFR,Eaton Vance Senior FloatingRate Fund,NYSE,ETF,2003-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFSC,Enterprise Financial Services Corp,NASDAQ,Stock,2003-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFSCP,Enterprise Financial Services Corp,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFT,Eaton Vance Floating-Rate Income Trust,NYSE,ETF,2004-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFTR,eFFECTOR Therapeutics Inc,NASDAQ,Stock,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFTRW,eFFECTOR Therapeutics Inc - Warrants (26/08/2026),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFU,ProShares UltraShort MSCI EAFE,NYSE ARCA,ETF,2007-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFV,iShares MSCI EAFE Value ETF,BATS,ETF,2005-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFX,Equifax Inc,NYSE,Stock,1986-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EFZ,ProShares Short MSCI EAFE,NYSE ARCA,ETF,2007-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGAN,eGain Corp,NASDAQ,Stock,1999-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGBN,Eagle Bancorp Inc (MD),NASDAQ,Stock,1999-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGF,BlackRock Enhanced Government Fund Inc,NYSE,ETF,2005-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGGF,EG Acquisition Corp - Class A,NYSE,Stock,2021-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGGF-U,EG Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGGF-WS,EG Acquisition Corp - Warrants (28/05/2028),NYSE,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGHT,8X8 Inc,NYSE,Stock,1997-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGIF,Eagle Growth Income Opportunities Fund Com Shs Of Ben Int,NYSE,ETF,2015-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGIS,2ndVote Society Defended ETF,BATS,ETF,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGLE,Eagle Bulk Shipping Inc,NASDAQ,Stock,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGLX,Enthusiast Gaming Holdings Inc,NASDAQ,Stock,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGO,Eldorado Gold Corp,NYSE,Stock,2003-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGP,Eastgroup Properties Inc,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGPT,VANECK EGYPT INDEX ETF ,NYSE ARCA,ETF,2010-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGRX,Eagle Pharmaceuticals Inc,NASDAQ,Stock,2014-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EGY,VAALCO Energy Inc,NYSE,Stock,1993-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EH,EHang Holdings Ltd,NASDAQ,Stock,2019-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EHC,Encompass Health Corp,NYSE,Stock,2017-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EHI,Western Asset Global High Income Fund Inc,NYSE,ETF,2003-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EHT,Eaton Vance 2021 Target Term Trust,NYSE,ETF,2016-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EHTH,eHealth Inc,NASDAQ,Stock,2006-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EIC,Eagle Point Income Company Inc,NYSE,Stock,2019-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EICA,Eagle Point Income Company Inc,NYSE,Stock,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EIDO,iShares MSCI Indonesia ETF,NYSE ARCA,ETF,2010-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EIG,Employers Holdings Inc,NYSE,Stock,2007-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EIGR,Eiger BioPharmaceuticals Inc,NASDAQ,Stock,2014-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EIM,Eaton Vance Municipal Bond Fund,NYSE MKT,ETF,2002-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EINC,VANECK ENERGY INCOME ETF ,NYSE ARCA,ETF,2012-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EIRL,iShares MSCI Ireland ETF,NYSE ARCA,ETF,2010-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EIS,iShares MSCI Israel ETF,NYSE ARCA,ETF,2008-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EIX,Edison International,NYSE,Stock,1980-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EJAN,Innovator Emerging Markets Power Buffer ETF January,NYSE ARCA,ETF,2020-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EJFA,EJF Acquisition Corp - Class A,NASDAQ,Stock,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EJFAU,EJF Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EJFAW,EJF Acquisition Corp - Warrants (10/03/2026),NASDAQ,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EJH,E-Home Household Service Holdings Ltd,NASDAQ,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EJUL,Innovator Emerging Markets Power Buffer ETF July,NYSE ARCA,ETF,2019-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EKAR,CAPITAL LINK NEXTGEN VEHICLES & TECHNOLOGY ETF ,NYSE ARCA,ETF,2018-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EKG,First Trust Nasdaq Lux Digital Health Solutions ETF,NASDAQ,ETF,2022-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EKSO,Ekso Bionics Holdings Inc,NASDAQ,Stock,2014-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EL,Estee Lauder Cos. Inc - Class A,NYSE,Stock,1995-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELA,Envela Corp,NYSE MKT,Stock,1992-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELAN,Elanco Animal Health Inc,NYSE,Stock,2018-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELAT,Elanco Animal Health Inc - Units ( Purchase Contract & Senior Amortizing Note),NYSE,Stock,2020-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELC,Entergy Louisiana LLC,NYSE,Stock,2016-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELD,WisdomTree Emerging Market Local Debt Fund,NYSE ARCA,ETF,2010-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELDN,Eledon Pharmaceuticals Inc,NASDAQ,Stock,2014-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELEV,Elevation Oncology Inc,NASDAQ,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELF,e.l.f. Beauty Inc,NYSE,Stock,2016-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELLO,Ellomay Capital Ltd,NYSE MKT,Stock,1995-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELMD,Electromed Inc,NYSE MKT,Stock,2010-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELMS,Electric Last Mile Solutions Inc - Class A,NASDAQ,Stock,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELMSW,Electric Last Mile Solutions Inc - Warrants (24/06/2026),NASDAQ,Stock,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELOX,Eloxx Pharmaceuticals Inc,NASDAQ,Stock,2018-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELP,Cia Paranaense De Energia Copel,NYSE,Stock,1998-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELQD,ISHARES ESG ADVANCED INVESTMENT GRADE CORPORATE BOND ETF ,NYSE ARCA,ETF,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELS,Equity Lifestyle Properties Inc,NYSE,Stock,1993-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELSE,Electro-Sensors Inc,NASDAQ,Stock,1990-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELTK,Eltek Ltd,NASDAQ,Stock,1997-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELVT,Elevate Credit Inc,NYSE,Stock,2017-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELY,Callaway Golf Company,NYSE,Stock,1992-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELYM,Eliem Therapeutics Inc,NASDAQ,Stock,2021-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ELYS,Elys Game Technology Corp,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EM,Smart Share Global Ltd,NASDAQ,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMAN,EMagin Corp,NYSE MKT,Stock,2000-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMB,iShares J.P. Morgan USD Emerging Markets Bond ETF,NASDAQ,ETF,2007-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMBCV,Embecta Corp,NASDAQ,Stock,2022-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMBD,GLOBAL X EMERGING MARKETS BOND ETF ,NYSE ARCA,ETF,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMBH,ISHARES INTEREST RATE HEDGED EMERGING MARKETS BOND ETF ,NYSE ARCA,ETF,2015-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMBK,Embark Technology Inc,NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMBKW,Embark Technology Inc Warrant,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMCB,WISDOMTREE EMERGING MARKETS CORPORATE BOND FUND N/A,NASDAQ,ETF,2012-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMCF,Emclaire Financial Corp,NASDAQ,Stock,1999-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMCR,EGSHARES EMERGING MARKETS CORE ETF,NYSE ARCA,ETF,2012-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMD,Wstrn Asst Emrgng Mrkts Incm Fnd Inc,NYSE,ETF,2003-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMDV,PROSHARES MSCI EMERGING MARKETS DIVIDEND GROWERS ETF ,BATS,ETF,2016-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EME,Emcor Group Inc,NYSE,Stock,1995-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMF,Templeton Emerging Markets Fund,NYSE,ETF,1990-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMFM,GLOBAL X MSCI NEXT EMERGING & FRONTIER ETF ,NYSE ARCA,ETF,2013-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMFQ,Amplify Emerging Markets FinTech ETF,NYSE ARCA,ETF,2019-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMGD,Simplify Emerging Markets Equity PLUS Downside Convexity ETF,NYSE ARCA,ETF,2022-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMGF,iShares MSCI Emerging Markets Multifactor ETF,BATS,ETF,2015-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMHC,SPDR Bloomberg Emerging Markets USD Bond ETF,NYSE ARCA,ETF,2021-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMHY,iShares J.P. Morgan EM High Yield Bond ETF,BATS,ETF,2012-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMIF,iShares Emerging Markets Infrastructure ETF,NASDAQ,ETF,2009-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMKR,Emcore Corp,NASDAQ,Stock,1997-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EML,Eastern Company,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMLC,VanEck J.P. Morgan EM Local Currency Bond ETF,NYSE ARCA,ETF,2010-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMLD,FTAC Emerald Acquisition Corp - Class A,NASDAQ,Stock,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMLDU,FTAC Emerald Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMLDW,FTAC Emerald Acquisition Corp - Warrants (19/10/2028),NASDAQ,Stock,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMLP,First Trust North American Energy Infrastructure Fund,NYSE ARCA,ETF,2012-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMMF,WISDOMTREE EMERGING MARKETS MULTIFACTOR FUND N/A,NYSE ARCA,ETF,2018-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMN,Eastman Chemical Company,NYSE,Stock,1993-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMNT,PIMCO Enhanced Short Maturity Active ESG Exchange-Traded Fund,NYSE ARCA,ETF,2019-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMO,ClearBridge Energy Midstream Opportunity Fund Inc,NYSE,ETF,2011-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMP,Entergy Mississippi Inc First Mortgage Bonds 490 Series Due October 1 2066,NYSE,Stock,2016-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMQQ,ETCT EMQQ The Emerging Markets Internet and Ecommerce ETF,NYSE ARCA,ETF,2014-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMR,Emerson Electric Company,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMSG,XTRACKERS MSCI EMERGING MARKETS ESG LEADERS EQUITY ETF ,NYSE ARCA,ETF,2018-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMSH,PROSHARES SHORT TERM USD EMERGING MARKETS BOND ETF ,BATS,ETF,2013-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMTL,SPDR DoubleLine Emerging Markets Fixed Income ETF,BATS,ETF,2016-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMTY,ProShares Decline of the Retail Store ETF,NYSE ARCA,ETF,2017-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMX,EMX Royalty Corp,NYSE MKT,Stock,2007-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMXC,IShares MSCI Emerging Markets ex China ETF,NASDAQ,ETF,2017-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EMXF,iShares ESG Advanced MSCI EM ETF,NASDAQ,ETF,2020-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENB,Enbridge Inc,NYSE,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENBA,Enbridge Inc,NYSE,Stock,2018-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENCP,Energem Corp - Class A,NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENCPU,Energem Corp - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENCPW,Energem Corp - Warrants (15/11/2026),NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENDP,Endo International plc,NASDAQ,Stock,2000-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENER,Accretion Acquisition Corp,NASDAQ,Stock,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENERR,Accretion Acquisition Corp,NASDAQ,Stock,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENERU,Accretion Acquisition Corp - Units (1 1 Rights & 1/2 War),NASDAQ,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENERW,Accretion Acquisition Corp - Warrants (01/03/2028),NASDAQ,Stock,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENFN,Enfusion Inc - Class A,NYSE,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENFR,Alerian Energy Infrastructure ETF,NYSE ARCA,ETF,2013-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENG,Englobal Corporation,NASDAQ,Stock,1997-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENIA,Enel Americas SA,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENIC,Enel Chile S.A.,NYSE,Stock,2016-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENJ,Entergy New Orleans Inc,NYSE,Stock,2012-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENJY,Enjoy Technology Inc,NASDAQ,Stock,2021-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENJYW,Enjoy Technology Inc - Warrants (15/10/2026),NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENLC,Enlink Midstream LLC,NYSE,Stock,2004-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENLV,Enlivex Therapeutics Ltd,NASDAQ,Stock,2014-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENO,Entergy New Orleans Inc 1st Mtg Bd 550 Ser 04012066,NYSE,Stock,2016-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENOB,Enochian Biosciences Inc,NASDAQ,Stock,2015-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENOR,iShares MSCI Norway ETF,BATS,ETF,2012-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENPC,Executive Network Partnering Corporation - Class A,NYSE,Stock,2020-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENPC-U,Executive Network Partnering Corporation - Units (1 Ord Class A & 1/4 War),NYSE,Stock,2020-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENPC-WS,Executive Network Partnering Corporation - Warrants(25/09/2028),NYSE,Stock,2020-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENPH,Enphase Energy Inc,NASDAQ,Stock,2012-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENR,Energizer Holdings Inc,NYSE,Stock,2000-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENS,Enersys,NYSE,Stock,2004-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENSC,Ensysce Biosciences Inc,NASDAQ,Stock,2018-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENSG,Ensign Group Inc,NASDAQ,Stock,2007-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENSV,Enservco Corp,NYSE MKT,Stock,1997-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENTA,Enanta Pharmaceuticals Inc,NASDAQ,Stock,2013-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENTF,Enterprise 4.0 Technology Acquisition Corp - Class A,NASDAQ,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENTFU,Enterprise 4.0 Technology Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENTFW,Enterprise 4.0 Technology Acquisition Corp - Warrants (14/10/2026),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENTG,Entegris Inc,NASDAQ,Stock,2000-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENTR,ERShares Entrepreneurs ETF,NYSE ARCA,ETF,2017-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENTX,Entera Bio Ltd,NASDAQ,Stock,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENTXW,Entera Bio Ltd - Warrants (27/06/2023),NASDAQ,Stock,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENV,Envestnet Inc,NYSE,Stock,2010-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENVA,Enova International Inc,NYSE,Stock,2014-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENVB,Enveric Biosciences Inc,NASDAQ,Stock,2015-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENVX,Enovix Corporation,NASDAQ,Stock,2021-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENX,Eaton Vance New York Municipal Bond Fund,NYSE MKT,ETF,2002-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENZ,Enzo Biochem Inc,NYSE,Stock,1980-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ENZL,iShares MSCI New Zealand ETF,NASDAQ,ETF,2010-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOCT,Innovator Emerging Markets Power Buffer ETF - October,NYSE ARCA,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOCW,Elliott Opportunity II Corp - Class A,NYSE,Stock,2021-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOCW-U,Elliott Opportunity II Corp - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOCW-WS,Elliott Opportunity II Corp - Warrants (02/03/2026),NYSE,Stock,2021-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOD,Allspring Global Dividend Opportunity Fund,NYSE,ETF,2007-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOG,EOG Resources Inc,NYSE,Stock,1989-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOI,Eaton Vance Enhanced Equity Income Fund,NYSE,ETF,2004-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOLS,Evolus Inc,NASDAQ,Stock,2018-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOPS,Emles Alpha Opportunities ETF,BATS,ETF,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOS,Eaton Vance Enhanced Equity Income Fund II,NYSE,ETF,2005-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOSE,Eos Energy Enterprises Inc - Class A,NASDAQ,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOSEW,Eos Energy Enterprises Inc - Warrants (06/05/2026),NASDAQ,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EOT,Eaton Vance National Municipal Opportunities Trust,NYSE,ETF,2009-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EP-P-C,El Paso Corporation Preferred Stock,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPAC,Enerpac Tool Group Corp - Class A,NYSE,Stock,2000-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPAM,EPAM Systems Inc,NYSE,Stock,2012-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPAY,Bottomline Technologies (Delaware) Inc,NASDAQ,Stock,1999-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPC,Edgewell Personal Care Company,NYSE,Stock,2000-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPD,Enterprise Products Partners L P,NYSE,Stock,1998-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPHE,iShares MSCI Philippines ETF,NYSE ARCA,ETF,2010-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPHY,Epiphany Technology Acquisition Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPHYU,Epiphany Technology Acquisition Corp - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPHYW,Epiphany Technology Acquisition Corp - Warrants (06/01/2026),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPI,WisdomTree India Earnings Fund,NYSE ARCA,ETF,2008-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPIX,Essa Pharma Inc,NASDAQ,Stock,2015-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPM,Evolution Petroleum Corporation,NYSE MKT,Stock,1997-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPOL,iShares MSCI Poland ETF,NYSE ARCA,ETF,2010-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPP,iShares MSCI Pacific ex Japan ETF,NYSE ARCA,ETF,2001-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPR,EPR Properties,NYSE,Stock,1997-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPR-P-C,EPR Properties 575 Series C Cumulative Convertible Preferred Shares,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPR-P-E,EPR Properties,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPR-P-G,EPR Properties 5750 Series G Cumulative Redeemable Preferred Shares,NYSE,Stock,2017-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPRE,FIRST TRUST TCW ESG PREMIER EQUITY ETF ,NYSE ARCA,ETF,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPRF,Innovator S&P Investment Grade Preferred ETF,BATS,ETF,2017-07-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPRT,Essential Properties Realty Trust Inc,NYSE,Stock,2018-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPS,WisdomTree U.S. LargeCap Fund,NYSE ARCA,ETF,2007-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPSN,Epsilon Energy Ltd,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPU,iShares MSCI Peru ETF,NYSE ARCA,ETF,2009-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPV,ProShares UltraShort FTSE Europe,NYSE ARCA,ETF,2009-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPWR,Empowerment & Inclusion Capital I Corp - Class A,NYSE,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPWR-U,Empowerment & Inclusion Capital I Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPWR-WS,Empowerment & Inclusion Capital I Corp - Warrants(12/01/2028),NYSE,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EPZM,Epizyme Inc,NASDAQ,Stock,2013-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQ,Equillium Inc,NASDAQ,Stock,2018-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQAL,Invesco Russell 1000 Equal Weight ETF,NYSE ARCA,ETF,2014-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQBK,Equity Bancshares Inc - Class A,NASDAQ,Stock,2015-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQC,Equity Commonwealth,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQC-P-D,Equity Commonwealth 650 Pfd Conv Shs Ser D,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQD,Equity Distribution Acquisition Corp - Class A,NYSE,Stock,2020-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQD-U,Equity Distribution Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQD-WS,Equity Distribution Acquisition Corp - Warrants (09/09/2025),NYSE,Stock,2020-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQH,Equitable Holdings Inc,NYSE,Stock,2018-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQH-P-A,Equitable Holdings Inc,NYSE,Stock,2019-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQH-P-C,Equitable Holdings Inc,NYSE,Stock,2021-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQHA,EQ Health Acquisition Corp - Class A,NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQHA-U,EQ Health Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQHA-WS,EQ Health Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQIX,Equinix Inc,NASDAQ,Stock,2000-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQL,ALPS Equal Sector Weight ETF,NYSE ARCA,ETF,2009-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQNR,Equinor ASA,NYSE,Stock,2018-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQOP,Natixis U.S. Equity Opportunities ETF,NYSE ARCA,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQOS,Eqonex Ltd,NASDAQ,Stock,2019-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQR,Equity Residential Properties Trust,NYSE,Stock,1993-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQRR,ProShares Equities for Rising Rates ETF,NASDAQ,ETF,2017-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQRX,EQRx Inc,NASDAQ,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQRXW,EQRx Inc - Warrants (17/12/2026),NASDAQ,Stock,2021-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQS,Equus Total Return Inc,NYSE,Stock,1992-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQT,EQT Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQUL,IQ Engender Equality ETF,NYSE ARCA,ETF,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQWL,Invesco Russell Top 200 Equal Weight ETF,NYSE ARCA,ETF,2006-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EQX,Equinox Gold Corp,NYSE MKT,Stock,2018-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERAS,Erasca Inc,NASDAQ,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERC,Allspring Multi-Sector Income Fund,NYSE MKT,ETF,2003-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERES,East Resources Acquisition Co - Class A,NASDAQ,Stock,2020-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERESU,East Resources Acquisition Co - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERESW,East Resources Acquisition Co - Warrants (01/07/2027),NASDAQ,Stock,2020-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERF,Enerplus Corporation,NYSE,Stock,2000-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERH,Allspring Utilities and High Income Fund,NYSE MKT,ETF,2004-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERIC,Telefonaktiebolaget L M Ericsson,NASDAQ,Stock,1989-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERIE,Erie Indemnity Co. - Class A,NASDAQ,Stock,1995-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERII,Energy Recovery Inc,NASDAQ,Stock,2008-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERJ,Embraer S.A.,NYSE,Stock,2000-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERM,EquityCompass Risk Manager ETF,NYSE ARCA,ETF,2017-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERO,iPath EURUSD Exchange Rate ETN,NYSE,ETF,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERSX,ERSHARES NEXTGEN ENTREPRENEURS ETF ,NYSE ARCA,ETF,2018-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERTH,INVESCO MSCI SUSTAINABLE FUTURE ETF ,NYSE ARCA,ETF,2006-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERUS,iShares MSCI Russia ETF,NYSE ARCA,ETF,2010-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERX,Direxion Daily Energy Bull 2X Shares,NYSE ARCA,ETF,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERY,Direxion Daily Energy Bear 2X Shares,NYSE ARCA,ETF,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ERYP,Erytech Pharma,NASDAQ,Stock,2016-07-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ES,Eversource Energy,NYSE,Stock,1984-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESAC,Esgen Acquisition Corp - Class A,NASDAQ,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESACU,Esgen Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESACW,Esgen Acquisition Corp - Warrants (18/10/2026),NASDAQ,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESBA,Empire State Realty OP LP,NYSE ARCA,Stock,2013-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESBK,Elmira Savings Bank,NASDAQ,Stock,1993-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESCA,Escalade Inc,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESCR,Xtrackers Bloomberg US Investment Grade Corporate ESG ETF.,BATS,ETF,2015-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESE,Esco Technologies Inc,NYSE,Stock,1990-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESEA,Euroseas Ltd,NASDAQ,Stock,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESEB,XTRACKERS J.P. MORGAN ESG EMERGING MARKETS SOVEREIGN ETF ,BATS,ETF,2015-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESG,FlexShares STOXX US ESG Select Index Fund,BATS,ETF,2016-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGA,American Century Sustainable Equity ETF,NYSE ARCA,ETF,2020-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGB,IQ MacKay ESG Core Plus Bond ETF,NYSE ARCA,ETF,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGC,Eros STX Global Corporation - Class A,NYSE,Stock,2013-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGD,iShares Trust iShares ESG Aware MSCI EAFE ETF,NASDAQ,ETF,2016-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGE,iShare Inc iShares ESG Aware MSCI EM ETF,NASDAQ,ETF,2016-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGG,FlexShares STOXX Global ESG Select Index Fund,BATS,ETF,2016-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGN,COLUMBIA SUSTAINABLE INTERNATIONAL EQUITY INCOME ETF ,NYSE ARCA,ETF,2016-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGR,Enstar Group Ltd,NASDAQ,Stock,1997-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGRO,Enstar Group Ltd Depositary Shs Each Repstg 11000 Int Sh Perpetual Non Cumulative Pref Sh,NASDAQ,Stock,2018-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGRP,Enstar Group Limited Depositary Shares Each Representing 11000th of an interest in Preference Shares,NASDAQ,Stock,2018-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGS,Columbia Sustainable U.S. Equity Income ETF,NYSE ARCA,ETF,2016-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGU,iShares Trust iShares ESG Aware MSCI USA ETF,NASDAQ,ETF,2016-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGV,Vanguard ESG U.S. Stock ETF,BATS,ETF,2018-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESGY,American Century Sustainable Growth ETF,NYSE ARCA,ETF,2020-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESHY,XTRACKERS J.P. MORGAN ESG USD HIGH YIELD CORPORATE BOND ETF ,BATS,ETF,2015-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESI,Element Solutions Inc,NYSE,Stock,2013-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESIX,SPDR S&P SmallCap 600 ESG ETF,NYSE ARCA,ETF,2022-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESLT,Elbit Systems Ltd,NASDAQ,Stock,1996-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESM,ESM Acquisition Corp - Class A,NYSE,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESM-U,ESM Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESM-WS,ESM Acquisition Corp - Warrants (02/02/2026),NYSE,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESML,iShares ESG Aware MSCI USA Small-Cap ETF,BATS,ETF,2018-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESMT,Engagesmart Inc,NYSE,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESMV,ISHARES ESG MSCI USA MIN VOL FACTOR ETF ,NASDAQ,ETF,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESNT,Essent Group Ltd,NYSE,Stock,2013-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESOA,Energy Services of America Corp,NASDAQ,Stock,2012-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESP,Espey Manufacturing & Electronics Corp,NYSE MKT,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESPO,VanEck Video Gaming and eSports ETF,NASDAQ,ETF,2018-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESPR,Esperion Therapeutics Inc,NASDAQ,Stock,2013-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESQ,Esquire Financial Holdings Inc,NASDAQ,Stock,2017-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESRT,Empire State Realty Trust Inc - Class A,NYSE,Stock,2013-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESS,Essex Property Trust Inc,NYSE,Stock,1994-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESSA,ESSA Bancorp Inc,NASDAQ,Stock,2007-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESSC,East Stone Acquisition Corp,NASDAQ,Stock,2020-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESSCR,East Stone Acquisition Corp,NASDAQ,Stock,2020-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESSCU,East Stone Acquisition Corp - Units (1 Ord 1 Right & 1 Warrant),NASDAQ,Stock,2020-02-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESSCW,East Stone Acquisition Corp - Warrants (31/12/2026),NASDAQ,Stock,2020-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESTA,Establishment Labs Holdings Inc,NASDAQ,Stock,2018-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESTC,Elastic N.V,NYSE,Stock,2018-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ESTE,Earthstone Energy Inc - Class A,NYSE,Stock,1997-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ET,Energy Transfer LP,NYSE,Stock,2018-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ET-P-C,Energy Transfer LP,NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ET-P-D,Energy Transfer LP,NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ET-P-E,Energy Transfer LP,NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETAC,E.Merge Technology Acquisition Corp - Class A,NASDAQ,Stock,2020-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETACU,E.Merge Technology Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETACW,E.Merge Technology Acquisition Corp - Warrants (30/07/2025),NASDAQ,Stock,2020-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETB,Eaton Vance Tax-Managed Buy-Write Income Fund,NYSE,ETF,2005-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETD,Ethan Allen Interiors Inc,NYSE,Stock,1993-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETG,Eaton Vance TaxAdvantaged Global Dividend Income Fund,NYSE,ETF,2004-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETHO,ETHO CLIMATE LEADERSHIP U.S. ETF ,NYSE ARCA,ETF,2015-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETI-P,Entergy Texas Inc,NYSE,Stock,2019-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETJ,Eaton Vance Risk-Managed Diversified Equity Income Fund,NYSE,ETF,2007-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETN,Eaton Corporation plc,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETNB,89bio Inc,NASDAQ,Stock,2019-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETO,Eaton Vance Tax-Advantaged Global Dividend Opportunities Fund,NYSE,ETF,2004-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETON,Eton Pharmaceuticals Inc,NASDAQ,Stock,2018-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETR,Entergy Corp,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETRN,Equitrans Midstream Corporation,NYSE,Stock,2018-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETSY,Etsy Inc,NASDAQ,Stock,2015-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETTX,Entasis Therapeutics Holdings Inc,NASDAQ,Stock,2018-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETV,Eaton Vance Tax-Managed Buy-Write Opportunities Fund,NYSE,ETF,2005-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETW,Eaton Vance Tax-Managed Global Buy-Write Opportunities Fund,NYSE,ETF,2005-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETWO,E2open Parent Holdings Inc - Class A,NYSE,Stock,2020-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETWO-WS,E2open Parent Holdings Inc - Warrants (04/02/2026),NYSE,Stock,2020-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETX,Eaton Vance Municipal Income 2028 Term Trust,NYSE,ETF,2013-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ETY,Eaton Vance Tax Managed Diversified Eq,NYSE,ETF,2006-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUCG,Euclid Capital Growth ETF,BATS,ETF,2021-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUCR,Eucrates Biomedical Acquisition Corp,NASDAQ,Stock,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUCRU,Eucrates Biomedical Acquisition Corp - Units (1 Ord & 1/3 War),NASDAQ,Stock,2020-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUCRW,Eucrates Biomedical Acquisition Corp - Warrants (23/10/2027),NASDAQ,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUDG,WISDOMTREE EUROPE QUALITY DIVIDEND GROWTH FUND N/A,NYSE ARCA,ETF,2014-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUDV,ProShares MSCI Europe Dividend Growers ETF,BATS,ETF,2015-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUFN,iShares MSCI Europe Financials ETF,NASDAQ,ETF,2010-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUFX,ProShares Short Euro,NYSE ARCA,ETF,2012-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUM,ProShares Short MSCI Emerging Markets,NYSE ARCA,ETF,2007-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUO,ProShares UltraShort Euro,NYSE ARCA,ETF,2008-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EURL,Direxion Daily FTSE Europe Bull 3x Shares,NYSE ARCA,ETF,2014-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EURN,Euronav NV,NYSE,Stock,2015-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUSA,iShares MSCI USA Equal Weighted ETF,NYSE ARCA,ETF,2010-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUSB,iShares ESG Advanced Total USD Bond Market ETF,NYSE ARCA,ETF,2020-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EUSC,WisdomTree Europe Hedged SmallCap Equity Fund,NYSE ARCA,ETF,2015-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVA,Enviva Inc,NYSE,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVAX,Evaxion Biotech A/S,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVBG,Everbridge Inc,NASDAQ,Stock,2016-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVBN,Evans Bancorp Inc,NYSE MKT,Stock,2001-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVC,Entravision Communications Corp - Class A,NYSE,Stock,2000-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVCM,EverCommerce Inc,NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVE,EVe Mobility Acquisition Corp - Class A,NYSE,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVE-U,EVe Mobility Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVE-WS,EVe Mobility Acquisition Corp - Warrants (31/12/2028),NYSE,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVEN,Direxion Daily S&P 500 Equal Weight Bull 2X Shares,NYSE ARCA,ETF,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVER,EverQuote Inc - Class A,NASDAQ,Stock,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVF,Eaton Vance Senior Income Trust,NYSE,ETF,1998-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVFM,Evofem Biosciences Inc,NASDAQ,Stock,2018-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVG,Eaton Vance Short Duration Diversified Income Fund,NYSE,ETF,2005-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVGN,Evogene Ltd,NASDAQ,Stock,2008-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVGO,EVgo Inc - Class A,NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVGOW,EVgo Inc - Warrants (28/06/2026),NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVGRU,Evergreen Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVH,Evolent Health Inc - Class A,NYSE,Stock,2015-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVI,EVI Industries Inc,NYSE MKT,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVIX,VelocityShares 1x Long VSTOXX Futures ETN,BATS,ETF,2017-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVK,Ever-Glory International Group Inc,NASDAQ,Stock,2008-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVLO,Evelo Biosciences Inc,NASDAQ,Stock,2018-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVLV,Evolv Technologies Holdings Inc - Class A,NASDAQ,Stock,2020-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVLVW,Evolv Technologies Holdings Inc - Warrants (16/07/2026),NASDAQ,Stock,2020-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVM,Eaton Vance California Municipal Bond Fund,NYSE MKT,ETF,2002-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVN,Eaton Vance Municipal Income Trust,NYSE,ETF,1999-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVNT,AltShares Event-Driven ETF,NYSE ARCA,ETF,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVO,Evotec SE,NASDAQ,Stock,2009-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVOJ,Evo Acquisition Corp - Class A,NASDAQ,Stock,2021-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVOJU,Evo Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVOJW,Evo Acquisition Corp - Warrants (04/01/2026),NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVOK,Evoke Pharma Inc,NASDAQ,Stock,2013-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVOL,Evolving Systems Inc,NASDAQ,Stock,1998-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVOP,EVO Payments Inc - Class A,NASDAQ,Stock,2018-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVR,Evercore Inc - Class A,NYSE,Stock,2006-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVRG,Evergy Inc,NYSE,Stock,2018-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVRI,Everi Holdings Inc,NYSE,Stock,2015-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVT,Eaton VTaxAdvantaged Dividend Inc Fund,NYSE,ETF,2003-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVTC,Evertec Inc,NYSE,Stock,2013-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVTL,Vertical Aerospace Ltd,NYSE,Stock,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVTL-WS,Vertical Aerospace Ltd Warrants each whole warrant exercisable for one ordinary share at an exercise price of 11.50 per share,NYSE,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVV,Eaton Vance Ltd Duration Income Fund,NYSE MKT,ETF,2003-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVX,VanEck Environmental Services ETF,NYSE ARCA,ETF,2006-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EVY,Eaton Vance New York Muni Incm Trst Fd,NYSE MKT,ETF,1999-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EW,Edwards Lifesciences Corp,NYSE,Stock,2000-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWA,iShares MSCI Australia ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWBC,East West Bancorp Inc,NASDAQ,Stock,1999-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWC,iShares MSCI Canada ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWCO,Invesco S&P 500 Equal Weight Communication Services ETF,NYSE ARCA,ETF,2018-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWCZ,European Wax Center Inc - Class A,NASDAQ,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWD,iShares MSCI Sweden ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWEB,Global X Emerging Markets Internet & E-commerce ETF,NASDAQ,ETF,2020-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWG,iShares MSCI Germany ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWGS,iShares MSCI Germany Small-Cap ETF,BATS,ETF,2012-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWH,iShares MSCI Hong Kong ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWI,iShares MSCI Italy ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWJ,iShares MSCI Japan ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWJE,ISHARES MSCI JAPAN EQUAL WEIGHTED ETF ,NASDAQ,ETF,2019-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWJV,iShares MSCI Japan Value ETF,NASDAQ,ETF,2019-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWK,iShares MSCI Belgium ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWL,iShares MSCI Switzerland ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWM,iShares MSCI Malaysia ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWMC,Invesco S&P MidCap 400 Equal Weight ETF,NYSE ARCA,ETF,2010-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWN,iShares MSCI Netherlands ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWO,iShares MSCI Austria ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWP,iShares MSCI Spain ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWQ,iShares MSCI France ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWRE,Invesco S&P 500 Equal Weight Real Estate ETF,NYSE ARCA,ETF,2015-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWS,iShares MSCI Singapore ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWSC,Invesco S&P SmallCap 600 Equal Weight ETF,NYSE ARCA,ETF,2010-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWT,iShares MSCI Taiwan ETF,NYSE ARCA,ETF,2000-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWTX,Edgewise Therapeutics Inc,NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWU,iShares MSCI United Kingdom ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWUS,iShares MSCI United Kingdom Small-Cap ETF,BATS,ETF,2012-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWV,PROSHARES ULTRASHORT MSCI JAPAN ,NYSE ARCA,ETF,2007-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWW,iShares MSCI Mexico ETF,NYSE ARCA,ETF,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWX,SPDR(R) S&P(R) EMERGING MARKETS SMALL CAP ETF ,NYSE ARCA,ETF,2008-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWY,iShares MSCI South Korea ETF,NYSE ARCA,ETF,2000-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWZ,iShares MSCI Brazil ETF,NYSE ARCA,ETF,2000-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EWZS,iShares MSCI Brazil Small-Cap ETF,NASDAQ,ETF,2010-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXAI,Exscientia Plc,NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXAS,Exact Sciences Corp,NASDAQ,Stock,2001-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXC,Exelon Corp,NASDAQ,Stock,1980-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXCVV,Exelon Corporation,NASDAQ,Stock,2022-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXD,Eaton Vance TaxAdv Bnd Optn Strtgs Fd,NYSE,ETF,2010-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXEL,Exelixis Inc,NASDAQ,Stock,2000-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXFY,Expensify Inc - Class A,NASDAQ,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXG,Eaton Vance TaxManaged Global Dive Eq,NYSE,ETF,2007-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXI,iShares Global Industrials ETF,NYSE ARCA,ETF,2006-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXK,Endeavour Silver Corp,NYSE,Stock,2006-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXLS,Exlservice Hldgs Inc,NASDAQ,Stock,2006-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXN,Excellon Resources Inc,NYSE MKT,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXP,Eagle Materials Inc,NYSE,Stock,1994-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXPD,Expeditors International Of Washington Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXPE,Expedia Group Inc,NASDAQ,Stock,2005-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXPI,eXp World Holdings Inc,NASDAQ,Stock,2014-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXPO,Exponent Inc,NASDAQ,Stock,1990-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXPR,Express Inc,NYSE,Stock,2010-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXR,Extra Space Storage Inc,NYSE,Stock,2004-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXTN,Exterran Corp,NYSE,Stock,2015-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EXTR,Extreme Networks Inc,NASDAQ,Stock,1999-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EYE,National Vision Holdings Inc,NASDAQ,Stock,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EYEGW,Eyegate Pharmaceuticals Inc Wt Exp 2020,NASDAQ,Stock,2015-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EYEN,Eyenovia Inc,NASDAQ,Stock,2018-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EYES,Second Sight Medical Products Inc,NASDAQ,Stock,2014-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EYESW,Second Sight Medical Products Inc - Warrants (14/03/2024),NASDAQ,Stock,2017-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EYLD,Cambria Emerging Shareholder Yield ETF,BATS,ETF,2016-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EYPT,EyePoint Pharmaceuticals Inc,NASDAQ,Stock,2005-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EZA,iShares MSCI South Africa ETF,NYSE ARCA,ETF,2003-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EZFL,EzFill Holdings Inc,NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EZGO,EZGO Technologies Ltd,NASDAQ,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EZJ,PROSHARES ULTRA MSCI JAPAN ,NYSE ARCA,ETF,2009-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EZM,WISDOMTREE U.S. MIDCAP FUND N/A,NYSE ARCA,ETF,2007-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EZPW,EZCorp Inc - Class A,NASDAQ,Stock,1991-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "EZU,iShares MSCI EMU ETF,BATS,ETF,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "F,Ford Motor Company,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "F-P-B,Ford Motor Company 620 Notes due June 1 2059,NYSE,Stock,2019-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "F-P-C,,NYSE,Stock,2019-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FA,First Advantage Corp,NASDAQ,Stock,2021-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAAR,First Trust Alternative Absolute Return Strategy ETF,NASDAQ,ETF,2016-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAB,First Trust Multi Cap Value AlphaDEX Fund,NASDAQ,ETF,2007-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FACA,Figure Acquisition Corp I - Class A,NYSE,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FACA-U,Figure Acquisition Corp I - Units (1 Ord Class A & 1/4 War),NYSE,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FACA-WS,Figure Acquisition Corp I - Warrants (31/03/2028),NYSE,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FACT,Freedom Acquisition I Corp - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FACT-U,Freedom Acquisition I Corp - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FACT-WS,Freedom Acquisition I Corp - Warrants (01/01/9999),NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAD,First Trust Multi Cap Growth AlphaDEX Fund,NASDAQ,ETF,2007-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAF,First American Financial Corp,NYSE,Stock,2010-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAIL,CAMBRIA GLOBAL TAIL RISK ETF ,BATS,ETF,2016-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FALN,iShares Fallen Angels USD Bond ETF,NASDAQ,ETF,2016-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAM,First Trust-Aberdeen Global Opportunity Income Fund,NYSE,ETF,2004-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAMI,Farmmi Inc,NASDAQ,Stock,2018-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAN,First Trust Global Wind Energy ETF,NYSE ARCA,ETF,2008-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FANG,Diamondback Energy Inc,NASDAQ,Stock,2012-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FANH,Fanhua Inc,NASDAQ,Stock,2007-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAPR,FT Cboe Vest U.S. Equity Buffer ETF - April,BATS,ETF,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FARM,Farmer Bros. Company,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FARO,Faro Technologies Inc,NASDAQ,Stock,1997-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAS,Direxion Daily Financial Bull 3x Shares,NYSE ARCA,ETF,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAST,Fastenal Company,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAT,FAT Brands Inc - Class A,NASDAQ,Stock,2017-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FATBB,FAT Brands Inc - Class B,NASDAQ,Stock,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FATBP,FAT Brands Inc,NASDAQ,Stock,2020-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FATBW,FAT Brands Inc - Warrants (16/07/2025),NASDAQ,Stock,2020-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FATE,Fate Therapeutics Inc,NASDAQ,Stock,2013-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FATH,Fathom Digital Manufacturing Corporation - Class A,NYSE,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FATH-WS,Fathom Digital Manufacturing Corporation - Warrants (01/01/9999),NYSE,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FATP,Fat Projects Acquisition Corp - Class A,NASDAQ,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FATPU,Fat Projects Acquisition Corp - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2021-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FATPW,Fat Projects Acquisition Corp - Warrants (31/08/2026),NASDAQ,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAUG,FT Cboe Vest U.S. Equity Buffer ETF - August,BATS,ETF,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAX,Aberdeen Asia-Pacific Income Fund Inc,NYSE MKT,ETF,1988-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FAZ,Direxion Daily Financial Bear 3x Shares,NYSE ARCA,ETF,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FB,Meta Platforms Inc - Class A,NASDAQ,Stock,2012-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBC,Flagstar Bancorp Inc,NYSE,Stock,1997-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBCG,Fidelity Blue Chip Growth ETF,BATS,ETF,2020-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBCV,Fidelity Blue Chip Value ETF,BATS,ETF,2020-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBGX,UBS AG London Branch,NYSE ARCA,ETF,2014-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBHS,Fortune Brands Home & Security Inc,NYSE,Stock,2011-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBIO,Fortress Biotech Inc,NASDAQ,Stock,2011-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBIOP,Fortress Biotech Inc,NASDAQ,Stock,2017-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBIZ,First Business Financial Services Inc,NASDAQ,Stock,2005-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBK,FB Financial Corp,NYSE,Stock,2016-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBMS,First Bancshares Inc Miss,NASDAQ,Stock,2003-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBNC,First Bancorp,NASDAQ,Stock,1992-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBND,Fidelity Total Bond ETF,NYSE ARCA,ETF,2014-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBP,First Bancorp PR,NYSE,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBRT,Franklin BSP Realty Trust Inc,NYSE,Stock,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBRT-P-E,Franklin BSP Realty Trust Inc,NYSE,Stock,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBRX,Forte Biosciences Inc,NASDAQ,Stock,2017-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBT,First Trust NYSE Arca Biotechnology Index Fund,NYSE ARCA,ETF,2006-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FBZ,First Trust Brazil AlphaDEX Fund,NASDAQ,ETF,2011-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FC,Franklin Covey Company,NYSE,Stock,1992-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCA,FIRST TRUST CHINA ALPHADEX FUND ,NASDAQ,ETF,2011-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCAL,First Trust California Municipal High Income ETF,NASDAQ,ETF,2017-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCAP,First Capital Inc,NASDAQ,Stock,1999-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCAX,Fortress Capital Acquisition Corp - Class A,NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCAX-U,Fortress Capital Acquisition Corp - Units (1 Ord Class A & 1/5 War),NYSE,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCAX-WS,Fortress Capital Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCBC,First Community Bankshares Inc,NASDAQ,Stock,1997-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCCO,First Community Corp,NASDAQ,Stock,1999-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCEF,First Trust Income Opportunities ETF,NASDAQ,ETF,2016-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCEL,Fuelcell Energy Inc,NASDAQ,Stock,1997-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCF,First Commonwealth Financial Corp,NYSE,Stock,1992-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCFS,FirstCash Holdings Inc,NASDAQ,Stock,1992-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCG,First Trust Natural Gas ETF,NYSE ARCA,ETF,2007-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCLD,Fidelity Cloud Computing ETF,BATS,ETF,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCN,FTI Consulting Inc,NYSE,Stock,1996-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCNCA,First Citizens Bancshares Inc (NC) - Class A,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCNCO,First Citizens Bancshares Inc (NC),NASDAQ,Stock,2022-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCNCP,First Citizens Bancshares Inc (NC),NASDAQ,Stock,2020-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCO,Aberdeen Global Income Fund Inc,NYSE MKT,ETF,1992-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCOM,Fidelity MSCI Communication Services Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCOR,Fidelity Corporate Bond ETF,NYSE ARCA,ETF,2014-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCPI,Fidelity Stocks for Inflation ETF,BATS,ETF,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCPT,Four Corners Property Trust Inc,NYSE,Stock,2015-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCRD,First Eagle Alternative Capital BDC Inc,NASDAQ,Stock,2010-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCRX,First Eagle Alternative Capital BDC Inc,NYSE,Stock,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCSH,Federated Hermes Short Duration Corporate ETF,NYSE ARCA,ETF,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCT,First Trust Senior Floting Rate Income Fund II,NYSE,ETF,2004-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCTR,First Trust Lunt U.S. Factor Rotation ETF,BATS,ETF,2018-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCUV,Focus Universal Inc,NASDAQ,Stock,2017-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCVT,First Trust SSI Strategic Convertible Securities ETF,NASDAQ,ETF,2015-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FCX,Freeport-McMoRan Inc,NYSE,Stock,1995-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDBC,Fidelity D&D Bancorp Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDD,First Trust STOXX European Select Dividend Income Fund,NYSE ARCA,ETF,2007-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDEC,FT Cboe Vest U.S. Equity Buffer ETF - December,BATS,ETF,2020-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDEM,Fidelity Emerging Markets Multifactor ETF,BATS,ETF,2019-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDEU,First Trust Dynamic Europe Equity Income Fund,NYSE,ETF,2015-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDEV,Fidelity International Multifactor ETF,BATS,ETF,2019-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDG,American Century Focused Dynamic Growth ETF,BATS,ETF,2020-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDHT,Fidelity Digital Health ETF,BATS,ETF,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDHY,Fidelity High Yield Factor ETF,NYSE ARCA,ETF,2018-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDIS,Fidelity MSCI Consumer Discretionary Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDL,First Trust Morningstar Dividend Leaders Index Fund,NYSE ARCA,ETF,2006-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDLO,Fidelity Low Volatility Factor ETF,NYSE ARCA,ETF,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDM,First Trust Dow Jones Select Microcap Index Fund,NYSE ARCA,ETF,2005-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDMO,Fidelity Momentum Factor ETF,NYSE ARCA,ETF,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDMT,4D Molecular Therapeutics Inc,NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDN,First Trust Dow Jones Internet Index Fund,NYSE ARCA,ETF,2006-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDNI,First Trust Dow Jones International Internet ETF,NASDAQ,ETF,2018-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDP,Fresh Del Monte Produce Inc,NYSE,Stock,1997-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDRR,Fidelity Dividend ETF for Rising Rates,NYSE ARCA,ETF,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDRV,Fidelity Electric Vehicles and Future Transportation ETF,BATS,ETF,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDS,Factset Research Systems Inc,NYSE,Stock,1996-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDT,First Trust Developed Markets ex-US AlphaDEX Fund,NASDAQ,ETF,2011-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDTS,FIRST TRUST DEVELOPED MARKETS EX-US SMALL CAP ALPHADEX FUND ,NASDAQ,ETF,2012-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDUS,Fidus Investment Corp,NASDAQ,Stock,2011-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDVV,Fidelity High Dividend ETF,NYSE ARCA,ETF,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDWM,Fidelity Women`s Leadership ETF,NYSE ARCA,ETF,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FDX,Fedex Corp,NYSE,Stock,1978-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FE,Firstenergy Corp,NYSE,Stock,1997-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEAM,5E Advanced Materials Inc,NASDAQ,Stock,2022-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEBZ,TrueShares Structured Outcome (February) ETF,BATS,ETF,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEDL,ETRACS 2x Leveraged IFED Invest with the Fed TR Index ETN,NYSE ARCA,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEDM,FlexShares ESG & Climate Developed Markets ex-US Core Index Fund,NYSE ARCA,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEDU,Four Seasons Education (Cayman) Inc,NYSE,Stock,2017-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEDX,Emles Federal Contractors ETF,BATS,ETF,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEHY,FLEXSHARES ESG & CLIMATE HIGH YIELD CORPORATE CORE INDEX FUND ,NYSE ARCA,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEI,First Trust MLP and Energy Income Fund,NYSE,ETF,2012-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEIG,FLEXSHARES ESG & CLIMATE INVESTMENT GRADE CORPORATE CORE INDEX FUND ,NYSE ARCA,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEIM,Frequency Electronics Inc,NASDAQ,Stock,1983-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FELE,Franklin Electric Co. Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEM,First Trust Emerging Markets AlphaDEX Fund,NASDAQ,ETF,2011-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEMB,First Trust Emerging Markets Local Currency Bond ETF,NASDAQ,ETF,2014-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEMS,FIRST TRUST EMERGING MARKETS SMALL CAP ALPHADEX FUND ,NASDAQ,ETF,2012-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEMY,Femasys Inc,NASDAQ,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEN,First Trust Energy Income and Growth Fund,NYSE MKT,ETF,2004-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FENC,Fennec Pharmaceuticals Inc,NASDAQ,Stock,2014-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FENG,Phoenix New Media Ltd,NYSE,Stock,2011-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FENY,Fidelity MSCI Energy Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEO,First Trust-Aberdeen Emerging Opportunity Fund,NYSE,ETF,2006-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEP,First Trust Europe AlphaDEX Fund,NASDAQ,ETF,2011-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FERG,Ferguson Plc.,NYSE,Stock,2010-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FET,Forum Energy Technologies Inc,NYSE,Stock,2012-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEUS,FlexShares ESG & Climate US Large Cap Core Index Fund,NYSE ARCA,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEUZ,First Trust Eurozone AlphaDEX ETF,NASDAQ,ETF,2014-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEVR,Inspire Faithward Large Cap Momentum ESG ETF,NYSE ARCA,ETF,2020-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEX,First Trust Large Cap Core AlphaDEX Fund,NASDAQ,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEXD,Fintech Ecosystem Development Corp - Class A,NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEXDR,Fintech Ecosystem Development Corp,NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEXDU,Fintech Ecosystem Development Corp - Units (1 Ord Share Class A 1 Right & 1/2 War),NASDAQ,Stock,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEXDW,Fintech Ecosystem Development Corp - Warrants (01/04/2026),NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FEZ,SPDR EURO Stoxx 50 ETF,NYSE ARCA,ETF,2002-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FF,Futurefuel Corp,NYSE,Stock,2011-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFA,First Trust Enhanced Equity Income Fund,NYSE,ETF,2004-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFBC,First Financial Bancorp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFBW,FFBW Inc,NASDAQ,Stock,2017-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFC,Flaherty & Crumrine Preferred and Income Securities Fund Inc,NYSE,ETF,2003-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFEB,FT Cboe Vest U.S. Equity Buffer ETF - February,BATS,ETF,2020-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFHG,Formula Folios Hedged Growth ETF,BATS,ETF,2017-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFHL,Fuwei Films (Holdings) Company,NASDAQ,Stock,2006-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFIC,Flushing Financial Corp,NASDAQ,Stock,1995-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFIE,Faraday Future Intelligent Electric Inc,NASDAQ,Stock,2020-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFIEW,Faraday Future Intelligent Electric Inc - Warrants (21/07/2026),NASDAQ,Stock,2020-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFIN,First Financial Bankshares Inc,NASDAQ,Stock,1993-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFIU,UVA UNCONSTRAINED MEDIUM-TERM FIXED INCOME ETF ,NYSE ARCA,ETF,2017-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFIV,F5 Inc,NASDAQ,Stock,1999-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFND,The Future Fund Active ETF,NYSE ARCA,ETF,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFNW,First Financial Northwest Inc,NASDAQ,Stock,2007-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFR,First Trust FTSE EPRA/NAREIT Developed Markets Real Estate Index Fund,NYSE ARCA,ETF,2007-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFSG,FormulaFolios Smart Growth ETF,BATS,ETF,2017-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFTG,FormulaFolios Tactical Growth ETF,BATS,ETF,2017-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFTI,Formula Folios Tactical Income ETF,BATS,ETF,2017-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFTY,Innovator IBD 50 ETF,NYSE ARCA,ETF,2015-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FFWM,First Foundation Inc,NASDAQ,Stock,2014-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FG-WS,FGL Holdings Warrants,NYSE,Stock,2017-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGB,First Trust Specialty Finance & Financial Opportunities Fund,NYSE,ETF,2007-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGBI,First Guaranty Bancshares Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGBIP,First Guaranty Bancshares Inc,NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGD,First Trust Dow Jones Global Select Dividend Index Fund,NYSE ARCA,ETF,2007-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGEN,FibroGen Inc,NASDAQ,Stock,2014-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGF,FG Financial Group Inc,NASDAQ,Stock,2014-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGFPP,FG Financial Group Inc,NASDAQ,Stock,2018-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGI,FGI Industries Ltd,NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGIWW,FGI Industries Ltd - Warrants (21/01/2027),NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGM,First Trust Germany AlphaDEX Fund,NASDAQ,ETF,2012-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGMCU,FG Merger Corp - Units (1 Ord & 3/4 War),NASDAQ,Stock,2022-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FGRO,Fidelity Growth Opportunities ETF,BATS,ETF,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHB,First Hawaiian Inc,NASDAQ,Stock,2016-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHI,Federated Hermes Inc - Class B,NYSE,Stock,1998-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHLC,Fidelity MSCI Health Care Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHLT,Future Health ESG Corp,NASDAQ,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHLTU,Future Health ESG Corp - Units (1 Ord Share & 1/2 War),NASDAQ,Stock,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHLTW,Future Health ESG Corp - Warrants (09/09/2026),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHN,First Horizon Corporation,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHN-P-B,First Horizon Corporation,NYSE,Stock,2020-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHN-P-C,First Horizon Corporation,NYSE,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHN-P-D,First Horizon Corporation,NYSE,Stock,2020-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHN-P-E,First Horizon Corporation,NYSE,Stock,2020-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHN-P-F,First Horizon Corporation,NYSE,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHS,First High-School Education Group Co Ltd,NYSE,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHTX,Foghorn Therapeutics Inc,NASDAQ,Stock,2020-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FHYS,Federated Hermes Short Duration High Yield ETF,NYSE ARCA,ETF,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIAC,Focus Impact Acquisition Corp - Class A,NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIACU,Focus Impact Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIACW,Focus Impact Acquisition Corp - Warrants(28/10/2026),NASDAQ,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIBK,First Interstate BancSystem Inc - Class A,NASDAQ,Stock,2010-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIBR,iShares U.S. Fixed Income Balanced Risk Factor ETF,BATS,ETF,2015-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FICO,Fair Isaac Corp,NYSE,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FICS,First Trust International Developed Capital Strength ETF,NASDAQ,ETF,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FICV,Frontier Investment Corp - Class A,NASDAQ,Stock,2021-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FICVU,Frontier Investment Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FICVW,Frontier Investment Corp - Warrants (29/06/2026),NASDAQ,Stock,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FID,First Trust S&P International Dividend Aristocrats ETF,NASDAQ,ETF,2018-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIDI,Fidelity International High Dividend ETF,NYSE ARCA,ETF,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIDU,Fidelity MSCI Industrials Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIEE,UBS AG London Branch,NYSE ARCA,ETF,2016-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIF,First Trust Energy Infrastructure Fund,NYSE,ETF,2011-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIGB,Fidelity Investment Grade Bond ETF,NYSE ARCA,ETF,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIGS,Figs Inc - Class A,NYSE,Stock,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIHD,UBS AG London Branch,NYSE ARCA,ETF,2016-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FILL,iShares MSCI Global Energy Producers ETF,NYSE ARCA,ETF,2012-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FINM,Marlin Technology Corp - Class A,NASDAQ,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FINMU,Marlin Technology Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FINMW,Marlin Technology Corp - Warrants (12/01/2026),NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FINS,Angel Oak Financial Strategies Income Term Trust,NYSE,Stock,2019-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FINS-R,Angel Oak Rights,NYSE,Stock,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FINS-R-W,Angel Oak Financial Strategies Income Term Trust Rights expires October 14 2021 When Issued,NYSE,Stock,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FINV,FinVolution Group,NYSE,Stock,2017-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FINW,FinWise Bancorp,NASDAQ,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FINX,Global X Funds Global X FinTech ETF,NASDAQ,ETF,2016-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIS,Fidelity National Information Services Inc,NYSE,Stock,2001-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FISI,Financial Institutions Inc,NASDAQ,Stock,1999-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FISK,Empire State Realty OP LP,NYSE ARCA,Stock,2013-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FISR,SPDR SSGA Fixed Income Sector Rotation ETF,NYSE ARCA,ETF,2019-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FISV,Fiserv Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FITB,Fifth Third Bancorp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FITBI,Fifth Third Bancorp,NASDAQ,Stock,2013-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FITBO,Fifth Third Bancorp 4.95 PRF PERPETUAL USD 25 Ser K Rp11000th,NASDAQ,Stock,2019-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FITBP,Fifth Third Bancorp 6 PRF PERPETUAL USD 1000 Sr A Rp 140 Dp Cl B,NASDAQ,Stock,2019-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FITE,SPDR S&P Kensho Future Security ETF,NYSE ARCA,ETF,2017-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIV,First Trust Senior Floating Rate 2022 Target Term Fund,NYSE,ETF,2016-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIVA,Fidelity International Value Factor ETF,NYSE ARCA,ETF,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIVE,Five Below Inc,NASDAQ,Stock,2012-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIVG,Defiance Next Gen Connectivity ETF,NYSE ARCA,ETF,2019-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIVN,Five9 Inc,NASDAQ,Stock,2014-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIVR,Strategy Shares Nasdaq 5HANDL Index ETF,NASDAQ,ETF,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIW,First Trust Water ETF,NYSE ARCA,ETF,2007-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIX,Comfort Systems USA Inc,NYSE,Stock,1997-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIXD,First Trust TCW Opportunistic Fixed Income ETF,NASDAQ,ETF,2017-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIXX,Homology Medicines Inc,NASDAQ,Stock,2018-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FIZZ,National Beverage Corp,NASDAQ,Stock,1991-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FJAN,FT Cboe Vest U.S. Equity Buffer ETF - January,BATS,ETF,2021-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FJP,FIRST TRUST JAPAN ALPHADEX FUND ,NASDAQ,ETF,2011-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FJUL,FT Cboe Vest U.S. Equity Buffer ETF - July,BATS,ETF,2020-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FJUN,FT Cboe Vest U.S. Equity Buffer ETF - June,BATS,ETF,2020-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FKU,FIRST TRUST UNITED KINGDOM ALPHADEX FUND ,NASDAQ,ETF,2012-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FKWL,Franklin Wireless Corp,NASDAQ,Stock,1999-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FL,Foot Locker Inc,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLAC,Frazier Lifesciences Acquisition Corp - Class A,NASDAQ,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLACU,Frazier Lifesciences Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLACW,Frazier Lifesciences Acquisition Corp - Warrants (09/12/2025),NASDAQ,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLAG,First Light Acquisition Group Inc - Class A,NYSE,Stock,2021-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLAG-U,First Light Acquisition Group Inc - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLAG-WS,First Light Acquisition Group Inc Redeemable Warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50 per s,NYSE,Stock,2021-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLAU,FRANKLIN FTSE AUSTRALIA ETF ,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLAX,Franklin FTSE Asia ex Japan ETF,NYSE ARCA,ETF,2018-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLBL,Franklin Liberty Senior Loan ETF,BATS,ETF,2018-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLBR,Franklin FTSE Brazil ETF,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLC,Flaherty & Crumrine Total Return Fund Inc,NYSE,ETF,2003-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLCA,Franklin FTSE Canada ETF,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLCB,Franklin Liberty U.S. Core Bond ETF,NYSE ARCA,ETF,2019-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLCH,Franklin FTSE China ETF,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLCO,Franklin Liberty Investment Grade Corporate ETF,NYSE ARCA,ETF,2016-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLDM,Fluidigm Corp,NASDAQ,Stock,2011-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLDR,Fidelity Low Duration Bond Factor ETF,BATS,ETF,2018-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLDZ,RiverNorth Volition America Patriot ETF,NYSE ARCA,ETF,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLEE,Franklin FTSE Europe ETF,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLEH,FRANKLIN FTSE EUROPE HEDGED ETF ,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLEX,Flex Ltd,NASDAQ,Stock,1994-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLFR,FRANKLIN FTSE FRANCE ETF ,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLGB,Franklin FTSE United Kingdom ETF,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLGC,Flora Growth Corp,NASDAQ,Stock,2021-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLGR,FRANKLIN FTSE GERMANY ETF ,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLGT,Fulgent Genetics Inc,NASDAQ,Stock,2016-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLGV,Franklin Liberty U.S. Treasury Bond ETF,NYSE ARCA,ETF,2020-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLHK,FRANKLIN FTSE HONG KONG ETF ,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLHY,Franklin Liberty High Yield Corporate ETF,BATS,ETF,2018-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLIA,Franklin Liberty International Aggregate Bond ETF,BATS,ETF,2018-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLIC,First Of Long Island Corp,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLIN,Franklin FTSE India ETF,NYSE ARCA,ETF,2018-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLIY,FRANKLIN FTSE ITALY ETF ,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLJH,FRANKLIN FTSE JAPAN HEDGED ETF ,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLJP,Franklin FTSE Japan ETF,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLKR,Franklin FTSE South Korea ETF,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLL,Full House Resorts Inc,NASDAQ,Stock,1993-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLLA,Franklin FTSE Latin America ETF,NYSE ARCA,ETF,2018-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLLV,Franklin Liberty US Low Volatility ETF,NYSE ARCA,ETF,2016-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLM,FIRST TRUST GLOBAL ENGINEERING AND CONSTRUCTION ETF ,NYSE ARCA,ETF,2008-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLMB,Franklin Liberty Federal Tax-Free Bond ETF,NYSE ARCA,ETF,2017-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLME,Flame Acquisition Corp - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLME-U,Flame Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLME-WS,Flame Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLMI,Franklin Dynamic Municipal Bond ETF,NYSE ARCA,ETF,2017-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLMN,Falcon Minerals Corp - Class A,NASDAQ,Stock,2017-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLMNW,Falcon Minerals Corp - Warrants(21/07/2022),NASDAQ,Stock,2017-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLMX,FRANKLIN FTSE MEXICO ETF ,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLN,First Trust Latin America AlphaDEX Fund,NASDAQ,ETF,2011-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLNC,Fluence Energy Inc - Class A,NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLNG,Flex Lng Ltd,NYSE,Stock,2019-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLNT,Fluent Inc,NASDAQ,Stock,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLO,Flowers Foods Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLOT,iShares Floating Rate Bond ETF,BATS,ETF,2011-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLOW,SPX FLOW Inc,NYSE,Stock,2015-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLQD,Franklin LibertyQ Global Dividend ETF,NYSE ARCA,ETF,2016-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLQE,Franklin LibertyQ Emerging Markets ETF,NYSE ARCA,ETF,2016-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLQG,FRANKLIN LIBERTYQ GLOBAL EQUITY ETF ,NYSE ARCA,ETF,2016-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLQH,FRANKLIN LIBERTYQ INTERNATIONAL EQUITY HEDGED ETF ,NYSE ARCA,ETF,2016-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLQL,Franklin LibertyQ U.S. Equity ETF,BATS,ETF,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLQM,Franklin LibertyQ U.S. Mid Cap Equity ETF,BATS,ETF,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLQS,FRANKLIN LIBERTYQ U.S. SMALL CAP EQUITY ETF ,BATS,ETF,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLR,Fluor Corporation,NYSE,Stock,2000-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLRG,Fidelity U.S. Multifactor ETF,NYSE ARCA,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLRN,SPDR Bloomberg Investment Grade Floating Rate ETF,NYSE ARCA,ETF,2011-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLRT,Pacer Pacific Asset Floating Rate High Income ETF,NYSE ARCA,ETF,2015-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLRU,Franklin FTSE Russia ETF,NYSE ARCA,ETF,2018-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLS,Flowserve Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLSA,FRANKLIN FTSE SAUDI ARABIA ETF ,NYSE ARCA,ETF,2018-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLSP,FRANKLIN LIBERTY SYSTEMATIC STYLE PREMIA ETF ,NYSE ARCA,ETF,2019-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLSW,FRANKLIN FTSE SWITZERLAND ETF ,NYSE ARCA,ETF,2018-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLT,Fleetcor Technologies Inc,NYSE,Stock,2010-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLTB,Fidelity Ltd Term Bond ETF,NYSE ARCA,ETF,2014-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLTN,Rareview Inflation/Deflation ETF,BATS,ETF,2022-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLTR,VanEck Investment Grade Floating Rate ETF,NYSE ARCA,ETF,2011-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLTW,FRANKLIN FTSE TAIWAN ETF ,NYSE ARCA,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLUD,FRANKLIN LIBERTY ULTRA SHORT BOND ETF LIBERTY ULTRA SHORT BOND ETF,NYSE ARCA,ETF,2020-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLUX,Flux Power Holdings Inc,NASDAQ,Stock,2002-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLV,American Century Focused Large Cap Value ETF,BATS,ETF,2020-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLWS,1-800 Flowers.com Inc - Class A,NASDAQ,Stock,1999-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLXS,Flexsteel Industries Inc,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLYA,SOAR Technology Acquisition Corp - Class A,NYSE,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLYA-U,SOAR Technology Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLYA-WS,SOAR Technology Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLYW,Flywire Corp,NASDAQ,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FLZA,FRANKLIN FTSE SOUTH AFRICA ETF ,NYSE ARCA,ETF,2018-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FM,ISHARES MSCI FRONTIER 100 ETF ,NYSE ARCA,ETF,2012-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMAC,FirstMark Horizon Acquisition Corp - Class A,NYSE,Stock,2020-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMAC-U,FirstMark Horizon Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMAC-WS,FirstMark Horizon Acquisition Corp - Warrants (26/09/2025),NYSE,Stock,2020-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMAG,Fidelity Magellan ETF,BATS,ETF,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMAO,Farmers & Merchants Bancorp Inc,NASDAQ,Stock,2004-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMAR,FT Cboe Vest U.S. Equity Buffer ETF - March,BATS,ETF,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMAT,Fidelity MSCI Materials Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMAY,FT Cboe Vest U.S. Equity Buffer ETF - May,BATS,ETF,2020-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMB,First Trust Managed Municipal ETF,NASDAQ,ETF,2014-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMBH,First Mid Bancshares Inc,NASDAQ,Stock,1999-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMC,FMC Corp,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMF,First Trust Managed Futures Strategy Fund,NYSE ARCA,ETF,2013-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMHI,First Trust Municipal High Income ETF,NASDAQ,ETF,2017-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMIL,Fidelity New Millennium ETF,BATS,ETF,2020-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMIV,Forum Merger IV Corp - Class A,NASDAQ,Stock,2021-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMIVU,Forum Merger IV Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMIVW,Forum Merger IV Corp - Warrants (15/03/2028),NASDAQ,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMN,Federated Hermes Premier Municipal Income Fund,NYSE,ETF,2002-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMNB,Farmers National Banc Corp,NASDAQ,Stock,1999-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMNY,First Trust New York Municipal High Income ETF,NYSE ARCA,ETF,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMO,Fiduciary/Claymore Energy Infrastructure Fund,NYSE,ETF,2004-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMQQ,FMQQ The Next Frontier Internet & Ecommerce ETF,NYSE ARCA,ETF,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMS,Fresenius Medical Care AG & Co. KGaA,NYSE,Stock,1996-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMTX,Forma Therapeutics Holdings Inc,NASDAQ,Stock,2020-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMX,Fomento Economico Mexicano S.A.B. de C.V.,NYSE,Stock,1998-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FMY,First TrustFIDAC Mortgage Income Fund,NYSE,ETF,2005-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FN,Fabrinet,NYSE,Stock,2010-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNA,Paragon 28 Inc,NYSE,Stock,2021-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNB,F.N.B. Corp,NYSE,Stock,1993-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNB-P-E,F.N.B. Corp,NYSE,Stock,2013-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNCB,FNCB Bancorp Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNCH,Finch Therapeutics Group Inc,NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNCL,Fidelity MSCI Financials Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FND,Floor & Decor Holdings Inc - Class A,NYSE,Stock,2017-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNDA,Schwab Fundamental U.S. Small Company Index ETF,NYSE ARCA,ETF,2013-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNDB,Schwab Fundamental U.S. Broad Market Index ETF,NYSE ARCA,ETF,2013-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNDC,Schwab Fundamental International Small Company Index ETF,NYSE ARCA,ETF,2013-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNDE,Schwab Fundamental Emerging Markets Large Company Index ETF,NYSE ARCA,ETF,2013-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNDF,Schwab Fundamental International Large Company Index ETF,NYSE ARCA,ETF,2013-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNDX,Schwab Fundamental U.S. Large Company Index ETF,NYSE ARCA,ETF,2013-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNF,Fidelity National Financial Inc,NYSE,Stock,2005-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNGD,Bank of Montreal,NYSE ARCA,ETF,2018-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNGG,Direxion Daily Select Large Caps & FANGs,NYSE ARCA,ETF,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNGO,Bank of Montreal,NYSE ARCA,ETF,2018-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNGR,FingerMotion Inc,NASDAQ,Stock,2015-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNGS,Bank of Montreal,NYSE ARCA,Stock,2019-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNGU,Bank of Montreal,NYSE ARCA,ETF,2018-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNHC,FedNat Holding Company,NASDAQ,Stock,1998-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNI,First Trust Chindia ETF,NYSE ARCA,ETF,2007-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNK,First Trust Mid Cap Value AlphaDEX Fund,NASDAQ,ETF,2011-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNKO,Funko Inc - Class A,NASDAQ,Stock,2017-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNLC,First Bancorp Inc (ME),NASDAQ,Stock,1999-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNOV,First Trust Cboe Vest U.S. Equity Buffer ETF - November,BATS,ETF,2019-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNTC,Direxion Daily FinTech Bull 2X Shares,NYSE ARCA,ETF,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNV,Franco-Nevada Corporation,NYSE,Stock,2007-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNVT,Finnovate Acquisition Corp - Class A,NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNVTU,Finnovate Acquisition Corp - Units (1 Ord Class A & 3/4 War),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNVTW,Finnovate Acquisition Corp - Warrants (30/09/2026),NASDAQ,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNWB,First Northwest Bancorp,NASDAQ,Stock,2015-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNWD,Finward Bancorp,NASDAQ,Stock,1998-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNX,First Trust Mid Cap Core AlphaDEX Fund,NASDAQ,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FNY,First Trust Mid Cap Growth AlphaDEX Fund,NASDAQ,ETF,2011-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOA,Finance of America Companies Inc,NYSE,Stock,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOA-WS,Finance of America Companies Inc - Warrants (08/04/2026),NYSE,Stock,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOCS,Focus Financial Partners Inc - Class A,NASDAQ,Stock,2018-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOCT,FT Cboe Vest U.S. Equity Buffer ETF -October,BATS,ETF,2020-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOE,Ferro Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOF,Cohen & Steers Closed-End Opportunity Fund Inc,NYSE,ETF,2006-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOLD,Amicus Therapeutics Inc,NASDAQ,Stock,2007-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOMO,FOMO ETF,BATS,ETF,2021-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FONR,Fonar Corp,NASDAQ,Stock,1993-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOR,Forestar Group Inc New,NYSE,Stock,2007-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FORA,Forian Inc,NASDAQ,Stock,2021-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FORD,Forward Industries Inc,NASDAQ,Stock,1995-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FORG,ForgeRock Inc - Class A,NYSE,Stock,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FORH,Formidable ETF,NYSE ARCA,ETF,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FORM,FormFactor Inc,NASDAQ,Stock,2003-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FORR,Forrester Research Inc,NASDAQ,Stock,1996-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FORTY,Formula Systems (1985) Ltd,NASDAQ,Stock,1997-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOSL,Fossil Group Inc,NASDAQ,Stock,1993-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOSLL,Fossil Group Inc,NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOUN,Founder SPAC - Class A,NASDAQ,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOUNU,Founder SPAC - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOUNW,Founder SPAC - Warrants (15/07/2028),NASDAQ,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOUR,Shift4 Payments Inc - Class A,NYSE,Stock,2020-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOVL,iShares Focused Value Factor ETF,NYSE ARCA,ETF,2019-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOX,Fox Corporation - Class B,NASDAQ,Stock,2019-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOXA,Fox Corporation - Class A,NASDAQ,Stock,2019-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOXF,Fox Factory Holding Corp,NASDAQ,Stock,2013-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOXW,FoxWayne Enterprises Acquisition Corp - Class A,NASDAQ,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOXWU,FoxWayne Enterprises Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FOXWW,FoxWayne Enterprises Acquisition Corp - Warrants (12/01/2026),NASDAQ,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPA,FIRST TRUST ASIA PACIFIC EX-JAPAN ALPHADEX FUND ,NASDAQ,ETF,2011-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPAC,Far Peak Acquisition Corp - Class A,NYSE,Stock,2021-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPAC-WS,Far Peak Acquisition Corp - Warrants (07/12/2025),NYSE,Stock,2021-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPAG,FPA GLOBAL EQUITY ETF ,BATS,ETF,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPAY,FlexShopper Inc,NASDAQ,Stock,2014-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPE,First Trust Preferred Securities and Income ETF,NYSE ARCA,ETF,2013-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPEI,First Trust Institutional Preferred Securities and Income ETF,NYSE ARCA,ETF,2017-08-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPF,First Trust Intermediate Duration Preferred & Income Fund,NYSE,ETF,2013-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPFD,Fidelity Preferred Securities & Income ETF,BATS,ETF,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPH,Five Point Holdings LLC - Class A,NYSE,Stock,2017-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPI,Farmland Partners Inc,NYSE,Stock,2014-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPI-P-B,Farmland Partners Inc Series B Participating Preferred Stock,NYSE,Stock,2017-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPL,First Trust New Opportunities MLP & Energy Fund,NYSE,ETF,2014-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPRO,Fidelity Real Estate Investment ETF,BATS,ETF,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPX,First Trust US Equity Opportunities ETF,NYSE ARCA,ETF,2006-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPXE,First Trust IPOX (R) Europe Equity Opportunities ETF,NASDAQ,ETF,2018-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FPXI,First Trust International Equity Opportunities ETF,NASDAQ,ETF,2014-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FQAL,Fidelity Quality Factor ETF,NYSE ARCA,ETF,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FR,First Industrial Realty Trust Inc,NYSE,Stock,1994-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRA,Blackrock Floating Rate Income Strategies Fund Inc,NYSE,ETF,2003-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRAF,Franklin Financial Services Corp,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRBA,First Bank (NJ),NASDAQ,Stock,2007-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRBK,Republic First Bancorp Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRBN,Forbion European Acquisition Corp - Class A,NASDAQ,Stock,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRBNU,Forbion European Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRBNW,Forbion European Acquisition Corp - Warrants (10/12/2026),NASDAQ,Stock,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRC,First Republic Bank,NYSE,Stock,2010-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRC-P-H,First Republic Bank,NYSE,Stock,2017-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRC-P-I,First Republic Bank,NYSE,Stock,2018-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRC-P-J,First Republic Bank,NYSE,Stock,2019-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRC-P-K,First Republic Bank,NYSE,Stock,2020-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRC-P-L,First Republic Bank,NYSE,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRC-P-M,First Republic Bank,NYSE,Stock,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRC-P-N,First Republic Bank Depositary Shares Series N,NYSE,Stock,2021-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRD,Friedman Industries Inc,NYSE MKT,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRDM,Alpha Architect Freedom 100 Emerging Markets ETF,BATS,ETF,2019-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FREE,Whole Earth Brands Inc - Class A,NASDAQ,Stock,2020-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FREEW,Whole Earth Brands Inc. Warrant,NASDAQ,Stock,2005-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FREL,Fidelity MSCI Real Estate Index ETF,NYSE ARCA,ETF,2015-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FREQ,Frequency Therapeutics Inc,NASDAQ,Stock,2019-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FREY,FREYR Battery,NYSE,Stock,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FREY-WS,FREYR Battery - Warrants (01/01/9999),NYSE,Stock,2021-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRG,Franchise Group Inc - Class A,NASDAQ,Stock,2012-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRGAP,Franchise Group Inc,NASDAQ,Stock,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRGE,Forge Global Holdings Inc - Class A,NYSE,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRGI,Fiesta Restaurant Group Inc,NASDAQ,Stock,2012-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRHC,Freedom Holding Corp,NASDAQ,Stock,2017-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRI,First Trust S&P REIT Index Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRLA,Fortune Rise Acquisition Corp - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRLAU,Fortune Rise Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRLAW,Fortune Rise Acquisition Corp - Warrants (06/12/2027),NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRLN,Freeline Therapeutics Holdings plc,NASDAQ,Stock,2020-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRME,First Merchants Corp,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRNW,Fidelity Clean Energy ETF,BATS,ETF,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRO,Frontline Ltd,NYSE,Stock,2001-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FROG,JFrog Ltd,NASDAQ,Stock,2020-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRON,Frontier Acquisition Corp - Class A,NASDAQ,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRONU,Frontier Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRONW,Frontier Acquisition Corp - Warrants (01/03/2026),NASDAQ,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRPH,FRP Holdings Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRPT,Freshpet Inc,NASDAQ,Stock,2014-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRSG,First Reserve Sustainable Growth Corp - Class A,NASDAQ,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRSGU,First Reserve Sustainable Growth Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRSGW,First Reserve Sustainable Growth Corp - Warrants (05/03/2026),NASDAQ,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRSH,Freshworks Inc Class A,NASDAQ,Stock,2021-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRST,Primis Financial Corp,NASDAQ,Stock,2006-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRSX,Foresight Autonomous Holdings Ltd,NASDAQ,Stock,2017-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRT,Federal Realty Investment Trust.,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRT-P-C,Federal Realty Investment Trust.,NYSE,Stock,2017-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRTA,Forterra Inc,NASDAQ,Stock,2016-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRTY,Alger Mid Cap 40 ETF,NYSE ARCA,ETF,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRW,PWP Forward Acquisition Corp I - Class A,NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRWAU,PWP Forward Acquisition Corp I - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRWAW,PWP Forward Acquisition Corp I - Warrants (09/03/2026),NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRXB,Forest Road Acquisition Corp II - Class A,NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRXB-U,Forest Road Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FRXB-WS,Forest Road Acquisition Corp II Redeemable Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50,NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSBC,Five Star Bancorp,NASDAQ,Stock,2021-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSBW,FS Bancorp Inc,NASDAQ,Stock,2012-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSD,First Trust High Income Long Short Fund,NYSE,ETF,2010-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSEA,First Seacoast Bancorp,NASDAQ,Stock,2019-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSEC,Fidelity Investment Grade Securitized ETF,NYSE ARCA,ETF,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSEP,FT Cboe Vest U.S. Equity Buffer ETF -September,BATS,ETF,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSFG,First Savings Financial Group Inc,NASDAQ,Stock,2008-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSI,Flexible Solutions International Inc,NYSE MKT,Stock,1999-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSIG,FIRST TRUST LIMITED DURATION INVESTMENT GRADE CORPORATE ETF ,NYSE ARCA,ETF,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSK,FS KKR Capital Corp,NYSE,Stock,2014-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSLR,First Solar Inc,NASDAQ,Stock,2006-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSLY,Fastly Inc - Class A,NYSE,Stock,2019-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSM,Fortuna Silver Mines Inc,NYSE,Stock,2007-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSMB,First Trust Short Duration Managed Municipal ETF,NYSE ARCA,ETF,2018-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSMD,Fidelity Small-Mid Multifactor ETF,NYSE ARCA,ETF,2019-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSMO,Fidelity Small-Mid Cap Opportunities ETF,BATS,ETF,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSNB,Fusion Acquisition Corp II - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSNB-U,Fusion Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSNB-WS,Fusion Acquisition Corp II - Warrants (29/02/2028),NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSP,Franklin Street Properties Corp,NYSE MKT,Stock,2005-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSR,Fisker Inc - Class A,NYSE,Stock,2018-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSRD,Fast Radius Inc - Class A,NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSRDW,Fast Radius Inc - Warrants (07/02/2027),NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSRX,FinServ Acquisition Corp II - Class A,NASDAQ,Stock,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSRXU,FinServ Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSRXW,FinServ Acquisition Corp II - Warrants (17/02/2026),NASDAQ,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSS,Federal Signal Corp,NYSE,Stock,1982-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSSI,Fortistar Sustainable Solutions Corp - Class A,NASDAQ,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSSIU,Fortistar Sustainable Solutions Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSSIW,Fortistar Sustainable Solutions Corp - Warrants (14/01/2026),NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSST,Fidelity Sustainable U.S. Equity ETF,NYSE ARCA,ETF,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FST,FAST Acquisition Corp - Class A,NYSE,Stock,2020-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FST-U,FAST Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FST-WS,FAST Acquisition Corp - Warrants (25/08/2027),NYSE,Stock,2020-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSTA,Fidelity MSCI Consumer Staples Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSTR,L.B. Foster Co. - Class A,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSTX,F-star Therapeutics Inc,NASDAQ,Stock,2016-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSV,FirstService Corp,NASDAQ,Stock,2015-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSYD,Fidelity Sustainable High Yield ETF,NYSE ARCA,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FSZ,FIRST TRUST SWITZERLAND ALPHADEX FUND ,NASDAQ,ETF,2012-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FT,Franklin Universal Trust,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTA,First Trust Large Capital Value AlphaDEX Fund,NASDAQ,ETF,2007-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTAA,FTAC Athena Acquisition Corp - Class A,NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTAAU,FTAC Athena Acquisition Corp - Units (1 Ord Class A & 1/4 War),NASDAQ,Stock,2021-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTAAW,FTAC Athena Acquisition Corp - Warrants (01/03/2026),NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTAG,First Trust Indxx Global Agriculture ETF,NASDAQ,ETF,2010-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTAI,Fortress Transportation and Infrastructure Investors LLC,NYSE,Stock,2015-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTAI-P-A,Fortress Transportation and Infrastructure Investors LLC,NYSE,Stock,2019-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTAI-P-B,Fortress Transportation and Infrastructure Investors LLC FXDFR PRF PERPETUAL USD 25 Ser B,NYSE,Stock,2019-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTAI-P-C,Fortress Transportation and Infrastructure Investors LLC,NYSE,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTC,First Trust Large Capital Growth AlphaDEX Fund,NASDAQ,ETF,2007-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTCH,Farfetch Ltd - Class A,NYSE,Stock,2018-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTCI,FTC Solar Inc,NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTCS,First Trust Capital Strength ETF,NASDAQ,ETF,2006-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTCV,FinTech Acquisition Corp V - Class A,NASDAQ,Stock,2021-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTCVU,FinTech Acquisition Corp V - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTCVW,FinTech Acquisition Corp V - Warrants (09/12/2025),NASDAQ,Stock,2021-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTDR,Frontdoor Inc,NASDAQ,Stock,2018-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTEC,Fidelity MSCI Information Technology Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTEK,Fuel Tech Inc,NASDAQ,Stock,1993-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTEV,FinTech Evolution Acquisition Group - Class A,NYSE,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTEV-U,FinTech Evolution Acquisition Group - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTEV-WS,FinTech Evolution Acquisition Group Redeemable Warrants each whole warrant exercisable for one Class A Ordinary Share for 11.50 per share,NYSE,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTF,Franklin Ltd Duration Income Trust,NYSE MKT,ETF,2003-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTFT,Future FinTech Group Inc,NASDAQ,Stock,2005-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTGC,First Trust Global Tactical Commodity Strategy Fund,NASDAQ,ETF,2013-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTHI,First Trust BuyWrite Income ETF,NASDAQ,ETF,2014-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTHM,Fathom Holdings Inc,NASDAQ,Stock,2020-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTHY,First Trust High Yield Opportunities 2027 Term Fund,NYSE,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTI,TechnipFMC plc,NYSE,Stock,2001-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTIIU,FutureTech II Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2022-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTK,Flotek Industries Inc,NYSE,Stock,2005-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTLB,First Trust Hedged BuyWrite Income ETF,NASDAQ,ETF,2014-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTLS,First Trust Long/Short Equity ETF,NYSE ARCA,ETF,2014-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTNT,Fortinet Inc,NASDAQ,Stock,2009-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTNW,FTE Networks Inc,NYSE,Stock,2016-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTPA,FTAC Parnassus Acquisition Corp - Class A,NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTPAU,FTAC Parnassus Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTPAW,FTAC Parnassus Acquisition Corp - Warrants (10/03/2026),NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTRI,First Trust Indxx Global Natural Resources Income ETF,NASDAQ,ETF,2015-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTRP,Field Trip Health Ltd,NASDAQ,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTS,Fortis Inc,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTSD,Franklin Liberty Short Duration U.S. Government ETF,NYSE ARCA,ETF,2013-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTSL,First Trust Senior Loan Fund ETF,NASDAQ,ETF,2013-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTSM,First Trust Enhanced Short Maturity ETF,NASDAQ,ETF,2014-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTV,Fortive Corp,NYSE,Stock,2016-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTVI,FinTech Acquisition Corp VI - Class A,NASDAQ,Stock,2021-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTVIU,FinTech Acquisition Corp VI - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTVIW,FinTech Acquisition Corp VI - Warrants (23/06/2026),NASDAQ,Stock,2021-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTXG,First Trust Nasdaq Food & Beverage ETF,NASDAQ,ETF,2016-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTXH,FIRST TRUST NASDAQ PHARMACEUTICALS ETF ,NASDAQ,ETF,2016-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTXL,First Trust Nasdaq Semiconductor ETF,NASDAQ,ETF,2016-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTXN,First Trust Nasdaq Oil & Gas ETF,NASDAQ,ETF,2016-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTXO,First Trust Nasdaq Bank ETF,NASDAQ,ETF,2016-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FTXR,First Trust Nasdaq Transportation ETF,NASDAQ,ETF,2016-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUBO,fuboTV Inc,NYSE,Stock,2017-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUE,AB Svensk Exportkredit,NYSE ARCA,ETF,2008-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUL,H.B. Fuller Company,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FULC,Fulcrum Therapeutics Inc,NASDAQ,Stock,2019-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FULT,Fulton Financial Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FULTP,Fulton Financial Corp,NASDAQ,Stock,2020-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUMB,First Trust Ultra Short Duration Municipal ETF,NYSE ARCA,ETF,2018-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUN,Cedar Fair L.P.,NYSE,Stock,1987-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUNC,First United Corporation,NASDAQ,Stock,1992-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUND,Sprott Focus Trust Inc,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUNL,CornerCap Fundametrics Large-Cap ETF,BATS,ETF,2020-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FURY,Fury Gold Mines Ltd,NYSE MKT,Stock,2011-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUSB,First US Bancshares Inc,NASDAQ,Stock,1999-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUSN,Fusion Pharmaceuticals Inc,NASDAQ,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUT,PROSHARES MANAGED FUTURES STRATEGY ETF ,BATS,ETF,2016-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUTU,Futu Holdings Ltd,NASDAQ,Stock,2019-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUTY,Fidelity MSCI Utilities Index ETF,NYSE ARCA,ETF,2013-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FUV,Arcimoto Inc,NASDAQ,Stock,2017-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FV,First Trust Dorsey Wright Focus 5 ETF,NASDAQ,ETF,2014-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVAC-U,MP Materials Corporation - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVAL,Fidelity Value Factor ETF,NYSE ARCA,ETF,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVAM,5:01 Acquisition Corp - Class A,NASDAQ,Stock,2020-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVC,First Trust Dorsey Wright Dynamic Focus 5 ETF,NASDAQ,ETF,2016-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVCB,FVCBankcorp Inc,NASDAQ,Stock,2013-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVD,First Trust Value Line Dividend Index Fund,NYSE ARCA,ETF,2003-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVIV,Fortress Value Acquisition Corp IV - Class A,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVIV-U,Fortress Value Acquisition Corp IV - Units (1 Ord Share Class A & 1/8 War),NYSE,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVIV-WS,Fortress Value Acquisition Corp IV - Warrants (01/01/9999),NYSE,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVRR,Fiverr International Ltd,NYSE,Stock,2019-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVT,Fortress Value Acquisition Corp III - Class A,NYSE,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVT-U,Fortress Value Acquisition Corp III - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FVT-WS,Fortress Value Acquisition Corp III - Warrants (31/12/2027),NYSE,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FWAC,Fifth Wall Acquisition Corp III - Class A,NASDAQ,Stock,2021-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FWBI,First Wave BioPharma Inc,NASDAQ,Stock,2016-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FWONA,Liberty Media Corp (Tracking Stock -Liberty Formula 1) Series A,NASDAQ,Stock,2013-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FWONK,Liberty Media Corp (Tracking Stock -Liberty Formula 1) Series C,NASDAQ,Stock,2014-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FWP,Forward Pharma A/S,NASDAQ,Stock,2014-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FWRD,Forward Air Corp,NASDAQ,Stock,1993-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FWRG,First Watch Restaurant Group Inc,NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXA,Invesco CurrencyShares Australian Dollar Trust,NYSE ARCA,ETF,2006-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXB,Invesco CurrencyShares British Pound Sterling Trust,NYSE ARCA,ETF,2006-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXC,Invesco CurrencyShares Canadian Dollar Trust,NYSE ARCA,ETF,2006-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXCO,Financial Strategies Acquisition Corp - Class A,NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXCOR,Financial Strategies Acquisition Corp,NASDAQ,Stock,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXCOW,Financial Strategies Acquisition Corp - Warrants (31/03/2028),NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXD,First Trust Consumer Discretionary AlphaDEX Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXE,Invesco CurrencyShares Euro Trust,NYSE ARCA,ETF,2005-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXF,Invesco CurrencyShares Swiss Franc Trust,NYSE ARCA,ETF,2006-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXG,First Trust Consumer Staples AlphaDEX Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXH,First Trust Health Care AlphaDEX Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXI,iShares China Large-Cap ETF,NYSE ARCA,ETF,2004-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXL,First Trust Technology AlphaDEX Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXLV,F45 Training Holdings Inc,NYSE,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXN,First Trust Energy AlphaDEX Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXNC,First National Corp (Strasburg VA),NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXO,First Trust Financials AlphaDEX Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXP,ProShares UltraShort FTSE China 50,NYSE ARCA,ETF,2007-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXR,First Trust Industrials/Producer Durables AlphaDEX Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXU,First Trust Utilities AlphaDEX Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXY,Invesco CurrencyShares Japanese Yen Trust,NYSE ARCA,ETF,2007-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FXZ,First Trust Materials AlphaDEX Fund,NYSE ARCA,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FYBR,Frontier Communications Parent Inc,NASDAQ,Stock,2021-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FYC,First Trust Small Cap Growth AlphaDEX Fund,NASDAQ,ETF,2011-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FYLD,Cambria Foreign Shareholder Yield ETF,BATS,ETF,2013-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FYT,First Trust Small Cap Value AlphaDEX Fund,NASDAQ,ETF,2011-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FYX,First Trust Small Cap Core AlphaDEX Fund,NASDAQ,ETF,2007-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FZT,FAST Acquisition Corp II - Class A,NYSE,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FZT-U,FAST Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "FZT-WS,FAST Acquisition Corp II - Warrants (16/03/2026),NYSE,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "G,Genpact Ltd,NYSE,Stock,2007-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAA,CAMBRIA GLOBAL ASSET ALLOCATION ETF ,BATS,ETF,2014-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAB,Gabelli Equity Trust Inc,NYSE,ETF,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAB-P-D,Gabelli Equity Trust Inc The Preferred Stock Series D,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAB-P-G,Gabelli Equity Trust Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAB-P-H,Gabelli Equity Trust Inc The Pfd Ser H,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAB-P-K,Gabelli Equity Trust Inc,NYSE,Stock,2019-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAB-R,Gabelli Equity Trust Inc Rights 7142021,NYSE,Stock,2021-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GABC,German American Bancorp Inc,NASDAQ,Stock,1993-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GACQ,Global Consumer Acquisition Corp,NASDAQ,Stock,2021-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GACQU,Global Consumer Acquisition Corp - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GACQW,Global Consumer Acquisition Corp - Warrants (21/05/2026),NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAIA,Gaia Inc - Class A,NASDAQ,Stock,1999-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAIN,Gladstone Investment Corporation,NASDAQ,Stock,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAINN,Gladstone Investment Corporation,NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAINZ,Gladstone Investment Corporation,NASDAQ,Stock,2021-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAL,SPDR SSgA Global Allocation ETF,NYSE ARCA,ETF,2012-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GALT,Galectin Therapeutics Inc,NASDAQ,Stock,2002-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAM,General American Investors Co. Inc,NYSE,ETF,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAM-P-B,General American Investors Company Inc Cumulative Preferred Stock,NYSE,Stock,2003-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAMB,Gambling.com Group Ltd,NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAMC,Golden Arrow Merger Corp - Class A,NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAMCU,Golden Arrow Merger Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAMCW,Golden Arrow Merger Corp - Warrants (31/07/2026),NASDAQ,Stock,2021-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAME,Engine Gaming and Media Inc,NASDAQ,Stock,2018-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAMR,Wedbush ETFMG Video Game Tech ETF,NYSE ARCA,ETF,2016-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAN,GAN Ltd,NASDAQ,Stock,2020-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GANX,Gain Therapeutics Inc,NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAPA,G&P acquisition corp - Class A,NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAPA-U,G&P acquisition corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAPA-WS,G&P acquisition Corp - Warrants (28/02/2028),NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAQ,Generation Asia I Acquisition Ltd - Class A,NYSE,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAQ-U,Generation Asia I Acquisition Ltd - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAQ-WS,Generation Asia I Acquisition Ltd - Warrants (01/01/9999),NYSE,Stock,2022-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GASL,DIREXION DAILY NATURAL GAS RELATED BULL 3X SHARES ,NYSE ARCA,ETF,2010-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GASS,StealthGas Inc,NASDAQ,Stock,2005-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAST,Gabelli Asset ETF,NYSE ARCA,ETF,2022-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GATE,Marblegate Acquisition Corp - Series A,NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GATEU,Marblegate Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GATEW,Marblegate Acquisition Corp - Warrants (31/08/2026),NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GATO,Gatos Silver Inc,NYSE,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GATX,GATX Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAU,Galiano Gold Inc,NYSE MKT,Stock,2008-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GAZ,Barclays Bank PLC iPath Series B Bloomberg Natural Gas Subindex Total Return ETN,NYSE ARCA,ETF,2017-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GB,Global Blue Group Holding AG,NYSE,Stock,2020-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GB-WS,Global Blue Group Holding AG - Warrants (28/08/2025),NYSE,Stock,2020-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBAB,Guggenheim Taxbl Muni Bnd & Invtmnt Grd Debt Trst Com Shrs Of benf Int,NYSE,ETF,2010-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBCI,Glacier Bancorp Inc,NYSE,Stock,1992-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBDC,Golub Capital BDC Inc,NASDAQ,Stock,2010-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBDV,Global Beta Smart Income ETF,NYSE ARCA,ETF,2019-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBF,ISHARES GOVERNMENT/CREDIT BOND ETF ,NYSE ARCA,ETF,2007-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBGR,GLOBAL BETA MOMENTUM-GROWTH ETF ,NYSE ARCA,ETF,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBIL,Goldman Sachs Access Treasury 0-1 Year ETF,NYSE ARCA,ETF,2016-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBIO,Generation Bio Company,NASDAQ,Stock,2020-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBL,Gamco Investors Inc - Class A,NYSE,Stock,1999-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBLD,Invesco MSCI Green Building ETF,NYSE ARCA,ETF,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBLI,Global Indemnity Group LLC - Class A,NYSE,Stock,2003-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBLO,Global Beta Low Beta ETF,NYSE ARCA,ETF,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBNH,Greenbrook TMS Inc,NASDAQ,Stock,2018-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBNY,Generations Bancorp NY Inc,NASDAQ,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBOX,GreenBox POS,NASDAQ,Stock,2010-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBR,New Concept Energy Inc,NYSE MKT,Stock,1993-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBRG,Goldenbridge Acquisition Ltd,NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBRGR,Goldenbridge Acquisition Ltd,NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBRGU,Goldenbridge Acquisition Ltd - Units (1 Ord shares1 Warr & 1 Rts ),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBRGW,Goldenbridge Acquisition Ltd - Warrants (02/03/2026),NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBS,GBS Inc,NASDAQ,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBT,Global Blood Therapeutics Inc,NASDAQ,Stock,2015-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBUG,Barclays Bank PLC,NYSE ARCA,Stock,2019-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBUY,Goldman Sachs Future Consumer Equity ETF,NYSE ARCA,ETF,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GBX,Greenbrier Cos. Inc,NYSE,Stock,1994-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCAC,Cepton Inc - Class A,NASDAQ,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCBC,Greene County Bancorp Inc,NASDAQ,Stock,1999-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCC,WisdomTree EnhancedContinuous Commodity Index Fund,NYSE ARCA,ETF,2008-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCI,Gannett Co Inc,NYSE,Stock,2014-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCIG,Genuine Investors ETF,NYSE ARCA,ETF,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCLN,Goldman Sachs Bloomberg Clean Energy Equity ETF,BATS,ETF,2022-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCMG,GCM Grosvenor Inc - Class A,NASDAQ,Stock,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCMGW,GCM Grosvenor Inc - Warrants (17/11/2025),NASDAQ,Stock,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCO,Genesco Inc,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCOR,Goldman Sachs Access U.S. Aggregate Bond ETF,NYSE ARCA,ETF,2020-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCOW,Pacer Global Cash Cows Dividend ETF,BATS,ETF,2016-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCP,GCP Applied Technologies Inc,NYSE,Stock,2016-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCTK,GlucoTrack Inc,NASDAQ,Stock,2013-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GCV,Gabelli Convertible Income Securities,NYSE,ETF,1995-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GD,General Dynamics Corp,NYSE,Stock,1977-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDDY,Godaddy Inc - Class A,NYSE,Stock,2015-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDE,WisdomTree Efficient Gold Plus Equity Strategy Fund,BATS,ETF,2022-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDEN,Golden Entertainment Inc,NASDAQ,Stock,2015-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDEV,Nexters Inc,NASDAQ,Stock,2020-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDEVW,Nexters Inc - Warrants (26/08/2026),NASDAQ,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDL,GDL Fund,NYSE,ETF,2007-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDL-P-C,The GDL Fund Series C Cumulative Puttable and Callable Preferred Shares,NYSE,Stock,2018-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDMA,Gadsden Dynamic Multi-Asset ETF,NYSE ARCA,ETF,2018-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDMN,WisdomTree Efficient Gold Plus Gold Miners Strategy Fund,BATS,ETF,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDNR,Gardiner Healthcare Acquisitions Corp,NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDNRU,Gardiner Healthcare Acquisitions Corp - Units (1 Ord & 1 War),NASDAQ,Stock,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDNRW,Gardiner Healthcare Acquisitions Corp - Warrants (30/07/2028),NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDO,Western Asset Global Corporate Defined Opportunity Fund Inc,NYSE,ETF,2009-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDOC,GOLDMAN SACHS FUTURE HEALTH CARE EQUITY ETF ,NYSE ARCA,ETF,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDOT,Green Dot Corp - Class A,NYSE,Stock,2010-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDRX,GoodRx Holdings Inc - Class A,NASDAQ,Stock,2020-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDS,GDS Holdings Ltd,NASDAQ,Stock,2016-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDSTU,Goldenstone Acquisition Ltd - Units (1 Ord 1 War & 1 Rts),NASDAQ,Stock,2022-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDV,Gabelli Dividend & Income Trust,NYSE,ETF,2003-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDV-P-D,Gabelli Dividend Pfd Series D,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDV-P-H,Gabelli Dividend & Income Trust,NYSE,Stock,2019-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDV-P-K,Gabelli Dividend & Income Trust,NYSE,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDX,VanEck Gold Miners ETF,NYSE ARCA,ETF,2006-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDXD,Bank of Montreal,NYSE ARCA,Stock,2020-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDXJ,VanEck Junior Gold Miners ETF,NYSE ARCA,ETF,2009-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDXU,Bank of Montreal,NYSE ARCA,Stock,2020-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDYN,Grid Dynamics Holdings Inc - Class A,NASDAQ,Stock,2018-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GDYNW,Grid Dynamics Holdings Inc - Warrants (05/03/2025),NASDAQ,Stock,2018-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GE,General Electric Company,NYSE,Stock,1962-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GECC,Great Elm Capital Corp,NASDAQ,Stock,2016-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GECCM,Great Elm Capital Corp,NASDAQ,Stock,2018-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GECCN,Great Elm Capital Corp,NASDAQ,Stock,2019-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GECCO,Great Elm Capital Corp,NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEEX,Games & Esports Experience Acquisition Corp - Class A,NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEEXU,Games & Esports Experience Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEEXW,Games & Esports Experience Acquisition Corp - Warrants (01/12/2026),NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEF,Greif Inc - Class A,NYSE,Stock,1996-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEF-B,Greif Inc - Class B,NYSE,Stock,2003-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEG,Great Elm Group Inc,NASDAQ,Stock,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEL,Genesis Energy L.P.,NYSE,Stock,1996-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEM,Goldman Sachs ActiveBeta Emerging Markets Equity ETF,NYSE ARCA,ETF,2015-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEMD,Goldman Sachs Access Emerging Markets USD Bond ETF,BATS,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GENC,Gencor Industries Inc,NASDAQ,Stock,2003-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GENE,Genetic Technologies Ltd,NASDAQ,Stock,2005-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GENI,Genius Sports Ltd,NYSE,Stock,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GENI-WS,Genius Sports Ltd - Warrants (20/04/2026),NYSE,Stock,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GENQU,Genesis Unicorn Capital Corp - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2022-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GENY,Principal Millennials ETF,NASDAQ,ETF,2016-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEO,Geo Group Inc,NYSE,Stock,1994-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEOS,Geospace Technologies Corp,NASDAQ,Stock,1997-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GER,Goldman Sachs MLP and Energy Renaissance Fund,NYSE,ETF,2014-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GERM,ETFMG Treatments Testing and Advancements ETF,NYSE ARCA,ETF,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GERN,Geron Corp,NASDAQ,Stock,1996-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GES,Guess Inc,NYSE,Stock,1996-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GET,Getnet Adquirencia E Servicos Para Meios De Pagamento S.A,NASDAQ,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GETVV,Getnet Adquirencia e Servicos para Meios de Pagamento S.A. American Depositary Shares WI,NASDAQ,Stock,2021-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GEVO,Gevo Inc,NASDAQ,Stock,2011-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GF,New Germany Fund Inc,NYSE,ETF,1990-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFAI,Guardforce AI Co Ltd,NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFAIW,Guardforce AI Co Ltd - Warrants (01/09/2026),NASDAQ,Stock,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFED,Guaranty Federal Bancshares Inc,NASDAQ,Stock,1995-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFF,Griffon Corp,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFGD,Growth for Good Acquisition Corp (The) - Class A,NASDAQ,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFGDR,Growth for Good Acquisition Corp (The),NASDAQ,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFGDU,Growth for Good Acquisition Corp (The) - Units (1 Ord Class A 1 Rts & 1/2 War),NASDAQ,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFGDW,Growth for Good Acquisition Corp (The) - Warrants (12/11/2026),NASDAQ,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFGF,Guru Favorite Stocks ETF,NASDAQ,ETF,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFI,Gold Fields Ltd,NYSE,Stock,1991-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFL,GFL Environmental Inc (Sub Voting),NYSE,Stock,2020-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFLU,GFL Environmental Inc,NYSE,Stock,2020-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFOF,Grayscale Future of Finance ETF,NYSE ARCA,ETF,2022-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFOR,Graf Acquisition Corp IV,NYSE,Stock,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFOR-U,Graf Acquisition Corp IV - Units (1 Ord & 1/5 War),NYSE,Stock,2021-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFOR-WS,Graf Acquisition Corp IV - Warrants (31/05/2028),NYSE,Stock,2021-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFS,GlobalFoundries Inc,NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFX,Golden Falcon Acquisition Corp - Class A,NYSE,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFX-U,Golden Falcon Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFX-WS,Golden Falcon Acquisition Corp - Warrants (04/11/2026),NYSE,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GFY,Western Asset Vrble Rate Strtgc Fnd Inc,NYSE,ETF,2004-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGAA,Genesis Growth Tech Acquisition Corp - Class A,NASDAQ,Stock,2022-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGAAU,Genesis Growth Tech Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGAAW,Genesis Growth Tech Acquisition Corp - Warrants (08/12/2026),NASDAQ,Stock,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGAL,Grupo Financiero Galicia,NASDAQ,Stock,2000-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGB,Gerdau S.A.,NYSE,Stock,1999-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGE,Green Giant Inc,NASDAQ,Stock,2008-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGG,Graco Inc,NYSE,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGGV,G3 VRM Acquisition Corp - Class A,NASDAQ,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGGVR,G3 VRM Acquisition Corp,NASDAQ,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGGVU,G3 VRM Acquisition Corp - Units (1 Ord Class A & 1 Rts),NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGM,Guggenheim Credit Allocation Fund,NYSE,ETF,2013-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGMC,Glenfarne Merger Corp - Class A,NASDAQ,Stock,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGMCU,Glenfarne Merger Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGMCW,Glenfarne Merger Corp - Warrants (17/03/2026),NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGN,GAMCO Global Gold Natural Resources & Income Trust,NYSE MKT,ETF,2005-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGN-P-B,GAMCO Global Gold Natural Reources Income Trust 500 Series B Cumulative 2500 Liquidation Preference,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGO,Gabelli Go Anywhere Trust,NYSE MKT,Stock,2016-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGPI,Gores Guggenheim Inc - Class A,NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGPIU,Gores Guggenheim Inc - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGPIW,Gores Guggenheim Inc - Warrants (31/03/2028),NASDAQ,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGRW,Gabelli Growth Innovators ETF,NYSE ARCA,ETF,2021-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGT,Gabelli Multimedia Trust Inc,NYSE,ETF,1994-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGT-P-B,Gabelli MultiMedia Trust Inc The Preferred Series B,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGT-P-E,Gabelli Multimedia Trust Inc,NYSE,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGT-P-G,Gabelli Multimedia Trust Inc,NYSE,Stock,2019-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGT-R,Gabelli MultiMedia Trust Inc The Rights expiring 8252021,NYSE,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GGZ,Gabelli Global Small and Mid Cap Value Trust,NYSE,ETF,2014-07-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GH,Guardant Health Inc,NASDAQ,Stock,2018-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHAC,Gaming & Hospitality Acquisition Corp - Class A,NASDAQ,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHACU,Gaming & Hospitality Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHACW,Gaming & Hospitality Acquisition Corp - Warrants (30/03/2026),NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHC,Graham Holdings Co. - Class B,NYSE,Stock,1990-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHG,GreenTree Hospitality Group Ltd,NYSE,Stock,2018-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHIX,Gores Holdings IX Inc - Class A,NASDAQ,Stock,2022-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHIXU,Gores Holdings IX Inc - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHIXW,Gores Holdings IX Inc - Warrants (31/01/2027),NASDAQ,Stock,2022-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHL,Greenhill & Co Inc,NYSE,Stock,2004-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHLD,Guild Holdings Co - Class A,NYSE,Stock,2020-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHM,Graham Corp,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHRS,GH Research PLC,NASDAQ,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHSI,Guardion Health Sciences Inc,NASDAQ,Stock,2019-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHTA,Goose Hollow Tactical Allocation ETF,BATS,ETF,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHY,PGIM Global High Yield Fund Inc,NYSE,ETF,2012-12-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHYB,Goldman Sachs Access High Yield Corporate Bond ETF,NYSE ARCA,ETF,2017-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GHYG,iShares US & Intl High Yield Corp Bond ETF,BATS,ETF,2012-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIA,GigCapital5 Inc,NYSE,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIA-U,GigCapital5 Inc - Units (1 Ord & 1War),NYSE,Stock,2021-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIA-WS,GigCapital5 Inc - Warrants (01/01/9999),NYSE,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIAC,Gesher I Acquisition Corp,NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIACU,Gesher I Acquisition Corp - Units (1 Ord Share & 1/2 War),NASDAQ,Stock,2021-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIACW,Gesher I Acquisition Corp - Warrants (16/04/2028),NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIB,CGI Inc - Class A,NYSE,Stock,1998-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIC,Global Industrial Company,NYSE,Stock,1995-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIFI,Gulf Island Fabrication Inc,NASDAQ,Stock,1997-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIGB,Goldman Sachs Access Investment Grade Corporate Bond ETF,NYSE ARCA,ETF,2017-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIGE,SOFI GIG ECONOMY ETF ,NASDAQ,ETF,2019-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIGM,Gigamedia,NASDAQ,Stock,2000-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GII,SPDR(R) S&P GLOBAL INFRASTRUCTURE ETF ,NYSE ARCA,ETF,2007-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIII,G-III Apparel Group Ltd,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIIX,Gores Holdings VIII Inc - Class A,NASDAQ,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIIXU,Gores Holdings VIII Inc - Units (1 Ord Share Class A & 1/8 War),NASDAQ,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIIXW,Gores Holdings VIII Inc - Warrants (01/02/2028),NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIK-WS,Lightning eMotors Inc - Warrants (18/05/2025),NYSE,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIL,Gildan Activewear Inc,NYSE,Stock,1998-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GILD,Gilead Sciences Inc,NASDAQ,Stock,1992-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GILT,Gilat Satellite Networks,NASDAQ,Stock,1993-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIM,Templeton Global Income Fund Inc,NYSE,ETF,1988-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GINN,Goldman Sachs Innovate Equity ETF,NYSE ARCA,ETF,2020-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIPR,Generation Income Properties Inc,NASDAQ,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIPRW,Generation Income Properties Inc - Warrants (03/09/2026),NASDAQ,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIS,General Mills Inc,NYSE,Stock,1983-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIW,GigInternational1 Inc,NASDAQ,Stock,2021-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIWWU,GigInternational1 Inc - Units (1 Ord Share & 1/2 War),NASDAQ,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIWWW,GigInternational1 Inc - Warrants (19/04/2026),NASDAQ,Stock,2021-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIX-U,Gigcapital2 Inc - Units (1 Ord Share 1 Rts & 1 Wrt),NYSE,Stock,2019-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GIXR,GigCapital2 Inc. Rights each exchangeable into onetwentieth of a share of Common Stock,NYSE,Stock,2019-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GJH,Synthetic FixedIncome Securities Inc 6375 STRATS Cl A1,NYSE,Stock,2004-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GJO,Synthetic FixedIncome Securities Inc Synthetic FixedIncome Securities Inc on behalf of STRATSSM Trust for WalMart Stores Inc Securities Series 2004,NYSE,Stock,2005-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GJP,Synthetic FixedIncome Securities Inc Synthetic FixedIncome Securities Inc on behalf of STRATS SM Trust for Dominion Resources Inc Securities Series 2,NYSE,Stock,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GJR,Synthetic FixedIncome Securities Inc STRATS Trust for ProcterGamble Securities Series 20061,NYSE,Stock,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GJS,Synthetic Fixed-Income Securities Inc,NYSE,Stock,2006-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GJT,Synthetic FixedIncome Securities Inc Synthetic FixedIncome Securities Inc Floating Rate Structured Repackaged AssetBacked Trust Securities Certificates,NYSE,Stock,2007-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GJV,Synthetic FixedIncome Securities Inc 700 Fixed Rate Structured Repackaged AssetBacked Trust Securities STRATS,NYSE,Stock,2007-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GK,AdvisorShares Gerber Kawasaki ETF,NYSE ARCA,ETF,2021-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GKOS,Glaukos Corporation,NYSE,Stock,2015-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GL,Globe Life Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GL-P-C,Torchmark Corporation 6125 Junior Subordinated Debentures due 2056,NYSE,Stock,2016-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GL-P-D,Globe Life Inc,NYSE,Stock,2021-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLAD,Gladstone Capital Corp,NASDAQ,Stock,2002-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLAQ,Globis Acquisition Corp,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLAQU,Globis Acquisition Corp - Unit (1 Ordinary share & 1 Wrt),NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLAQW,Globis Acquisition Corp - Warrants (01/11/2025),NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLBE,Global E Online Ltd,NASDAQ,Stock,2021-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLBL,Cartesian Growth Corp - Class A,NASDAQ,Stock,2021-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLBLU,Cartesian Growth Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLBLW,Cartesian Growth Corp - Warrants (26/02/2028),NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLBS,Globus Maritime Ltd,NASDAQ,Stock,2008-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLBZ,Glen Burnie Bancorp,NASDAQ,Stock,1999-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLCN,VanEck China Growth Leaders ETF,NYSE ARCA,ETF,2010-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLD,SPDR Gold Shares ETF,NYSE ARCA,ETF,2004-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLDB,STRATEGY SHARES GOLD-HEDGED BOND ETF ,BATS,ETF,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLDD,Great Lakes Dredge & Dock Corporation,NASDAQ,Stock,2006-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLDG,GoldMining Inc,NYSE MKT,Stock,2011-07-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLDI,Credit Suisse AG Nassau Branch,NASDAQ,ETF,2013-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLDM,SPDR Gold MiniShares Trust,NYSE ARCA,ETF,2018-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLDX,USCF Gold Strategy Plus Income Fund,NYSE ARCA,ETF,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLEE,Gladstone Acquisition Corp - Class A,NASDAQ,Stock,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLEEU,Gladstone Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLEEW,Gladstone Acquisition Corp - Warrants (01/04/2026),NASDAQ,Stock,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLEO-U,Galileo Acquisition Corp - Units (1 Ordinary share & 1 Warr),NYSE,Stock,2019-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLG,TD Holdings Inc,NASDAQ,Stock,2018-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLHA,Glass Houses Acquisition Corp - Class A,NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLHAU,Glass Houses Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLHAW,Glass Houses Acquisition Corp - Warrants (01/03/2028),NASDAQ,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLIF,AGFIQ GLOBAL INFRASTRUCTURE ETF ,NYSE ARCA,ETF,2019-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLIN,VanEck India Growth Leaders ETF,NYSE ARCA,ETF,2010-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLL,ProShares UltraShort Gold,NYSE ARCA,ETF,2006-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLLI,Globalink Investment Inc,NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLLIR,Globalink Investment Inc,NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLLIU,Globalink Investment Inc - Units (1 Ord 1 Rts & 1 War),NASDAQ,Stock,2021-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLLIW,Globalink Investment Inc - Warrants(06/12/2026),NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLMD,Galmed Pharmaceuticals Ltd,NASDAQ,Stock,2014-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLNG,Golar Lng,NASDAQ,Stock,2003-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLO,Clough Global Opportunities Fund.,NYSE MKT,ETF,2006-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLOB,Globant S.A.,NYSE,Stock,2014-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLOG-P-A,GasLog Ltd,NYSE,Stock,2015-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLOP,Gaslog Partners LP,NYSE,Stock,2014-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLOP-P-A,Gaslog Partners LP,NYSE,Stock,2017-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLOP-P-B,Gaslog Partners LP,NYSE,Stock,2018-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLOP-P-C,Gaslog Partners LP,NYSE,Stock,2018-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLOV,Goldman Sachs ActiveBeta World Low Vol Plus Equity ETF,BATS,ETF,2022-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLP,Global Partners LP,NYSE,Stock,2005-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLP-P-A,Global Partners LP 975 Series A FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units representing limited partner interests,NYSE,Stock,2018-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLP-P-B,Global Partners LP,NYSE,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLPG,Galapagos NV,NASDAQ,Stock,2015-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLPI,Gaming and Leisure Properties Inc,NASDAQ,Stock,2013-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLQ,Clough Global Equity Fund,NYSE MKT,ETF,2005-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLRE,Greenlight Capital Re Ltd - Class A,NASDAQ,Stock,2007-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLRY,Inspire Faithward Mid Cap Momentum ESG ETF,NYSE ARCA,ETF,2020-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLS,Gelesis Holdings Inc,NYSE,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLS-WS,Gelesis Holdings Inc - Warrants (13/01/2027),NYSE,Stock,2020-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLSI,Greenwich LifeSciences Inc,NASDAQ,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLSPT,Global SPAC Partners Co - Subunit (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLSPU,Global SPAC Partners Co - Units (1 Subunit & 1/2 War),NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLSPW,Global SPAC Partners Co - Warrants (12/03/2026),NASDAQ,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLT,Glatfelter Corporation,NYSE,Stock,1984-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLTA,Galata Acquisition Corp - Class A,NYSE MKT,Stock,2021-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLTA-U,Galata Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE MKT,Stock,2021-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLTA-WS,Galata Acquisition Corp - Warrants (01/01/9999),NYSE MKT,Stock,2021-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLTO,Galecto Inc,NASDAQ,Stock,2020-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLTR,Aberdeen Standard Physical Precious Metals Basket Shares ETF,NYSE ARCA,ETF,2010-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLU,Gabelli Global Utility & Income Trust.,NYSE MKT,ETF,2004-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLU-P-A,Gabelli Global Utility & Income Trust.,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLU-P-B,The Gabelli Global Utility and Income Trust Series B Cumulative Puttable and Callable Preferred Shares,NYSE MKT,Stock,2018-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLUE,Monte Rosa Therapeutics Inc,NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLV,Clough Global Allocation Fund,NYSE MKT,ETF,2004-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLW,Corning Inc,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GLYC,GlycoMimetics Inc,NASDAQ,Stock,2014-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GM,General Motors Company,NYSE,Stock,2010-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMAB,Genmab,NASDAQ,Stock,2009-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMBL,Esports Entertainment Group Inc,NASDAQ,Stock,2016-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMBLP,Esports Entertainment Group Inc,NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMBLW,Esports Entertainment Group Inc - Warrants (31/03/2025),NASDAQ,Stock,2020-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMBLZ,Esports Entertainment Group Inc - Warrants (02/03/2027),NASDAQ,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMBT,Queens Gambit Growth Capital - Class A,NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMBTU,Queens Gambit Growth Capital - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMBTW,Queens Gambit Growth Capital - Warrants (19/01/2026),NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMDA,Gamida Cell Ltd,NASDAQ,Stock,2018-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GME,Gamestop Corporation - Class A,NYSE,Stock,2002-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMED,Globus Medical Inc - Class A,NYSE,Stock,2012-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMET,VanEck Green Metals ETF,NYSE ARCA,ETF,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMF,SPDR S&P Emerging Asia Pacific ETF,NYSE ARCA,ETF,2007-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMFI,Aetherium Acquisition Corp - Class A,NASDAQ,Stock,2022-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMFIU,Aetherium Acquisition Corp - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2021-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMFIW,Aetherium Acquisition Corp - Warrants (21/12/2026),NASDAQ,Stock,2022-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMGI,Golden Matrix Group Inc,NASDAQ,Stock,2009-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMGT,Gaming Technologies Inc,NASDAQ,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMII,,NASDAQ,Stock,2022-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMOM,Cambria Global Momentum ETF,BATS,ETF,2014-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMRE,Global Medical REIT Inc,NYSE,Stock,2016-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMRE-P-A,Global Medical REIT Inc Series A Cumulative Redeemable Preferred Stock,NYSE,Stock,2017-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMS,GMS Inc,NYSE,Stock,2016-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMTX,Gemini Therapeutics Inc,NASDAQ,Stock,2020-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMVD,G Medical Innovations Holdings Ltd,NASDAQ,Stock,2018-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMVDW,G Medical Innovations Holdings Ltd - Warrants (30/06/2025),NASDAQ,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GMZ,Goldman Sachs MLP Income Opportunities Fund Com Shs,NYSE,ETF,2013-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNAC,Group Nine Acquisition Corp - Class A,NASDAQ,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNACU,Group Nine Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNACW,Group Nine Acquisition Corp - Warrants (15/01/2026),NASDAQ,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNCA,Genocea Biosciences Inc,NASDAQ,Stock,2014-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNE,Genie Energy Ltd - Class B,NYSE,Stock,2011-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNE-P-A,Genie Energy Ltd,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNFT,Genfit,NASDAQ,Stock,2019-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNK,Genco Shipping & Trading Ltd,NYSE,Stock,2014-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNL,Global Net Lease Inc,NYSE,Stock,2015-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNL-P-A,Global Net Lease Inc 725 Series A Cumulative Redeemable Preferred Stock 001 par value per share,NYSE,Stock,2017-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNL-P-B,Global Net Lease Inc,NYSE,Stock,2019-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNLN,Greenlane Holdings Inc - Class A,NASDAQ,Stock,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNMA,iShares GNMA Bond ETF,NASDAQ,ETF,2012-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNOG,Golden Nugget Online Gaming Inc - Class A,NASDAQ,Stock,2019-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNOM,Global X Genomics & Biotechnology ETF,NASDAQ,ETF,2019-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNPK-WS,Genesis Park Acquisition Corp Redeemable Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50 per share,NYSE,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNPX,Genprex Inc,NASDAQ,Stock,2018-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNR,SPDR S&P Global Natural Resources ETF,NYSE ARCA,ETF,2010-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNRC,Generac Holdings Inc,NYSE,Stock,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNSS,Genasys Inc,NASDAQ,Stock,1997-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNT,GAMCO Natural Resources Gold & Income Trust,NYSE,ETF,2011-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNT-P-A,GAMCO Natural Resources Gold Income Tust 520 Series A Cumulative Preferred Shares Liquidation Preference 2500 per share,NYSE,Stock,2017-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNTA,Genenta Science SpA,NASDAQ,Stock,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNTX,Gentex Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNTY,Guaranty Bancshares Inc (TX),NASDAQ,Stock,2017-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNUS,Genius Brands International Inc,NASDAQ,Stock,2014-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GNW,Genworth Financial Inc - Class A,NYSE,Stock,2004-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GO,Grocery Outlet Holding Corp,NASDAQ,Stock,2019-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOAC,GO Acquisition Corp - Class A,NYSE,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOAC-U,GO Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOAC-WS,GO Acquisition Corp - Warrants (31/08/2027),NYSE,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOAU,U.S. Global GO GOLD and Precious Metal Miners ETF,NYSE ARCA,ETF,2017-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOBI,Gobi Acquisition Corp Class A,NASDAQ,Stock,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOCO,GoHealth Inc - Class A,NASDAQ,Stock,2020-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOED,1847 Goedeker Inc,NYSE MKT,Stock,2020-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOED-WS,1847 Goedeker Inc - Warrants (01/01/9999),NYSE MKT,Stock,2021-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOEV,Canoo Inc - Class A,NASDAQ,Stock,2017-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOEVW,Canoo Inc - Warrants (05/09/2025),NASDAQ,Stock,2019-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOEX,Global X Gold Explorers ETF,NYSE ARCA,ETF,2010-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOF,Guggenheim Strategic Opportunities Fund,NYSE,ETF,2007-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOGL,Golden Ocean Group Ltd,NASDAQ,Stock,1997-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOGN,GoGreen Investments Corp - Class A,NYSE,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOGN-U,GoGreen Investments Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOGN-WS,GoGreen Investments Corp - Warrants (31/05/2028),NYSE,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOGO,Gogo Inc,NASDAQ,Stock,2013-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOL,Gol Linhas Aereas Inteligentes S.A.,NYSE,Stock,2004-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOLD,Barrick Gold Corp,NYSE,Stock,1985-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOLF,Acushnet Holdings Corp,NYSE,Stock,2016-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOOD,Gladstone Commercial Corp,NASDAQ,Stock,2003-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOODN,Gladstone Commercial Corp,NASDAQ,Stock,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOODO,Gladstone Commercial Corp,NASDAQ,Stock,2021-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOOG,Alphabet Inc - Class C,NASDAQ,Stock,2014-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOOGL,Alphabet Inc - Class A,NASDAQ,Stock,2004-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOOS,Canada Goose Holdings Inc (Subord Vot Shs),NYSE,Stock,2017-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GORO,Gold Resource Corporation,NYSE MKT,Stock,2006-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOSS,Gossamer Bio Inc,NASDAQ,Stock,2019-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOTU,Gaotu Techedu Inc,NYSE,Stock,2019-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOVT,iShares U.S. Treasury Bond ETF,BATS,ETF,2012-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOVX,Geovax Labs Inc,NASDAQ,Stock,2012-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOVXW,Geovax Labs Inc - Warrants (01/01/2025),NASDAQ,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GOVZ,iShares 25+ Year Treasury STRIPS Bond ETF,BATS,ETF,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GP,GreenPower Motor Company Inc,NASDAQ,Stock,2015-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPAC,Global Partner Acquisition Corp II - Class A,NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPACU,Global Partner Acquisition Corp II - Units (1 Ord Class A 1/6 War & 1 CVR ),NASDAQ,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPACW,Global Partner Acquisition Corp II - Warrants (06/01/2026),NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPAL,Goldman Sachs ActiveBeta Paris-Aligned Climate US Large Cap Equity ETF,BATS,ETF,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPAQW,Gordon Pointe Acquisition Corp Warrant,NASDAQ,Stock,2018-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPC,Genuine Parts Company,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPCO,Golden Path Acquisition Corp,NASDAQ,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPCOR,Golden Path Acquisition Corp,NASDAQ,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPCOU,Golden Path Acquisition Corp - Units (1 Ord 1 Right & 1 War),NASDAQ,Stock,2021-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPCOW,Golden Path Acquisition Corp - Warrants (31/01/2028),NASDAQ,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPI,Group 1 Automotive Inc,NYSE,Stock,1997-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPJA,Georgia Power Company Series 2017A 500 Junior Subordinated Notes due October 1 2077,NYSE,Stock,2017-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPK,Graphic Packaging Holding Company,NYSE,Stock,1992-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPL,Great Panther Mining Ltd,NYSE MKT,Stock,2006-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPM,Guggenheim Enhanced Equity Income Fund,NYSE,ETF,2005-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPMT,Granite Point Mortgage Trust Inc,NYSE,Stock,2017-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPMT-P-A,Granite Point Mortgage Trust Inc,NYSE,Stock,2021-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPN,Global Payments Inc,NYSE,Stock,2001-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPOR,Gulfport Energy Corp (New),NYSE,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPP,Green Plains Partners LP,NASDAQ,Stock,2015-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPRE,Green Plains Inc,NASDAQ,Stock,2006-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPRK,Geopark Ltd,NYSE,Stock,2010-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPRO,GoPro Inc - Class A,NASDAQ,Stock,2014-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GPS,Gap Inc,NYSE,Stock,1987-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GQRE,FlexShares Global Quality FlexShares Global Quality,NYSE ARCA,ETF,2013-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRAB,Grab Holdings Ltd - Class A,NASDAQ,Stock,2020-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRABW,Grab Holdings Ltd - Warrants (01/12/2026),NASDAQ,Stock,2020-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRAY,Graybug Vision Inc,NASDAQ,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRBK,Green Brick Partners Inc,NYSE,Stock,2007-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRBK-P-A,Green Brick Partners Inc,NYSE,Stock,2021-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRC,Gorman-Rupp Company,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRCL,Gracell Biotechnologies Inc,NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRCY,Greencity Acquisition Corp,NASDAQ,Stock,2020-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRCYU,Greencity Acquisition Corp - Units (1 Ord Share & 1 War),NASDAQ,Stock,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRCYW,Greencity Acquisition Corp - Warrants (28/04/2027),NASDAQ,Stock,2020-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GREE,Greenidge Generation Holdings Inc - Class A,NASDAQ,Stock,2021-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GREEL,Greenidge Generation Holdings Inc,NASDAQ,Stock,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GREI,GOLDMAN SACHS FUTURE REAL ESTATE AND INFRASTRUCTURE EQUITY ETF ,NYSE ARCA,ETF,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GREK,Global X MSCI Greece ETF,NYSE ARCA,ETF,2011-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRES,IQ Global Resources ETF,NYSE ARCA,ETF,2009-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRF,Eagle Capital Growth Fund Inc,NYSE MKT,ETF,2004-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRFS,Grifols SA,NASDAQ,Stock,2011-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRID,First Trust NASDAQ Clean Edge Smart Grid Infrastructure Index Fund,NASDAQ,ETF,2009-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRIL,Muscle Maker Inc,NASDAQ,Stock,2020-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRIN,Grindrod Shipping Holdings Ltd,NASDAQ,Stock,2018-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRMN,Garmin Ltd,NYSE,Stock,2000-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRN,iPath Series B Carbon ETN,NYSE ARCA,ETF,2019-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRNA,GreenLight Biosciences Inc,NASDAQ,Stock,2022-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRNAW,GreenLight Biosciences Inc - Warrants (30/09/2027),NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRNB,VANECK VECTORS GREEN BOND ETF ,NYSE ARCA,ETF,2017-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRNQ,Greenpro Capital Corp,NASDAQ,Stock,2015-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GROM,Grom Social Enterprises Inc,NASDAQ,Stock,2017-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GROMW,Grom Social Enterprises Inc - Warrants (17/06/2026),NASDAQ,Stock,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GROW,U.S. Global Investors Inc - Class A,NASDAQ,Stock,1996-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GROY,Gold Royalty Corp,NYSE MKT,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GROY-WS,Gold Royalty Corp - Warrants (01/01/9999),NYSE MKT,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRP-U,Granite Real Estate Investment Trust - Units,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRPH,Graphite Bio Inc,NASDAQ,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRPN,Groupon Inc,NASDAQ,Stock,2011-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRSHU,Gores Holdings Inc Unit 1 Com 1 Wt Exp,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRTS,Gritstone Bio Inc,NASDAQ,Stock,2018-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRTX,Galera Therapeutics Inc,NASDAQ,Stock,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRU,ELEMENTS Linked to the MLCX Grains Index ETN,NYSE ARCA,ETF,2008-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRVI,Grove Inc,NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRVY,Gravity Co Ltd,NASDAQ,Stock,2005-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRWG,GrowGeneration Corp,NASDAQ,Stock,2016-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRX,Gabelli Healthcare & WellnessRx Trust,NYSE,ETF,2007-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRX-P-A,Gabelli Healthcare PFD SER A,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRX-P-A-CL,Gabelli Healthcare PFD SER A,NYSE,Stock,2020-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GRZZ,Grizzle Growth ETF,NYSE ARCA,ETF,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GS,Goldman Sachs Group Inc,NYSE,Stock,1999-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GS-P-A,Goldman Sachs Group Inc,NYSE,Stock,2005-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GS-P-C,Goldman Sachs Group Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GS-P-D,Goldman Sachs Group Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GS-P-J,Goldman Sachs Group Inc,NYSE,Stock,2013-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GS-P-K,Goldman Sachs Group Inc,NYSE,Stock,2014-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSAH,,NYSE,Stock,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSAQ,Global Synergy Acquisition Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSAQU,Global Synergy Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSAQW,Global Synergy Acquisition Corp - Warrants (01/01/2025),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSAT,Globalstar Inc,NYSE MKT,Stock,2006-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSBC,Great Southern Bancorp Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSBD,Goldman Sachs BDC Inc,NYSE,Stock,2015-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSEE,GOLDMAN SACHS MARKETBETA EMERGING MARKETS EQUITY ETF ,BATS,ETF,2020-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSEU,GOLDMAN SACHS ACTIVEBETA(R) EUROPE EQUITY ETF ,NYSE ARCA,ETF,2016-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSEV,Gores Holdings VII Inc - Class A,NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSEVU,Gores Holdings VII Inc - Units (1 Ord Share Class A & 1/8 War),NASDAQ,Stock,2021-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSEVW,Gores Holdings VII Inc - Warrants (04/02/2026),NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSEW,Goldman Sachs Equal Weight U.S. Large Cap Equity ETF,BATS,ETF,2017-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSFP,Goldman Sachs Future Planet Equity ETF,NYSE ARCA,ETF,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSG,iShares S&P GSCI Commodity-Indexed Trust,NYSE ARCA,ETF,2006-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSHD,Goosehead Insurance Inc - Class A,NASDAQ,Stock,2018-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSID,Goldman Sachs MarketBeta International Equity ETF,BATS,ETF,2020-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSIE,Goldman Sachs ActiveBeta International Equity ETF,NYSE ARCA,ETF,2015-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSIG,GOLDMAN SACHS ACCESS INVESTMENT GRADE CORPORATE 1-5 YEAR BOND ETF ,NYSE ARCA,ETF,2020-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSIT,GSI Technology Inc,NASDAQ,Stock,2007-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSJY,GOLDMAN SACHS ACTIVEBETA(R) JAPAN EQUITY ETF ,NYSE ARCA,ETF,2016-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSK,Glaxosmithkline plc,NYSE,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSKY,GreenSky Inc - Class A,NASDAQ,Stock,2018-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSL,Global Ship Lease Inc - Class A,NYSE,Stock,2008-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSL-P-B,Global Ship Lease Inc Depository Shares Series B,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSLC,Goldman Sachs ActiveBeta U.S. Large Cap Equity ETF,NYSE ARCA,ETF,2015-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSLD,Global Ship Lease Inc,NYSE,Stock,2019-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSM,Ferroglobe Plc,NASDAQ,Stock,2009-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSMG,Glory Star New Media Group Holdings Ltd,NASDAQ,Stock,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSMGW,Glory Star New Media Group Holdings Ltd,NASDAQ,Stock,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSP,Barclays Bank PLC,NYSE ARCA,ETF,2006-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSPY,GOTHAM ENHANCED 500 ETF ,NYSE ARCA,ETF,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSQB,G Squared Ascend II Inc - Class A,NYSE,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSQB-U,G Squared Ascend II Inc - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSQB-WS,G Squared Ascend II Inc - Warrants (31/12/2026),NYSE,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSQD,G Squared Ascend I Inc - Class A,NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSQD-U,G Squared Ascend I Inc - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSQD-WS,G Squared Ascend I Inc - Warrants (01/02/2026),NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSRMU,GSR II Meteora Acquisition Corp - Units (1 Ord Class A 1/16 Rights & 1 War),NASDAQ,Stock,2022-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSSC,Goldman Sachs ActiveBeta U.S. Small Cap Equity ETF,NYSE ARCA,ETF,2017-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSST,Goldman Sachs Access Ultra Short Bond ETF,BATS,ETF,2019-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSUS,Goldman Sachs MarketBeta U.S. Equity ETF,BATS,ETF,2020-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSV,Gold Standard Ventures Corp,NYSE MKT,Stock,2012-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GSY,Invesco Ultra Short Duration ETF,NYSE ARCA,ETF,2008-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GT,Goodyear Tire & Rubber Company,NASDAQ,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTAC,Global Technology Acquisition Corp I - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTACU,Global Technology Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTACW,Global Technology Acquisition Corp I - Warrants (19/10/2026),NASDAQ,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTBP,GT Biopharma Inc,NASDAQ,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTE,Gran Tierra Energy Inc,NYSE MKT,Stock,2005-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTEC,Greenland Technologies Holding Corp,NASDAQ,Stock,2018-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTEK,Goldman Sachs Future Tech Leaders Equity ETF,NYSE ARCA,ETF,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTES,Gates Industrial Corporation plc,NYSE,Stock,2018-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTH,Genetron Holdings Ltd,NASDAQ,Stock,2020-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTHX,G1 Therapeutics Inc,NASDAQ,Stock,2017-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTIM,Good Times Restaurants Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTIP,Goldman Sachs Access Inflation Protected USD Bond ETF,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTLB,Gitlab Inc - Class A,NASDAQ,Stock,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTLS,Chart Industries Inc,NYSE,Stock,2006-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTN,Gray Television Inc,NYSE,Stock,2002-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTN-A,Gray Television Inc - Class A,NYSE,Stock,1993-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTO,Invesco Total Return Bond ETF,NYSE ARCA,ETF,2016-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTPA,Gores Technology Partners Inc - Class A,NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTPAU,Gores Technology Partners Inc - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTPAW,Gores Technology Partners Inc - Warrants (28/02/2028),NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTPB,Gores Technology Partners II Inc - Class A,NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTPBU,Gores Technology Partners II Inc - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTPBW,Gores Technology Partners II Inc - Warrants (28/02/2028),NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTR,WisdomTree Target Range Fund,NASDAQ,ETF,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTX,Garrett Motion Inc - New,NASDAQ,Stock,2018-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTXAP,Garrett Motion Inc,NASDAQ,Stock,2021-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTY,Getty Realty Corp,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GTYH,GTY Technology Holdings Inc,NASDAQ,Stock,2016-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GUG,Guggenheim Active Allocation Fund,NYSE,Stock,2021-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GULF,WISDOMTREE MIDDLE EAST DIVIDEND FUND NA,NASDAQ,ETF,2008-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GUNR,FlexShares Global Upstream Natural Resources Index Fund,NYSE ARCA,ETF,2011-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GURE,Gulf Resources Inc,NASDAQ,Stock,2006-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GURU,Global X Guru Index ETF,NYSE ARCA,ETF,2012-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GUSH,Direxion Daily S&P Oil & Gas Exp. & Prod. Bull 2X Shares,NYSE ARCA,ETF,2015-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GUT,Gabelli Utility Trust,NYSE,ETF,1999-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GUT-P-C,Gabelli Utility Trust The 5375 Series C Cumulative Preferred Shares,NYSE,Stock,2016-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GUT-R,Gabelli Utility Trust The Rights expiring April 14 2021,NYSE,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GUT-R-W,Gabelli Utility Trust The Rights expiring April 14 2021 When Issued,NYSE,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GVA,Granite Construction Inc,NYSE,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GVAL,Cambria Global Value ETF,BATS,ETF,2014-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GVCI,Green Visor Financial Technology Acquisition Corp I - Class A,NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GVCIU,Green Visor Financial Technology Acquisition Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GVCIW,Green Visor Financial Technology Acquisition Corp I - Warrants (27/10/2026),NASDAQ,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GVI,iShares Intermediate Government/Credit Bond ETF,BATS,ETF,2007-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GVIP,Goldman Sachs Hedge IND VIP ETF,NYSE ARCA,ETF,2016-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GVP,GSE Systems Inc,NASDAQ,Stock,1995-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWAV,Greenwave Technology Solutions Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWGH,GWG Holdings Inc,NASDAQ,Stock,2014-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWH,ESS Tech Inc,NYSE,Stock,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWH-WS,ESS Tech Inc Warrant,NYSE,Stock,2021-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWII,Good Works II Acquisition Corp,NASDAQ,Stock,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWIIW,Good Works II Acquisition Corp - Warrants (01/02/2028),NASDAQ,Stock,2021-08-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWRE,Guidewire Software Inc,NYSE,Stock,2012-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWRS,Global Water Resources Inc,NASDAQ,Stock,2016-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWW,W.W. Grainger Inc,NYSE,Stock,1984-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GWX,SPDR S&P International Small Cap ETF,NYSE ARCA,ETF,2007-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GXC,SPDR S&P China ETF,NYSE ARCA,ETF,2007-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GXG,Global X MSCI Colombia ETF,NYSE ARCA,ETF,2009-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GXII,GX Acquisition Corp II - Class A,NASDAQ,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GXIIU,GX Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GXIIW,GX Acquisition Corp II - Warrants (17/03/2026),NASDAQ,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GXO,GXO Logistics Inc,NYSE,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GXO-W,GXO Logistics Inc WhenIssued,NYSE,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GXTG,Global X Thematic Growth ETF,NASDAQ,ETF,2019-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GYB,CABCO Series 2004101 Trust Goldman Sachs Capital I Floating Rate Callable Certificates,NYSE,Stock,2004-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GYLD,Arrow Dow Jones Global Yield ETF,NYSE ARCA,ETF,2012-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "GYRO,Gyrodyne LLC,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "H,Hyatt Hotels Corporation - Class A,NYSE,Stock,2009-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HA,Hawaiian Holdings Inc,NASDAQ,Stock,1995-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAAC,Health Assurance Acquisition Corp - Class A,NASDAQ,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAACU,Health Assurance Acquisition Corp - Units (1 Ord Class A & 1/4 War),NASDAQ,Stock,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAACW,Health Assurance Acquisition Corp - Warrants(12/11/2025),NASDAQ,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HACK,ETFMG Prime Cyber Security ETF,NYSE ARCA,ETF,2014-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAE,Haemonetics Corp,NYSE,Stock,1991-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAFC,Hanmi Financial Corp,NASDAQ,Stock,1997-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAIA,Healthcare AI Acquisition Corp - Class A,NASDAQ,Stock,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAIAU,Healthcare AI Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAIAW,Healthcare AI Acquisition Corp - Warrants (07/12/2026),NASDAQ,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAIL,SPDR S&P Kensho Smart Mobility ETF,NYSE ARCA,ETF,2017-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAIN,Hain Celestial Group Inc,NASDAQ,Stock,1994-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAL,Halliburton Company,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HALL,Hallmark Financial Services Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HALO,Halozyme Therapeutics Inc,NASDAQ,Stock,2004-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAO,INVESCO CHINA SMALL CAP ETF,NYSE ARCA,ETF,2008-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAP,VanEck Natural Resources ETF,NYSE ARCA,ETF,2008-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAPP,Happiness Development Group Ltd - Class A,NASDAQ,Stock,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAPY,Harbor Corporate Culture Leaders ETF,NYSE ARCA,ETF,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HARP,Harpoon Therapeutics Inc,NASDAQ,Stock,2019-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HART,IQ Healthy Hearts ETF,NYSE ARCA,ETF,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAS,Hasbro Inc,NASDAQ,Stock,1984-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HASI,Hannon Armstrong Sustainable Infrastructure capital Inc,NYSE,Stock,2013-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAUS,Home Appreciation U.S. REIT ETF,BATS,ETF,2022-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAUZ,Xtrackers International Real Estate ETF,NYSE ARCA,ETF,2013-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAWX,iShares Currency Hedged MSCI ACWI ex U.S. ETF,NYSE ARCA,ETF,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAYN,Haynes International Inc,NASDAQ,Stock,2007-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HAYW,Hayward Holdings Inc,NYSE,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBAN,Huntington Bancshares Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBANM,Huntington Bancshares Inc,NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBANP,Huntington Bancshares Inc,NASDAQ,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBB,Hamilton Beach Brands Holding Co - Class A,NYSE,Stock,2017-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBCP,Home Bancorp Inc,NASDAQ,Stock,2008-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBI,Hanesbrands Inc,NYSE,Stock,2006-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBIO,Harvard Bioscience Inc,NASDAQ,Stock,2001-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBM,Hudbay Minerals Inc,NYSE,Stock,2009-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBNC,Horizon Bancorp Inc (IN),NASDAQ,Stock,2001-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBP,Huttig Building Products Inc,NASDAQ,Stock,2009-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HBT,HBT Financial Inc,NASDAQ,Stock,2019-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCA,HCA Healthcare Inc,NYSE,Stock,2011-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCAR,Healthcare Services Acquisition Corp - Class A,NASDAQ,Stock,2021-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCARU,Healthcare Services Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCARW,Healthcare Services Acquisition Corp - Warrants (18/11/2025),NASDAQ,Stock,2021-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCAT,Health Catalyst Inc,NASDAQ,Stock,2019-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCC,Warrior Met Coal Inc,NYSE,Stock,2017-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCCI,Heritage-Crystal Clean Inc,NASDAQ,Stock,2008-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCDI,Harbor Custom Development Inc,NASDAQ,Stock,2020-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCDIP,Harbor Custom Development Inc,NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCDIW,Harbor Custom Development Inc - Warrants (09/05/2026),NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCDIZ,Harbor Custom Development Inc - Warrants (07/10/2026),NASDAQ,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCI,HCI Group Inc,NYSE,Stock,2008-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCIC,Hennessy Capital Investment Corp V - Class A,NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCICU,Hennessy Capital Investment Corp V - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCICW,Hennessy Capital Investment Corp V - Warrants (15/01/2025),NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCII,Hudson Executive Investment Corp II - Class A,NASDAQ,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCIIU,Hudson Executive Investment Corp II - Units (1 Ord Class A & 1/4 War),NASDAQ,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCIIW,Hudson Executive Investment Corp II - Warrants (31/01/2027),NASDAQ,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCKT,Hackett Group Inc (The),NASDAQ,Stock,1998-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCM,HUTCHMED (China) Ltd,NASDAQ,Stock,2016-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCMA,Hcm Acquisition Corp - Class A,NASDAQ,Stock,2022-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCMAU,Hcm Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCMAW,Hcm Acquisition Corp - Warrants (20/01/2027),NASDAQ,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCNE,Jaws Hurricane Acquisition Corp - Class A,NASDAQ,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCNEU,Jaws Hurricane Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCNEW,Jaws Hurricane Acquisition Corp - Warrants (26/03/2026),NASDAQ,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCOM,Hartford Schroders Commodity Strategy ETF,NYSE ARCA,ETF,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCP,HashiCorp Inc - Class A,NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCRB,Hartford Core Bond ETF,BATS,ETF,2020-02-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCSG,Healthcare Services Group Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCTI,Healthcare Triangle Inc,NASDAQ,Stock,2021-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCVI,Hennessy Capital Investment Corp VI - Class A,NASDAQ,Stock,2021-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCVIU,Hennessy Capital Investment Corp VI - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCVIW,Hennessy Capital Investment Corp VI - Warrants (10/06/2026),NASDAQ,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCWB,HCW Biologics Inc,NASDAQ,Stock,2021-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HCXY,Hercules Capital Inc 625 Notes due 2033,NYSE,Stock,2018-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HD,Home Depot Inc,NYSE,Stock,1981-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDAW,XTRACKERS MSCI ALL WORLD EX US HIGH DIVIDEND YIELD EQUITY ETF ,NYSE ARCA,ETF,2015-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDB,HDFC Bank Ltd,NYSE,Stock,2001-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDEF,Xtrackers MSCI EAFE High Dividend Yield Equity ETF,NYSE ARCA,ETF,2015-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDG,ProShares Hedge Replication ETF,NYSE ARCA,ETF,2011-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDGE,Ranger Equity Bear ETF,NYSE ARCA,ETF,2011-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDIV,QRAFT AI-ENHANCED U.S. HIGH DIVIDEND ETF ,NYSE ARCA,ETF,2020-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDLB,UBS AG London Branch ETRACS Monthly Pay 2X Leveraged US High Divid Low Volatility ETN Ser B 09302044,NYSE ARCA,ETF,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDMV,FIRST TRUST HORIZON MANAGED VOLATILITY DEVELOPED INTERNATIONAL ETF ,NYSE ARCA,ETF,2016-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDRO,Defiance Next Gen H2 ETF,NYSE ARCA,ETF,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDSN,Hudson Technologies Inc,NASDAQ,Stock,1994-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HDV,iShares Core High Dividend ETF,NYSE ARCA,ETF,2011-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HE,Hawaiian Electric Industries Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEAR,Turtle Beach Corp,NASDAQ,Stock,2010-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEDJ,WisdomTree Europe Hedged Equity Fund,NYSE ARCA,ETF,2010-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEEM,iShares Currency Hedged MSCI Emerging Markets ETF,BATS,ETF,2014-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEES,H&E Equipment Services Inc,NASDAQ,Stock,2006-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEET,Hartford Schroders ESG US Equity ETF,BATS,ETF,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEFA,iShares Currency Hedged MSCI EAFE ETF,BATS,ETF,2014-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEGD,Swan Hedged Equity US Large Cap ETF,BATS,ETF,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEI,Heico Corp,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEI-A,Heico Corp - Class A,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HELE,Helen of Troy Ltd,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HELX,Franklin Genomic Advancements ETF,BATS,ETF,2020-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEP,Holly Energy Partners L.P.,NYSE,Stock,2004-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEPA,Hepion Pharmaceuticals Inc,NASDAQ,Stock,2014-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEPS,D-MARKET Electronic Services & Trading,NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEQ,John Hancock Hedged equity & Income Fund,NYSE,ETF,2011-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEQT,Simplify Hedged Equity ETF,NYSE ARCA,ETF,2021-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HERA,FTAC Hera Acquisition Corp - Class A,NASDAQ,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HERAU,FTAC Hera Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HERAW,FTAC Hera Acquisition Corp - Warrants (28/02/2026),NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HERD,PACER CASH COWS FUND OF FUNDS ETF ,NASDAQ,ETF,2019-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HERO,Global X Video Games & Esports ETF,NASDAQ,ETF,2019-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HES,Hess Corporation,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HESM,Hess Midstream LP - Class A,NYSE,Stock,2017-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEWC,iShares Currency Hedged MSCI Canada ETF,NYSE ARCA,ETF,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEWG,iShares Currency Hedged MSCI Germany ETF,NASDAQ,ETF,2014-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEWJ,iShares Currency Hedged MSCI Japan ETF,NYSE ARCA,ETF,2014-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEWU,iShares Currency Hedged MSCI United Kingdom ETF,NYSE ARCA,ETF,2015-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEXO,HEXO Corp,NASDAQ,Stock,2017-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HEZU,iShares Currency Hedged MSCI EMU ETF,NYSE ARCA,ETF,2014-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HFBL,Home Federal Bancorp Inc (Louisiana),NASDAQ,Stock,2007-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HFFG,HF Foods Group Inc,NASDAQ,Stock,2017-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HFGO,Hartford Large Cap Growth ETF,BATS,ETF,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HFRO,Highland Income Fund,NYSE,ETF,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HFRO-P-A,Highland Income Fund,NYSE,Stock,2019-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HFWA,Heritage Financial Corp,NASDAQ,Stock,1998-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HFXI,IQ 50 Percent Hedged FTSE International ETF,NYSE ARCA,ETF,2015-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HGBL,Heritage Global Inc,NASDAQ,Stock,2016-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HGEN,Humanigen Inc,NASDAQ,Stock,2013-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HGER,Harbor All-Weather Inflation Focus ETF,NYSE ARCA,ETF,2022-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HGH,Hartford Financial Services Group Inc,NYSE,Stock,2012-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HGLB,Highland Global Allocation Fund,NYSE,Stock,2019-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HGTY,Hagerty Inc - Class A,NYSE,Stock,2021-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HGTY-WS,Hagerty Inc - Warrants (01/01/9999),NYSE,Stock,2021-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HGV,Hilton Grand Vacations Inc,NYSE,Stock,2017-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHC,Howard Hughes Corporation,NYSE,Stock,2010-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHGC,HHG Capital Corp,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHGCR,HHG Capital Corp,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHGCU,HHG Capital Corp - Units (1 Ord 1 War & 1 Rts),NASDAQ,Stock,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHGCW,HHG Capital Corp - Warrants (25/02/2026),NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHH,ETFMG REAL ESTATE TECH ETF ,NYSE ARCA,ETF,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHLA,HH&L Acquisition Co - Class A,NYSE,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHLA-U,HH&L Acquisition Co - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHLA-WS,HH&L Acquisition Co - Warrants (02/04/2026),NYSE,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHR,HeadHunter Group PLC,NASDAQ,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HHS,Harte-Hanks Inc,NASDAQ,Stock,1993-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HI,Hillenbrand Inc,NYSE,Stock,2008-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIBB,Hibbett Inc,NASDAQ,Stock,1996-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIBL,Direxion Daily S&P 500 High Beta Bull 3X Shares,NYSE ARCA,Stock,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIBS,Direxion Daily S&P 500 High Beta Bear 3X Shares,NYSE ARCA,Stock,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIE,Miller/Howard High Income Equity Fund,NYSE,ETF,2014-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIFS,Hingham Institution For Savings,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIG,Hartford Financial Services Group Inc,NYSE,Stock,1995-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIG-P-G,Hartford Financial Services Group Inc,NYSE,Stock,2018-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIGA,H.I.G. Acquisition Corp - Class A,NYSE,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIGA-U,H.I.G. Acquisition Corp Units each consisting of one Class A ordinary share 0.0001 par value and onethird of one redeemable warrant,NYSE,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIGA-WS,H.I.G. Acquisition Corp Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2020-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIHO,Highway Holdings Ltd,NASDAQ,Stock,1996-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HII,Huntington Ingalls Industries Inc,NYSE,Stock,2011-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIII,Hudson Executive Investment Corp III - Class A,NASDAQ,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIIIU,Hudson Executive Investment Corp III - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIIIW,Hudson Executive Investment Corp III - Warrants (22/02/2026),NASDAQ,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIL,Hill International Inc,NYSE,Stock,2004-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HILS,Hillstream BioPharma Inc,NASDAQ,Stock,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIMS,Hims & Hers Health Inc - Class A,NYSE,Stock,2019-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIMX,Himax Technologies,NASDAQ,Stock,2006-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIO,Western Asset High Income Opportunity Fund Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIPO,Hippo Holdings Inc,NYSE,Stock,2021-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIPO-WS,Hippo Holdings Inc - Warrants (16/09/2025),NYSE,Stock,2021-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIPS,GraniteShares HIPS US High Income ETF,NYSE ARCA,ETF,2015-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HISF,First Trust High Income Strategic Focus ETF,NASDAQ,ETF,2014-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HITI,High Tide Inc,NASDAQ,Stock,2021-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIVE,HIVE Blockchain Technologies Ltd,NASDAQ,Stock,2018-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIW,Highwoods Properties Inc,NYSE,Stock,1994-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HIX,Western Asset High Income Fund II Inc,NYSE,ETF,1998-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HJEN,Direxion Hydrogen ETF,NYSE ARCA,ETF,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HJPX,ISHARES CURRENCY HEDGED JPX-NIKKEI 400 ETF ,NYSE ARCA,ETF,2015-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HJV,MS Structured Asset Corp SATURNS JC Penney Company Inc DebBkd Series 20071 70,NYSE,Stock,2007-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HKND,Humankind US Stock ETF,NYSE ARCA,ETF,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HL,Hecla Mining Company,NYSE,Stock,1985-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HL-P-B,Hecla Mining Company,NYSE,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLAH,Hamilton Lane Alliance Holdings I Inc - Class A,NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLAHU,Hamilton Lane Alliance Holdings I Inc - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLAHW,Hamilton Lane Alliance Holdings I Inc - Warrants (12/01/2026),NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLAL,Wahed FTSE USA Shariah ETF,NASDAQ,ETF,2019-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLBZ,Helbiz Inc,NASDAQ,Stock,2019-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLBZW,Helbiz Inc - Warrants (28/10/2024),NASDAQ,Stock,2019-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLF,Herbalife Nutrition Ltd,NYSE,Stock,2004-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLG,Hailiang Education Group Inc,NASDAQ,Stock,2015-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLGE,HARTFORD LONGEVITY ECONOMY ETF ,NYSE ARCA,ETF,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLGN,Heliogen Inc - Class A,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLGN-WS,Heliogen Inc Wt,NYSE,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLI,Houlihan Lokey Inc - Class A,NYSE,Stock,2015-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLIO,Helios Technologies Inc,NYSE,Stock,1997-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLIT,Harmonic Inc,NASDAQ,Stock,1995-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLLY,Holley Inc - Class A,NYSE,Stock,2020-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLLY-WS,Holley Inc - Warrants (30/11/2027),NYSE,Stock,2020-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLM-P,Hillman Group Capital Trust Preferred Stock,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLMN,Hillman Solutions Corp,NASDAQ,Stock,2020-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLNE,Hamilton Lane Inc - Class A,NASDAQ,Stock,2017-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLT,Hilton Worldwide Holdings Inc,NYSE,Stock,2013-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLTH,Cue Health Inc,NASDAQ,Stock,2021-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLX,Helix Energy Solutions Group Inc,NYSE,Stock,1997-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HLXA,Helix Acquisition Corp - Class A,NASDAQ,Stock,2020-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMA,Heartland Media Acquisition Corp - Class A,NYSE,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMA-U,Heartland Media Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMA-WS,Heartland Media Acquisition Corp - Warrants(01/01/9999),NYSE,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMC,Honda Motor,NYSE,Stock,1980-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMCO,HumanCo Acquisition Corp - Class A,NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMCOU,HumanCo Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMCOW,HumanCo Acquisition Corp - Warrants (08/12/2025),NASDAQ,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMHC,Houghton Mifflin Harcourt Company,NASDAQ,Stock,2013-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMLP,Hoegh LNG Partners LP,NYSE,Stock,2014-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMLP-P-A,Hoegh LNG Partners LP,NYSE,Stock,2017-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMN,Horace Mann Educators Corp,NYSE,Stock,1991-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMNF,HMN Financial Inc,NASDAQ,Stock,1994-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMOP,Hartford Municipal Opportunities ETF,NYSE ARCA,ETF,2017-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMPT,Home Point Capital Inc,NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMST,HomeStreet Inc,NASDAQ,Stock,2012-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMTV,Hemisphere Media Group Inc - Class A,NASDAQ,Stock,2013-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HMY,Harmony Gold Mining Co Ltd,NYSE,Stock,1996-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNDL,Nasdaq 7HANDL Index ETF,NASDAQ,ETF,2018-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNGR,Hanger Inc,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNI,HNI Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNNA,Hennessy Advisors Inc,NASDAQ,Stock,2002-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNNAZ,Hennessy Advisors Inc,NASDAQ,Stock,2021-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNP,Huaneng Power International Inc,NYSE,Stock,1994-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNRA-U,HNR Acquisition Corp - Units (1 Ord & 1 War),NYSE MKT,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNRG,Hallador Energy Company,NASDAQ,Stock,1997-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNST,Honest Company Inc (The ),NASDAQ,Stock,2021-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HNW,Pioneer Diversified High Income Fund Inc,NYSE MKT,ETF,2007-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOFT,Hooker Furnishings Corporation,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOFV,Hall of Fame Resort & Entertainment Company,NASDAQ,Stock,2020-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOFVW,Hall of Fame Resort & Entertainment Company - Warrants (24/01/2023),NASDAQ,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOG,Harley-Davidson Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOLD,AdvisorShares North Square McKee Core Reserves ETF,NYSE ARCA,ETF,2014-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOLI,Hollysys Automation Technologies Ltd,NASDAQ,Stock,2008-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOLX,Hologic Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOM,LifeGoal Home Down Payment Investment ETF,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOMB,Home Bancshares Inc,NYSE,Stock,2006-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOMZ,Hoya Capital Housing ETF,NYSE ARCA,ETF,2019-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HON,Honeywell International Inc,NASDAQ,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HONE,HarborOne Bancorp Inc,NASDAQ,Stock,2016-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOOD,Robinhood Markets Inc - Class A,NASDAQ,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOOK,Hookipa Pharma Inc,NASDAQ,Stock,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOPE,Hope Bancorp Inc,NASDAQ,Stock,1998-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HORI,Emerging Markets Horizon Corp - Class A,NASDAQ,Stock,2022-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HORIU,Emerging Markets Horizon Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HORIW,Emerging Markets Horizon Corp - Warrants (16/11/2026),NASDAQ,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOTH,Hoth Therapeutics Inc,NASDAQ,Stock,2019-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOTL,Kelly Hotel & Lodging Sector ETF,NYSE ARCA,ETF,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOUR,Hour Loop Inc,NASDAQ,Stock,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOV,Hovnanian Enterprises Inc - Class A,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOVNP,Hovnanian Enterprises Inc,NASDAQ,Stock,2005-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HOWL,Werewolf Therapeutics Inc,NASDAQ,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HP,Helmerich & Payne Inc,NYSE,Stock,1980-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPE,Hewlett Packard Enterprise Company,NYSE,Stock,2015-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPF,John Hancock Preferred Income Fund II,NYSE,ETF,2002-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPI,John Hancock Preferred Income Fund,NYSE,ETF,2003-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPK,HighPeak Energy Inc,NASDAQ,Stock,2020-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPKEW,HighPeak Energy Inc - Warrants (21/08/2025),NASDAQ,Stock,2020-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPLT,Home Plate Acquisition Corp - Class A,NASDAQ,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPLTU,Home Plate Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPLTW,Home Plate Acquisition Corp - Warrants (30/09/2026),NASDAQ,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPP,Hudson Pacific Properties Inc,NYSE,Stock,2010-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPP-P-C,Hudson Pacific Properties Inc,NYSE,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPQ,HP Inc,NYSE,Stock,1962-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPS,John Hancock Preferred Income Fund III,NYSE,ETF,2003-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPX,HPX Corp - Class A,NYSE,Stock,2020-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPX-U,HPX Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HPX-WS,HPX Corp - Warrants (14/07/2025),NYSE,Stock,2020-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HQH,Tekla Healthcare Investors,NYSE,ETF,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HQI,HireQuest Inc,NASDAQ,Stock,2002-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HQL,Tekla Life Sciences Investors,NYSE,ETF,1992-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HQY,Healthequity Inc,NASDAQ,Stock,2014-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HR,Healthcare Realty Trust Inc,NYSE,Stock,1993-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HRB,H&R Block Inc,NYSE,Stock,1986-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HRI,Herc Holdings Inc,NYSE,Stock,2006-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HRL,Hormel Foods Corp,NYSE,Stock,1990-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HRMY,Harmony Biosciences Holdings Inc,NASDAQ,Stock,2020-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HROW,Harrow Health Inc,NASDAQ,Stock,2007-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HROWL,Harrow Health Inc,NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HRT,HireRight Holdings Corp,NYSE,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HRTG,Heritage Insurance Holdings Inc,NYSE,Stock,2014-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HRTX,Heron Therapeutics Inc,NASDAQ,Stock,1987-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HRZN,Horizon Technology Finance Corp,NASDAQ,Stock,2010-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSAC,Health Sciences Acquisitions Corp,NASDAQ,Stock,2019-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSAQ,Health Sciences Acquisitions Corp 2,NASDAQ,Stock,2020-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSBC,HSBC Holdings plc,NYSE,Stock,1999-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSC,Harsco Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSCZ,iShares Currency Hedged MSCI EAFE Small-Cap ETF,NYSE ARCA,ETF,2015-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSDT,Helius Medical Technologies Inc - Class A,NASDAQ,Stock,2014-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSIC,Henry Schein Inc,NASDAQ,Stock,1995-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSII,Heidrick & Struggles International Inc,NASDAQ,Stock,1999-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSKA,Heska Corp (Restricted Voting),NASDAQ,Stock,1997-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSMV,First Trust Horizon Managed Volatility Small/Mid ETF,NYSE ARCA,ETF,2020-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSON,Hudson Global Inc,NASDAQ,Stock,2003-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSRT,Hartford Short Duration ETF,BATS,ETF,2018-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HST,Host Hotels & Resorts Inc,NASDAQ,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSTM,Healthstream Inc,NASDAQ,Stock,2000-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSTO,Histogen Inc,NASDAQ,Stock,2013-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSUN,Hartford Sustainable Income ETF,BATS,ETF,2021-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HSY,Hershey Company,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HT,Hersha Hospitality Trust,NYSE,Stock,1999-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HT-P-C,Hersha Hospitality Trust 6875 Series C Cumulative Redeemable Preferred Shares of Beneficial Interest,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HT-P-D,Hersha Hospitality Trust 650 Series D Cumulative Redeemable Preferred Shares of Beneficial Interest 001 par value per share,NYSE,Stock,2016-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HT-P-E,Hersha Hospitality Trust 650 Series E Cumulative Redeemable Preferred Shares of Beneficial Interest,NYSE,Stock,2016-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTA,Healthcare Trust of America Inc - Class A,NYSE,Stock,2012-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTAB,Hartford Schroders Tax Aware Bond ETF,NYSE ARCA,ETF,2018-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTAQ,Hunt Companies Acquisition Corp I - Class A,NYSE,Stock,2021-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTAQ-U,Hunt Companies Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTAQ-WS,Hunt Companies Acquisition Corp I - Warrants (01/01/9999),NYSE,Stock,2021-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTBI,HomeTrust Bancshares Inc,NASDAQ,Stock,2012-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTBK,Heritage Commerce Corp,NASDAQ,Stock,1998-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTBX,Heat Biologics Inc,NASDAQ,Stock,2013-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTCR,HeartCore Enterprises Inc,NASDAQ,Stock,2022-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTD,John Hancock Tax- Advantaged Dividend Income,NYSE,ETF,2004-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTEC,ROBO Global Healthcare Technology and Innovation ETF,NYSE ARCA,ETF,2019-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTFB,Horizon Technology Finance Corp,NYSE,Stock,2021-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTGC,Hercules Capital Inc,NYSE,Stock,2005-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTGM,HTG Molecular Diagnostics Inc,NASDAQ,Stock,2015-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTH,Hilltop Holdings Inc,NYSE,Stock,2004-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTHT,Huazhu Group Ltd,NASDAQ,Stock,2010-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTIA,Healthcare Trust Inc,NASDAQ,Stock,2019-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTIBP,Healthcare Trust Inc,NASDAQ,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTLD,Heartland Express Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTLF,Heartland Financial USA Inc,NASDAQ,Stock,1999-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTLFP,Heartland Financial USA Inc,NASDAQ,Stock,2020-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTOO,Fusion Fuel Green Ltd - Class A,NASDAQ,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTOOW,Fusion Fuel Green Ltd - Warrants (01/01/2023),NASDAQ,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTPA,Highland Transcend Partners I Corp - Class A,NYSE,Stock,2021-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTPA-U,Highland Transcend Partners I Corp Units each consisting of one Class A ordinary share and onethird of one redeemable warrant,NYSE,Stock,2020-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTPA-WS,Highland Transcend Partners I Corp - Warrants (02/12/2025),NYSE,Stock,2021-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTRB,Hartford Total Return Bond ETF,NYSE ARCA,ETF,2017-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTUS,HULL TACTICAL US ETF ,NYSE ARCA,ETF,2015-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTY,John Hancock TaxAdvantaged Global Shareholder Yield Fund,NYSE,ETF,2007-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTZ,Hertz Global Holdings Inc (New),NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HTZWW,Hertz Global Holdings Inc - Warrants (30/06/2051),NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUBB,Hubbell Inc,NYSE,Stock,2015-12-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUBG,Hub Group Inc - Class A,NASDAQ,Stock,1996-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUBS,HubSpot Inc,NYSE,Stock,2014-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUDI,Huadi International Group Co Ltd,NASDAQ,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUGE,FSD Pharma Inc - Class B - Class B (Sub Voting),NASDAQ,Stock,2018-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUGS,USHG Acquisition Corp - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUGS-U,USHG Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUGS-WS,USHG Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUIZ,Huize Holding Ltd,NASDAQ,Stock,2020-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUM,Humana Inc,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUMA,Humacyte Inc,NASDAQ,Stock,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUMAW,Humacyte Inc - Warrants (27/08/2026),NASDAQ,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUN,Huntsman Corp,NYSE,Stock,2005-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HURC,Hurco Companies Inc,NASDAQ,Stock,1989-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HURN,Huron Consulting Group Inc,NASDAQ,Stock,2004-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUSA,Houston American Energy Corp,NYSE MKT,Stock,2002-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUSN,Hudson Capital Inc,NASDAQ,Stock,2017-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUSV,First Trust Horizon Managed Volatility Domestic ETF,NYSE ARCA,ETF,2016-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUT,Hut 8 Mining Corp,NASDAQ,Stock,2018-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HUYA,HUYA Inc,NYSE,Stock,2018-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HVAL,ALPS Hillman Active Value ETF,NYSE ARCA,ETF,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HVBC,HV Bancorp Inc,NASDAQ,Stock,2017-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HVT,Haverty Furniture Cos. Inc,NYSE,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HVT-A,Haverty Furniture Cos. Inc - Class A,NYSE,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWBK,Hawthorn Bancshares Inc,NASDAQ,Stock,1999-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWC,Hancock Whitney Corp,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWCPZ,Hancock Whitney Corporation 6.25 Subordinated Notes due 2060,NASDAQ,Stock,2020-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWEL,Healthwell Acquisition Corp I - Class A,NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWELU,Healthwell Acquisition Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWELW,Healthwell Acquisition Corp I - Warrants (01/04/2028),NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWKN,Hawkins Inc,NASDAQ,Stock,1993-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWKZ,Hawks Acquisition Corp - Class A,NYSE,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWKZ-U,Hawks Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWKZ-WS,Hawks Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HWM,Howmet Aerospace Inc,NYSE,Stock,1962-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HXL,Hexcel Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HY,Hyster-Yale Materials Handling Inc - Class A,NYSE,Stock,2012-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYAC,Haymaker Acquisition Corp III - Class A,NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYACU,Haymaker Acquisition Corp III - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYACW,Haymaker Acquisition Corp III - Warrants (01/03/2026),NASDAQ,Stock,2017-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYB,New America High Income Fund Inc,NYSE,ETF,1988-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYBB,iShares BB Rated Corporate Bond ETF,NYSE ARCA,ETF,2020-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYBL,SPDR Blackstone High Income ETF,BATS,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYD,VanEck High Yield Muni ETF,BATS,ETF,2009-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYDB,iShares High Yield Bond Factor ETF,BATS,ETF,2017-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYDR,Global X Hydrogen ETF,NASDAQ,ETF,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYDW,Xtrackers Low Beta High Yield Bond ETF,NYSE ARCA,ETF,2018-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYEM,VanEck Emerging Markets High Yield Bond ETF,NYSE ARCA,ETF,2012-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYFM,Hydrofarm Holdings Group Inc,NASDAQ,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYG,iShares iBoxx USD High Yield Corporate Bond ETF,NYSE ARCA,ETF,2007-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYGH,iShares Interest Rate Hedged High Yield Bond ETF,NYSE ARCA,ETF,2014-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYGV,FlexShares High Yield Value Scored Bond Index ETF,NYSE ARCA,ETF,2018-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYHG,ProShares High Yield-Interest Rate Hedged ETF,BATS,ETF,2013-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYI,Western Asset High Yield Defined Opportunity Fund Inc,NYSE,ETF,2010-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYIN,WisdomTree Alternative Income Fund,BATS,ETF,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYLB,Xtrackers USD High Yield Corporate Bond ETF,NYSE ARCA,ETF,2016-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYLD,High Yield ETF,NYSE ARCA,ETF,2010-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYLN,Hyliion Holdings Corporation - Class A,NYSE,Stock,2019-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYLN-WS,Hyliion Holdings Corp Wt Exp 10012025,NYSE,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYLS,First Trust Tactical High Yield ETF,NASDAQ,ETF,2013-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYLV,IQ S&P HIGH YIELD LOW VOLATILITY BOND ETF ,NYSE ARCA,ETF,2017-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYMB,SPDR Nuveen Bloomberg High Yield Municipal Bond ETF,NYSE ARCA,ETF,2011-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYMC,Hycroft Mining Holding Corporation - Class A,NASDAQ,Stock,2018-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYMCL,Hycroft Mining Holding Corporation - Warrants (01/01/9999),NASDAQ,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYMCW,Hycroft Mining Holding Corporation - Warrants(12/02/2025),NASDAQ,Stock,2018-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYMCZ,Hycroft Mining Holding Corporation - Warrants(22/10/2022),NASDAQ,Stock,2017-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYMU,BlackRock High Yield Muni Income Bond ETF,BATS,ETF,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYND,WISDOMTREE NEGATIVE DURATION HIGH YIELD BOND FUND NA,NASDAQ,ETF,2013-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYPR,Hyperfine Inc - Class A,NASDAQ,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYRE,HyreCar Inc,NASDAQ,Stock,2018-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYRM,Xtrackers Risk Managed USD High Yield Strategy ETF,NYSE ARCA,ETF,2022-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYS,PIMCO 0-5 Year High Yield Corporate Bond Index Exchange-Traded Fund,NYSE ARCA,ETF,2011-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYT,BlackRock Corporate High Yield Fund Inc,NYSE,ETF,2003-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYTR,CP High Yield Trend ETF,NYSE ARCA,ETF,2020-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYUP,Xtrackers High Beta High Yield Bond ETF,NYSE ARCA,ETF,2018-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYW,Hywin Holdings Ltd,NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYXF,iShares ESG Advanced High Yield Corporate Bond ETF,NASDAQ,ETF,2016-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYXU,iShares International High Yield Bond ETF,BATS,ETF,2012-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYZD,WisdomTree Interest Rate Hedged High Yield Bond Fund,NASDAQ,ETF,2013-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYZN,Hyzon Motors Inc - Class A,NASDAQ,Stock,2020-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HYZNW,Hyzon Motors Inc - Warrants (02/10/2025),NASDAQ,Stock,2020-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HZAC-U,Horizon Acquisition Corporation Units each consisting of one Class A and onethird of one Redeemable warrant,NYSE,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HZAC-WS,Vivid Seats Inc - Warrants (18/10/2026),NASDAQ,Stock,2020-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HZN,Horizon Global Corp,NYSE,Stock,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HZNP,Horizon Therapeutics Plc,NASDAQ,Stock,2011-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HZO,Marinemax Inc,NYSE,Stock,1998-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HZON,Horizon Acquisition Corp II - Class A,NYSE,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HZON-U,Horizon Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "HZON-WS,Horizon Acquisition Corporation II Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAA,IAA Inc,NYSE,Stock,2019-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAC,IAC InterActiveCorp. - New,NASDAQ,Stock,1993-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IACA-WS,Taboola.com Ltd - Warrants (29/06/2026),NASDAQ,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IACC,ION Acquisition Corp 3 Ltd - Class A,NYSE,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAE,ING Asia Pacific High Divid Eq Inco Fund,NYSE,ETF,2007-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAF,Aberdeen Australia Equity Fund Inc,NYSE MKT,ETF,1988-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAG,Iamgold Corp,NYSE,Stock,2003-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAGG,iShares International Aggregate Bond Fund,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAI,iShares U.S. Broker-Dealers ETF,NYSE ARCA,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAK,iShares U.S. Insurance ETF,NYSE ARCA,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAPR,Innovator International Developed Power Buffer ETF April,NYSE ARCA,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IART,Integra Lifesciences Holdings Corp,NASDAQ,Stock,1995-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAS,Integral Ad Science Holding Corp,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAT,iShares U.S. Regional Banks ETF,NYSE ARCA,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAU,iShares Gold Trust,NYSE ARCA,ETF,2005-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAUF,ISHARES GOLD STRATEGY ETF ,BATS,ETF,2018-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IAUM,iShares Gold Trust Micro,NYSE ARCA,ETF,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBA,Industrias Bachoco S.A.B. DE C.V.,NYSE,Stock,1997-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBB,iShares Biotechnology ETF,NASDAQ,ETF,2001-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBBQ,Invesco Nasdaq Biotechnology ETF,NASDAQ,ETF,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBCE,ISHARES IBONDS MAR 2023 TERM CORPORATE EX-FINANCIALS ETF ,NYSE ARCA,ETF,2013-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBCP,Independent Bank Corporation (Ionia MI),NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBD,Inspire Corporate Bond Impact ETF,NYSE ARCA,ETF,2017-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDD,iShares iBonds Mar 2023 Term Corporate ETF,NYSE ARCA,ETF,2013-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDN,iShares iBonds Dec 2022 Term Corporate ETF,NYSE ARCA,ETF,2015-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDO,iShares iBonds Dec 2023 Term Corporate ETF,NYSE ARCA,ETF,2015-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDP,iShares iBonds Dec 2024 Term Corporate ETF,NYSE ARCA,ETF,2015-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDQ,iShares iBonds Dec 2025 Term Corporate ETF,NYSE ARCA,ETF,2015-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDR,iShares iBonds Dec 2026 Term Corporate ETF,NYSE ARCA,ETF,2016-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDS,iShares iBonds Dec 2027 Term Corporate ETF,NYSE ARCA,ETF,2017-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDT,ISHARES IBONDS DEC 2028 TERM CORPORATE ETF ,NYSE ARCA,ETF,2018-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDU,iShares iBonds Dec 2029 Term Corporate ETF,NYSE ARCA,ETF,2019-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDV,iShares iBonds Dec 2030 Term Corporate ETF,NYSE ARCA,ETF,2020-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBDW,iShares iBonds Dec 2031 Term Corporate ETF,NYSE ARCA,ETF,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBER,Ibere Pharmaceuticals - Class A,NYSE,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBER-U,Ibere Pharmaceuticals - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBER-WS,Ibere Pharmaceuticals - Warrants (01/03/2028),NYSE,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBET,IBET SPORTS BETTING & GAMING ETF ,NASDAQ,ETF,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBEX,IBEX Ltd,NASDAQ,Stock,2020-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBHB,ISHARES IBONDS 2022 TERM HIGH YIELD AND INCOME ETF ,BATS,ETF,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBHC,ISHARES IBONDS 2023 TERM HIGH YIELD AND INCOME ETF ,BATS,ETF,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBHD,iShares iBonds 2024 Term High Yield and Income ETF,BATS,ETF,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBHE,ISHARES IBONDS 2025 TERM HIGH YIELD AND INCOME ETF ,BATS,ETF,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBHF,ISHARES IBONDS 2026 TERM HIGH YIELD AND INCOME ETF ,BATS,ETF,2020-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBHG,ISHARES IBONDS 2027 TERM HIGH YIELD AND INCOME ETF ,BATS,ETF,2021-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBHH,iShares iBonds 2028 Term High Yield and Income ETF,BATS,ETF,2022-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBHI,iShares iBonds 2029 Term High Yield and Income ETF,BATS,ETF,2022-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBIO,iBio Inc,NYSE MKT,Stock,2008-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBKCN,IBERIABANK Corp Dep Shs Repstg 1400th Int FxdFltg Non Cum Perp Pfd Ser D,NASDAQ,Stock,2019-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBKCO,IBKCO,NASDAQ,Stock,2016-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBKCP,IBKCP,NASDAQ,Stock,2015-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBKR,Interactive Brokers Group Inc - Class A,NASDAQ,Stock,2007-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBM,International Business Machines Corp,NYSE,Stock,1962-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBM-W,International Business Machines Corporation ExDistribution When Issued,NYSE,Stock,2021-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBMK,iShares iBonds Dec 2022 Term Muni Bond ETF,NYSE ARCA,ETF,2015-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBML,iShares iBonds Dec 2023 Term Muni Bond ETF,BATS,ETF,2017-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBMM,iShares iBonds Dec 2024 Term Muni Bond ETF,BATS,ETF,2018-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBMN,iShares iBonds Dec 2025 Term Muni Bond ETF,BATS,ETF,2018-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBMO,iShares iBonds Dec 2026 Term Muni Bond ETF,BATS,ETF,2019-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBMP,iShares iBonds Dec 2027 Term Muni Bond ETF,BATS,ETF,2019-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBMQ,ISHARES IBONDS DEC 2028 TERM MUNI BOND ETF ,BATS,ETF,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBN,ICICI Bank Ltd,NYSE,Stock,2000-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBND,SPDR(R) BLOOMBERG BARCLAYS INTERNATIONAL CORPORATE BOND ETF ,NYSE ARCA,ETF,2010-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBOC,International Bancshares Corp,NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBP,Installed Building Products Inc,NYSE,Stock,2014-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBRX,ImmunityBio Inc,NASDAQ,Stock,2015-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTB,iShares iBonds Dec 2022 Term Treasury ETF,NASDAQ,ETF,2020-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTD,iShares iBonds Dec 2023 Term Treasury ETF,NASDAQ,ETF,2020-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTE,iShares iBonds Dec 2024 Term Treasury ETF,NASDAQ,ETF,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTF,iShares iBonds Dec 2025 Term Treasury ETF,NASDAQ,ETF,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTG,ISHARES IBONDS DEC 2026 TERM TREASURY ETF ,NASDAQ,ETF,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTH,ISHARES IBONDS DEC 2027 TERM TREASURY ETF ,NASDAQ,ETF,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTI,ISHARES IBONDS DEC 2028 TERM TREASURY ETF ,NASDAQ,ETF,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTJ,ISHARES IBONDS DEC 2029 TERM TREASURY ETF ,NASDAQ,ETF,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTK,iShares iBonds Dec 2030 Term Treasury ETF,NASDAQ,ETF,2020-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTL,iShares iBonds Dec 2031 Term Treasury ETF,NASDAQ,ETF,2021-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBTX,Independent Bank Group Inc,NASDAQ,Stock,2013-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IBUY,Amplify Online Retail ETF,NYSE ARCA,ETF,2016-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICAD,Icad Inc,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICAP,InfraCap Equity Income Fund ETF,NYSE ARCA,ETF,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICCC,Immucell Corp,NASDAQ,Stock,1995-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICCH,ICC Holdings Inc,NASDAQ,Stock,2017-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICCM,IceCure Medical Ltd,NASDAQ,Stock,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICD,Independence Contract Drilling Inc,NYSE,Stock,2014-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICE,Intercontinental Exchange Inc,NYSE,Stock,2005-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICF,iShares Cohen & Steers REIT ETF,BATS,ETF,2001-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICFI,ICF International Inc,NASDAQ,Stock,2006-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICHR,Ichor Holdings Ltd,NASDAQ,Stock,2016-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICL,ICL Group Ltd,NYSE,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICLK,iClick Interactive Asia Group Ltd,NASDAQ,Stock,2017-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICLN,iShares Global Clean Energy ETF,NASDAQ,ETF,2008-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICLR,Icon Plc,NASDAQ,Stock,1998-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICMB,Investcorp Credit Management BDC Inc,NASDAQ,Stock,2014-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICNC,Iconic Sports Acquisition Corp - Class A,NYSE,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICNC-U,Iconic Sports Acquisition Corp Units,NYSE,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICNC-WS,Iconic Sports Acquisition Corp - Warrants (12/10/2026),NYSE,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICOL,iShares MSCI Colombia ETF,NYSE ARCA,ETF,2013-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICOW,Pacer Developed Markets International Cash Cows 100 ETF,BATS,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICPT,Intercept Pharmaceuticals Inc,NASDAQ,Stock,2012-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICR-P-A,InPoint Commercial Real Estate Income Inc,NYSE,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICSH,BlackRock Ultra Short-Term Bond ETF,BATS,ETF,2013-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICUI,ICU Medical Inc,NASDAQ,Stock,1992-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICVT,iShares Convertible Bond ETF,BATS,ETF,2015-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ICVX,Icosavax Inc,NASDAQ,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ID,L1 IDENTITY SOLUTIONS INC.,NYSE MKT,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDA,Idacorp Inc,NYSE,Stock,1986-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDAI,T Stamp Inc - Class A,NASDAQ,Stock,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDAT,ISHARES CLOUD 5G AND TECH ETF ,NYSE ARCA,ETF,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDBA,IDEX Biometrics ASA,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDCC,Interdigital Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDE,Voya Infrastructure Industrials and Materials Fund,NYSE,ETF,2010-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDEV,iShares Core MSCI International Developed Markets ETF,NYSE ARCA,ETF,2017-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDEX,Ideanomics Inc,NASDAQ,Stock,2007-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDHD,Invesco S&P International Developed High Dividend Low Volatility ETF,BATS,ETF,2016-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDHQ,Invesco S&P International Developed Quality ETF,NYSE ARCA,ETF,2007-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDIV,U.S. Equity Cumulative Dividends Fund Series 2027,NYSE ARCA,ETF,2018-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDLB,INVESCO FTSE INTERNATIONAL LOW BETA EQUAL WEIGHT ETF ,NASDAQ,ETF,2015-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDLV,Invesco S&P International Developed Low Volatility ETF,NYSE ARCA,ETF,2012-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDME,International Drawdown Managed Equity ETF,BATS,ETF,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDMO,Invesco S&P International Developed Momentum ETF,NYSE ARCA,ETF,2012-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDN,Intellicheck Inc,NASDAQ,Stock,1999-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDNA,iShares Genomics Immunology and Healthcare ETF,NYSE ARCA,ETF,2019-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDOG,ALPS International Sector Dividend Dogs ETF,NYSE ARCA,ETF,2013-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDR,Idaho Strategic Resources Inc,NYSE MKT,Stock,2011-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDRA,Idera Pharmaceuticals Inc,NASDAQ,Stock,1996-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDRV,ISHARES SELF-DRIVING EV AND TECH ETF ,NYSE ARCA,ETF,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDT,IDT Corp - Class B,NYSE,Stock,2001-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDU,iShares U.S. Utilities ETF,NYSE ARCA,ETF,2000-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDV,iShares International Select Dividend ETF,BATS,ETF,2007-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDW,IDW Media Holdings Inc - Class B,NYSE MKT,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDX,VanEck Indonesia Index ETF,NYSE ARCA,ETF,2009-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDXX,Idexx Laboratories Inc,NASDAQ,Stock,1991-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IDYA,Ideaya Biosciences Inc,NASDAQ,Stock,2019-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEA,Infrastructure and Energy Alternatives Inc,NASDAQ,Stock,2018-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEAWW,Infrastructure and Energy Alternatives Inc - Warrants (20/05/2021),NASDAQ,Stock,2018-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IECS,ISHARES EVOLVED U.S. CONSUMER STAPLES ETF ,BATS,ETF,2018-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEDI,iShares Evolved U.S. Discretionary Spending ETF,BATS,ETF,2018-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEF,iShares 7-10 Year Treasury Bond ETF,NASDAQ,ETF,2002-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEFA,iShares Core MSCI EAFE ETF,BATS,ETF,2012-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEFN,ISHARES EVOLVED U.S. FINANCIALS ETF ,BATS,ETF,2018-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEHS,ISHARES EVOLVED U.S. HEALTHCARE STAPLES ETF ,BATS,ETF,2018-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEI,iShares 3-7 Year Treasury Bond ETF,NASDAQ,ETF,2007-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEIH,iShares Evolved U.S. Innovative Healthcare ETF,BATS,ETF,2018-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEME,ISHARES EVOLVED U.S. MEDIA AND ENTERTAINMENT ETF ,BATS,ETF,2018-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEMG,iShares Core MSCI Emerging Markets ETF,NYSE ARCA,ETF,2012-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEO,iShares U.S. Oil & Gas Exploration & Production ETF,BATS,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEP,Icahn Enterprises L P,NASDAQ,Stock,1987-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IESC,IES Holdings Inc,NASDAQ,Stock,1998-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IETC,iShares Evolved U.S. Technology ETF,BATS,ETF,2018-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEUR,iShares Core MSCI Europe ETF,NYSE ARCA,ETF,2014-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEUS,iShares MSCI Europe Small-Cap ETF,NASDAQ,ETF,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEV,iShares Europe ETF,NYSE ARCA,ETF,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEX,Idex Corporation,NYSE,Stock,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IEZ,iShares U.S. Oil Equipment & Services ETF,NYSE ARCA,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFBD,Infobird Co. Ltd,NASDAQ,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFED,ETRACS IFED Invest with the Fed TR Index ETN,NYSE ARCA,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFF,International Flavors & Fragrances Inc,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFF-W,International Flavors & Fragrances Inc Additional Shares When Issued,NYSE,Stock,2021-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFGL,iShares International Developed Real Estate ETF,NASDAQ,ETF,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFIN,InFinT Acquisition Corporation - Class A,NYSE,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFIN-U,InFinT Acquisition Corporation - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFIN-WS,InFinT Acquisition Corporation - Warrants (01/01/9999),NYSE,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFN,The India Fund Inc,NYSE,ETF,1994-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFRA,iShares U.S. Infrastructure ETF,BATS,ETF,2018-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFRX,InflaRx N.V.,NASDAQ,Stock,2017-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFS,Intercorp Financial Services Inc,NYSE,Stock,2019-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IFV,First Trust Dorsey Wright International Focus 5 ETF,NASDAQ,ETF,2014-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IG,PRINCIPAL INVESTMENT GRADE CORPORATE ACTIVE ETF ,NYSE ARCA,ETF,2018-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGA,Voya Global Advantage and Premium Opportunity Fund,NYSE,ETF,2005-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGAC,IG Acquisition Corp - Class A,NASDAQ,Stock,2020-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGACU,IG Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGACW,IG Acquisition Corp - Warrants (21/09/2025),NASDAQ,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGBH,iShares Interest Rate Hedged Long-Term Corporate Bond ETF,NYSE ARCA,ETF,2015-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGC,India Globalization Capital Inc,NYSE MKT,Stock,2006-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGD,Voya Global Equity Dividend and Premium Opportunity Fund,NYSE,ETF,2005-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGE,iShares North American Natural Resources ETF,BATS,ETF,2001-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGEB,ISHARES EDGE INVESTMENT GRADE ENHANCED BOND ETF ,BATS,ETF,2017-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGF,iShares Global Infrastructure ETF,NASDAQ,ETF,2007-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGHG,ProShares Investment Grade-Interest Rate Hedged,BATS,ETF,2013-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGI,Western Asset Investment Grade Defined Opportunity Trust Inc,NYSE,ETF,2009-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGIB,iShares Trust iShares 5-10 Year Investment Grade Corporate Bond ETF,NASDAQ,ETF,2007-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGIC,International General Insurance Holdings Ltd,NASDAQ,Stock,2020-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGICW,International General Insurance Holdings Ltd - Warrants (17/03/2025),NASDAQ,Stock,2020-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGLB,iShares 10 Year Investment Grade Corporate Bond ETF,NYSE ARCA,ETF,2009-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGLD,FT Cboe Vest Gold Strategy Target Income ETF,BATS,ETF,2021-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGM,iShares Expanded Tech Sector ETF,NYSE ARCA,ETF,2001-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGMS,IGM Biosciences Inc,NASDAQ,Stock,2019-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGN,iShares North American Tech-Multimedia Networking ETF,NYSE ARCA,ETF,2001-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGNY,Ignyte Acquisition Corp,NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGNYU,Ignyte Acquisition Corp - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGNYW,Ignyte Acquisition Corp - Warrants (05/01/2026),NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGOV,iShares International Treasury Bond ETF,NASDAQ,ETF,2009-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGR,CBRE Global Real Estate Income Fund,NYSE,ETF,2004-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGRO,iShares International Dividend Growth ETF,BATS,ETF,2017-07-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGSB,iShares Trust iShares 1-5 Year Investment Grade Corporate Bond ETF,NASDAQ,ETF,2007-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGT,International Game Technology PLC,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGTA,Inception Growth Acquisition Ltd,NASDAQ,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGTAR,Inception Growth Acquisition Ltd,NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGTAU,Inception Growth Acquisition Ltd - Units (1 Ord 1/2 War & 1 Rts),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGTAW,Inception Growth Acquisition Ltd - Warrants(15/10/2026),NASDAQ,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGV,iShares Expanded Tech-Software Sector ETF,BATS,ETF,2001-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IGZ,NYSE ARCA LISTED TEST STOCK FOR CTS CQS,NYSE ARCA,Stock,2013-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IH,iHuman Inc,NYSE,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHAK,iShares Cybersecurity and Tech ETF,NYSE ARCA,ETF,2019-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHD,Voya Emerging Markets High Dividend Equity Fund,NYSE,ETF,2011-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHDG,WisdomTree International Hedged Quality Dividend Growth Fund,NYSE ARCA,ETF,2014-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHE,iShares U.S. Pharmaceuticals ETF,NYSE ARCA,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHF,iShares U.S. Healthcare Providers ETF,NYSE ARCA,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHG,Intercontinental Hotels Group,NYSE,Stock,2003-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHI,iShares U.S. Medical Devices ETF,NYSE ARCA,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHIT,Invesco High Income 2023 Target Term Fund of Beneficial Interest,NYSE,ETF,2016-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHRT,iHeartMedia Inc - Class A New,NASDAQ,Stock,2019-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHS,IHS Holding Ltd,NYSE,Stock,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHT,Innsuites Hospitality Trust,NYSE MKT,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHTA,Invesco High Income 2024 Target Term Fund,NYSE,ETF,2017-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHY,VanEck International High Yield Bond ETF,NYSE ARCA,ETF,2012-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IHYF,Invesco High Yield Bond Factor ETF,NASDAQ,ETF,2020-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IID,ING International High Dividend Equity,NYSE,ETF,2007-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIF,Morgan Stanley India Investment Fund Inc,NYSE,ETF,1995-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIGD,Invesco Investment Grade Defensive ETF,NYSE ARCA,ETF,2018-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIGV,INVESCO INVESTMENT GRADE VALUE ETF ,NYSE ARCA,ETF,2018-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "III,Information Services Group Inc,NASDAQ,Stock,2007-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIII,INSU Acquisition Corp III - Class A,NASDAQ,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIIIU,INSU Acquisition Corp III - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIIIW,INSU Acquisition Corp III - Warrants (31/12/2026),NASDAQ,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIIN,Insteel Industries Inc,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIIV,i3 Verticals Inc - Class A,NASDAQ,Stock,2018-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIM,Invesco Value Municipal Income Trust,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIN,IntriCon Corporation,NASDAQ,Stock,1980-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IINN,Inspira Technologies Oxy B.H.N. Ltd,NASDAQ,Stock,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IINNW,Inspira Technologies Oxy B.H.N. Ltd - Warrants (30/06/2026),NASDAQ,Stock,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIPR,Innovative Industrial Properties Inc,NYSE,Stock,2016-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIPR-P-A,Innovative Industrial Properties Inc,NYSE,Stock,2017-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIVI,Ii-Vi Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IIVIP,Ii-Vi Inc,NASDAQ,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IJAN,Innovator International Developed Power Buffer ETF January,NYSE ARCA,ETF,2020-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IJH,iShares Core S&P Mid-Cap ETF,NYSE ARCA,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IJJ,iShares S&P Mid-Cap 400 Value ETF,NYSE ARCA,ETF,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IJK,iShares S&P Mid-Cap 400 Growth ETF,NYSE ARCA,ETF,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IJR,iShares Core S&P Small-Cap ETF,NYSE ARCA,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IJS,iShares S&P Small-Cap 600 Value ETF,NYSE ARCA,ETF,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IJT,iShares S&P Small-Cap 600 Growth ETF,NASDAQ,ETF,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IJUL,Innovator International Developed Power Buffer ETF July,NYSE ARCA,ETF,2019-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IKNA,Ikena Oncology Inc,NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IKT,Inhibikase Therapeutics Inc,NASDAQ,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ILCB,iShares Morningstar U.S. Equity ETF,NYSE ARCA,ETF,2004-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ILCG,iShares Morningstar Growth ETF,NYSE ARCA,ETF,2004-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ILCV,iShares Morningstar Value ETF,NYSE ARCA,ETF,2004-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ILDR,FIRST TRUST INNOVATION LEADERS ETF ,NYSE ARCA,ETF,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ILF,iShares Latin America 40 ETF,NYSE ARCA,ETF,2001-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ILMN,Illumina Inc,NASDAQ,Stock,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ILPT,Industrial Logistics Properties Trust,NASDAQ,Stock,2018-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ILTB,ISHARES CORE 10+ YEAR USD BOND ETF ,NYSE ARCA,ETF,2009-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMAB,I-Mab,NASDAQ,Stock,2020-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMAC,IMAC Holdings Inc,NASDAQ,Stock,2019-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMACW,IMAC Holdings Inc - Warrants (13/12/2023),NASDAQ,Stock,2019-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMAQ,International Media Acquisition Corp,NASDAQ,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMAQR,International Media Acquisition Corp,NASDAQ,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMAQU,International Media Acquisition Corp - Units (1 Ord 1 Rts & 1 War),NASDAQ,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMAQW,International Media Acquisition Corp - Warrants (21/07/2026),NASDAQ,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMAX,Imax Corp,NYSE,Stock,1994-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMBI,iMedia Brands Inc - Class A,NASDAQ,Stock,1993-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMBIL,iMedia Brands Inc,NASDAQ,Stock,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMCB,iShares Morningstar Mid-Cap ETF,NYSE ARCA,ETF,2004-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMCC,IM Cannabis Corp,NASDAQ,Stock,2020-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMCG,iShares Morningstar Mid-Cap Growth ETF,NYSE ARCA,ETF,2004-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMCR,Immunocore Holdings plc,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMCV,iShares Morningstar Mid-Cap Value ETF,NASDAQ,ETF,2004-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMFL,Invesco International Developed Dynamic Multifactor ETF,BATS,ETF,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMGN,Immunogen Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMGO,Imago BioSciences Inc,NASDAQ,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMKTA,Ingles Markets Inc - Class A,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMLP,iPath SP MLP ETN,BATS,ETF,2013-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMMP,Immutep Ltd,NASDAQ,Stock,2012-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMMR,Immersion Corp,NASDAQ,Stock,1999-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMMX,Immix Biopharma Inc,NASDAQ,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMNM,Immunome Inc,NASDAQ,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMO,Imperial Oil Ltd,NYSE MKT,Stock,1986-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMOM,Alpha Architect International Quantitative Momentum ETF,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMOS,Chipmos Technologies Inc,NASDAQ,Stock,2001-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMPL,Impel NeuroPharma Inc,NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMPP,Imperial Petroleum Inc,NASDAQ,Stock,2021-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMPPP,Imperial Petroleum Inc,NASDAQ,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMPX,AEA-Bridges Impact Corp - Class A,NYSE,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMPX-U,AEA-Bridges Impact Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMPX-WS,AEA-Bridges Impact Corp - Warrants (19/09/2025),NYSE,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMRA,Imara Inc,NASDAQ,Stock,2020-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMRN,Immuron Ltd,NASDAQ,Stock,2017-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMRNW,Immuron Ltd - Warrants (12/05/2022),NASDAQ,Stock,2017-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMRX,Immuneering Corp Class A,NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMTB,iShares Core 5-10 Year USD Bond ETF,NYSE ARCA,ETF,2016-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMTE,Integrated Media Technology Ltd,NASDAQ,Stock,2017-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMTM,iShares MSCI Intl Momentum Factor ET,NYSE ARCA,ETF,2015-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMTX,Immatics N.V,NASDAQ,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMTXW,Immatics N.V - Warrants (01/07/2025),NASDAQ,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMUX,Immunic Inc,NASDAQ,Stock,2014-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMV,IMV Inc,NASDAQ,Stock,2018-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMVT,Immunovant Inc,NASDAQ,Stock,2019-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IMXI,International Money Express Inc,NASDAQ,Stock,2017-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INAB,IN8bio Inc,NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INAQ,Insight Acquisition Corp,NYSE,Stock,2021-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INAQ-U,Insight Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INAQ-WS,Insight Acquisition Corp - Warrants(26/08/2026),NYSE,Stock,2021-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INB,Cohen Steers Global Income Builder Inc,NYSE,ETF,2007-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INBK,First Internet Bancorp,NASDAQ,Stock,2004-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INBKZ,First Internet Bancorp FXDFR NT REDEEM 30062029 USD 25,NASDAQ,Stock,2019-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INBX,Inhibrx Inc,NASDAQ,Stock,2020-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INCO,Columbia India Consumer ETF,NYSE ARCA,ETF,2011-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INCR,INC Research Holdings Inc,NASDAQ,Stock,2014-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INCY,Incyte Corp,NASDAQ,Stock,1993-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDA,iShares MSCI India ETF,BATS,ETF,2012-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDB,Independent Bank Corp,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDF,NIFTY INDIA FINANCIALS ETF ,NYSE ARCA,ETF,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDI,Indie Semiconductor Inc - Class A,NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDIW,Indie Semiconductor Inc - Warrants (10/06/2026),NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDL,Direxion Daily MSCI India Bull 2X Shares,NYSE ARCA,ETF,2010-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDO,Indonesia Energy Corp Ltd,NYSE MKT,Stock,2019-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDP,Indaptus Therapeutics Inc,NASDAQ,Stock,2015-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDS,Pacer Benchmark Industrial Real Estate SCTR ETF,NYSE ARCA,ETF,2018-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDT,INDUS Realty Trust Inc,NASDAQ,Stock,1997-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INDY,iShares India 50 ETF,NASDAQ,ETF,2009-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INF,Brookfield Glbl Lstd Infrstr Incm Fd Inc,NYSE,ETF,2011-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INFA,Informatica Inc - Class A,NYSE,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INFI,Infinity Pharmaceuticals Inc,NASDAQ,Stock,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INFL,Horizon Kinetics Inflation Beneficiaries ETF,NYSE ARCA,ETF,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INFN,Infinera Corp,NASDAQ,Stock,2007-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INFU,InfuSystem Holdings Inc,NYSE MKT,Stock,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INFY,Infosys Ltd,NYSE,Stock,1999-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ING,ING Groep N.V.,NYSE,Stock,1996-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INGN,Inogen Inc,NASDAQ,Stock,2014-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INGR,Ingredion Inc,NYSE,Stock,1997-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INKA,KludeIn I Acquisition Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INKAU,KludeIn I Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INKAW,KludeIn I Acquisition Corp - Warrants (06/01/2025),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INKM,SPDR SSgA Income Allocation ETF,NYSE ARCA,ETF,2012-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INKT,MiNK Therapeutics Inc,NASDAQ,Stock,2021-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INM,InMed Pharmaceuticals Inc,NASDAQ,Stock,2020-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INMB,INmune Bio Inc,NASDAQ,Stock,2019-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INMD,Inmode Ltd,NASDAQ,Stock,2019-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INMU,BlackRock Intermediate Muni Income Bond ETF,NYSE ARCA,ETF,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INN,Summit Hotel Properties Inc,NYSE,Stock,2011-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INN-P-E,Summit Hotel Properties Inc,NYSE,Stock,2017-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INN-P-F,Summit Hotel Properties Inc,NYSE,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INNO,Harbor ETF Trust - Harbor Disruptive Innovation ETF,NYSE ARCA,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INNV,InnovAge Holding Corp,NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INO,Inovio Pharmaceuticals Inc,NASDAQ,Stock,1998-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INOD,Innodata Inc,NASDAQ,Stock,1993-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INPX,Inpixon,NASDAQ,Stock,2011-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INSE,Inspired Entertainment Inc,NASDAQ,Stock,2016-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INSG,Inseego Corp,NASDAQ,Stock,2000-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INSI,Insight Select Income Fund,NYSE,ETF,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INSM,Insmed Inc,NASDAQ,Stock,2000-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INSP,Inspire Medical Systems Inc,NYSE,Stock,2018-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INST,Instructure Holdings Inc,NYSE,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INSW,International Seaways Inc,NYSE,Stock,2016-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INSW-P-A,International Seaways Inc 850 Senior Notes due June 30 2023,NYSE,Stock,2018-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INT,World Fuel Services Corp,NYSE,Stock,1990-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTA,Intapp Inc,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTC,Intel Corp,NASDAQ,Stock,1980-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTE,Integral Acquisition Corp 1 - Class A,NASDAQ,Stock,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTEU,Integral Acquisition Corp 1 - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTEW,Integral Acquisition Corp 1 - Warrants (31/05/2028),NASDAQ,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTF,iShares MSCI Intl Multifactor ETF,NYSE ARCA,ETF,2015-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTG,Intergroup Corp,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTL,,NASDAQ,Stock,1996-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTT,Intest Corp,NYSE MKT,Stock,1997-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTU,Intuit Inc,NASDAQ,Stock,1993-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INTZ,Intrusion Inc,NASDAQ,Stock,1992-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INUV,Inuvo Inc,NYSE MKT,Stock,1998-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INVA,Innoviva Inc,NASDAQ,Stock,2004-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INVE,Identiv Inc,NASDAQ,Stock,1997-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INVH,Invitation Homes Inc,NYSE,Stock,2017-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INVO,INVO Bioscience Inc,NASDAQ,Stock,2012-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INVZ,Innoviz Technologies Ltd,NASDAQ,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INVZW,Innoviz Technologies Ltd - Warrants (05/04/2026),NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "INZY,Inozyme Pharma Inc,NASDAQ,Stock,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IO,ION Geophysical Corp,NYSE,Stock,1991-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOAC,Innovative International Acquisition Corp - Class A,NASDAQ,Stock,2022-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOACU,Innovative International Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOACW,Innovative International Acquisition Corp - Warrants (26/10/2026),NASDAQ,Stock,2022-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOBT,IO Biotech Inc,NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOCT,Innovator International Developed Power Buffer ETF - October,NYSE ARCA,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IONM,Assure Holdings Corp,NASDAQ,Stock,2017-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IONQ,IonQ Inc,NYSE,Stock,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IONQ-WS,IonQ Inc - Warrants(01/01/9999),NYSE,Stock,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IONS,Ionis Pharmaceuticals Inc,NASDAQ,Stock,1991-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOO,iShares Global 100 ETF,NYSE ARCA,ETF,2000-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOR,Income Opportunity Realty Investors Inc,NYSE MKT,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOSP,Innospec Inc,NASDAQ,Stock,1998-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOT,Samsara Inc - Class A,NYSE,Stock,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IOVA,Iovance Biotherapeutics Inc,NASDAQ,Stock,2010-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IP,International Paper Company,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPA,ImmunoPrecise Antibodies Ltd,NASDAQ,Stock,2020-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPAC,iShares Core MSCI Pacific ETF,NYSE ARCA,ETF,2014-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPAR,Inter Parfums Inc,NASDAQ,Stock,1991-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPAX,Inflection Point Acquisition Corp - Class A,NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPAXU,Inflection Point Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPAXW,Inflection Point Acquisition Corp - Warrants (21/09/2026),NASDAQ,Stock,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPAY,ETFMG Prime Mobile Payments ETF,NYSE ARCA,ETF,2015-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPB,Merrill Lynch Company Inc 60518 Index Plus Trust Certificates Series 20031,NYSE MKT,Stock,2004-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPDN,Professional Diversity Network Inc,NASDAQ,Stock,2013-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPDP,Dividend Performers ETF,BATS,ETF,2022-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPG,Interpublic Group Of Cos. Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPGP,IPG Photonics Corp,NASDAQ,Stock,2006-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPHA,Innate Pharma,NASDAQ,Stock,2019-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPI,Intrepid Potash Inc,NYSE,Stock,2008-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPKW,Invesco International BuyBack Achievers TM ETF,NASDAQ,ETF,2014-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPO,Renaissance IPO ETF,NYSE ARCA,ETF,2013-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOB-U,Social Capital Hedosophia Holdings Corp II Unit 1 Cl A & 14 Wt,NYSE,Stock,2020-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOC-U,Social Capital Hedosophia Holdings Corp III Unit 1 Com & 14 Wt,NYSE,Stock,2020-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOD,Social Capital Hedosophia Holdings Corp IV - Class A,NYSE,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOD-U,Social Capital Hedosophia Holdings Corp IV - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOD-WS,Social Capital Hedosophia Holdings Corp IV - Warrants (26/09/2025),NYSE,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOE-WS,Social Capital Hedosophia Holdings Corp V Redeemable Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOF,Social Capital Hedosophia Holdings Corp VI - Class A,NYSE,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOF-U,Social Capital Hedosophia Holdings Corp VI - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOF-WS,Social Capital Hedosophia Holdings Corp VI Redeemable warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPOS,RENAISSANCE INTERNATIONAL IPO ETF ,NYSE ARCA,ETF,2014-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPPP,Preferred-Plus ETF,BATS,ETF,2022-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPSC,Century Therapeutics Inc,NASDAQ,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPVA,InterPrivate II Acquisition Corp - Class A,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPVA-U,InterPrivate II Acquisition Corp - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPVA-WS,InterPrivate II Acquisition Corp Warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50 per share,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPVF,InterPrivate III Financial Partners Inc - Class A,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPVF-U,InterPrivate III Financial Partners Inc - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPVF-WS,InterPrivate III Financial Partners Inc - Warrants (01/01/9999),NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPVI,InterPrivate IV InfraTech Partners Inc - Class A,NASDAQ,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPVIU,InterPrivate IV InfraTech Partners Inc - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPVIW,InterPrivate IV InfraTech Partners Inc - Warrants (05/03/2026),NASDAQ,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPW,iPower Inc,NASDAQ,Stock,2021-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IPWR,Ideal Power Inc,NASDAQ,Stock,2013-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQ,iQIYI Inc,NASDAQ,Stock,2018-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQDE,FLEXSHARES INTERNATIONAL QUALITY DIVIDEND DEFENSIVE INDEX FUND ,NYSE ARCA,ETF,2013-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQDF,FlexShares International Quality Dividend Index Fund,NYSE ARCA,ETF,2013-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQDG,WisdomTree International Quality Dividend Growth Fund,BATS,ETF,2017-07-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQDY,FlexShares International Quality Dividend Dynamic Index Fund,NYSE ARCA,ETF,2013-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQI,Invesco Quality Municipal Income Trust,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQIN,IQ 500 International ETF,NYSE ARCA,ETF,2018-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQLT,iShares MSCI Intl Quality Factor ETF,NYSE ARCA,ETF,2015-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQM,FRANKLIN INTELLIGENT MACHINES ETF ,BATS,ETF,2020-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQMD,Intelligent Medicine Acquisition Corp - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQMDU,Intelligent Medicine Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQMDW,Intelligent Medicine Acquisition Corp - Warrants - (05/11/2026),NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQSI,IQ Candriam ESG International Equity ETF,NYSE ARCA,ETF,2019-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQSU,IQ Candriam ESG US Equity ETF,NYSE ARCA,ETF,2019-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IQV,IQVIA Holdings Inc,NYSE,Stock,2013-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IR,Ingersoll-Rand Inc,NYSE,Stock,2017-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRBA,iMGP RBA Responsible Global Allocation ETF,NYSE ARCA,ETF,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRBO,iShares Robotics and Artificial Intelligence Multisector ETF,NYSE ARCA,ETF,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRBT,Irobot Corp,NASDAQ,Stock,2005-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRCP,Irsa Propiedades Comerciales S.A.,NASDAQ,Stock,2003-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRDM,Iridium Communications Inc,NASDAQ,Stock,2008-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IREN,Iris Energy Ltd,NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRIX,IRIDEX Corp,NASDAQ,Stock,1996-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRL,New Ireland Fund Inc,NYSE,ETF,1990-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRM,Iron Mountain Inc,NYSE,Stock,1996-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRMD,Iradimed Corp,NASDAQ,Stock,2014-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRNT,IronNet Inc,NYSE,Stock,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRNT-WS,IronNet Inc - Warrants (26/08/2026),NYSE,Stock,2020-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IROQ,IF Bancorp Inc,NASDAQ,Stock,2011-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRR,Voya Natural Resources Equity Income Fund,NYSE,ETF,2006-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRRX,Integrated Rail and Resources Acquisition Corp - Class A,NYSE,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRRX-U,Integrated Rail and Resources Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRRX-WS,Integrated Rail and Resources Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRS,IRSA,NYSE,Stock,1994-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRS-WS,Irsa Inversiones Y Representaciones S.A. - Warrants (13/05/2026),NYSE,Stock,2021-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRT,Independence Realty Trust Inc,NYSE,Stock,2013-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRTC,iRhythm Technologies Inc,NASDAQ,Stock,2016-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IRWD,Ironwood Pharmaceuticals Inc - Class A,NASDAQ,Stock,2010-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IS,ironSource Ltd - Class A,NYSE,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISAA,Iron Spark I Inc - Class A,NASDAQ,Stock,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISBC,Investors Bancorp Inc,NASDAQ,Stock,2005-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISCB,ISHARES MORNINGSTAR SMALL-CAP ETF ,NYSE ARCA,ETF,2004-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISCF,iShares MSCI Intl Small-Cap Multifac,NYSE ARCA,ETF,2015-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISCG,iShares Morningstar Small-Cap Growth ETF,NYSE ARCA,ETF,2004-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISCV,iShares Morningstar Small-Cap Value ETF,NYSE ARCA,ETF,2004-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISD,PGIM High Yield Bond Fund Inc,NYSE,ETF,2012-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISDR,Issuer Direct Corp,NYSE MKT,Stock,2005-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISDX,Invesco RAFI Strategic Developed ex-US ETF,NASDAQ,ETF,2018-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISEE,IVERIC bio Inc,NASDAQ,Stock,2013-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISEM,INVESCO RAFI(TM) STRATEGIC EMERGING MARKETS ETF ,NASDAQ,ETF,2018-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISG,ING Group NV Perpetual Dent Secs 6125,NYSE,Stock,2005-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISG-CL,ING Group N.V. Perpetual Dent Secs 6.125,NYSE,Stock,2020-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISHG,iShares -3 Year International Treasury Bond ETF,NASDAQ,ETF,2009-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISHP,First Trust S-Network E-Commerce ETF,NASDAQ,ETF,2016-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISIG,Insignia Systems Inc,NASDAQ,Stock,1993-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISLE,Isleworth Healthcare Acquisition Corp,NASDAQ,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISLEW,Isleworth Healthcare Acquisition Corp - Warrants (02/08/2027),NASDAQ,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISMD,Inspire Small/Mid Cap Impact ETF,NYSE ARCA,ETF,2017-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISO,IsoPlexis Corp,NASDAQ,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISOS-WS,Isos Acquisition Corporation Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISPC,iSpecimen Inc,NASDAQ,Stock,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISPO,Inspirato Incorporated - Class A,NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISPOW,Inspirato Incorporated - Warrants (11/02/2027),NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISR,Isoray Inc,NYSE MKT,Stock,2005-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISRA,VANECK ISRAEL ETF ,NYSE ARCA,ETF,2013-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISRG,Intuitive Surgical Inc,NASDAQ,Stock,2000-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISSC,Innovative Solutions And Support Inc,NASDAQ,Stock,2000-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISTB,iShares Core 1-5 Year USD Bond ETF,NASDAQ,ETF,2012-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISTR,Investar Holding Corp,NASDAQ,Stock,2014-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISUN,iSun Inc,NASDAQ,Stock,2016-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISVL,iShares International Developed Small Cap Value Factor ETF,BATS,ETF,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISWN,Amplify BlackSwan ISWN ETF,NYSE ARCA,ETF,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ISZE,ISHARES EDGE MSCI INTL SIZE FACTOR ETF ,NYSE ARCA,ETF,2015-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IT,Gartner Inc,NYSE,Stock,1993-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITA,iShares U.S. Aerospace & Defense ETF,BATS,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITAN,Sparkline Intangible Value ETF,NYSE ARCA,ETF,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITAQ,Industrial Tech Acquisitions II Inc - Class A,NASDAQ,Stock,2022-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITAQU,Industrial Tech Acquisitions II Inc - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITAQW,Industrial Tech Acquisitions II Inc - Warrants (31/03/2028),NASDAQ,Stock,2022-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITB,iShares U.S. Home Construction ETF,BATS,ETF,2006-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITCB,Itau Corpbanca,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITCB-R,Itau CorpBanca Rights expires October 26 2021,NYSE,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITCI,Intra-Cellular Therapies Inc,NASDAQ,Stock,2014-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITEQ,BlueStar Israel Technology ETF,NYSE ARCA,ETF,2015-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITGR,Integer Holdings Corp,NYSE,Stock,2000-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITHX,ITHAX Acquisition Corp - Class A,NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITHXU,ITHAX Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITHXW,ITHAX Acquisition Corp - Warrants (31/12/2027),NASDAQ,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITI,Iteris Inc,NASDAQ,Stock,1994-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITIC,Investors Title Company,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITM,VanEck Intermediate Muni ETF,BATS,ETF,2007-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITOS,ITeos Therapeutics Inc,NASDAQ,Stock,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITOT,iShares Core S&P Total U.S. Stock Market ETF,NYSE ARCA,ETF,2004-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITP,IT Tech Packaging Inc,NYSE MKT,Stock,2007-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITQ,Itiquira Acquisition Corp - Class A,NASDAQ,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITQRU,Itiquira Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITQRW,Itiquira Acquisition Corp - Warrants (03/02/2026),NASDAQ,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITRG,Integra Resources Corp,NYSE MKT,Stock,2020-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITRI,Itron Inc,NASDAQ,Stock,1993-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITRM,Iterum Therapeutics Plc,NASDAQ,Stock,2018-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITRN,Ituran Location And Control Ltd,NASDAQ,Stock,2005-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITT,ITT Inc,NYSE,Stock,1995-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITUB,Itau Unibanco Holding S.A.,NYSE,Stock,2002-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ITW,Illinois Tool Works Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IUS,Invesco RAFI Strategic US ETF,NASDAQ,ETF,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IUSA,Amberwave Invest USA JSG Fund,NYSE ARCA,ETF,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IUSB,iShares Core Total USD Bond Market ETF,NASDAQ,ETF,2014-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IUSG,iShares Core S&P U.S.Growth ETF,NASDAQ,ETF,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IUSS,Invesco RAFI Strategic US Small Company ETF,NASDAQ,ETF,2018-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IUSV,iShares Core S&P U.S.Value ETF,NASDAQ,ETF,2000-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVA,Inventiva,NASDAQ,Stock,2020-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVAC,Intevac Inc,NASDAQ,Stock,1995-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVAL,Alpha Architect International Quantitative Value ETF,BATS,ETF,2014-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVC,Invacare Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVCB,Investcorp Europe Acquisition Corp I - Class A,NASDAQ,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVCBU,Investcorp Europe Acquisition Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVCBW,Investcorp Europe Acquisition Corp I - Warrants (15/12/2026),NASDAQ,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVCP,Swiftmerge Acquisition Corp - Class A,NASDAQ,Stock,2022-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVCPU,Swiftmerge Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVCPW,Swiftmerge Acquisition Corp - Warrants (13/12/2026),NASDAQ,Stock,2022-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVDG,Invesco Focused Discovery Growth ETF,BATS,ETF,2020-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVE,iShares S&P 500 Value ETF,NYSE ARCA,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVES,Wedbush ETFMG Global Cloud Technology ETF,NYSE ARCA,ETF,2016-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVH,Delaware Ivy High Income Opportunities Fund,NYSE,ETF,2013-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVLC,Invesco US Large Cap Core ESG ETF,BATS,ETF,2020-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVLU,iShares MSCI Intl Value Factor ETF,NYSE ARCA,ETF,2015-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVOG,Vanguard S&P Mid-Cap 400 Growth ETF,NYSE ARCA,ETF,2010-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVOL,Quadratic Interest Rate Volatility And Inflation Hedge ETF,NYSE ARCA,ETF,2019-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVOO,Vanguard S&P Mid-Cap 400 ETF,NYSE ARCA,ETF,2010-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVOV,Vanguard S&P Mid-Cap 400 Value ETF,NYSE ARCA,ETF,2010-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVR,Invesco Mortgage Capital Inc,NYSE,Stock,2009-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVR-P-B,Invesco Mortgage Capital Inc Preferred Series B Cum Fxd to Fltg,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVR-P-C,Invesco Mortgage Capital Inc,NYSE,Stock,2017-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVRA,Invesco Real Assets ESG ETF,BATS,ETF,2020-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVSG,Invesco Select Growth ETF,BATS,ETF,2020-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVT,InvenTrust Properties Corp,NYSE,Stock,2014-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVV,iShares Core S&P 500 ETF,NYSE ARCA,ETF,2000-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVW,iShares S&P 500 Growth ETF,NYSE ARCA,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IVZ,Invesco Ltd,NYSE,Stock,1995-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWB,iShares Russell 1000 ETF,NYSE ARCA,ETF,2000-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWC,iShares Micro-Cap ETF,NYSE ARCA,ETF,2005-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWD,iShares Russell 1000 Value ETF,NYSE ARCA,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWDL,UBS AG London Branch,NYSE ARCA,ETF,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWF,iShares Russell 1000 Growth ETF,NYSE ARCA,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWFH,ISHARES VIRTUAL WORK AND LIFE MULTISECTOR ETF ,NYSE ARCA,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWFL,UBS AG London Branch,NYSE ARCA,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWIN,Amplify Inflation Fighter ETF,NYSE ARCA,ETF,2022-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWL,iShares Russell Top 200 ETF,NYSE ARCA,ETF,2009-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWM,iShares Russell 2000 ETF,NYSE ARCA,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWML,UBS AG London Branch,NYSE ARCA,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWN,iShares Russell 2000 Value ETF,NYSE ARCA,ETF,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWO,iShares Russell 2000 Growth ETF,NYSE ARCA,ETF,2000-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWP,iShares Russell Mid-Cap Growth ETF,NYSE ARCA,ETF,2001-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWR,iShares Russell Mid-Cap ETF,NYSE ARCA,ETF,2001-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWS,iShares Russell Mid-Cap Value ETF,NYSE ARCA,ETF,2001-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWV,iShares Russell 3000 ETF,NYSE ARCA,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWX,iShares Russell Top 200 Value ETF,NYSE ARCA,ETF,2009-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IWY,iShares Russell Top 200 Growth ETF,NYSE ARCA,ETF,2009-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IX,Orix Corporation,NYSE,Stock,1998-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXAQ,IX Acquisition Corp - Class A,NASDAQ,Stock,2021-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXAQU,IX Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXAQW,IX Acquisition Corp - Warrants (31/07/2028),NASDAQ,Stock,2021-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXC,iShares Global Energy ETF,NYSE ARCA,ETF,2001-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXG,iShares Global Financials ETF,NYSE ARCA,ETF,2001-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXHL,Incannex Healthcare Ltd,NASDAQ,Stock,2022-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXJ,iShares Global Healthcare ETF,NYSE ARCA,ETF,2001-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXN,iShares Global Tech ETF,NYSE ARCA,ETF,2001-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXP,iShares Global Comm Services ETF,NYSE ARCA,ETF,2001-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXSE,WISDOMTREE INDIA EX-STATE-OWNED ENTERPRISES FUND N/A,NYSE ARCA,Stock,2019-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IXUS,iShares Core MSCI Total International Stock ETF,NASDAQ,ETF,2012-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYC,iShares U.S. Consumer Discretionary ETF,NYSE ARCA,ETF,2000-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYE,iShares U.S. Energy ETF,NYSE ARCA,ETF,2000-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYF,iShares U.S. Financials ETF,NYSE ARCA,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYG,iShares U.S. Financial Services ETF,NYSE ARCA,ETF,2000-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYH,iShares U.S. Healthcare ETF,NYSE ARCA,ETF,2000-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYJ,iShares U.S. Industrials ETF,BATS,ETF,2000-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYK,iShares U.S. Consumer Staples ETF,NYSE ARCA,ETF,2000-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYLD,iShares Morningstar Multi-Asset Income ETF,BATS,ETF,2012-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYM,iShares U.S. Basic Materials ETF,NYSE ARCA,ETF,2000-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYR,iShares U.S. Real Estate ETF,NYSE ARCA,ETF,2000-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYT,iShares U.S. Transportation ETF,BATS,ETF,2003-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYW,iShares U.S. Technology ETF,NYSE ARCA,ETF,2000-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYY,iShares Dow Jones U.S. ETF,NYSE ARCA,ETF,2000-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IYZ,iShares U.S. Telecommunications ETF,BATS,ETF,2000-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IZEA,IZEA Worldwide Inc,NASDAQ,Stock,2011-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "IZRL,ARK Israel Innovative Technology ETF,BATS,ETF,2017-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "J,Jacobs Engineering Group Inc,NYSE,Stock,1990-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAAA,Janus Henderson AAA CLO ETF,NYSE ARCA,ETF,2020-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JACK,Jack In The Box Inc,NASDAQ,Stock,1992-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAGG,JPMorgan U.S. Aggregate Bond ETF,NYSE ARCA,ETF,2018-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAGX,Jaguar Health Inc,NASDAQ,Stock,2015-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAKK,Jakks Pacific Inc,NASDAQ,Stock,1996-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAMF,Jamf Holding Corp,NASDAQ,Stock,2020-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAN,JanOne Inc,NASDAQ,Stock,1991-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JANX,Janux Therapeutics Inc,NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JANZ,TRUESHARES STRUCTURED OUTCOME (JANUARY) ETF ,BATS,ETF,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAQC,Jupiter Acquisition Corp,NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAQCU,Jupiter Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAQCW,Jupiter Acquisition Corp - Warrants (04/09/2025),NASDAQ,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JATT,JATT Acquisition Corp - Class A,NYSE,Stock,2021-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JATT-U,JATT Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JATT-WS,JATT Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAVA,JPMorgan Active Value ETF,NYSE ARCA,ETF,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JAZZ,Jazz Pharmaceuticals plc,NASDAQ,Stock,2007-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBBB,Janus Henderson B-BBB CLO ETF,BATS,ETF,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBGS,JBG SMITH Properties,NYSE,Stock,2017-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBHT,J.B. Hunt Transport Services Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBI,Janus International Group Inc - Class A,NYSE,Stock,2019-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBI-WS,Janus International Group Inc Warrants each exercisable for one share of Common Stock at an exercise price of 11.50 per share,NYSE,Stock,2021-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBK,Lehman ABS 350 350 Adjustable Corp Backed Tr Certs GS Cap I,NYSE,Stock,2004-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBL,Jabil Inc,NYSE,Stock,1993-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBLU,Jetblue Airways Corp,NASDAQ,Stock,2002-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBN,Select Asset Inc Select Asset Inc on behalf of Corporate Backed Callable Trust Certificates JC Penney Debenture Backed Series 20071 Trust,NYSE,Stock,2007-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBR,Select Asset Inc Corporate Backed Callable Trust Certificates JC Penney DebentureBacked Series 20061 Class A1,NYSE,Stock,2007-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBSS,Sanfilippo (John B.) & Son Inc,NASDAQ,Stock,1991-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JBT,John Bean Technologies Corp,NYSE,Stock,2008-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCAP-P-B,Jernigan Capital Inc,NYSE,Stock,2018-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCE,Nuveen Core Equity Alpha Fund,NYSE,ETF,2007-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCI,Johnson Controls International plc,NYSE,Stock,1985-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCIC,Jack Creek Investment Corp - Class A,NASDAQ,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCICU,Jack Creek Investment Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCICW,Jack Creek Investment Corp - Warrants (01/10/2025),NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCO,Nuveen Credit Opportunities 2022 Target Term Fund,NYSE,Stock,2017-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCPB,JPMorgan Core Plus Bond ETF,BATS,ETF,2019-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCS,Communications Systems Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCTCF,Jewett-Cameron Trading Co. Ltd,NASDAQ,Stock,1996-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JCTR,JPMorgan Carbon Transition U.S. Equity ETF,NYSE ARCA,ETF,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JD,JD.com Inc,NASDAQ,Stock,2014-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JDD,Nuveen Diversified Dividend and Income Fund,NYSE,ETF,2003-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JDIV,JPMorgan U.S. Dividend ETF,NYSE ARCA,ETF,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JDST,Direxion Daily Junior Gold Miners Index Bear 2X Shares,NYSE ARCA,ETF,2013-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JEF,Jefferies Financial Group Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JELD,JELD-WEN Holding Inc,NYSE,Stock,2017-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JEMA,JPMorgan ActiveBuilders Emerging Markets Equity ETF,BATS,ETF,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JEMD,Nuveen Emerging Markets Debt 2022 Target Term Fund,NYSE,ETF,2017-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JEPI,JPMorgan Equity Premium Income ETF,NYSE ARCA,ETF,2020-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JEQ,Aberdeen Japan Equity Fund Inc,NYSE,ETF,1992-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JETS,ESS U.S.Global Jets ETF,NYSE ARCA,ETF,2015-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JFIN,Jiayin Group Inc,NASDAQ,Stock,2019-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JFR,Nuveen Floating Rate Income Fund,NYSE,ETF,2004-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JFU,9F Inc,NASDAQ,Stock,2019-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JFWD,Jacob Forward ETF,NYSE ARCA,ETF,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JG,Aurora Mobile Ltd,NASDAQ,Stock,2018-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JGGCU,Jaguar Global Growth Corp I - Units (1 Ord Class A 1 Right & 1/2 War),NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JGH,Nuveen Global High Income Fund,NYSE,ETF,2014-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JGLD,Amplify Pure Junior Gold Miners ETF,NYSE ARCA,ETF,2020-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHAA,Nuveen Corporate Income 2023 Target Term Fund,NYSE,Stock,2018-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHB,Nuveen Corporate Income November 2021 Target Term Fund,NYSE,ETF,2016-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHCB,John Hancock Corporate Bond ETF,NYSE ARCA,ETF,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHCS,John Hancock Multifactor Media and Communications ETF,NYSE ARCA,ETF,2019-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHEM,John Hancock Multifactor Emerging Markets ETF,NYSE ARCA,ETF,2018-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHG,Janus Henderson Group plc,NYSE,Stock,2000-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHI,John Hancock Investors Trust,NYSE,ETF,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMA,JOHN HANCOCK MULTIFACTOR MATERIALS ETF ,NYSE ARCA,ETF,2016-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMB,John Hancock Mortgage-Backed Securities ETF,NYSE ARCA,ETF,2021-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMC,John Hancock Multifactor Consumer Discretionary ETF,NYSE ARCA,ETF,2015-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMD,John Hancock Multifactor Developed International ETF,NYSE ARCA,ETF,2016-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHME,John Hancock Multifactor Energy ETF,NYSE ARCA,ETF,2016-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMF,John Hancock Multifactor Financials ETF,NYSE ARCA,ETF,2015-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMH,JOHN HANCOCK MULTIFACTOR HEALTHCARE ETF ,NYSE ARCA,ETF,2015-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMI,John Hancock Multifactor Industrials ETF,NYSE ARCA,ETF,2016-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHML,John Hancock Multifactor Large Cap ETF,NYSE ARCA,ETF,2015-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMM,John Hancock Multifactor Mid Cap ETF,NYSE ARCA,ETF,2015-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMS,John Hancock Multifactor Consumer Staples ETF,NYSE ARCA,ETF,2016-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMT,John Hancock Multifactor Technology ETF,NYSE ARCA,ETF,2015-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHMU,John Hancock Multifactor Utilities ETF,NYSE ARCA,ETF,2016-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHPI,JOHN HANCOCK PREFERRED INCOME ETF ,NYSE ARCA,ETF,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHS,John Hancock Income Securities Trust,NYSE,ETF,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHSC,John Hancock Multifactor Small Cap ETF,NYSE ARCA,ETF,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHX,James Hardie Industries plc,NYSE,Stock,2000-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JHY,Nuveen High Income 2020 Target Term Fund Com,NYSE,ETF,2015-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JIB,Janus Henderson Sustainable & Impact Core Bond ETF,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JIDA,JPMORGAN ACTIVEBUILDERS INTERNATIONAL EQUITY ETF ,NYSE ARCA,ETF,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JIG,JPMorgan International Growth ETF,NYSE ARCA,ETF,2020-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JIGB,JPMORGAN CORPORATE BOND RESEARCH ENHANCED ETF ,NYSE ARCA,ETF,2018-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JILL,J.Jill Inc,NYSE,Stock,2017-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJA,Barclays Bank PLC,NYSE ARCA,ETF,2018-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJC,Barclays Bank PLC,NYSE ARCA,ETF,2018-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJE,iPathA Series B Bloomberg Energy Subindex Total Return ETN,NYSE ARCA,ETF,2018-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJG,iPathA Series B Bloomberg Grains Subindex Total Return ETN,NYSE ARCA,ETF,2018-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJM,iPathA Series B Bloomberg Industrial Metals Subindex Total Return ETN,NYSE ARCA,ETF,2018-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJN,Barclays Bank PLC,NYSE ARCA,ETF,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJP,iPathA Series B Bloomberg Precious Metals Subindex Total Return ETN,NYSE ARCA,ETF,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJS,iPathA Series B Bloomberg Softs Subindex Total Return ETN,NYSE ARCA,ETF,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJSF,J&J Snack Foods Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJT,iPathA Series B Bloomberg Tin Subindex Total Return ETN,NYSE ARCA,ETF,2018-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JJU,iPathA Series B Bloomberg Aluminum Subindex Total Return ETN,NYSE ARCA,ETF,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JKHY,Jack Henry & Associates Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JKS,JinkoSolar Holding Co. Ltd,NYSE,Stock,2010-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JLL,Jones Lang Lasalle Inc,NYSE,Stock,1997-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JLS,Nuveen Mortgage Opportunity Term Fund,NYSE,ETF,2009-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMAC,Maxpro Capital Acquisition Corp - Class A,NASDAQ,Stock,2021-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMACU,Maxpro Capital Acquisition Corp - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMACW,Maxpro Capital Acquisition Corp - Warrants (27/09/2026),NASDAQ,Stock,2021-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMBS,Janus Henderson Mortgage-Backed Securities ETF,NYSE ARCA,ETF,2018-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMIA,Jumia Technologies Ag,NYSE,Stock,2019-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMIN,JPMorgan U.S. Minimum Volatility ETF,NYSE ARCA,ETF,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMM,Nuveen Multi-Market Income Fund,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMOM,JPMorgan U.S. Momentum Factor ETF,NYSE ARCA,ETF,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMST,JPMorgan Ultra-Short Municipal Income ETF,BATS,ETF,2018-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JMUB,JPMorgan Municipal ETF,BATS,ETF,2018-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JNCE,Jounce Therapeutics Inc,NASDAQ,Stock,2017-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JNJ,Johnson & Johnson,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JNK,SPDR Bloomberg High Yield Bond ETF,NYSE ARCA,ETF,2007-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JNPR,Juniper Networks Inc,NYSE,Stock,1999-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JNUG,Direxion Daily Junior Gold Miners Index Bull 2X Shares,NYSE ARCA,ETF,2013-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JO,iPathA Series B Bloomberg Coffee Subindex Total Return ETN,NYSE ARCA,ETF,2018-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOAN,JOANN Inc,NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOB,GEE Group Inc,NYSE MKT,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOBS,51Job Inc,NASDAQ,Stock,2004-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOBY,Joby Aviation Inc - Class A,NYSE,Stock,2020-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOBY-WS,Joby Aviation Inc - Warrants (16/09/2025),NYSE,Stock,2020-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOE,St. Joe Company,NYSE,Stock,1992-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOET,Virtus Terranova U.S. Quality Momentum ETF,NASDAQ,ETF,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOF,Japan Smaller Capitalization Fund Inc,NYSE,ETF,1990-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOFF,Joff Fintech Acquisition Corp - Class A,NASDAQ,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOFFU,Joff Fintech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOFFW,Joff Fintech Acquisition Corp - Warrants (25/11/2025),NASDAQ,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOJO,ATAC Credit Rotation ETF,NYSE ARCA,ETF,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOUT,Johnson Outdoors Inc - Class A,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JOYY,Infusive Compounding Global Equities ETF,NYSE ARCA,ETF,2019-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JP,Jupai Holdings Ltd,NYSE,Stock,2015-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPC,Nuveen Preferred & Income Opportunities Fund,NYSE,ETF,2003-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPEM,JPMORGAN DIVERSIFIED RETURN EMERGING MARKETS EQUITY ETF ,NYSE ARCA,ETF,2015-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPHY,JPMorgan High Yield Research Enhanced ETF,BATS,ETF,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPI,Nuveen Preferred and Income Term Fund,NYSE,ETF,2012-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPIB,JPMorgan International Bond Opportunities ETF,BATS,ETF,2017-07-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPIE,JPMorgan Income ETF,NYSE ARCA,ETF,2021-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPIN,JPMorgan Diversified Return International Equity ETF,NYSE ARCA,ETF,2014-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM,JPMorgan Chase & Company,NYSE,Stock,1983-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM-P-C,JPMorgan Chase & Company,NYSE,Stock,2019-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM-P-D,JPMorgan Chase & Company,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM-P-F,J P Morgan Chase Company Depositary Shares Series Y,NYSE,Stock,2015-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM-P-F-CL,,NYSE,Stock,2010-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM-P-G,JPMorgan Chase & Company,NYSE,Stock,2015-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM-P-J,,NYSE,Stock,2019-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM-P-K,JPMorgan Chase & Company,NYSE,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM-P-L,JPMorgan Chase & Company,NYSE,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPM-P-M,J P Morgan Chase & Co Depositary Shares Series M,NYSE,Stock,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPMB,JPMORGAN USD EMERGING MARKETS SOVEREIGN BOND ETF ,NYSE ARCA,ETF,2018-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPME,JPMorgan Diversified Return U.S. Mid Cap Equity ETF,NYSE ARCA,ETF,2016-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPS,Nuveen Preferred & Income Securities Fund,NYSE,ETF,2002-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPSE,JPMorgan Diversified Return U.S. Small Cap Equity ETF,NYSE ARCA,ETF,2016-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPST,JPMorgan Ultra-Short Income ETF,BATS,ETF,2017-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPT,Nuveen Preferred and Income Fund,NYSE,ETF,2017-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPUS,JPMorgan Diversified Return U.S. Equity ETF,NYSE ARCA,ETF,2015-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JPXN,ISHARES JPX-NIKKEI 400 ETF ,NYSE ARCA,ETF,2001-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JQC,Nuveen Credit Strategies Incom,NYSE,ETF,2003-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JQUA,JPMorgan U.S. Quality Factor ETF,NYSE ARCA,ETF,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JRE,JANUS HENDERSON U.S. REAL ESTATE ETF ,NYSE ARCA,ETF,2021-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JRI,Nuveen Real Asset Income and Growth Fund,NYSE,ETF,2012-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JRNY,ALPS Global Travel Beneficiaries ETF,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JRO,Nuveen Floating Rate Income Opportunity Fund,NYSE,ETF,2004-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JRS,Nuveen Real Estate Income Fund,NYSE,ETF,2001-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JRSH,Jerash holdings (US) Inc,NASDAQ,Stock,2018-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JRVR,James River Group Holdings Ltd,NASDAQ,Stock,2014-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JSCP,JPMorgan Short Duration Core Plus ETF,NYSE ARCA,ETF,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JSD,Nuveen Short Duration Credit Opportunities Fund,NYSE,ETF,2011-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JSM,Navient Corp,NASDAQ,Stock,2003-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JSMD,Janus Henderson Small/Mid Cap Growth Alpha ETF,NASDAQ,ETF,2016-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JSML,Janus Henderson Small Cap Growth Alpha ETF,NASDAQ,ETF,2016-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JSPR,Jasper Therapeutics Inc,NASDAQ,Stock,2021-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JSPRW,Jasper Therapeutics Inc - Warrants (24/09/2026),NASDAQ,Stock,2020-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JSTC,ADASINA SOCIAL JUSTICE ALL CAP GLOBAL ETF ,NYSE ARCA,ETF,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JT,Jianpu Technology Inc,NYSE,Stock,2017-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JTA,Nuveen TaxAdvantaged Ttl Rtrn Strtgy Fd,NYSE,ETF,2004-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JTD,Nuveen Tax-Advantaged Dividend Growth Fund,NYSE,ETF,2007-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUGG,Jaws Juggernaut Acquisition Corp - Class A,NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUGGU,Jaws Juggernaut Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUGGW,Jaws Juggernaut Acquisition Corp - Warrants (17/06/2026),NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JULZ,TRUESHARES STRUCTURED OUTCOME (JULY) ETF ,BATS,ETF,2020-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUN,Juniper II Corp - Class A,NYSE,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUN-U,Juniper II Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUN-WS,Juniper II Corp - Warrants(01/01/9999),NYSE,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUNZ,TrueShares Structured Outcome (June) ETF,BATS,ETF,2021-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUPW,Jupiter Wellness Inc,NASDAQ,Stock,2020-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUPWW,Jupiter Wellness Inc - Warrants (01/10/2025),NASDAQ,Stock,2020-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUSA,JPMORGAN ACTIVEBUILDERS U.S. LARGE CAP EQUITY ETF ,NYSE ARCA,ETF,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JUST,Goldman Sachs Just Us Large Cap Equity ETF,NYSE ARCA,ETF,2018-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JVA,Coffee Holding Co Inc,NASDAQ,Stock,2005-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JVAL,JPMorgan U.S. Value Factor ETF,NYSE ARCA,ETF,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JW-A,John Wiley & Sons Inc - Class A,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JW-B,John Wiley & Sons Inc - Class B,NYSE,Stock,1995-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JWAC,Jupiter Wellness Acquisition Corp - Class A,NASDAQ,Stock,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JWACR,Jupiter Wellness Acquisition Corp,NASDAQ,Stock,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JWEL,Jowell Global Ltd,NASDAQ,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JWN,Nordstrom Inc,NYSE,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JWS-U,Jaws Acquisition Corp - Units (1 Ord Class A & 1/3 War),NYSE,Stock,2020-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JWSM,Jaws Mustang Acquisition Corporation - Class A,NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JWSM-U,Jaws Mustang Acquisition Corporation - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JWSM-WS,Jaws Mustang Acquisition Corporation - Warrants (30/01/2026),NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JXI,iShares Global Utilities ETF,NYSE ARCA,ETF,2006-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JXN,Jackson Financial Inc - Class A,NYSE,Stock,2021-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JXN-W,Jackson Financial Inc Class A Whenissued,NYSE,Stock,2021-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JYAC,Jiya Acquisition Corp - Class A,NASDAQ,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JYNT,Joint Corp,NASDAQ,Stock,2014-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JZRO,Janus Henderson Net Zero Transition Resources ETF,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "JZXN,Jiuzi Holdings Inc,NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "K,Kellogg Company,NYSE,Stock,1984-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KACL,Kairous Acquisition Corp Ltd,NASDAQ,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KACLR,Kairous Acquisition Corp Ltd,NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KACLU,Kairous Acquisition Corp Ltd - Units (1 Ord Share & 1/2 War & 1 Right),NASDAQ,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KACLW,Kairous Acquisition Corp Ltd - Warrants (15/09/2026),NASDAQ,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAHC,KKR Acquisition Holdings I Corp - Class A,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAHC-U,KKR Acquisition Holdings I Corp - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAHC-WS,KKR Acquisition Holdings I Corp - Warrants (01/01/9999),NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAI,Kadant Inc,NYSE,Stock,1992-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAII,Kismet Acquisition Two Corp - Class A,NASDAQ,Stock,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAIIU,Kismet Acquisition Two Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAIIW,Kismet Acquisition Two Corp - Warrants (10/02/2026),NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAIR,Kairos Acquisition Corp - Class A,NASDAQ,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAIRU,Kairos Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAIRW,Kairos Acquisition Corp - Warrants (07/01/2026),NASDAQ,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KALA,Kala Pharmaceuticals Inc,NASDAQ,Stock,2017-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KALL,KraneShares MSCI China All Shares Index ETF,NYSE ARCA,ETF,2015-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KALU,Kaiser Aluminum Corp,NASDAQ,Stock,2006-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KALV,KalVista Pharmaceuticals Inc,NASDAQ,Stock,2015-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAMN,Kaman Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAPR,Innovator U.S. Small Cap Power Buffer ETF - April,BATS,ETF,2020-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAR,KAR Auction Services Inc,NYSE,Stock,2009-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KARO,Karooooo Ltd,NASDAQ,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KARS,KraneShares Electric Vehicles and Future Mobility Index ETF,NYSE ARCA,ETF,2018-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KAVL,Kaival Brands Innovations Group Inc,NASDAQ,Stock,2007-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KB,KB Financial Group Inc,NYSE,Stock,2001-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBA,KraneSharesBosera MSCI China A 50 Connect Index ETF,NYSE ARCA,ETF,2014-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBAL,Kimball International Inc - Class B,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBE,SPDR S&P Bank ETF,NYSE ARCA,ETF,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBH,KB Home,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBND,KRANESHARES BLOOMBERG BARCLAYS CHINA BOND INCLUSION INDEX ETF ,NYSE ARCA,ETF,2014-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBNT,Kubient Inc,NASDAQ,Stock,2020-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBNTW,Kubient Inc - Warrants (09/07/2025),NASDAQ,Stock,2020-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBR,KBR Inc,NYSE,Stock,2006-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBUY,KraneShares CICC China Consumer Leaders Index ETF,NYSE ARCA,ETF,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBWB,Invesco KBW Bank ETF,NASDAQ,ETF,2011-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBWD,Invesco KBW High Dividend Yield Financial ETF,NASDAQ,ETF,2010-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBWP,Invesco KBW Property & Casualty Insurance ETF,NASDAQ,ETF,2010-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBWR,Invesco KBW Regional Banking ETF,NASDAQ,ETF,2011-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KBWY,Invesco KBW Premium Yield Equity REIT ETF,NASDAQ,ETF,2010-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KC,Kingsoft Cloud Holdings Ltd,NASDAQ,Stock,2020-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KCAC,Kensington Capital Acquisition Corp II - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KCAC-U,Kensington Capital Acquisition Corp IV - Units (1 Ord Class A & One Class 1 War & One Class 2 war),NYSE,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KCAC-WS,Kensington Capital Acquisition Corp II - Warrants (23/02/2026),NYSE,Stock,2020-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KCCA,Kraneshares California Carbon Allowance Strategy ETF,NYSE ARCA,ETF,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KCE,SPDR S&P Capital Markets ETF,NYSE ARCA,ETF,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KCGI,Kensington Capital Acquisition Corp V - Class A,NYSE,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KCGI-U,Kensington Capital Acquisition Corp V - Units (1 Ord Share Class A & 3/4 War),NYSE,Stock,2021-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KCGI-WS,Kensington Capital Acquisition Corp V Redeemable warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KD,Kyndryl Holdings Inc,NYSE,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KD-W,Kyndryl Holdings Inc WhenIssued,NYSE,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KDNY,Chinook Therapeutics Inc,NASDAQ,Stock,2015-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KDP,Keurig Dr Pepper Inc,NASDAQ,Stock,2008-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KDRN,KINGSBARN TACTICAL BOND ETF ,NYSE ARCA,ETF,2021-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KE,Kimball Electronics Inc,NASDAQ,Stock,2014-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEJI,GLOBAL X CHINA DISRUPTION ETF ,NASDAQ,ETF,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KELYA,Kelly Services Inc - Class A,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KELYB,Kelly Services Inc - Class B,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEMQ,KraneShares Emerging Markets Consumer Technology Index ETF,NYSE ARCA,ETF,2017-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEMX,KraneShares MSCI Emerging Markets ex China Index ETF,NYSE ARCA,ETF,2019-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEN,Kenon Holdings Ltd,NYSE,Stock,2015-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEP,Korea Electric Power,NYSE,Stock,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEQU,Kewaunee Scientific Corporation,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KERN,Akerna Corp,NASDAQ,Stock,2018-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KERNW,Akerna Corp - Warrants (30/01/2023),NASDAQ,Stock,2018-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KESG,KraneShares MSCI China ESG Leaders Index ETF,NYSE ARCA,ETF,2020-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEUA,KraneShares European Carbon Allowance Strategy ETF,NYSE ARCA,ETF,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEX,Kirby Corp,NYSE,Stock,1991-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEY,Keycorp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEY-P-I,Keycorp,NYSE,Stock,2016-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEY-P-J,Keycorp,NYSE,Stock,2018-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEY-P-K,Keycorp,NYSE,Stock,2019-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KEYS,Keysight Technologies Inc,NYSE,Stock,2014-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KF,Korea Fund Inc,NYSE,ETF,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KFFB,Kentucky First Federal Bancorp,NASDAQ,Stock,2005-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KFRC,Kforce Inc,NASDAQ,Stock,1995-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KFS,Kingsway Financial Services Inc,NYSE,Stock,1998-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KFVG,KraneShares CICC China 5G and Semiconductor Index ETF,NYSE ARCA,ETF,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KFY,Korn Ferry,NYSE,Stock,1999-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KFYP,KraneShares CICC China Leaders 100 Index ETF,NYSE ARCA,ETF,2013-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KGC,Kinross Gold Corp,NYSE,Stock,1994-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KGHG,KraneShares Global Carbon Transformation ETF,NYSE ARCA,ETF,2022-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KGRN,KraneShares MSCI China Clean Technology Index ETF,NYSE ARCA,ETF,2017-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KGRO,KraneShares China Innovation ETF,NYSE ARCA,ETF,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KHC,Kraft Heinz Company,NASDAQ,Stock,2015-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KHYB,KraneShares Asia Pacific High Income Bond ETF,NYSE ARCA,ETF,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIDS,OrthoPediatrics Corp,NASDAQ,Stock,2017-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIE,SPDR S&P Insurance ETF,NYSE ARCA,ETF,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIII,Kismet Acquisition Three Corp - Class A,NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIIIU,Kismet Acquisition Three Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIIIW,Kismet Acquisition Three Corp - Warrants (30/06/2026),NASDAQ,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIM,Kimco Realty Corp,NYSE,Stock,1991-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIM-P-J,Kimco Realty Corporation Depositary Sh Repstg 11000th Pfd CL J,NYSE,Stock,2007-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIM-P-L,Kimco Realty Corporation Class L Depositary Shares each of which represents a oneone thousandth fractional interest in a share of 5125 Class L Cumulative Red,NYSE,Stock,2017-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIM-P-M,Kimco Realty Corporation Class M Depositary Shares each of which represents a oneone thousandth fractional interest in a share of 525 Class M Cumulative Rede,NYSE,Stock,2017-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIND,Nextdoor Holdings Inc - Class A,NYSE,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KINS,Kingstone Cos. Inc,NASDAQ,Stock,1999-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KINZ,KINS Technology Group Inc - Class A,NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KINZU,KINS Technology Group Inc - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KINZW,KINS Technology Group Inc - Warrants (14/10/2025),NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIO,KKR Income Opportunities Fund,NYSE,ETF,2013-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIQ,Kelso Technologies Inc,NYSE MKT,Stock,1996-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KIRK,Kirkland`s Inc,NASDAQ,Stock,2002-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KJAN,Innovator U.S. Small Cap Power Buffer ETF - January,BATS,ETF,2020-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KJUL,Innovator U.S. Small Cap Power Buffer ETF - July,BATS,ETF,2020-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KKR,KKR & Co. Inc,NYSE,Stock,2010-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KKR-P-C,KKR & Co. Inc,NYSE,Stock,2020-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KKRS,KKR Group Finance Co. IX LLC,NYSE,Stock,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLAC,KLA Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLAQ,KL Acquisition Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLAQU,KL Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLAQW,KL Acquisition Corp - Warrants (06/11/2025),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLCD,KFA LARGE CAP QUALITY DIVIDEND INDEX ETF ,NYSE ARCA,ETF,2019-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLDO,Kaleido Biosciences Inc,NASDAQ,Stock,2019-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLDW,KNOWLEDGE LEADERS DEVELOPED WORLD ETF ,NYSE ARCA,ETF,2015-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLIC,Kulicke & Soffa Industries Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLNE,Direxion Daily Global Clean Energy Bull 2X Shares,NYSE ARCA,ETF,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLR,Kaleyra Inc,NYSE,Stock,2018-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLR-WS,Kaleyra Inc - Warrants (06/03/2025),NYSE,Stock,2018-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLTR,Kaltura Inc,NASDAQ,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KLXE,KLX Energy Services Holdings Inc,NASDAQ,Stock,2018-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMB,Kimberly-Clark Corp,NYSE,Stock,1984-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMDA,Kamada Ltd,NASDAQ,Stock,2013-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMED,KRANESHARES EMERGING MARKETS HEALTHCARE INDEX ETF ,NYSE ARCA,ETF,2018-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMF,Kayne Anderson NextGen Energy & Infrastructure Inc,NYSE,ETF,2010-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMI,Kinder Morgan Inc - Class P,NYSE,Stock,2011-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMLM,KFA Mount Lucas Index Strategy ETF,NYSE ARCA,ETF,2020-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMPB,Kemper Corporation,NYSE,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMPH,,NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMPR,Kemper Corporation,NYSE,Stock,1991-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMT,Kennametal Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KMX,Carmax Inc,NYSE,Stock,1997-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KN,Knowles Corp,NYSE,Stock,2014-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNBE,KnowBe4 Inc - Class A,NASDAQ,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNDI,Kandi Technologies Group Inc,NASDAQ,Stock,2007-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNG,FT Cboe Vest S&P 500 Dividend Aristocrats Target Income ETF,BATS,ETF,2018-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNGS,UPHOLDINGS Compound Kings ETF,BATS,ETF,2020-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNOP,KNOT Offshore Partners LP,NYSE,Stock,2013-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNSA,Kiniksa Pharmaceuticals Ltd - Class A,NASDAQ,Stock,2018-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNSL,Kinsale Capital Group Inc,NYSE,Stock,2016-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNSW,KnightSwan Acquisition Corp - Class A,NYSE,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNSW-U,KnightSwan Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNSW-WS,KnightSwan Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNTE,Kinnate Biopharma Inc,NASDAQ,Stock,2020-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNTK,Kinetik Holdings Inc - Class A,NASDAQ,Stock,2017-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KNX,Knight-Swift Transportation Holdings Inc - Class A,NYSE,Stock,1994-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KO,Coca-Cola Company,NYSE,Stock,1962-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOCG,FIS Knights of Columbus Global Belief ETF,NYSE ARCA,ETF,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOCT,Innovator U.S. Small Cap Power Buffer ETF - October,BATS,ETF,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOD,Kodiak Sciences Inc,NASDAQ,Stock,2018-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KODK,Eastman Kodak Company,NYSE,Stock,2013-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOF,Coca-Cola Femsa S.A.B. DE C.V.,NYSE,Stock,1993-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOIN,Capital Link Global Fintech Leaders ETF,NYSE ARCA,ETF,2018-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOKU,Xtrackers MSCI Kokusai Equity ETF,NYSE ARCA,ETF,2020-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOLD,ProShares UltraShort Bloomberg Natural Gas,NYSE ARCA,ETF,2011-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOMP,SPDR S&P Kensho New Economies Composite ETF,NYSE ARCA,ETF,2018-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KONG,Formidable Fortress ETF,NYSE ARCA,ETF,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOP,Koppers Holdings Inc,NYSE,Stock,2006-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOPN,Kopin Corp,NASDAQ,Stock,1992-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KORE,Kore Group Holdings Inc,NYSE,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KORE-WS,Kore Group Holdings Inc - Warrants (01/01/9999),NYSE,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KORP,American Century Diversified Corporate Bond ETF,NYSE ARCA,ETF,2018-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KORU,Direxion Daily South Korea Bull 3X Shares,NYSE ARCA,ETF,2013-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOS,Kosmos Energy Ltd,NYSE,Stock,2011-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KOSS,Koss Corp,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KPLT,Katapult Holdings Inc,NASDAQ,Stock,2019-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KPLTW,Katapult Holdings Inc - Warrants (09/06/2026),NASDAQ,Stock,2019-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KPRX,Kiora Pharmaceuticals Inc,NASDAQ,Stock,2015-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KPTI,Karyopharm Therapeutics Inc,NASDAQ,Stock,2013-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KR,Kroger Company,NYSE,Stock,1977-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRBN,KraneShares Global Carbon Strategy ETF,NYSE ARCA,ETF,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRBP,Kiromic BioPharma Inc,NASDAQ,Stock,2020-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRC,Kilroy Realty Corp,NYSE,Stock,1997-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRE,SPDR S&P Regional Banking ETF,NYSE ARCA,ETF,2006-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KREF,KKR Real Estate Finance Trust Inc,NYSE,Stock,2017-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KREF-P-A,KKR Real Estate Finance Trust Inc 6.50 Series A Cumulative Redeemable Preferred Stock,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRG,Kite Realty Group Trust,NYSE,Stock,2004-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRKR,36Kr Holdings Inc,NASDAQ,Stock,2019-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRMA,Global X Conscious Companies ETF,NASDAQ,ETF,2016-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRMD,Repro-Med Systems Inc,NASDAQ,Stock,1996-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRNL,Kernel Group Holdings Inc - Class A,NASDAQ,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRNLU,Kernel Group Holdings Inc - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRNLW,Kernel Group Holdings Inc - Warrants (02/02/2026),NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRNT,Kornit Digital Ltd,NASDAQ,Stock,2015-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRNY,Kearny Financial Corp,NASDAQ,Stock,2005-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRO,Kronos Worldwide Inc,NYSE,Stock,2003-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRON,Kronos Bio Inc,NASDAQ,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KROP,Global X AgTech & Food Innovation ETF,NASDAQ,ETF,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KROS,Keros Therapeutics Inc,NASDAQ,Stock,2020-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRP,Kimbell Royalty Partners LP,NYSE,Stock,2017-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRT,Karat Packaging Inc,NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRTX,Karuna Therapeutics Inc,NASDAQ,Stock,2019-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRUS,Kura Sushi USA Inc - Class A,NASDAQ,Stock,2019-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KRYS,Krystal Biotech Inc,NASDAQ,Stock,2017-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSA,iShares MSCI Saudi Arabia ETF,NYSE ARCA,ETF,2015-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSCD,KFA SMALL CAP QUALITY DIVIDEND INDEX ETF ,NYSE ARCA,ETF,2019-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSCP,Knightscope Inc - Class A,NASDAQ,Stock,2022-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSI,Kadem Sustainable Impact Corp - Class A,NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSICU,Kadem Sustainable Impact Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSICW,Kadem Sustainable Impact Corp - Warrants (17/03/2026),NASDAQ,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSM,DWS Strategic Municipal Income Trust,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSPN,Kaspien Holdings Inc,NASDAQ,Stock,1993-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSS,Kohl`s Corp,NYSE,Stock,1992-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KSTR,KraneShares SSE STAR Market 50 Index ETF,NYSE ARCA,ETF,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KT,KT Corporation,NYSE,Stock,1999-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTB,Kontoor Brands Inc,NYSE,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTCC,Key Tronic Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTEC,KraneShares Hang Seng TECH Index ETF,NYSE ARCA,ETF,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTF,DWS Municipal Income Trust,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTH,Structures Products Cp 8 CorTS Issued by Peco Energy Cap Tr II Preferred Stock,NYSE,Stock,2001-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTN,Structured Products Corp 8205 CorTS 8205 Corporate Backed Trust Securities CorTS,NYSE,Stock,2003-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTOS,Kratos Defense & Security Solutions Inc,NASDAQ,Stock,1999-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTP,Corts 7625 Pfd,NYSE,Stock,1999-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTRA,Kintara Therapeutics Inc,NASDAQ,Stock,2013-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTTA,Pasithea Therapeutics Corp,NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KTTAW,Pasithea Therapeutics Corp - Warrants (11/08/2026),NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KUKE,Kuke Music Holding Ltd,NYSE,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KULR,KULR Technology Group Inc,NYSE MKT,Stock,2018-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KURA,Kura Oncology Inc,NASDAQ,Stock,2015-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KURE,KraneShares MSCI All China Health Care Index ETF,NYSE ARCA,ETF,2018-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KVHI,KVH Industries Inc,NASDAQ,Stock,1996-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KVLE,KFA Value Line Dynamic Core Equity Index ETF,NYSE ARCA,ETF,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KVSA,Khosla Ventures Acquisition Co - Class A,NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KVSC,Khosla Ventures Acquisition Co III - Class A,NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KW,Kennedy-Wilson Holdings Inc,NYSE,Stock,2007-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KWAC,Kingswood Acquisition Corp - Class A,NYSE,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KWAC-U,Kingswood Acquisition Corp - Units (1 Ord Share Class A & 3/4 War),NYSE,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KWAC-WS,Kingswood Acquisition Corp - Warrants (01/05/2027),NYSE,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KWEB,KraneShares CSI China Internet ETF,NYSE ARCA,ETF,2013-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KWR,Quaker Houghton,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KWT,iShares MSCI Kuwait ETF,BATS,ETF,2020-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KXI,iShares Global Consumer Staples ETF,NYSE ARCA,ETF,2006-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KXIN,Kaixin Auto Holdings,NASDAQ,Stock,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KYCH,Keyarch Acquisition Corp - Class A,NASDAQ,Stock,2022-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KYCHR,Keyarch Acquisition Corp,NASDAQ,Stock,2022-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KYCHU,Keyarch Acquisition Corp - Units (1 Ord Class A1Rights & 1/2 War),NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KYCHW,Keyarch Acquisition Corp - Warrants (24/01/2027),NASDAQ,Stock,2022-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KYMR,Kymera Therapeutics Inc,NASDAQ,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KYN,Kayne Anderson Energy Infrastructure Fund Inc,NYSE,ETF,2004-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KYN-P-F,Kayne Anderson MLP Investment Company 350 Series F Mandatory Redeemable Preferred Shares 2500 Liquidation Preference per share,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KYN-P-F-CL,,NYSE,Stock,2020-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KZIA,Kazia Therapeutics Ltd,NASDAQ,Stock,2017-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "KZR,Kezar Life Sciences Inc,NASDAQ,Stock,2018-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "L,Loews Corp,NYSE,Stock,1987-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAAA,Lakeshore Acquisition I Corp,NASDAQ,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAAAU,Lakeshore Acquisition I Corp - Units (1 Ord Share & 3/4 War),NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAAAW,Lakeshore Acquisition I Corp - Warrants (04/06/2026),NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LABD,Direxion Daily S&P Biotech Bear 3X Shares,NYSE ARCA,ETF,2015-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LABP,Landos Biopharma Inc,NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LABU,Direxion Daily S&P Biotech Bull 3X Shares,NYSE ARCA,ETF,2015-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAC,Lithium Americas Corp,NYSE,Stock,2018-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAD,Lithia Motors Inc - Class A,NYSE,Stock,1996-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LADR,Ladder Capital Corp - Class A,NYSE,Stock,2014-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAIX,LAIX Inc,NYSE,Stock,2018-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAKE,Lakeland Industries Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAMR,Lamar Advertising Co - Class A,NASDAQ,Stock,1996-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LANC,Lancaster Colony Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAND,Gladstone Land Corp,NASDAQ,Stock,2013-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LANDM,Gladstone Land Corp,NASDAQ,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LANDO,Gladstone Land Corp,NASDAQ,Stock,2020-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LARK,Landmark Bancorp Inc,NASDAQ,Stock,1994-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LASR,nLIGHT Inc,NASDAQ,Stock,2018-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LATG,LatAmGrowth SPAC - Class A,NASDAQ,Stock,2022-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LATGU,LatAmGrowth SPAC - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LATGW,LatAmGrowth SPAC - Warrants (20/01/2027),NASDAQ,Stock,2022-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAUR,Laureate Education Inc,NASDAQ,Stock,2017-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAW,CS Disco Inc,NYSE,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAWS,Lawson Products Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAX,8i Acquisition 2 Corp,NASDAQ,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAXXR,8i Acquisition 2 Corp,NASDAQ,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAXXU,8i Acquisition 2 Corp - Unit (1 Ordinary share & 1 Wrt & 1 Rts),NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAXXW,8i Acquisition 2 Corp - Warrants (24/09/2026),NASDAQ,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAZ,Lazard Ltd - Class A,NYSE,Stock,2005-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAZR,Luminar Technologies Inc - Class A,NASDAQ,Stock,2019-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LAZY,Lazydays Holdings Inc,NASDAQ,Stock,2018-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBAI,Lakeland Bancorp Inc,NASDAQ,Stock,1999-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBAY,Leatherback Long/Short Alternative Yield ETF,NYSE ARCA,ETF,2020-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBBBU,Lakeshore Acquisition II Corp - Units (1 Ord 1/2 War & 1 Right),NASDAQ,Stock,2022-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBC,Luther Burbank Corp,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBPH,Longboard Pharmaceuticals Inc,NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBPS,4d Pharma Plc,NASDAQ,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBPSW,4d Pharma Plc - Warrants (22/02/2025),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBRDA,Liberty Broadband Corp - Series A,NASDAQ,Stock,2014-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBRDK,Liberty Broadband Corp - Series C,NASDAQ,Stock,2014-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBRDP,Liberty Broadband Corp,NASDAQ,Stock,2020-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBRT,Liberty Oilfield Services Inc - Class A,NYSE,Stock,2018-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBTYA,Liberty Global plc - Class A,NASDAQ,Stock,2004-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBTYB,Liberty Global plc - Class B,NASDAQ,Stock,2004-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LBTYK,Liberty Global plc - Class C,NASDAQ,Stock,2005-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LC,LendingClub Corp,NYSE,Stock,2014-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCA,Landcadia Holdings IV Inc - Class A,NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCAA,L Catterton Asia Acquisition Corp - Class A,NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCAAU,L Catterton Asia Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCAAW,L Catterton Asia Acquisition Corp - Warrants (08/03/2026),NASDAQ,Stock,2021-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCAHU,Landcadia Holdings IV Inc - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2016-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCAHW,Landcadia Holdings IV Inc - Warrants (19/03/2025),NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCAP,Lionheart Acquisition Corp II - Class A,NASDAQ,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCAPU,Lionheart Acquisition Corp II - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCAPW,Lionheart Acquisition Corp II - Warrants (13/08/2025),NASDAQ,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCG,STERLING CAPITAL FOCUS EQUITY ETF ,NYSE ARCA,ETF,2020-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCI,Lannett Co. Inc,NYSE,Stock,1997-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCID,Lucid Group Inc,NASDAQ,Stock,2020-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCII,LCI Industries,NYSE,Stock,1989-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCNB,LCNB Corp,NASDAQ,Stock,1999-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCR,Leuthold Core ETF,NYSE ARCA,ETF,2020-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCTD,BlackRock World ex U.S. Carbon Transition Readiness ETF,NYSE ARCA,ETF,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCTU,BlackRock U.S. Carbon Transition Readiness ETF,NYSE ARCA,ETF,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCTX,Lineage Cell Therapeutics Inc,NYSE MKT,Stock,1992-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCUT,Lifetime Brands Inc,NASDAQ,Stock,1991-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCW,Learn CW Investment Corp - Class A,NYSE,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCW-U,Learn CW Investment Corporation Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant,NYSE,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LCW-WS,Learn CW Investment Corp - Warrants (08/10/2026),NYSE,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LD,Barclays Bank PLC,NYSE ARCA,ETF,2008-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LDEM,ISHARES ESG MSCI EM LEADERS ETF ,NASDAQ,ETF,2020-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LDHA,LDH Growth Corp I - Class A,NASDAQ,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LDHAU,LDH Growth Corp I - Units (1 Ord Class A & 1/5 War),NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LDHAW,LDH Growth Corp I - Warrants (17/03/2026),NASDAQ,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LDI,LoanDepot Inc - Class A,NYSE,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LDOS,Leidos Holdings Inc,NYSE,Stock,2006-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LDP,Cohen & Steers Ltd Duration Preferred and Income Fund Inc,NYSE,ETF,2012-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LDSF,First Trust Low Duration Strategic Focus ETF,NASDAQ,ETF,2019-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LDUR,PIMCO Enhanced Low Duration Active Exchange-Traded Fund,NYSE ARCA,ETF,2014-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LE,Lands` End Inc,NASDAQ,Stock,2014-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEA,Lear Corp,NYSE,Stock,2009-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEAD,Siren DIVCON Leaders Dividend ETF,BATS,ETF,2016-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEAP,Ribbit LEAP Ltd - Class A,NYSE,Stock,2020-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEAP-U,Ribbit LEAP Ltd - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2020-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEAP-WS,Ribbit LEAP Ltd - Warrants (09/09/2025),NYSE,Stock,2020-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LECO,Lincoln Electric Holdings Inc,NASDAQ,Stock,1995-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEDS,Semileds Corp,NASDAQ,Stock,2010-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEE,Lee Enterprises Inc,NASDAQ,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEG,Leggett & Platt Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEGA,Lead Edge Growth Opportunities Ltd - Class A,NASDAQ,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEGAU,Lead Edge Growth Opportunities Ltd - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEGAW,Lead Edge Growth Opportunities Ltd - Warrants (01/04/2026),NASDAQ,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEGH,Legacy Housing Corp,NASDAQ,Stock,2018-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEGN,Legend Biotech Corp,NASDAQ,Stock,2020-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEGO,Legato Merger Corp,NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEGOU,Legato Merger Corp - Units (1 Ord & 1 War),NASDAQ,Stock,2021-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEGOW,Legato Merger Corp - Warrants (31/12/2025),NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEGR,First Trust Indxx Innovative Transaction & Process ETF,NASDAQ,ETF,2018-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEJU,Leju Holdings Ltd,NYSE,Stock,2014-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEMB,iShares J.P. Morgan EM Local Currency Bond ETF,NYSE ARCA,ETF,2011-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEN,Lennar Corp - Class A,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEN-B,Lennar Corp - Class B,NYSE,Stock,2003-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEO,BNY Mellon Strategic Municipals Inc,NYSE,ETF,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LESL,Leslies Inc,NASDAQ,Stock,2020-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LETB,AdvisorShares Let Bob AI Powered Momentum ETF,NYSE ARCA,ETF,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEU,Centrus Energy Corp - Class A,NYSE MKT,Stock,1998-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEV,Lion Electric Co (The),NYSE,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEV-WS,Lion Electric Co (The) - Warrants (06/05/2026),NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEVI,Levi Strauss & Co. Cls A,NYSE,Stock,2019-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEVL,Level One Bancorp Inc,NASDAQ,Stock,2018-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEVLP,Level One Bancorp Inc,NASDAQ,Stock,2020-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEXI,Alexis Practical Tactical ETF,NYSE ARCA,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEXX,Lexaria Bioscience Corp,NASDAQ,Stock,2016-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LEXXW,Lexaria Bioscience Corp - Warrants (11/01/2026),NASDAQ,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFAC,LF Capital Acquisition Corp II,NASDAQ,Stock,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFACU,LF Capital Acquisition Corp II - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFACW,LF Capital Acquisition Corp II - Warrants(15/05/2028),NASDAQ,Stock,2018-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFC,China Life Insurance Company,NYSE,Stock,2003-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFEQ,VanEck Long/Flat Trend ETF,NYSE ARCA,ETF,2017-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFG,Archaea Energy Inc - Class A,NYSE,Stock,2020-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFG-WS,Archaea Energy Inc Wt Exp 10262027,NYSE,Stock,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFLY,Leafly Holdings Inc,NASDAQ,Stock,2019-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFLYW,Leafly Holdings Inc - Warrants (07/02/2027),NASDAQ,Stock,2019-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFMD,LifeMD Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFMDP,LifeMD Inc,NASDAQ,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFST,LifeStance Health Group Inc,NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFT,Lument Finance Trust Inc,NYSE,Stock,2013-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFT-P-A,Lument Finance Trust Inc,NYSE,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFT-R,Lument Finance Trust Inc Rights Expiring February 11 2022 Rights,NYSE,Stock,2022-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFT-R-W,Lument Finance Trust Inc Rights Expiring February 11 2022 Rights when issued,NYSE,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFTR,Lefteris Acquisition Corp - Class A,NASDAQ,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFTRU,Lefteris Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFTRW,Lefteris Acquisition Corp - Warrants (01/11/2025),NASDAQ,Stock,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFUS,Littelfuse Inc,NASDAQ,Stock,1992-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LFVN,Lifevantage Corporation,NASDAQ,Stock,2004-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGAC,Lazard Growth Acquisition Corp I,NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGACU,Lazard Growth Acquisition Corp I - Units (1 Ord Class A & 1/5 War),NASDAQ,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGACW,Lazard Growth Acquisition Corp I - Warrants (10/02/2026),NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGBT,LGBTQ + ESG100 ETF ,NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGC-U,PARTS iD Inc - Units (1 Class A & 1 Warrant),NYSE,Stock,2017-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGF-A,Lions Gate Entertainment Corp - Class A,NYSE,Stock,2016-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGF-B,Lions Gate Entertainment Corp - Class B,NYSE,Stock,2016-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGH,HCM Defender 500 Index ETF,NYSE ARCA,ETF,2019-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGHL,Lion Group Holding Ltd,NASDAQ,Stock,2020-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGHLW,Lion Group Holding Ltd - Warrants (17/06/2025),NASDAQ,Stock,2020-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGI,Lazard Global Total Return and Income Fund Inc,NYSE,ETF,2004-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGIH,LGI Homes Inc,NASDAQ,Stock,2013-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGL,LGL Group Inc,NYSE MKT,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGL-WS,LGL Group Inc - Warrants (16/11/2025),NYSE MKT,Stock,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGLV,SPDR SSGA US Large Cap Low Volatility Index ETF,NYSE ARCA,ETF,2013-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGMK,LogicMark Inc,NASDAQ,Stock,2013-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGND,Ligand Pharmaceuticals Inc - Class B,NASDAQ,Stock,1992-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGO,Largo Inc,NASDAQ,Stock,2007-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGOV,FIRST TRUST LONG DURATION OPPORTUNITIES ETF ,NYSE ARCA,ETF,2019-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGST,Semper Paratus Acquisition Corp - Class A,NASDAQ,Stock,2022-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGSTU,Semper Paratus Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGSTW,Semper Paratus Acquisition Corp - Warrants (04/11/2026),NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGTO,Legato Merger Corp II - Class A,NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGTOU,Legato Merger Corp II - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGTOW,Legato Merger Corp II - Warrants (01/09/2026),NASDAQ,Stock,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGV,Longview Acquisition Corp II - Class A,NYSE,Stock,2021-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGV-U,Longview Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGV-WS,Longview Acquisition Corp II - Warrants (01/01/9999),NYSE,Stock,2021-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGVC,LAMF Global Ventures Corp I - Class A,NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGVCU,LAMF Global Ventures Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGVCW,LAMF Global Ventures Corp I - Warrants (05/11/2026),NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LGVN,Longeveron Inc - Class A,NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LH,Laboratory Corp Of America Holdings,NYSE,Stock,1990-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LHAA,Lerer Hippeau Acquisition Corp - Class A,NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LHC,Leo Holdings Corp II - Class A,NYSE,Stock,2018-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LHC-U,Leo Holdings Corp II - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LHC-WS,Leo Holdings Corp II - Warrants (07/01/2028),NYSE,Stock,2018-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LHCG,LHC Group Inc,NASDAQ,Stock,2005-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LHDX,Lucira Health Inc,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LHX,L3Harris Technologies Inc,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LI,Li Auto Inc,NASDAQ,Stock,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIAN,LianBio,NASDAQ,Stock,2021-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIBY,Liberty Resources Acquisition Corp - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIBYU,Liberty Resources Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIBYW,Liberty Resources Acquisition Corp - Warrants - (31/10/2028),NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LICY,Li-Cycle Holdings Corp - Class A,NYSE,Stock,2020-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LICY-WS,LiCycle Holdings Corp Redeemable Warrants each whole warrant exercisable for one Common Share at an exercise price of 11.50,NYSE,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIDR,AEye Inc - Class A,NASDAQ,Stock,2021-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIDRW,AEye Inc - Warrants (16/08/2026),NASDAQ,Stock,2021-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIFE,Atyr Pharma Inc,NASDAQ,Stock,2015-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LII,Lennox International Inc,NYSE,Stock,1999-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LILA,Liberty Latin America Ltd - Class A,NASDAQ,Stock,2015-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LILAK,Liberty Latin America Ltd - Class C,NASDAQ,Stock,2015-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LILM,Lilium N.V - Class A,NASDAQ,Stock,2021-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LILMW,Lilium N.V - Warrants (14/09/2026),NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LILRV,Liberty Latin America Ltd Subscription Rights When Issued,NASDAQ,Stock,2020-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIN,Linde Plc,NYSE,Stock,2018-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LINC,Lincoln Educational Services Corp,NASDAQ,Stock,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIND,Lindblad Expeditions Holdings Inc,NASDAQ,Stock,2015-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LINK,Interlink Electronics,NASDAQ,Stock,2012-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LION,Lionheart III Corp - Class A,NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIONU,Lionheart III Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIONW,Lionheart III Corp - Warrants (09/11/2026),NASDAQ,Stock,2021-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIQT,LiqTech International Inc,NASDAQ,Stock,2011-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIT,Global X Lithium & Battery Tech ETF,NYSE ARCA,ETF,2010-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LITB,LightInTheBox Holding Co Ltd,NYSE,Stock,2013-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LITE,Lumentum Holdings Inc,NASDAQ,Stock,2015-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LITM,Snow Lake Resources Ltd,NASDAQ,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LITT,Logistics Innovation Technologies Corp - Class A,NASDAQ,Stock,2021-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LITTU,Logistics Innovation Technologies Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LITTW,Logistics Innovation Technologies Corp - Warrants (10/06/2026),NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIV,EMLES @HOME ETF ,BATS,ETF,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIVB,LIV Capital Acquisition Corp II - Class A,NASDAQ,Stock,2022-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIVBU,LIV Capital Acquisition Corp II - Units (1 Ord Share Class A & 3/4 War),NASDAQ,Stock,2022-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIVBW,LIV Capital Acquisition Corp II - Warrants (07/02/2027),NASDAQ,Stock,2022-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIVE,Live Ventures Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIVN,LivaNova PLC,NASDAQ,Stock,2015-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIXT,Lixte Biotechnology Holdings Inc,NASDAQ,Stock,2010-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIXTW,Lixte Biotechnology Holdings Inc - Warrants (01/01/2025),NASDAQ,Stock,2020-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LIZI,Lizhi Inc,NASDAQ,Stock,2020-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LJAQ,Lightjump Acquisition Corp,NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LJAQU,Lightjump Acquisition Corp - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LJAQW,Lightjump Acquisition Corp - Warrants (06/01/2026),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LJPC,La Jolla Pharmaceutical Company,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LKCO,Luokung Technology Corp,NASDAQ,Stock,2018-08-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LKFN,Lakeland Financial Corp,NASDAQ,Stock,1997-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LKOR,FLEXSHARES CREDIT-SCORED US LONG CORPORATE BOND INDEX FUND ,BATS,ETF,2015-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LKQ,LKQ Corp,NASDAQ,Stock,2003-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LL,LL Flooring Holdings Inc,NYSE,Stock,2007-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LLL,JX Luxventure Ltd,NASDAQ,Stock,2013-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LLNW,Limelight Networks Inc,NASDAQ,Stock,2007-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LLY,Lilly(Eli) & Company,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMACA,Liberty Media Acquisition Corp - Series A,NASDAQ,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMACU,Liberty Media Acquisition Corp - Units (1 Ord Share Ser A & 1/5 War),NASDAQ,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMACW,Liberty Media Acquisition Corp - Warrants (22/01/2026),NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMAO,LMF Acquisition Opportunities Inc - Class A,NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMAOU,LMF Acquisition Opportunities Inc - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMAOW,LMF Acquisition Opportunities Inc - Warrants (26/01/2026),NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMAT,Lemaitre Vascular Inc,NASDAQ,Stock,2006-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMB,Limbach Holdings Inc,NASDAQ,Stock,2016-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMBS,First Trust Low Duration Opportunities ETF,NASDAQ,ETF,2014-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMDX,LumiraDx Ltd,NASDAQ,Stock,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMDXW,LumiraDx Ltd - Warrants (28/09/2026),NASDAQ,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMFA,LM Funding America Inc,NASDAQ,Stock,2015-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMND,Lemonade Inc,NYSE,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMNL,Liminal Biosciences Inc,NASDAQ,Stock,2019-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMNR,Limoneira Company,NASDAQ,Stock,2001-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMPX,Lmp Automotive Holdings Inc,NASDAQ,Stock,2019-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMST,Limestone Bancorp Inc,NASDAQ,Stock,2006-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LMT,Lockheed Martin Corp,NYSE,Stock,1977-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNC,Lincoln National Corp,NYSE,Stock,1984-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LND,Brasilagro Companhia Brasileira De Propriedade Agricola,NYSE,Stock,2012-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNDC,Landec Corp,NASDAQ,Stock,1996-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNFA,L&F Acquisition Corp - Class A,NYSE,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNFA-U,L&F Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNFA-WS,L&F Acquisition Corp - Warrants (23/05/2027),NYSE,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNG,Cheniere Energy Inc,NYSE MKT,Stock,1994-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNN,Lindsay Corporation,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNSR,LENSAR Inc,NASDAQ,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNT,Alliant Energy Corp,NASDAQ,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LNTH,Lantheus Holdings Inc,NASDAQ,Stock,2015-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOAK-U,Danimer Scientific Inc - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOAN,Manhattan Bridge Capital Inc,NASDAQ,Stock,1999-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOB,Live Oak Bancshares Inc,NASDAQ,Stock,2015-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOCC,Live Oak Crestview Climate Acquisition Corp - Class A,NYSE,Stock,2021-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOCC-U,Live Oak Crestview Climate Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOCC-WS,Live Oak Crestview Climate Acquisition Corp - Warrants (27/09/2028),NYSE,Stock,2021-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOCL,Local Bounti Corp - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOCL-WS,Local Bounti Corp - Warrants (02/03/2028),NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOCO,El Pollo Loco Holdings Inc,NASDAQ,Stock,2014-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LODE,Comstock Mining Inc,NYSE MKT,Stock,2003-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOGC,LogicBio Therapeutics Inc,NASDAQ,Stock,2018-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOGI,Logitech International S.A.,NASDAQ,Stock,1997-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOKM,Live Oak Mobility Acquisition Corp - Class A,NYSE,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOKM-U,Live Oak Mobility Acquisition Corp - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOKM-WS,Live Oak Mobility Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOMA,Loma Negra Compania Industrial Argentina Sociedad Anonima,NYSE,Stock,2017-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOOP,Loop Industries Inc,NASDAQ,Stock,2017-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOPE,Grand Canyon Education Inc,NASDAQ,Stock,2008-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOPP,Gabelli Love Our Planet & People ETF,NYSE ARCA,ETF,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOPX,DIREXION LOW PRICED STOCK ETF ,NYSE ARCA,ETF,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOR,Lazard World Dividend Income Fund Inc,NYSE,ETF,2005-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOTZ,CarLotz Inc - Class A,NASDAQ,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOTZW,CarLotz Inc - Warrants (26/02/2026),NASDAQ,Stock,2019-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOUP,Innovator Loup Frontier Tech ETF,NYSE ARCA,ETF,2018-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOV,Spark Networks SE,NASDAQ,Stock,2006-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOVE,Lovesac Company,NASDAQ,Stock,2018-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LOW,Lowe`s Cos. Inc,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPCN,Lipocine Inc,NASDAQ,Stock,2013-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPG,Dorian LPG Ltd,NYSE,Stock,2014-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPI,Laredo Petroleum Inc,NYSE,Stock,2011-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPL,LG Display Co Ltd,NYSE,Stock,2004-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPLA,LPL Financial Holdings Inc,NASDAQ,Stock,2010-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPRO,Open Lending Corp - Class A,NASDAQ,Stock,2018-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPSN,Liveperson Inc,NASDAQ,Stock,2000-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPTH,Lightpath Technologies Inc - Class A,NASDAQ,Stock,1996-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPTX,Leap Therapeutics Inc,NASDAQ,Stock,2017-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LPX,Louisiana-Pacific Corp,NYSE,Stock,1982-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LQD,iShares iBoxx USD Investment Grade Corporate Bond ETF,NYSE ARCA,ETF,2002-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LQDA,Liquidia Corp,NASDAQ,Stock,2018-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LQDB,ISHARES BBB RATED CORPORATE BOND ETF ,NYSE ARCA,ETF,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LQDH,iShares Interest Rate Hedged Corporate Bond ETF,NYSE ARCA,ETF,2014-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LQDI,iShares Inflation Hedged Corporate Bond ETF,BATS,ETF,2018-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LQDT,Liquidity Services Inc,NASDAQ,Stock,2006-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LRCX,Lam Research Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LRFC,Logan Ridge Finance Corporation,NASDAQ,Stock,2013-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LRGE,ClearBridge Large Cap Growth ESG ETF,NASDAQ,ETF,2017-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LRGF,iShares MSCI USA Multifactor ETF,NYSE ARCA,ETF,2015-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LRMR,Larimar Therapeutics Inc,NASDAQ,Stock,2014-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LRN,Stride Inc,NYSE,Stock,2007-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LRND,IQ U.S. Large Cap R&D Leaders ETF,NYSE ARCA,ETF,2022-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LRNZ,TrueShares Technology AI & Deep Learning ETF,NYSE ARCA,ETF,2020-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSAF,LeaderShares AlphaFactor US Core Equity ETF,NYSE ARCA,ETF,2018-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSAT,LeaderShares AlphaFactor Tactical Focused ETF,NYSE ARCA,ETF,2020-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSBK,Lake Shore Bancorp,NASDAQ,Stock,2006-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSCC,Lattice Semiconductor Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSEA,Landsea Homes Corporation - Class A,NASDAQ,Stock,2018-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSF,Laird Superfood Inc,NYSE MKT,Stock,2020-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSI,Life Storage Inc,NYSE,Stock,1995-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSPD,Lightspeed Commerce Inc (Sub Voting),NYSE,Stock,2019-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSPR,Larkspur Health Acquisition Corp - Class A,NASDAQ,Stock,2022-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSPRU,Larkspur Health Acquisition Corp - Units (1 Ord Share Class A & 3/4 War),NASDAQ,Stock,2021-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSPRW,Larkspur Health Acquisition Corp - Warrants (20/12/2026),NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSST,Natixis Loomis Sayles Short Duration Income ETF,NYSE ARCA,ETF,2017-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSTR,Landstar System Inc,NASDAQ,Stock,1993-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSXMA,Liberty Media Corp (Tracking Stock - SiriusXM) Series A,NASDAQ,Stock,2016-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSXMB,Liberty Media Corp (Tracking Stock - SiriusXM) Series B,NASDAQ,Stock,2016-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LSXMK,Liberty Media Corp (Tracking Stock - SiriusXM) Series C,NASDAQ,Stock,2016-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTBR,Lightbridge Corp,NASDAQ,Stock,2000-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTC,LTC Properties Inc,NYSE,Stock,1992-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTCH,Latch Inc,NASDAQ,Stock,2020-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTCHW,Latch Inc - Warrants (04/06/2026),NASDAQ,Stock,2020-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTH,Life Time Group Holdings Inc,NYSE,Stock,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTHM,Livent Corp,NYSE,Stock,2018-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTL,PROSHARES ULTRA TELECOMMUNICATIONS ,NYSE ARCA,ETF,2008-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTPZ,PIMCO 15+ Year U.S. TIPS Index Exchange-Traded Fund,NYSE ARCA,ETF,2009-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTRN,Lantern Pharma Inc,NASDAQ,Stock,2020-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTRPA,Liberty TripAdvisor Holdings Inc - Series A,NASDAQ,Stock,2014-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTRPB,Liberty TripAdvisor Holdings Inc - Series B,NASDAQ,Stock,2014-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTRX,Lantronix Inc,NASDAQ,Stock,2000-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTRY,Lottery.com Inc,NASDAQ,Stock,2018-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTRYW,Lottery.com Inc - Warrants (29/10/2026),NASDAQ,Stock,2018-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LTS-P-A,Ladenburg Thalmann Financial Services Inc 800 Series A Cumulative Redeemable Preferred Stock Liquidation Preference 2500 per share,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LU,Lufax Holding Ltd,NYSE,Stock,2020-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUB,Luby`s Inc,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUCD,Lucid Diagnostics Inc,NASDAQ,Stock,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LULU,Lululemon Athletica Inc,NASDAQ,Stock,2007-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUMN,Lumen Technologies Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUMO,Lumos Pharma Inc,NASDAQ,Stock,2011-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUNA,Luna Innovations Inc,NASDAQ,Stock,2006-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUNG,Pulmonx Corp,NASDAQ,Stock,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUV,Southwest Airlines Company,NYSE,Stock,1980-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUXA,Lux Health Tech Acquisition Corp - Class A,NASDAQ,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUXAU,Lux Health Tech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUXAW,Lux Health Tech Acquisition Corp - Warrants(30/11/2027),NASDAQ,Stock,2020-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LUXE,Emles Luxury Goods ETF,BATS,ETF,2020-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVAC,Lava Medtech Acquisition Corp - Class A,NASDAQ,Stock,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVACU,Lava Medtech Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVACW,Lava Medtech Acquisition Corp - Warrants (21/10/2026),NASDAQ,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVHD,Legg Mason Low Volatility High Dividend ETF,NASDAQ,ETF,2015-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVHI,Legg Mason International Low Volatility High Dividend ETF,BATS,ETF,2016-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVLU,Lulus Fashion Lounge Holdings Inc,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVO,LiveOne Inc,NASDAQ,Stock,2017-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVOL,American Century Low Volatility ETF,NYSE ARCA,ETF,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVOX,LiveVox Holdings Inc - Class A,NASDAQ,Stock,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVOXU,LiveVox Holdings Inc - Unit (1 Ordinary share Cls A & 1/2 Wrt),NASDAQ,Stock,2019-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVOXW,LiveVox Holdings Inc - Warrants (18/06/2026),NASDAQ,Stock,2019-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVRA,Levere Holdings Corp - Class A,NASDAQ,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVRAU,Levere Holdings Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVRAW,Levere Holdings Corp - Warrants (09/03/2026),NASDAQ,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVS,Las Vegas Sands Corp,NYSE,Stock,2004-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LVTX,LAVA Therapeutics NV,NASDAQ,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LW,Lamb Weston Holdings Inc,NYSE,Stock,2016-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LWAY,Lifeway Foods Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LWLG,Lightwave Logic Inc,NASDAQ,Stock,1998-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LX,LexinFintech Holdings Ltd,NASDAQ,Stock,2017-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LXEH,Lixiang Education Holding Co Ltd,NASDAQ,Stock,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LXFR,Luxfer Holdings PLC,NYSE,Stock,2012-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LXP,LXP Industrial Trust,NYSE,Stock,1993-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LXP-P-C,LXP Industrial Trust,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LXRX,Lexicon Pharmaceuticals Inc,NASDAQ,Stock,2000-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LXU,LSB Industries Inc,NYSE,Stock,1980-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYB,LyondellBasell Industries NV - Class A,NYSE,Stock,2010-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYEL,Lyell Immunopharma Inc,NASDAQ,Stock,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYFE,2NDVOTE LIFE NEUTRAL PLUS ETF ,BATS,ETF,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYFT,Lyft Inc Cls A,NASDAQ,Stock,2019-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYG,Lloyds Banking Group plc,NYSE,Stock,2001-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYL,Dragon Victory International Ltd,NASDAQ,Stock,2017-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYLT,Loyalty Ventures Inc,NASDAQ,Stock,2021-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYLTV,Loyalty Ventures Inc,NASDAQ,Stock,2021-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYRA,Lyra Therapeutics Inc,NASDAQ,Stock,2020-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYTS,LSI Industries Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LYV,Live Nation Entertainment Inc,NYSE,Stock,2005-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LZ,LegalZoom.com Inc,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "LZB,La-Z-Boy Inc,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "M,Macy`s Inc,NYSE,Stock,1992-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MA,Mastercard Incorporated - Class A,NYSE,Stock,2006-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAA,Mid-America Apartment Communities Inc,NYSE,Stock,1994-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAA-P-I,Mid-America Apartment Communities Inc,NYSE,Stock,2016-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAAQ,Mana Capital Acquisition Corp,NASDAQ,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAAQR,Mana Capital Acquisition Corp,NASDAQ,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAAQU,Mana Capital Acquisition Corp - Units (1 Ord Share & 1/2 War & 1 Right),NASDAQ,Stock,2021-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAAQW,Mana Capital Acquisition Corp - Warrants (11/11/2026),NASDAQ,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAAX,VANECK VECTORS MUNI ALLOCATION ETF ,BATS,ETF,2019-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAC,Macerich Company,NYSE,Stock,1994-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACA,Moringa Acquisition Corp - Class A,NASDAQ,Stock,2021-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACAU,Moringa Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACAW,Moringa Acquisition Corp - Warrants (19/02/2026),NASDAQ,Stock,2021-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACC,Mission Advancement Corp - Class A,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACC-U,Mission Advancement Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACC-WS,Mission Advancement Corp - Warrants (01/01/9999),NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACK,Merrimack Pharmaceuticals Inc,NASDAQ,Stock,2012-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACU,Mallard Acquisition Corp,NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACUU,Mallard Acquisition Corp - Units (1 Ord & 1 War),NASDAQ,Stock,2020-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MACUW,Mallard Acquisition Corp - Warrants (08/10/2025),NASDAQ,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAG,MAG Silver Corp,NYSE MKT,Stock,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAGA,POINT BRIDGE GOP STOCK TRACKER ETF ,BATS,ETF,2017-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAIN,Main Street Capital Corporation,NYSE,Stock,2007-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAKX,ProShares S&P Kensho Smart Factories ETF,NYSE ARCA,ETF,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAMB,Monarch Ambassador Income ETF,BATS,ETF,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAN,ManpowerGroup,NYSE,Stock,1988-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MANH,Manhattan Associates Inc,NASDAQ,Stock,1998-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MANT,Mantech International Corp - Class A,NASDAQ,Stock,2002-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MANU,Manchester United Plc. - Class A,NYSE,Stock,2012-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAPS,WM Technology Inc - Class A,NASDAQ,Stock,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAPSW,WM Technology Inc - Warrants (16/06/2026),NASDAQ,Stock,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAQC,Maquia Capital Acquisition Corp - Class A,NASDAQ,Stock,2021-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAQCU,Maquia Capital Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAQCW,Maquia Capital Acquisition Corp - Warrants (05/05/2026),NASDAQ,Stock,2021-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAR,Marriott International Inc - Class A,NASDAQ,Stock,1993-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MARA,Marathon Digital Holdings Inc,NASDAQ,Stock,2012-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MARB,First Trust Merger Arbitrage ETF,NYSE ARCA,ETF,2020-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MARK,Remark Holdings Inc,NASDAQ,Stock,2003-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MARPS,Marine Petroleum Trust,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MARZ,TrueShares Structured Outcome (March) ETF,BATS,ETF,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAS,Masco Corp,NYSE,Stock,1983-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MASI,Masimo Corp,NASDAQ,Stock,2007-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MASS,908 Devices Inc,NASDAQ,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAT,Mattel Inc,NASDAQ,Stock,1982-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MATW,Matthews International Corp - Class A,NASDAQ,Stock,1994-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MATX,Matson Inc,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAV,Pioneer Municipal High Income Advantage Fund Inc,NYSE,ETF,2003-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAX,MediaAlpha Inc - Class A,NYSE,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAXN,Maxeon Solar Technologies Ltd,NASDAQ,Stock,2020-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAXR,Maxar Technologies Inc,NYSE,Stock,2009-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAYS,J.W. Mays Inc,NASDAQ,Stock,1992-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MAYZ,TrueShares Structured Outcome (May) ETF,BATS,ETF,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBAC,M3 Brigade Acquisition II Corp - Class A,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBAC-U,M3 Brigade Acquisition II Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBAC-WS,M3 Brigade Acquisition II Corp - Warrants (01/01/9999),NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBB,iShares MBS ETF,NASDAQ,ETF,2007-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBBB,VANECK VECTORS MOODY'S ANALYTICS BBB CORPORATE BOND ETF ,BATS,ETF,2020-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBCC,Monarch Blue Chips Core ETF,BATS,ETF,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBCN,Middlefield Banc Corp,NASDAQ,Stock,2002-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBI,MBIA Inc,NYSE,Stock,1987-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBII,Marrone Bio Innovations Inc,NASDAQ,Stock,2013-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBIN,Merchants Bancorp,NASDAQ,Stock,2017-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBINN,Merchants Bancorp Depositary Shares 6.00 Fixed Rate Series C NonCumulative Perpetual Preferred Stock,NASDAQ,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBINO,Merchants Bancorp,NASDAQ,Stock,2019-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBINP,Merchants Bancorp,NASDAQ,Stock,2019-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBIO,Mustang Bio Inc,NASDAQ,Stock,2017-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBND,SPDR NUVEEN MUNICIPAL BOND ETF ,BATS,ETF,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBNKP,Medallion Bank,NASDAQ,Stock,2019-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBOT,Microbot Medical Inc,NASDAQ,Stock,1992-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBOX,Freedom Day Dividend ETF,NYSE ARCA,ETF,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBRX,Moleculin Biotech Inc,NASDAQ,Stock,2016-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBSC,M3 Brigade Acquisition III Corp - Class A,NYSE,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBSC-U,M3 Brigade Acquisition III Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBSC-WS,M3 Brigade Acquisition III Corp - Warrants (31/07/2028),NYSE,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBSD,FlexShares Disciplined Duration MBS Index Fund,NYSE ARCA,ETF,2014-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBT,Mobile Telesystems PJSC,NYSE,Stock,2000-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBTC,Nocturne Acquisition Corp,NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBTCR,Nocturne Acquisition Corp,NASDAQ,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBTCU,Nocturne Acquisition Corp - Units (1 & 1 Rights),NASDAQ,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBUU,Malibu Boats Inc - Class A,NASDAQ,Stock,2014-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MBWM,Mercantile Bank Corp,NASDAQ,Stock,1999-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MC,Moelis & Co - Class A,NYSE,Stock,2014-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCA,BlackRock MuniYield CA Quality Common,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAA,Mountain & Co I Acquisition Corp - Class A,NASDAQ,Stock,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAAU,Mountain & Co I Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAAW,Mountain & Co I Acquisition Corp - Warrants - (04/11/2026),NASDAQ,Stock,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAE,Mountain Crest Acquisition Corp III,NASDAQ,Stock,2021-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAER,Mountain Crest Acquisition Corp III,NASDAQ,Stock,2021-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAEU,Mountain Crest Acquisition Corp III - Units (1 Ord Share & 1 Right ),NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAF,Mountain Crest Acquisition Corp IV,NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAFR,Mountain Crest Acquisition Corp IV,NASDAQ,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAFU,Mountain Crest Acquisition Corp IV - Units (1 & 1 Rights),NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAG,Mountain Crest Acquisition Corp V,NASDAQ,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAGR,Mountain Crest Acquisition Corp V,NASDAQ,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCAGU,Mountain Crest Acquisition Corp V - Units (1 1 Rights),NASDAQ,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCB,Metropolitan Bank Holding Corp,NYSE,Stock,2017-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCBC,Macatawa Bank Corp,NASDAQ,Stock,1998-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCBS,MetroCity Bankshares Inc,NASDAQ,Stock,2017-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCD,McDonald`s Corp,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCEF,First Trust Municipal CEF Income Opportunity ETF,NASDAQ,ETF,2016-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCFT,MasterCraft Boat Holdings Inc,NASDAQ,Stock,2015-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCG,Membership Collective Group Inc Class A,NYSE,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCHI,iShares MSCI China ETF,NASDAQ,ETF,2011-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCHP,Microchip Technology Inc,NASDAQ,Stock,1993-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCHX,Marchex Inc - Class B,NASDAQ,Stock,2004-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCI,Barings Corporate Investors,NYSE,ETF,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCK,Mckesson Corporation,NYSE,Stock,1994-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCK-WD,McKesson Corporation When Distributed,NYSE,Stock,2020-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCLD,mCloud Technologies Corp,NASDAQ,Stock,2021-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCLDW,mCloud Technologies Corp - Warrants (29/11/2026),NASDAQ,Stock,2022-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCN,Madison Covered Call & Equity Strategy Fund,NYSE,ETF,2004-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCO,Moody`s Corp,NYSE,Stock,1994-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCR,MFS Charter Income Trust,NYSE,ETF,1990-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCRB,Seres Therapeutics Inc,NASDAQ,Stock,2015-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCRI,Monarch Casino & Resort Inc,NASDAQ,Stock,1993-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCRO,IQ HEDGE MACRO TRACKER ETF ,NYSE ARCA,ETF,2009-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCS,Marcus Corp,NYSE,Stock,1990-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCW,Mister Car Wash Inc,NYSE,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MCY,Mercury General Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MD,MEDNAX Inc,NYSE,Stock,1995-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDB,MongoDB Inc - Class A,NASDAQ,Stock,2017-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDC,M.D.C. Holdings Inc,NYSE,Stock,1980-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDCP,VictoryShares THB Mid Cap ESG ETF,NASDAQ,ETF,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDEV,First Trust Indxx Medical Devices ETF,BATS,ETF,2021-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDGL,Madrigal Pharmaceuticals Inc,NASDAQ,Stock,2007-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDGS,Medigus Ltd,NASDAQ,Stock,2015-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDGSW,Medigus Ltd Warrants Series C 23072023,NASDAQ,Stock,2018-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDH,MDH Acquisition Corp - Class A,NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDH-U,MDH Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDH-WS,MDH Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDIA,MediaCo Holding Inc - Class A,NASDAQ,Stock,2020-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDIV,First Trust ETF VI Multi-Asset Diversified Income Index Fund,NASDAQ,ETF,2012-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDJH,MDJM Ltd,NASDAQ,Stock,2019-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDLZ,Mondelez International Inc - Class A,NASDAQ,Stock,2001-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDNA,Medicenna Therapeutics Corp,NASDAQ,Stock,2001-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDRR,Medalist Diversified REIT Inc,NASDAQ,Stock,2018-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDRRP,Medalist Diversified REIT Inc,NASDAQ,Stock,2020-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDRX,Allscripts Healthcare Solutions Inc,NASDAQ,Stock,1999-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDT,Medtronic Plc,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDU,MDU Resources Group Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDV,Modiv Inc - Class C,NYSE,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDV-P-A,Modiv Inc,NYSE,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDVL,MedAvail Holdings Inc,NASDAQ,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDWD,MediWound Ltd,NASDAQ,Stock,2014-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDWT,Midwest Hldg Inc,NASDAQ,Stock,2017-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDXG,Mimedx Group Inc,NASDAQ,Stock,2007-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDXH,MDxHealth SA,NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDY,S&P MidCap 400 ETF,NYSE ARCA,ETF,1995-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDYG,SPDR S&P 400 Mid Cap Growth ETF,NYSE ARCA,ETF,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MDYV,SPDR S&P 400 Mid Cap Value ETF,NYSE ARCA,ETF,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ME,23andMe Holding Co - Class A,NASDAQ,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEAC,Mercury Ecommerce Acquisition Corp - Class A,NASDAQ,Stock,2021-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEACU,Mercury Ecommerce Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEACW,Mercury Ecommerce Acquisition Corp - Warrants (27/07/2026),NASDAQ,Stock,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEAR,BlackRock Short Maturity Municipal Bond ETF,BATS,ETF,2015-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEC,Mayville Engineering Company Inc,NYSE,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MED,Medifast Inc,NYSE,Stock,1993-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEDP,Medpace Holdings Inc,NASDAQ,Stock,2016-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEDS,Trxade Health Inc,NASDAQ,Stock,2010-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEG,Montrose Environmental Group Inc,NYSE,Stock,2020-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEGI,MainStay CBRE Global Infrastructure Megatrends Fund,NYSE,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEI,Methode Electronics Inc,NYSE,Stock,1990-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEIP,MEI Pharma Inc,NASDAQ,Stock,2003-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEKA,MELI Kaszek Pioneer Corp - Class A,NASDAQ,Stock,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MELI,MercadoLibre Inc,NASDAQ,Stock,2007-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEME,ROUNDHILL MEME ETF ,NYSE ARCA,ETF,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEN,BlackRock Munienhanced Fund Inc,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MENV,AdvisorShares North Square McKee ESG Core Bond ETF,NYSE ARCA,ETF,2021-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEOA,Minority Equality Opportunities Acquisition Inc - Class A,NASDAQ,Stock,2021-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEOAU,Minority Equality Opportunities Acquisition Inc - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEOAW,Minority Equality Opportunities Acquisition Inc - Warrants (26/08/2026),NASDAQ,Stock,2021-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEOH,Methanex Corp,NASDAQ,Stock,1992-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MER-P-K,Bank Of America Corp,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MERC,Mercer International Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MESA,Mesa Air Group Inc,NASDAQ,Stock,2018-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MESO,Mesoblast Ltd,NASDAQ,Stock,2015-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MET,Metlife Inc,NYSE,Stock,2000-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MET-P-A,Metlife Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MET-P-E,Metlife Inc,NYSE,Stock,2018-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MET-P-F,Metlife Inc 4.75 PRF PERPETUAL USD 25 11000th int Ser F,NYSE,Stock,2020-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "METC,Ramaco Resources Inc,NASDAQ,Stock,2017-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "METCL,Ramaco Resources Inc,NASDAQ,Stock,2021-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "METV,Roundhill Ball Metaverse ETF,NYSE ARCA,ETF,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "METX,Meten Holding Group Ltd,NASDAQ,Stock,2020-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "METXW,Meten Holding Group Ltd - Warrants (31/03/2025),NASDAQ,Stock,2020-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MEXX,DIREXION DAILY MSCI MEXICO BULL 3X SHARES ,NYSE ARCA,ETF,2017-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MF,Missfresh Ltd,NASDAQ,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFA,MFA Financial Inc,NYSE,Stock,1998-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFA-P-B,MFA Financial Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFA-P-C,MFA Financial Inc,NYSE,Stock,2020-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFC,Manulife Financial Corp,NYSE,Stock,1999-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFD,MacquarieFirst Trust Global Infrstrctre,NYSE,ETF,2004-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFDX,PIMCO RAFI DYNAMIC MULTI-FACTOR INTERNATIONAL EQUITY ETF ,NYSE ARCA,ETF,2017-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFEM,PIMCO RAFI Dynamic Multi-Factor Emerging Markets Equity ETF,NYSE ARCA,ETF,2017-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFG,Mizuho Financial Group Inc,NYSE,Stock,2006-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFGP,Micro Focus International Plc,NYSE,Stock,2017-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFH,Mercurity Fintech Holding Inc,NASDAQ,Stock,2015-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFIN,Medallion Financial Corp,NASDAQ,Stock,1996-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFL,BlackRock MuniHoldings Investment Quality Fund,NYSE,ETF,1997-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFM,MFS Municipal Income Trust,NYSE,ETF,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFT,BlackRock MuniYield Investment Quality Fund,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFUL,Mindful Conservative ETF,BATS,ETF,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFUS,PIMCO RAFI Dynamic Multi-Factor U.S. Equity ETF,NYSE ARCA,ETF,2017-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MFV,MFS Special Value Trust,NYSE,ETF,1990-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MG,Mistras Group Inc,NYSE,Stock,2009-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGA,Magna International Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGC,Vanguard Mega Cap 300 Index ETF,NYSE ARCA,ETF,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGEE,MGE Energy Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGF,MFS Government Markets Income Trust,NYSE,ETF,1987-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGI,Moneygram International Inc,NASDAQ,Stock,2004-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGIC,Magic Software Enterprises Ltd,NASDAQ,Stock,1991-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGK,Vanguard Mega Cap Growth ETF,NYSE ARCA,ETF,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGLD,Marygold Companies Inc (The),NYSE MKT,Stock,2002-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGM,MGM Resorts International,NYSE,Stock,1990-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGMT,Ballast Small/Mid Cap ETF,NYSE ARCA,ETF,2020-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGNI,Magnite Inc,NASDAQ,Stock,2014-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGNX,Macrogenics Inc,NASDAQ,Stock,2013-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGP,MGM Growth Properties LLC - Class A,NYSE,Stock,2016-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGPI,MGP Ingredients Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGR,Affiliated Managers Group Inc,NYSE,Stock,2019-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGRB,Affiliated Managers Group Inc,NYSE,Stock,2020-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGRC,McGrath Rentcorp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGRD,Affiliated Managers Group Inc,NYSE,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGTA,Magenta Therapeutics Inc,NASDAQ,Stock,2018-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGTX,MeiraGTx Holdings plc,NASDAQ,Stock,2018-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGU,Macquarie Global Infrastructure Total Return Fund Inc,NYSE,ETF,2005-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGV,Vanguard Mega Cap Value ETF,NYSE ARCA,ETF,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGY,Magnolia Oil & Gas Corp - Class A,NYSE,Stock,2017-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MGYR,Magyar Bancorp Inc,NASDAQ,Stock,2006-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MH-P-A,Maiden Holdings Ltd,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MH-P-C,Maiden Holdings Ltd,NYSE,Stock,2015-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MH-P-D,Maiden Holdings Ltd,NYSE,Stock,2017-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHD,BlackRock MuniHoldings Fund Inc,NYSE,ETF,1997-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHE,BLACKROCK MASSACHUSETTS TAX EXEMPT TRUST,NYSE,ETF,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHF,Western Asset Municipal High Income Fund Inc,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHH,Mastech Digital Inc,NYSE MKT,Stock,2008-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHI,Pioneer Municipal High Income Fund Inc,NYSE,ETF,2003-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHK,Mohawk Industries Inc,NYSE,Stock,1992-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHLA,Maiden Holdings Ltd 6625 Notes due 2046,NYSE,Stock,2016-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHLD,Maiden Holdings Ltd,NASDAQ,Stock,2008-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHN,BlackRock MuniHoldings New York Quality Fund Inc,NYSE,ETF,1997-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHNC,Maiden Holdings North American Ltd 775 Nts 12012043,NYSE,Stock,2013-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHO,MI Homes Inc,NYSE,Stock,1993-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MHUA,Meihua International Medical Technologies Co Ltd,NASDAQ,Stock,2022-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIC,Macquarie Infrastructure Holdings LLC,NYSE,Stock,2004-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MICT,MICT Inc,NASDAQ,Stock,2004-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MID,American Century Mid Cap Growth Impact ETF,NYSE ARCA,ETF,2020-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIDD,Middleby Corp,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIDE,XTRACKERS S&P MIDCAP 400 ESG ETF ,NYSE ARCA,ETF,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIDF,iShares MSCI USA Mid-Cap Multifactor ETF,NYSE ARCA,ETF,2019-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIDU,Direxion Daily Mid Cap Bull 3x Shares,NYSE ARCA,ETF,2009-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIDZ,DIREXION DAILY MID CAP BEAR 3X SHARES ,NYSE ARCA,ETF,2009-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIE,Cohen & Steers MLP Income and Energy Opportunity Fund Inc,NYSE,ETF,2013-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIG,VanEck Moody`s Analytics IG Corporate Bond ETF,BATS,ETF,2020-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIGI,Mawson Infrastructure Group Inc,NASDAQ,Stock,2017-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MILE,Metromile Inc,NASDAQ,Stock,2020-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MILEW,Metromile Inc - Warrants (09/02/2026),NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MILN,Global X Millennial Consumer ETF,NASDAQ,ETF,2016-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIME,Mimecast Ltd,NASDAQ,Stock,2015-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIMO,Airspan Networks Holdings Inc,NYSE MKT,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIMO-WS,Airspan Networks Holdings Inc - Warrants (01/11/2026),NYSE MKT,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIN,MFS Intermediate Income Trust,NYSE,ETF,1988-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MINC,ADVISORSHARES NEWFLEET MULTI-SECTOR INCOME ETF ,NYSE ARCA,ETF,2013-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIND,MIND Technology Inc,NASDAQ,Stock,1994-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MINDP,MIND Technology Inc,NASDAQ,Stock,2016-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MINM,Minim Inc,NASDAQ,Stock,2009-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MINN,Mairs & Power Minnesota Municipal Bond ETF,BATS,ETF,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MINO,PIMCO MUNICIPAL INCOME OPPORTUNITIES ACTIVE EXCHANGE-TRADED FUND ,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MINT,PIMCO Enhanced Short Maturity Active Exchange-Traded Fund,NYSE ARCA,ETF,2009-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIO,Pioneer Municipal High Income Opportunities Fund Inc,NYSE,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIR,Mirion Technologies Inc - Class A,NYSE,Stock,2020-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIR-WS,Mirion Technologies Inc - Warrants (30/06/2027),NYSE,Stock,2018-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIRM,Mirum Pharmaceuticals Inc,NASDAQ,Stock,2019-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIRO,Miromatrix Medical Inc,NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIST,Milestone Pharmaceuticals Inc,NASDAQ,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIT,Mason Industrial Technology Inc - Class A,NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIT-U,Mason Industrial Technology Inc - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIT-WS,Mason Industrial Technology Inc - Warrants (01/01/9999),NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITA,Coliseum Acquisition Corp - Class A,NASDAQ,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITAU,Coliseum Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITAW,Coliseum Acquisition Corp - Warrants (02/04/2028),NASDAQ,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITC,Meat-Tech 3D Ltd,NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITK,Mitek Systems Inc,NASDAQ,Stock,1995-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITO,Stealth BioTherapeutics Corp,NASDAQ,Stock,2019-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITQ,Moving iMage Technologies Inc,NYSE MKT,Stock,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITT,AG Mortgage Investment Trust Inc,NYSE,Stock,2011-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITT-P-A,AG Mortgage Investment Trust Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITT-P-B,AG Mortgage Investment Trust Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MITT-P-C,AG Mortgage Investment Trust Inc,NYSE,Stock,2019-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIXT,MiX Telematics Ltd,NYSE,Stock,2013-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MIY,BlackRock MuniYield Michigan Quality Fund Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MJ,ETFMG Alternative Harvest ETF,NYSE ARCA,ETF,2018-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MJIN,ETFMG 2X Daily Inverse Alternative Harvest ETF,NYSE ARCA,ETF,2021-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MJUS,ETFMG U.S. Alternative Harvest ETF,NYSE ARCA,ETF,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MJXL,ETFMG 2X Daily Alternative Harvest ETF,NYSE ARCA,ETF,2021-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKC,McCormick & Co. Inc (Non Voting),NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKC-V,McCormick & Co. Inc,NYSE,Stock,2003-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKD,Molecular Data Inc,NASDAQ,Stock,2019-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKFG,Markforged Holding Corporation,NYSE,Stock,2020-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKFG-WS,Markforged Holding Corporation - Warrants (17/08/2025),NYSE,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKL,Markel Corp,NYSE,Stock,1990-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKSI,MKS Instruments Inc,NASDAQ,Stock,1999-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKTW,Marketwise Inc - Class A,NASDAQ,Stock,2020-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKTWW,Marketwise Inc - Warrants (19/07/2026),NASDAQ,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MKTX,MarketAxess Holdings Inc,NASDAQ,Stock,2004-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ML,MoneyLion Inc - Class A,NYSE,Stock,2020-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ML-WS,MoneyLion Inc - Warrants (01/06/2027),NYSE,Stock,2020-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLAB,Mesa Laboratories Inc,NASDAQ,Stock,1995-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLAC,Malacca Straits Acquisition Co Ltd - Class A,NASDAQ,Stock,2020-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLACU,Malacca Straits Acquisition Co Ltd - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLACW,Malacca Straits Acquisition Co Ltd - Warrants (30/06/2027),NASDAQ,Stock,2020-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLAI,McLaren Technology Acquisition Corp - Class A,NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLAIU,McLaren Technology Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLAIW,McLaren Technology Acquisition Corp - Warrants (01/11/2026),NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLCO,Melco Resorts & Entertainment Ltd,NASDAQ,Stock,2006-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLI,Mueller Industries Inc,NYSE,Stock,1991-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLKN,MillerKnoll Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLM,Martin Marietta Materials Inc,NYSE,Stock,1994-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLN,VanEck Long Muni ETF,BATS,ETF,2008-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLNK,MeridianLink Inc,NYSE,Stock,2021-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLP,Maui Land & Pineapple Co. Inc,NYSE,Stock,1996-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLPA,Global X MLP ETF,NYSE ARCA,ETF,2012-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLPB,MLPB,NYSE ARCA,ETF,2015-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLPO,Credit Suisse AG Nassau Branch,NYSE ARCA,ETF,2014-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLPR,UBS AG London Branch,NYSE ARCA,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLPX,Global X MLP & Energy Infrastructure ETF,NYSE ARCA,ETF,2013-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLR,Miller Industries Inc,NYSE,Stock,1994-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLSS,Milestone Scientific Inc,NYSE MKT,Stock,1995-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MLVF,Malvern Bancorp Inc,NASDAQ,Stock,2008-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMAT,Meta Materials Inc,NASDAQ,Stock,2010-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMC,Marsh & McLennan Cos. Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMCA,IQ MacKay California Municipal Intermediate ETF,NYSE ARCA,ETF,2021-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMD,Mainstay Definedterm Municipal Opptys Fd,NYSE,ETF,2012-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMI,Marcus & Millichap Inc,NYSE,Stock,2013-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMIN,IQ MacKay Municipal Insured ETF,NYSE ARCA,ETF,2017-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMIT,IQ MacKay Municipal Intermediate ETF,NYSE ARCA,ETF,2017-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMLG,First Trust Multi-Manager Large Growth ETF,NYSE ARCA,ETF,2020-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMLP,Martin Midstream Partners LP,NASDAQ,Stock,2002-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMM,3M Company,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMMB,MamaMancini`s Holdings Inc,NASDAQ,Stock,2013-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMP,Magellan Midstream Partners L.P.,NYSE,Stock,2001-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMS,Maximus Inc,NYSE,Stock,1997-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMSC,FIRST TRUST MULTI-MANAGER SMALL CAP OPPORTUNITIES ETF ,NYSE ARCA,ETF,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMSI,Merit Medical Systems Inc,NASDAQ,Stock,1992-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMT,MFS Multimarket Income Trust,NYSE,ETF,1987-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMTM,SPDR S&P 1500 MOMENTUM TILT ETF ,NYSE ARCA,ETF,2012-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMU,Western Asset Managed Municipals Fund Inc,NYSE,ETF,1992-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMX,Maverix Metals Inc,NYSE MKT,Stock,2016-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MMYT,MakeMyTrip Ltd,NASDAQ,Stock,2010-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MN,Manning & Napier Inc - Class A,NYSE,Stock,2011-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNA,IQ Merger Arbitrage ETF,NYSE ARCA,ETF,2009-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNDO,Mind C.T.I Ltd,NASDAQ,Stock,2000-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNDT,Mandiant Inc,NASDAQ,Stock,2013-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNDY,Monday.Com Ltd,NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNE,BlackRock Muni New York Intermediate Duration Fund,NYSE,ETF,2003-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNKD,Mannkind Corp,NASDAQ,Stock,2004-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNM,Direxion Daily Metal Miners Bull 2X Shares,NYSE ARCA,ETF,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNMD,Mind Medicine Inc (Sub Voting),NASDAQ,Stock,2020-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNOV,Medicinova Inc,NASDAQ,Stock,2006-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNP,Western Asset Municipal Partners Fund Inc,NYSE,ETF,1993-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNPR,Monopar Therapeutics Inc,NASDAQ,Stock,2019-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNRL,Brigham Minerals Inc - Class A,NYSE,Stock,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNRO,Monro Inc,NASDAQ,Stock,1991-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNSB,MainStreet Bancshares Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNSBP,MainStreet Bancshares Inc,NASDAQ,Stock,2020-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNSO,MINISO Group Holding Ltd,NYSE,Stock,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNST,Monster Beverage Corp,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNTK,Montauk Renewables Inc,NASDAQ,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNTN,Everest Consolidator Acquisition Corp - Class A,NYSE,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNTN-U,Everest Consolidator Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNTN-WS,Everest Consolidator Acquisition Corporation Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50,NYSE,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNTS,Momentus Inc - Class A,NASDAQ,Stock,2020-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNTSW,Momentus Inc - Warrants (12/08/2026),NASDAQ,Stock,2019-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNTV,Momentive Global Inc,NASDAQ,Stock,2018-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MNTX,Manitex International Inc,NASDAQ,Stock,2005-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MO,Altria Group Inc,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOAT,VanEck Morningstar Wide Moat ETF,BATS,ETF,2012-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOBQ,Mobiquity Technologies Inc,NASDAQ,Stock,2011-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOBQW,Mobiquity Technologies Inc - Warrants (30/11/2026),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOD,Modine Manufacturing Company,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MODD,Modular Medical Inc,NASDAQ,Stock,2007-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MODN,Model N Inc,NYSE,Stock,2013-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MODV,ModivCare Inc,NASDAQ,Stock,2003-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOFG,MidWestOne Financial Group Inc,NASDAQ,Stock,2008-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOG-A,Moog Inc - Class A,NYSE,Stock,1992-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOG-B,Moog Inc - Class B,NYSE,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOGO,Mogo Inc (Sub Voting),NASDAQ,Stock,2017-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOGU,MOGU Inc,NYSE,Stock,2018-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOH,Molina Healthcare Inc,NYSE,Stock,2003-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOHO,ECMOHO Ltd,NASDAQ,Stock,2019-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOHR,Mohr Growth ETF,BATS,ETF,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOLN,Molecular Partners AG,NASDAQ,Stock,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOMO,Hello Group Inc,NASDAQ,Stock,2014-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MON,Monument Circle Acquisition Corp - Class A,NASDAQ,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MONCU,Monument Circle Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MONCW,Monument Circle Acquisition Corp - Warrants (14/01/2026),NASDAQ,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOO,VanEck Agribusiness ETF,NYSE ARCA,ETF,2007-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOON,Direxion Moonshot Innovators ETF,NYSE ARCA,ETF,2020-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOR,Morphosys AG,NASDAQ,Stock,2018-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MORF,Morphic Holding Inc,NASDAQ,Stock,2019-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MORN,Morningstar Inc,NASDAQ,Stock,2005-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MORT,VanEck Mortgage REIT Income ETF,NYSE ARCA,ETF,2011-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOS,Mosaic Company,NYSE,Stock,1988-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOSC,Mosaic Acquisition Corp. Class A,NYSE,Stock,2017-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOSC-U,Mosaic Acquisition Corp Units each consisting of one Class A Ordinary Share and onethird of one Warrant,NYSE,Stock,2017-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOSC-WS,Mosaic Acquisition Corp Warrants each exercisable for one Class A Ordinary Share at an exercise price of 1150 per share,NYSE,Stock,2017-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOTE,VANECK MORNINGSTAR ESG MOAT ETF ,BATS,ETF,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOTG,VanEck Morningstar Global Wide Moat ETF,BATS,ETF,2018-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOTI,VanEck Morningstar International Moat ETF,BATS,ETF,2015-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOTO,SmartETFs Smart Transportation & Technology ETF,NYSE ARCA,ETF,2019-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOTS,Motus GI Holdings Inc,NASDAQ,Stock,2018-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOTV-U,Motive Capital Corp Units each consisting of one Class A ordinary share and onethird of one redeemable warrant,NYSE,Stock,2020-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOTV-WS,Forge Global Holdings Inc - Warrants (31/12/2027),NYSE,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOV,Movado Group Inc,NYSE,Stock,1993-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOVE,Movano Inc,NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MOXC,Moxian (BVI) Inc,NASDAQ,Stock,2014-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MP,MP Materials Corporation - Class A,NYSE,Stock,2020-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPA,BlackRock MuniYield Pennsylvania Quality Fund,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPAA,Motorcar Parts of America Inc,NASDAQ,Stock,1994-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPAC,Model Performance Acquisition Corp - Class A,NASDAQ,Stock,2021-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPACR,Model Performance Acquisition Corp,NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPACU,Model Performance Acquisition Corp - Units (1 Ord Class A 1/2 War 1 Rts),NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPACW,Model Performance Acquisition Corp - Warrants (29/04/2026),NASDAQ,Stock,2017-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPB,Mid Penn Bancorp Inc,NASDAQ,Stock,1997-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPC,Marathon Petroleum Corp,NYSE,Stock,2011-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPLN,MultiPlan Corp - Class A,NYSE,Stock,2020-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPLN-WS,MultiPlan Corp - Warrants (01/03/2027),NYSE,Stock,2020-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPLX,MPLX LP,NYSE,Stock,2012-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPRA,Mercato Partners Acquisition Corp - Class A,NASDAQ,Stock,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPRAU,Mercato Partners Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPRAW,Mercato Partners Acquisition Corp - Warrants - (29/10/2026),NASDAQ,Stock,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPRO,Monarch ProCap ETF,BATS,ETF,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPV,Barings Participation Investors,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPW,Medical Properties Trust Inc,NYSE,Stock,2005-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPWR,Monolithic Power System Inc,NASDAQ,Stock,2004-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MPX,Marine Products Corp,NYSE,Stock,2001-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MQ,Marqeta Inc - Class A,NASDAQ,Stock,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MQT,BlackRock MuniYield Quality Fund II Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MQY,BlackRock MuniYield Quality Fund Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRAD,SmartETFs Advertising & Marketing Technology ETF,NYSE ARCA,ETF,2020-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRAI,Marpai Inc Class A,NASDAQ,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRAM,Everspin Technologies Inc,NASDAQ,Stock,2016-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRBK,Meridian Corp,NASDAQ,Stock,2017-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRC,MRC Global Inc,NYSE,Stock,2012-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRCC,Monroe Capital Corp,NASDAQ,Stock,2012-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRCY,Mercury Systems Inc,NASDAQ,Stock,1998-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MREO,Mereo Biopharma Group Plc,NASDAQ,Stock,2019-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRGR,ProShares Merger ETF,BATS,ETF,2012-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRIN,Marin Software Inc,NASDAQ,Stock,2013-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRK,Merck & Co Inc,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRK-W,Merck & Company Inc ExDistribution When Issued,NYSE,Stock,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRKR,Marker Therapeutics Inc,NASDAQ,Stock,2014-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRM,MEDIROM Healthcare Technologies Inc,NASDAQ,Stock,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRNA,Moderna Inc,NASDAQ,Stock,2018-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRND,IQ U.S. Mid Cap R&D Leaders ETF,NYSE ARCA,ETF,2022-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRNS,Marinus Pharmaceuticals Inc,NASDAQ,Stock,2014-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRO,Marathon Oil Corporation,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRSK,Toews Agility Shares Managed Risk ETF,BATS,ETF,2020-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRSN,Mersana Therapeutics Inc,NASDAQ,Stock,2017-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRTN,Marten Transport Ltd,NASDAQ,Stock,1992-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRTX,Mirati Therapeutics Inc,NASDAQ,Stock,2013-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRUS,Merus N.V,NASDAQ,Stock,2016-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRVI,Maravai LifeSciences Holdings Inc - Class A,NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MRVL,Marvell Technology Inc,NASDAQ,Stock,2000-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MS,Morgan Stanley,NYSE,Stock,1993-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MS-P-A,Morgan Stanley,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MS-P-E,Morgan Stanley,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MS-P-F,Morgan Stanley,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MS-P-G,Morgan Stanley Depositary Shares Series G,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MS-P-G-CL,,NYSE,Stock,2019-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MS-P-I,Morgan Stanley,NYSE,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MS-P-K,Morgan Stanley,NYSE,Stock,2017-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MS-P-L,,NYSE,Stock,2019-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSA,MSA Safety Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSAC,Medicus Sciences Acquisition Corp - Class A,NASDAQ,Stock,2021-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSACW,Medicus Sciences Acquisition Corp - Warrants (12/02/2026),NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSB,Mesabi Trust,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSBI,Midland States Bancorp Inc,NASDAQ,Stock,2016-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSC,Studio City International Holdings Ltd,NYSE,Stock,2018-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSCI,MSCI Inc,NYSE,Stock,2007-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSD,Morgan Stanley Emerging Markets Debt Fund Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSDA,MSD Acquisition Corp - Class A,NASDAQ,Stock,2021-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSDAU,MSD Acquisition Corp - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSDAW,MSD Acquisition Corp - Warrants (25/03/2026),NASDAQ,Stock,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSEX,Middlesex Water Company,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSFT,Microsoft Corporation,NASDAQ,Stock,1986-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSGE,Madison Square Garden Entertainment Corp - Class A,NYSE,Stock,2020-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSGM,Motorsport Games Inc - Class A,NASDAQ,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSGR,Direxion mRNA ETF,NYSE ARCA,ETF,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSGS,Madison Square Garden Sports Corp - Class A,NYSE,Stock,2015-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSI,Motorola Solutions Inc,NYSE,Stock,1977-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSM,MSC Industrial Direct Co. Inc - Class A,NYSE,Stock,1995-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSMR,McElhenny Sheffield Managed Risk ETF,BATS,ETF,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSN,Emerson Radio Corp,NYSE MKT,Stock,1994-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSON,Misonix Inc,NASDAQ,Stock,1993-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSOS,AdvisorShares Pure US Cannabis ETF,NYSE ARCA,ETF,2020-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSP,Datto Holding Corp,NYSE,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSTB,LHA Market State Tactical Beta ETF,BATS,ETF,2020-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSTQ,LHA Market State Tactical Q ETF,BATS,ETF,2022-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSTR,Microstrategy Inc - Class A,NASDAQ,Stock,1998-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSVB,Mid-Southern Bancorp Inc,NASDAQ,Stock,2012-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MSVX,LHA MARKET STATE ALPHA SEEKER ETF ,BATS,ETF,2020-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MT,ArcelorMittal,NYSE,Stock,1997-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTA,Metalla Royalty and Streaming Ltd,NYSE MKT,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTAC,MedTech Acquisition Corp - Class A,NASDAQ,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTACU,MedTech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTACW,MedTech Acquisition Corp - Warrants (18/12/2025),NASDAQ,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTAL,Metals Acquisition Corp - Class A,NYSE,Stock,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTAL-U,Metals Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTAL-WS,Metals Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTB,M & T Bank Corp,NYSE,Stock,1991-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTBC,CareCloud Inc,NASDAQ,Stock,2014-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTBCO,CareCloud Inc,NASDAQ,Stock,2022-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTBCP,CareCloud Inc,NASDAQ,Stock,2015-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTC,Mmtec Inc,NASDAQ,Stock,2019-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTCH,Match Group Inc - New,NASDAQ,Stock,2015-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTCN,ArcelorMittal,NYSE,Stock,2020-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTCR,Metacrine Inc,NASDAQ,Stock,2020-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTD,Mettler-Toledo International Inc,NYSE,Stock,1997-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTDR,Matador Resources Company,NYSE,Stock,2012-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTEK,Maris Tech Ltd,NASDAQ,Stock,2022-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTEKW,Maris Tech Ltd - Warrant (06/01/2027),NASDAQ,Stock,2022-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTEM,Molecular Templates Inc,NASDAQ,Stock,2005-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTEST,,NYSE,Stock,2019-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTEX,Mannatech Inc,NASDAQ,Stock,1999-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTFBW,Motif Bio plc Warrant,NASDAQ,Stock,2016-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTG,MGIC Investment Corp,NYSE,Stock,1991-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTGP,WISDOMTREE MORTGAGE PLUS BOND FUND N/A,NYSE ARCA,Stock,2019-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTH,Meritage Homes Corp,NYSE,Stock,1988-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTL,Mechel PJSC,NYSE,Stock,2004-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTL-P,Mechel PJSC,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTLS,Materialise Nv,NASDAQ,Stock,2014-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTN,Vail Resorts Inc,NYSE,Stock,1997-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTNB,Matinas Biopharma Holdings Inc,NYSE MKT,Stock,2014-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTOR,Meritor Inc,NYSE,Stock,2000-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTP,Midatech Pharma Plc,NASDAQ,Stock,2015-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTR,Mesa Royalty Trust,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTRN,Materion Corp,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTRX,Matrix Service Company,NASDAQ,Stock,1992-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTRY,Monterey Bio Acquisition Corp,NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTRYU,Monterey Bio Acquisition Corp - Units (1 Ord Share & 1 War),NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTRYW,Monterey Bio Acquisition Corp - Warrants (30/09/2026),NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTSI,MACOM Technology Solutions Holdings Inc,NASDAQ,Stock,2012-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTT,Western Asset Municipal Defined Opportunity Trust,NYSE,ETF,2009-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTTR,Matterport Inc - Class A,NASDAQ,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTUL,UBS AG London Branch,NYSE ARCA,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTUM,iShares MSCI USA Momentum Factor ETF,BATS,ETF,2013-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTVC,Motive Capital Corp II - Class A,NYSE,Stock,2022-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTVC-U,Motive Capital Corp II - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTVC-WS,Motive Capital Corp II - Warrants (01/01/9999),NYSE,Stock,2022-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTVR,Fount Metaverse ETF,NYSE ARCA,ETF,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTW,Manitowoc Co. Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTX,Minerals Technologies Inc,NYSE,Stock,1992-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MTZ,Mastec Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MU,Micron Technology Inc,NASDAQ,Stock,1989-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUA,BlackRock Muniassets Fund Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUB,iShares National Muni Bond ETF,NYSE ARCA,ETF,2007-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUC,BlackRock MuniHoldings California Quality Fund Inc,NYSE,ETF,1998-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUDS,Mudrick Capital Acquisition Corp II - Class A,NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUDSU,Mudrick Capital Acquisition Corp II - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2018-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUE,BlackRock MuniHoldings Quality Fund II Inc,NYSE,ETF,1999-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUFG,Mitsubishi UFJ Financial Group Inc,NYSE,Stock,2001-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUH,BlackRock MuniHoldings Fund II Inc,NYSE,ETF,1998-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUI,BlackRock Municipal Income Fund Inc,NYSE,ETF,2003-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUJ,BlackRock MuniHoldings New Jersey Quality Fund Inc,NYSE,ETF,1998-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MULG,Muliang Viagoo Technology Inc,NASDAQ,Stock,2016-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MULN,Mullen Automotive Inc,NASDAQ,Stock,2008-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUNI,PIMCO Intermediate Municipal Bond Active Exchange-Traded Fund,NYSE ARCA,ETF,2009-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUR,Murphy Oil Corp,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MURFU,Murphy Canyon Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2022-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUS,BlackRock MuniHoldings Quality Fund Inc,NYSE,ETF,1998-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUSA,Murphy USA Inc,NYSE,Stock,2013-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUSI,American Century Multisector Income ETF,NYSE ARCA,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUST,Columbia Multi-Sector Municipal Income ETF,NYSE ARCA,ETF,2018-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MUX,McEwen Mining Inc,NYSE,Stock,1980-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVBF,MVB Financial Corp,NASDAQ,Stock,2008-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVF,BlackRock MuniVest Fund Inc,NYSE,ETF,1990-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVIS,Microvision Inc,NASDAQ,Stock,1996-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVO,MV Oil Trust,NYSE,Stock,2007-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVP,Roundhill Pro Sports Media & Apparel ETF,NYSE ARCA,ETF,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVPS,Amplify Thematic All-Stars ETF,NYSE ARCA,ETF,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVRL,UBS AG London Branch,NYSE ARCA,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVST,Microvast Holdings Inc,NASDAQ,Stock,2019-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVSTW,Microvast Holdings Inc - Warrants (23/07/2026),NASDAQ,Stock,2019-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVT,BlackRock Munivest Fund II Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MVV,ProShares Ultra MidCap400,NYSE ARCA,ETF,2006-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MWA,Mueller Water Products Inc - Series A,NYSE,Stock,2006-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MX,MagnaChip Semiconductor Corp,NYSE,Stock,2011-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MXC,Mexco Energy Corp,NYSE MKT,Stock,1997-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MXCT,MaxCyte Inc,NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MXDU,Nationwide Maximum Diversification U.S. Core Equity ETF,NYSE ARCA,ETF,2017-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MXE,Mexico Equity And Income Fund Inc,NYSE,ETF,1990-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MXF,Mexico Fund Inc,NYSE,ETF,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MXI,iShares Global Materials ETF,NYSE ARCA,ETF,2006-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MXL,MaxLinear Inc,NASDAQ,Stock,2010-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYC,BlackRock MuniYield California Fund Inc,NYSE,ETF,1992-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYD,BlackRock MuniYield Fund Inc,NYSE,ETF,1991-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYE,Myers Industries Inc,NYSE,Stock,1987-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYF,BlackRock MuniYield Investment Fund,NYSE,ETF,1992-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYFW,First Western Financial Inc,NASDAQ,Stock,2018-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYGN,Myriad Genetics Inc,NASDAQ,Stock,1995-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYI,BlackRock MuniYield Quality Fund III Inc,NYSE,ETF,1992-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYJ,BlackRock MuniYield New Jersey Fund Inc,NYSE,ETF,1992-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYMD,MyMD Pharmaceuticals Inc,NASDAQ,Stock,2014-01-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYN,BlackRock MuniYield New York Quality Fund Inc,NYSE,ETF,1992-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYNA,Mynaric AG,NASDAQ,Stock,2021-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYNZ,Mainz Biomed B.V.,NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYO,Myomo Inc,NYSE MKT,Stock,2017-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYOV,Myovant Sciences Ltd,NYSE,Stock,2016-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYPS,PLAYSTUDIOS Inc - Class A,NASDAQ,Stock,2020-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYPSW,PLAYSTUDIOS Inc - Warrants (17/06/2026),NASDAQ,Stock,2020-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYRG,MYR Group Inc,NASDAQ,Stock,2008-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYSZ,My Size Inc,NASDAQ,Stock,2016-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYTE,MYT Netherlands Parent BV,NYSE,Stock,2021-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MYY,ProShares Short Midcap400,NYSE ARCA,ETF,2006-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MZA,Blackrock MuniYield Arizona Fund Inc,NYSE,ETF,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "MZZ,ProShares UltraShort MidCap400,NYSE ARCA,ETF,2006-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAAC,North Atlantic Acquisition Corp - Class A,NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAACU,North Atlantic Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAACW,North Atlantic Acquisition Corp - Warrants (20/10/2025),NASDAQ,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NABL,N-able Inc,NYSE,Stock,2021-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NABL-W,Nable Inc When Issued,NYSE,Stock,2021-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAC,Nuveen California Quality Municipal Income Fund,NYSE,ETF,1999-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NACP,Impact Shares NAACP Minority Empowerment ETF,NYSE ARCA,ETF,2018-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAD,Nuveen Dividend Advantage Municipal Fund,NYSE,ETF,1999-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAII,Natural Alternatives International Inc,NASDAQ,Stock,1993-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAIL,Direxion Daily Homebuilders & Supplies Bull 3X Shares,NYSE ARCA,ETF,2015-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAK,Northern Dynasty Minerals Ltd,NYSE MKT,Stock,2003-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAN,Nuveen New York Dividend Advantage Municipal Fund,NYSE,ETF,1999-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NANR,SPDR S&P North American Natural Resources ETF,NYSE ARCA,ETF,2015-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAOV,NanoVibronix Inc,NASDAQ,Stock,2017-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAPA,Duckhorn Portfolio Inc (The),NYSE,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAPR,Innovator Growth-100 Power Buffer ETF - April,BATS,ETF,2020-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NARI,Inari Medical Inc,NASDAQ,Stock,2020-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAT,Nordic American Tankers Ltd,NYSE,Stock,1997-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NATH,Nathan`s Famous Inc,NASDAQ,Stock,1993-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NATI,National Instruments Corp,NASDAQ,Stock,1995-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NATR,Nature`s Sunshine Products Inc,NASDAQ,Stock,2009-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAUT,Nautilus Biotechnology Inc,NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAV-P-D,Navistar International Corporation Preferred Stock,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAVB,Navidea Biopharmaceuticals Inc,NYSE MKT,Stock,1992-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAVI,Navient Corp,NASDAQ,Stock,2014-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NAZ,Nuveen Arizona Quality Municipal Income Fund,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBB,Nuveen Build America Bond Fund Common Shares of Beneficial Interest,NYSE,ETF,2010-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBEV,NewAge Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBH,Neuberger Berman Municipal Fund Inc,NYSE MKT,ETF,2002-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBHC,National Bank Holdings Corp - Class A,NYSE,Stock,2012-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBIX,Neurocrine Biosciences Inc,NASDAQ,Stock,1996-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBN,Northeast Bank,NASDAQ,Stock,1987-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBO,Neuberger Berman New York Municipal Fund Inc,NYSE MKT,ETF,2002-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBR,Nabors Industries Ltd,NYSE,Stock,1991-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBRV,Nabriva Therapeutics Plc,NASDAQ,Stock,2015-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBSE,NeuBase Therapeutics Inc,NASDAQ,Stock,2007-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBST,Newbury Street Acquisition Corp,NASDAQ,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBSTU,Newbury Street Acquisition Corp - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBSTW,Newbury Street Acquisition Corp - Warrants (30/04/2028),NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBTB,NBT Bancorp. Inc,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBTX,Nanobiotix,NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBW,Neuberger Ber CA Intermediate Muni Fund,NYSE MKT,ETF,2002-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBXG,Neuberger Berman Next Generation Connectivity Fund Inc,NYSE,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NBY,Novabay Pharmaceuticals Inc,NYSE MKT,Stock,2007-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NC,Nacco Industries Inc - Class A,NYSE,Stock,1977-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCA,Nuveen California Municipal Value Fund.,NYSE,ETF,1987-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCAC,Newcourt Acquisition Corp - Class A,NASDAQ,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCACU,Newcourt Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCACW,Newcourt Acquisition Corp - Warrants (13/10/2026),NASDAQ,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCB,Nuveen California Municipal Value Fund 2 Common Shares of Beneficial Interest,NYSE,ETF,2009-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCBS,Nicolet Bankshares Inc,NASDAQ,Stock,2013-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCLH,Norwegian Cruise Line Holdings Ltd,NYSE,Stock,2013-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCMI,National Cinemedia Inc,NASDAQ,Stock,2007-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCNA,NuCana plc,NASDAQ,Stock,2017-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCNO,Ncino Inc,NASDAQ,Stock,2020-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCR,NCR Corp,NYSE,Stock,1996-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCSM,NCS Multistage Holdings Inc,NASDAQ,Stock,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCTY,The9 Ltd,NASDAQ,Stock,2004-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCV,Virtus AllianzGI Convertible & Income Fund,NYSE,ETF,2003-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCV-P-A,Virtus AllianzGI Convertible & Income Fund,NYSE,Stock,2018-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCZ,Virtus AllianzGI Convertible & Income Fund II,NYSE,ETF,2003-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NCZ-P-A,Virtus AllianzGI Convertible & Income Fund II,NYSE,Stock,2018-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDAC,NightDragon Acquisition Corp - Class A,NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDACU,NightDragon Acquisition Corp - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDACW,NightDragon Acquisition Corp - Warrants (26/02/2026),NASDAQ,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDAQ,Nasdaq Inc - 144A,NASDAQ,Stock,2002-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDJI,Nationwide Dow Jones Risk-Managed Income ETF,NYSE ARCA,ETF,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDLS,Noodles & Company - Class A,NASDAQ,Stock,2013-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDMO,Nuveen Dynamic Municipal Opportunities Fund,NYSE,Stock,2020-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDP,Tortoise Energy Independence Fund Inc,NYSE,ETF,2012-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDRA,ENDRA Life Sciences Inc,NASDAQ,Stock,2017-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDRAW,ENDRA Life Sciences Inc - Warrants (12/05/2022),NASDAQ,Stock,2017-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDSN,Nordson Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NDVG,Nuveen Dividend Growth ETF,NYSE ARCA,ETF,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NE,Noble Corp,NYSE,Stock,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEA,Nuveen AMT-Free Quality Municipal Income Fund,NYSE,ETF,2002-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEAR,BlackRock Short Maturity Bond ETF,BATS,ETF,2013-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEBUU,Nebula Acquisition Corp Units 1 Cls A Ord 13 War,NASDAQ,Stock,2018-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEBUW,Nebula Acquisition Corporation Warrant,NASDAQ,Stock,2018-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NECB,NorthEast Community Bancorp Inc,NASDAQ,Stock,2006-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEE,NextEra Energy Inc,NYSE,Stock,1983-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEE 6.219,NextEra Energy Inc,NYSE,Stock,2020-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEE-P-N,NextEra Energy Inc Series N Junior Subordinated Debentures due March 1 2079,NYSE,Stock,2019-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEE-P-P,,NYSE,Stock,2020-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEE-P-Q,NextEra Energy Inc. Corporate Units,NYSE,Stock,2020-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEGG,Newegg Commerce Inc,NASDAQ,Stock,2010-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEM,Newmont Corp,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEN,New England Realty Associates LP,NYSE MKT,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEO,Neogenomics Inc,NASDAQ,Stock,2004-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEOG,Neogen Corp,NASDAQ,Stock,1994-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEON,Neonode Inc,NASDAQ,Stock,1992-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEP,NextEra Energy Partners LP,NYSE,Stock,2014-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEPH,Nephros Inc,NASDAQ,Stock,2009-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEPT,Neptune Wellness Solutions Inc,NASDAQ,Stock,2007-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NERD,Roundhill BITKRAFT Esports & Digital Entertainment ETF,NYSE ARCA,ETF,2019-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NERV,Minerva Neurosciences Inc,NASDAQ,Stock,2014-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NESR,National Energy Services Reunited Corp,NASDAQ,Stock,2017-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NESRW,National Energy Services Reunited Corp - Warrants(05/05/2022),NASDAQ,Stock,2017-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NET,Cloudflare Inc - Class A,NYSE,Stock,2019-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NETC,Nabors Energy Transition Corp - Class A,NYSE,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NETC-U,Nabors Energy Transition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NETC-WS,Nabors Energy Transition Corp - Warrants (01/01/9999),NYSE,Stock,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NETI,Eneti Inc,NYSE,Stock,2013-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NETL,NETLease Corporate Real Estate ETF,NYSE ARCA,ETF,2019-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NETZ,Engine No. 1 Transform Climate ETF,BATS,ETF,2022-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEU,NewMarket Corp,NYSE,Stock,1985-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEV,Nuveen Enhanced Municipal Value Fund Common Shares of Beneficial Interest,NYSE,ETF,2009-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEW,Puxin Ltd,NYSE,Stock,2018-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEWP,New Pacific Metals Corp - New,NYSE MKT,Stock,2017-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEWR,New Relic Inc,NYSE,Stock,2014-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEWT,Newtek Business Services Corp,NASDAQ,Stock,2000-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEWTL,Newtek Business Services Corp,NASDAQ,Stock,2019-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEWTZ,Newtek Business Services Corp,NASDAQ,Stock,2021-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEX,NexTier Oilfield Solutions Inc,NYSE,Stock,2017-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEXA,Nexa Resources S.A.,NYSE,Stock,2017-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEXI,Neximmune Inc,NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NEXT,NextDecade Corporation,NASDAQ,Stock,2015-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFBK,Northfield Bancorp Inc,NASDAQ,Stock,2007-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFC,New Frontier Corporation Class A,NASDAQ,Stock,2018-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFC-U,New Frontier Corporation Units each consisting of one Class A Ordinary Share and one half of one Warrant,NYSE,Stock,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFC-WS,New Frontier Corporation Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 1150 per share,NYSE,Stock,2018-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFE,New Fortress Energy Inc - Class A,NASDAQ,Stock,2019-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFG,National Fuel Gas Company,NYSE,Stock,1987-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFGC,New Found Gold Corp,NYSE MKT,Stock,2020-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFJ,Virtus AllianzGI Dividend Interest & Premium Strategy Fund,NYSE,ETF,2005-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFLT,Virtus Newfleet Multi-Sector Unconstrained Bond ETF,NYSE ARCA,ETF,2015-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFLX,NetFlix Inc,NASDAQ,Stock,2002-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFNT,Infinite Acquisition Corp - Class A,NYSE,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFNT-U,Infinite Acquisition Corp Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant,NYSE,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFNT-WS,Infinite Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFRA,FlexShares STOXX Global Broad Infrastructure Index Fund,NYSE ARCA,ETF,2013-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFTY,FIRST TRUST INDIA NIFTY 50 EQUAL WEIGHT ETF ,NASDAQ,ETF,2018-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFTZ,DEFIANCE DIGITAL REVOLUTION ETF ,NYSE ARCA,ETF,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFYS,Enphys Acquisition Corp - Class A,NYSE,Stock,2021-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFYS-U,Enphys Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NFYS-WS,Enphys Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NG,Novagold Resources Inc,NYSE MKT,Stock,2003-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGC,Northern Genesis Acquisition Corp III,NYSE,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGC-U,Northern Genesis Acquisition Corp III - Units (1 Ord Share & 1/4 War),NYSE,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGC-WS,Northern Genesis Acquisition Corp III - Warrants (31/12/2027),NYSE,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGD,New Gold Inc,NYSE MKT,Stock,2004-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGE,Global X MSCI Nigeria ETF,NYSE ARCA,ETF,2013-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGG,National Grid Plc,NYSE,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGL,NGL Energy Partners LP,NYSE,Stock,2011-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGL-P-B,NGL ENERGY PARTNERS LP 900 Class B FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units representing limited partnership interests,NYSE,Stock,2017-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGL-P-C,NGL ENERGY PARTNERS LP 9625 Class C FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units representing limited partner interests,NYSE,Stock,2019-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGM,Ngm Biopharmaceuticals Inc,NASDAQ,Stock,2019-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGMS,NeoGames SA,NASDAQ,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGS,Natural Gas Services Group Inc,NYSE,Stock,2002-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGVC,Natural Grocers by Vitamin Cottage Inc,NYSE,Stock,2012-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NGVT,Ingevity Corp,NYSE,Stock,2016-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NH,NantHealth Inc,NASDAQ,Stock,2016-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NHA,Nuveen Municipal 2021 Target Term Fund,NYSE,ETF,2016-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NHC,National Healthcare Corp,NYSE MKT,Stock,1987-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NHF,NexPoint Strategic Opportunities Fund,NYSE,ETF,2006-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NHI,National Health Investors Inc,NYSE,Stock,1991-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NHIC,NEWHOLD INVESTMENT CORP II - CLASS A,NASDAQ,Stock,2021-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NHICU,NewHold Investment Corp II - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NHS,Neuberger Berman High Yield Strategies Fund,NYSE MKT,ETF,2003-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NHTC,Natural Health Trends Corp,NASDAQ,Stock,1995-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NI,Nisource Inc (Holding Co.),NYSE,Stock,1984-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NI-P-B,Nisource Inc (Holding Co.),NYSE,Stock,2018-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NIB,iPath Dow JonesUBS Cocoa Subindex Total ReturnSM ETN,NYSE ARCA,ETF,2008-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NICE,NICE Ltd,NASDAQ,Stock,1996-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NICK,Nicholas Financial Inc,NASDAQ,Stock,1997-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NID,Nuveen Intermediate Duration Municipal Term Fund,NYSE,ETF,2012-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NIE,Virtus AllianzGI Equity & Convertible Income Fund,NYSE,ETF,2007-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NIFE,DIREXION FALLEN KNIVES ETF ,NYSE ARCA,ETF,2020-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NILE,BitNile Holdings Inc,NYSE MKT,Stock,1997-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NIM,Nuveen Select Maturities Municipal Fund,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NIMC,Nisource Inc (Holding Co.),NYSE,Stock,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NINE,Nine Energy Service Inc,NYSE,Stock,2018-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NIO,NIO Inc,NYSE,Stock,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NIQ,Nuveen Intermediate Duration Quality Municipal Term Fund,NYSE,ETF,2013-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NISN,NiSun International Enterprise Development Group Co Ltd - Class A,NASDAQ,Stock,2016-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NIU,Niu Technologies,NASDAQ,Stock,2018-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NJAN,Innovator Growth-100 Power Buffer ETF - January,BATS,ETF,2020-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NJR,New Jersey Resources Corporation,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NJUL,Innovator Growth-100 Power Buffer ETF - July,BATS,ETF,2020-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NJV,Nuveen New Jersey Municipal Value Fund,NYSE,ETF,2009-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NKE,Nike Inc - Class B,NYSE,Stock,1980-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NKG,Nuveen Georgia Quality Municipal Income Fund,NYSE,ETF,2002-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NKLA,Nikola Corporation,NASDAQ,Stock,2018-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NKSH,National Bankshares Inc,NASDAQ,Stock,1999-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NKTR,Nektar Therapeutics,NASDAQ,Stock,1994-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NKTX,Nkarta Inc,NASDAQ,Stock,2020-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NKX,Nuveen California AMT-Free Quality Municipal Income Fund,NYSE,ETF,2003-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NL,NL Industries Inc,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLIT,Northern Lights Acquisition Corp - Class A,NASDAQ,Stock,2021-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLITU,Northern Lights Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLITW,Northern Lights Acquisition Corp - Warrants (01/11/2027),NASDAQ,Stock,2021-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLOK,NortonLifeLock Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLR,VanEck Uranium Nuclear Energy ETF,NYSE ARCA,ETF,2007-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLS,Nautilus Inc,NYSE,Stock,1999-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLSN,Nielsen Holdings plc,NYSE,Stock,2011-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLSP,NLS Pharmaceutics Ltd,NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLSPW,NLS Pharmaceutics Ltd - Warrants (25/09/2025),NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLTX,Neoleukin Therapeutics Inc,NASDAQ,Stock,2014-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLY,Annaly Capital Management Inc,NYSE,Stock,1997-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLY-P-F,Annaly Capital Management Inc 695 Series F,NYSE,Stock,2017-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLY-P-G,Annaly Capital Management Inc 650 Series G FixedtoFloating Rate Cumulative Redeemable Preferred Stock,NYSE,Stock,2018-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NLY-P-I,Annaly Capital Management Inc FXDFR PRF PERPETUAL USD 25 Ser I,NYSE,Stock,2019-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NM,Navios Maritime Holdings Inc,NYSE,Stock,2005-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMAI,Nuveen Multi-Asset Income Fund,NYSE,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMCO,Nuveen Municipal Credit Opportunities Fund,NYSE,Stock,2019-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMFC,New Mountain Finance Corp,NASDAQ,Stock,2011-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMG,Nouveau Monde Graphite Inc,NYSE,Stock,2021-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMI,Nuveen Municipal Income Fund,NYSE,ETF,1988-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMIH,NMI Holdings Inc - Class A,NASDAQ,Stock,2013-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMK-P-B,Niagara Mohawk Holdings Inc Preferred Stock,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMK-P-C,Niagara Mohawk Holdings Inc Preferred Stock,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NML,Neuberger Berman MLP Income Fund Inc,NYSE MKT,ETF,2013-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMM,Navios Maritime Partners L.P.,NYSE,Stock,2007-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMMC,North Mountain Merger Corp - Class A,NASDAQ,Stock,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMMCU,North Mountain Merger Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2020-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMMCW,North Mountain Merger Corp - Warrants (16/09/2025),NASDAQ,Stock,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMPRG,Navios Maritime Holdings Inc,NYSE,Stock,2005-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMPRH,Navios Maritime Holdings Inc,NYSE,Stock,2005-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMR,Nomura Holdings Inc,NYSE,Stock,1995-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMRD,Nemaura Medical Inc,NASDAQ,Stock,2016-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMRK,Newmark Group Inc - Class A,NASDAQ,Stock,2017-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMS,Nuveen Minnesota Quality Municipal Income Fund,NYSE,ETF,2014-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMT,Nuveen Massachusetts Quality Municipal Income Fund,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMTC,NeuroOne Medical Technologies Corp,NASDAQ,Stock,2017-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMTR,9 Meters Biopharma Inc,NASDAQ,Stock,2016-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMY,Nuveen Maryland Quality Municipal Income Fund,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NMZ,Nuveen Municipal High Income Opportunity Fund,NYSE,ETF,2003-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NN,NextNav Inc,NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NNAVW,NextNav Inc - Warrants (28/10/2026),NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NNBR,NN Inc,NASDAQ,Stock,1994-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NNDM,Nano Dimension Ltd,NASDAQ,Stock,2016-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NNI,Nelnet Inc - Class A,NYSE,Stock,2003-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NNN,National Retail Properties Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NNOX,Nano X Imaging Ltd,NASDAQ,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NNVC,NanoViricides Inc,NYSE MKT,Stock,2005-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NNY,Nuveen New York Municipal Value Fund,NYSE,ETF,1987-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOA,North American Construction Group Ltd,NYSE,Stock,2006-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOAC,Natural Order Acquisition Corp,NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOACU,Natural Order Acquisition Corp - Units (1 Ord & 1 War),NASDAQ,Stock,2020-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOACW,Natural Order Acquisition Corp - Warrants (15/09/2025),NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOAH,Noah Holdings Ltd,NYSE,Stock,2010-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOBL,ProShares S&P 500 Dividend Aristocrats ETF,BATS,ETF,2013-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOC,Northrop Grumman Corp,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOCT,Innovator Growth-100 Power Buffer ETF- October,BATS,ETF,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NODK,NI Holdings Inc,NASDAQ,Stock,2017-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOG,Northern Oil and Gas Inc,NYSE,Stock,2007-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOK,Nokia Corp,NYSE,Stock,1994-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOM,Nuveen Missouri Quality Municipal Income Fund,NYSE,ETF,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOMD,Nomad Foods Ltd,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NORW,Global X MSCI Norway ETF,NYSE ARCA,ETF,2009-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOTV,Inotiv Inc,NASDAQ,Stock,1997-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOV,NOV Inc,NYSE,Stock,1996-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOVA,Sunnova Energy International Inc,NYSE,Stock,2019-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOVN,Novan Inc,NASDAQ,Stock,2016-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOVT,Novanta Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOVV,Nova Vision Acquisition Corp,NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOVVR,Nova Vision Acquisition Corp,NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOVVU,Nova Vision Acquisition Corp - Unit (1 Ordinary share 1 Wrt & 1 Rts),NASDAQ,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOVVW,Nova Vision Acquisition Corp - Warrants (31/12/2028),NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOVZ,TrueShares Structured Outcome (November) ETF,BATS,ETF,2020-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NOW,ServiceNow Inc,NYSE,Stock,2012-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NP,Neenah Inc,NYSE,Stock,2004-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPAB,New Providence Acquisition Corp II - Class A,NASDAQ,Stock,2021-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPABU,New Providence Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPABW,New Providence Acquisition Corp II - Warrants - (04/11/2026),NASDAQ,Stock,2021-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPCE,NeuroPace Inc,NASDAQ,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPCT,Nuveen Core Plus Impact Fund,NYSE,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPFD,Nuveen Variable Rate Preferred & Income Fund,NYSE,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPK,National Presto Industries Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPN,Nuveen Pennsylvania Municipal Value Fund,NYSE,ETF,2009-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPO,EnPro Industries Inc,NYSE,Stock,2002-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPTN,NeoPhotonics Corporation,NYSE,Stock,2011-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NPV,Nuveen Virginia Quality Municipal Income Fund,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NQP,Nuveen Pennsylvania Quality Municipal Income Fund,NYSE,ETF,1991-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NR,Newpark Resources Inc,NYSE,Stock,1991-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRAC,Noble Rock Acquisition Corp - Class A,NASDAQ,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRACU,Noble Rock Acquisition Corp - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRACW,Noble Rock Acquisition Corp - Warrants (31/01/2028),NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRBO,NeuroBo Pharmaceuticals Inc,NASDAQ,Stock,2016-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRC,National Research Corp,NASDAQ,Stock,2013-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRDS,Nerdwallet Inc - Class A,NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRDY,Nerdy Inc - Class A,NYSE,Stock,2020-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRDY-WS,Nerdy Inc Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50 per share,NYSE,Stock,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NREF,NexPoint Real Estate Finance Inc,NYSE,Stock,2020-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NREF-P-A,NexPoint Real Estate Finance Inc,NYSE,Stock,2020-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRG,NRG Energy Inc,NYSE,Stock,2003-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRGD,Bank of Montreal,NYSE ARCA,Stock,2019-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRGU,Bank of Montreal,NYSE ARCA,Stock,2019-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRGV,Energy Vault Holdings Inc,NYSE,Stock,2022-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRGV-WS,Energy Vault Holdings Inc Wt Exp 01112027,NYSE,Stock,2022-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRGX,PIMCO Energy and Tactical Credit Opportunities Fund,NYSE,Stock,2019-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRIM,Northrim Bancorp Inc,NASDAQ,Stock,1993-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRIX,Nurix Therapeutics Inc,NASDAQ,Stock,2020-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRK,Nuveen New York AMT-Free Quality Municipal Income Fund,NYSE,ETF,2003-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRO,Neuberger Berman Real Estate Securities Income Fund Inc,NYSE MKT,ETF,2003-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRP,Natural Resource Partners LP,NYSE,Stock,2002-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRSN,NeuroSense Therapeutics Ltd,NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRSNW,NeuroSense Therapeutics Ltd - Warrants (09/11/2026),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRT,North European Oil Royalty Trust,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRUC,National Rural Utilities Cooperative Finance Corporation 5500 Subordinated Notes due 2064 Subordinated Deferrable Interest Notes,NYSE,Stock,2019-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRXP,NRX Pharmaceuticals Inc,NASDAQ,Stock,2017-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRXPW,NRX Pharmaceuticals Inc - Warrants (24/05/2026),NASDAQ,Stock,2017-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRZ,New Residential Investment Corp,NYSE,Stock,2013-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRZ-P-A,New Residential Investment Corp FXDFR PRF PERPETUAL USD 25 Ser A,NYSE,Stock,2019-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRZ-P-B,New Residential Investment Corp,NYSE,Stock,2019-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRZ-P-C,New Residential Investment Corp,NYSE,Stock,2020-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NRZ-P-D,New Residential Investment Corp,NYSE,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NS,Nustar Energy L P,NYSE,Stock,2001-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NS-P-A,Nustar Energy LP 850 Series A FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units,NYSE,Stock,2016-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NS-P-B,Nustar Energy LP 7625 Series B FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units representing limited partner interests,NYSE,Stock,2017-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NS-P-C,Nustar Energy LP 900 Series C FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units,NYSE,Stock,2017-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSA,National Storage Affiliates Trust,NYSE,Stock,2015-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSA-P-A,National Storage Affiliates Trust,NYSE,Stock,2018-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSC,Norfolk Southern Corp,NYSE,Stock,1982-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSCS,NUVEEN SMALL CAP SELECT ETF ,NYSE ARCA,ETF,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSEC,National Security Group Inc,NASDAQ,Stock,1990-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSIT,Insight Enterprises Inc,NASDAQ,Stock,1995-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSL,Nuveen Senior Income Fund,NYSE,ETF,1999-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSP,Insperity Inc,NYSE,Stock,1997-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSPI,Nationwide S&P 500 Risk-Managed Income ETF,NYSE ARCA,ETF,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSPR,InspireMD Inc,NASDAQ,Stock,2011-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSPR-WSB,InspireMD Inc - Warrants - Class B (14/03/2022),NASDAQ,Stock,2017-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSR,Nomad Royalty Company Ltd,NYSE,Stock,2021-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSS,NuStar Logistics LP,NYSE,Stock,2013-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSSC,NAPCO Security Technologies Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTB,Northern Star Investment Corp II - Class A,NYSE,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTB-U,Northern Star Investment Corp II - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTB-WS,Northern Star Investment Corp II - Warrants (31/01/2028),NYSE,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTC,Northern Star Investment Corp III - Class A,NYSE,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTC-U,Northern Star Investment Corp III - Units (1 Ord Share Class A & 1/6 War),NYSE,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTC-WS,Northern Star Investment Corp III - Warrants (01/01/9999),NYSE,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTD,Northern Star Investment Corp IV - Class A,NYSE,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTD-U,Northern Star Investment Corp IV - Units (1 Ord Share Class A & 1/6 War),NYSE,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTD-WS,Northern Star Investment Corp IV - Warrants (01/01/9999),NYSE,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTG,Nanostring Technologies Inc,NASDAQ,Stock,2013-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSTS,NSTS Bancorp Inc,NASDAQ,Stock,2022-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NSYS,Nortech Systems Inc,NASDAQ,Stock,1993-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTAP,Netapp Inc,NASDAQ,Stock,1995-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTB,Bank of N T Butterfield & Son Ltd,NYSE,Stock,2016-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTCO,Natura &Co Holding S.A.,NYSE,Stock,2020-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTCT,Netscout Systems Inc,NASDAQ,Stock,1999-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTES,NetEase Inc,NASDAQ,Stock,2000-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST,NTEST,NYSE,Stock,2016-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-A,NTESTA,NYSE,Stock,2016-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-B,NTESTB,NYSE,Stock,2016-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-C,NTESTC,NYSE,Stock,2016-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-G,,NYSE,Stock,2019-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-H,,NYSE,Stock,2019-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-I,,NYSE,Stock,2019-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-J,,NYSE,Stock,2019-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-K,,NYSE,Stock,2019-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-L,,NYSE,Stock,2019-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-M,,NYSE,Stock,2019-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-N,,NYSE,Stock,2019-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-O,,NYSE,Stock,2019-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-P,,NYSE,Stock,2019-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-Q,,NYSE,Stock,2019-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-Y,,NYSE,Stock,2019-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTEST-Z,,NYSE,Stock,2019-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTG,Tortoise Midstream Energy Fund Inc,NYSE,ETF,2010-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTGR,Netgear Inc,NASDAQ,Stock,2003-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTIC,Northern Technologies International Corp,NASDAQ,Stock,1993-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTIP,Network-1 Technologies Inc,NYSE MKT,Stock,2013-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTKI,NATIONWIDE RUSSELL 2000 RISK-MANAGED INCOME ETF ,NYSE ARCA,ETF,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTLA,Intellia Therapeutics Inc,NASDAQ,Stock,2016-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTNX,Nutanix Inc - Class A,NASDAQ,Stock,2016-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTP,Nam Tai Property Inc,NYSE,Stock,1992-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTR,Nutrien Ltd,NYSE,Stock,2018-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTRA,Natera Inc,NASDAQ,Stock,2015-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTRB,Nutriband Inc,NASDAQ,Stock,2017-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTRBW,Nutriband Inc - Warrants (30/09/2026),NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTRS,Northern Trust Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTRSO,Northern Trust Corp. PRF PERPETUAL USD DpSh Rp11000th Sr E,NASDAQ,Stock,2019-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTRSP,Northern Trust Corp,NASDAQ,Stock,2014-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTSE,WisdomTree Emerging Markets Efficient Core Fund,NYSE ARCA,ETF,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTSI,WisdomTree International Efficient Core Fund,NYSE ARCA,ETF,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTST,Netstreit Corp,NYSE,Stock,2020-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTSX,WisdomTree U.S. Efficient Core Fund,NYSE ARCA,ETF,2018-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTUS,Natus Medical Inc,NASDAQ,Stock,2001-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTWK,Netsol Technologies Inc,NASDAQ,Stock,1998-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTX,Nuveen Texas Quality Income Municipal Fd,NYSE,ETF,1991-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTZ,Natuzzi S.P.A.,NYSE,Stock,1993-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NTZO,Impact Shares MSCI Global Climate Select ETF,NYSE ARCA,ETF,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NU,Nu Holdings Ltd Class A,NYSE,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUAG,NuShares Enhanced Yield U.S. Aggregate Bond ETF,NYSE ARCA,ETF,2016-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUBD,NuShares ESG U.S. Aggregate Bond ETF,NYSE ARCA,ETF,2017-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUBIU,Nubia Brand International Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2022-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUDM,Nuveen ESG International Developed Markets Equity ETF,BATS,ETF,2017-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUDV,Nuveen ESG Dividend ETF,BATS,ETF,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUE,Nucor Corp,NYSE,Stock,1983-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUEM,Nuveen ESG Emerging Markets Equity ETF,BATS,ETF,2017-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUGO,Nuveen Growth Opportunities ETF,NYSE ARCA,ETF,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUGT,Direxion Daily Gold Miners Index Bull 2X Shares,NYSE ARCA,ETF,2010-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUHY,NUVEEN ESG HIGH YIELD CORPORATE BOND ETF ,NYSE ARCA,ETF,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NULC,NUVEEN ESG LARGE-CAP ETF ,BATS,ETF,2019-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NULG,Nuveen ESG Large-Cap Growth ETF,BATS,ETF,2016-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NULV,Nuveen ESG Large-Cap Value ETF,BATS,ETF,2016-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUM,Nuveen Michigan Qlity Incom Municipal Fd,NYSE,ETF,1991-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUMG,Nuveen ESG Mid-Cap Growth ETF,BATS,ETF,2016-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUMV,Nuveen ESG Mid-Cap Value ETF,BATS,ETF,2016-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUO,Nuveen Ohio Quality Municipal Income Fund,NYSE,ETF,1991-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NURE,Nuveen Short-Term REIT ETF,BATS,ETF,2016-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NURO,Neurometrix Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUS,Nu Skin Enterprises Inc - Class A,NYSE,Stock,1996-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUSA,NUVEEN ENHANCED YIELD 1-5 YEAR U.S. AGGREGATE BOND ETF ,NYSE ARCA,ETF,2017-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUSC,Nuveen ESG Small-Cap ETF,BATS,ETF,2016-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUSI,Nationwide Nasdaq-100 Risk-Managed Income ETF,NYSE ARCA,ETF,2019-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUV,Nuveen Municipal Value Fund Inc,NYSE,ETF,1987-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUVA,Nuvasive Inc,NASDAQ,Stock,2004-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUVB,Nuvation Bio Inc - Class A,NYSE,Stock,2020-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUVB-WS,Nuvation Bio Inc - Warrants (07/07/2027),NYSE,Stock,2020-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUVL,Nuvalent Inc - Class A,NASDAQ,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUW,Nuveen AMT-Free Municipal Value Fund,NYSE,ETF,2009-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUWE,Nuwellis Inc,NASDAQ,Stock,2012-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NUZE,Nuzee Inc,NASDAQ,Stock,2017-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVAC,NorthView Acquisition Corp,NASDAQ,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVACR,NorthView Acquisition Corp,NASDAQ,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVACW,NorthView Acquisition Corp - Warrants (02/08/2027),NASDAQ,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVAX,Novavax Inc,NASDAQ,Stock,1995-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVCN,Neovasc Inc,NASDAQ,Stock,2007-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVCR,NovoCure Ltd,NASDAQ,Stock,2015-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVCT,Nuvectis Pharma Inc,NASDAQ,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVDA,NVIDIA Corp,NASDAQ,Stock,1999-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVEC,NVE Corp,NASDAQ,Stock,1996-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVEE,NV5 Global Inc,NASDAQ,Stock,2013-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVEI,Nuvei Corporation (Sub Voting),NASDAQ,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVFY,Nova Lifestyle Inc,NASDAQ,Stock,2011-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVG,Nuveen AMT-Free Municipal Credit Income Fund,NYSE,ETF,2002-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVGS,Navigator Holdings Ltd,NYSE,Stock,2007-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVIV,InVivo Therapeutics Holdings Corp,NASDAQ,Stock,2010-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVMI,Nova Ltd,NASDAQ,Stock,2000-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVNO,enVVeno Medical Corporation,NASDAQ,Stock,2018-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVNOW,enVVeno Medical Corporation - Warrants (30/05/2023),NASDAQ,Stock,2018-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVO,Novo Nordisk,NYSE,Stock,1982-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVOS,Novo Integrated Sciences Inc,NASDAQ,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVQ,QRAFT AI-Enhanced U.S. Next Value ETF,NYSE ARCA,ETF,2020-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVR,NVR Inc,NYSE,Stock,1985-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVRO,Nevro Corp,NYSE,Stock,2014-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVS,Novartis AG,NYSE,Stock,1996-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVSA,New Vista Acquisition Corp - Class A,NASDAQ,Stock,2021-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVSAU,New Vista Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVSAW,New Vista Acquisition Corp - Warrants (01/02/2026),NASDAQ,Stock,2021-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVST,Envista Holdings Corp,NYSE,Stock,2019-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVT,nVent Electric plc,NYSE,Stock,2018-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVTA,Invitae Corp,NYSE,Stock,2015-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVTS,Navitas Semiconductor Corp,NASDAQ,Stock,2021-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVVE,Nuvve Holding Corp,NASDAQ,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVVEW,Nuvve Holding Corp - Warrants (19/03/2026),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NVX,Novonix Ltd,NASDAQ,Stock,2022-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWBI,Northwest Bancshares Inc,NASDAQ,Stock,1994-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWE,Northwestern Corp,NASDAQ,Stock,2007-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWFL,Norwood Financial Corp,NASDAQ,Stock,1998-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWG,NatWest Group Plc,NYSE,Stock,2007-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWL,Newell Brands Inc,NASDAQ,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWLG,Nuveen Winslow Large-Cap Growth ESG ETF,NYSE ARCA,ETF,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWLI,National Western Life Group Inc - Class A,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWN,Northwest Natural Holding Company,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWPX,Northwest Pipe Company,NASDAQ,Stock,1995-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWS,News Corp - Class B,NASDAQ,Stock,2013-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NWSA,News Corp - Class A,NASDAQ,Stock,2013-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NX,Quanex Building Products Corp,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXC,Nuveen California Select Tax-Free Income Portfolio,NYSE,ETF,1992-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXDT,NexPoint Diversified Real Estate Trust,NYSE,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXDT-P-A,NexPoint Diversified Real Estate Trust,NYSE,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXE,NexGen Energy Ltd,NYSE MKT,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXGL,Nexgel Inc,NASDAQ,Stock,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXGLW,Nexgel Inc - Warrants (17/12/2026),NASDAQ,Stock,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXGN,NextGen Healthcare Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXJ,Nuveen New Jersey Quality Municipal Income Fund,NYSE,ETF,2002-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXMD,Nexeon MedSystems Inc,NASDAQ,Stock,2017-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXN,Nuveen New York Select Tax-Free Income Portfolio,NYSE,ETF,1992-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXP,Nuveen Select Tax-Free Income Portfolio,NYSE,ETF,1992-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXPI,NXP Semiconductors NV,NASDAQ,Stock,2010-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXPL,NextPlat Corp,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXPLW,NextPlat Corp - Warrants (29/04/2026),NASDAQ,Stock,2021-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXQ,Nuveen Select Tax-Free Income Portfolio 2,NYSE,ETF,1992-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXR,Nuveen Select Tax-Free Income Portfolio 3,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXRT,NexPoint Residential Trust Inc,NYSE,Stock,2015-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXST,Nexstar Media Group Inc - Class A,NASDAQ,Stock,2003-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXTC,Nextcure Inc,NASDAQ,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXTG,First Trust Indxx NextG ETF,NASDAQ,ETF,2011-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NXTP,NextPlay Technologies Inc,NASDAQ,Stock,2012-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYC,New York City REIT Inc - Class A,NYSE,Stock,2020-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYCB,New York Community Bancorp Inc,NYSE,Stock,1993-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYCB-P-A,New York Community Bancorp Inc,NYSE,Stock,2017-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYCB-P-U,New York Community Bancorp Inc Capital Tr V BONUSES,NYSE,Stock,2003-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYF,iShares New York Muni Bond ETF,NYSE ARCA,ETF,2007-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYMT,New York Mortgage Trust Inc,NASDAQ,Stock,2004-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYMTL,New York Mortgage Trust Inc,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYMTM,New York Mortgage Trust Inc,NASDAQ,Stock,2019-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYMTN,New York Mortgage Trust Inc,NASDAQ,Stock,2017-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYMTZ,New York Mortgage Trust Inc,NASDAQ,Stock,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYMX,Nymox Pharmaceutical Corp,NASDAQ,Stock,1997-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYT,New York Times Co. - Class A,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYV,Nuveen New York Municipal Value Fund 2,NYSE,ETF,2009-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NYXH,Nyxoah SA,NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NZAC,SPDR MSCI ACWI Low Carbon Target ETF,NASDAQ,ETF,2014-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NZF,Nuveen Municipal Credit Income Fund,NYSE,ETF,2001-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "NZRO,Strategy Shares Halt Climate Change ETF,NASDAQ,ETF,2022-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "O,Realty Income Corp,NYSE,Stock,1994-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OAC-U,Oaktree Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2019-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OACB,Oaktree Acquisition Corp II - Class A,NYSE,Stock,2020-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OACB-U,Oaktree Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OACB-WS,Oaktree Acquisition Corp II - Warrants (15/09/2027),NYSE,Stock,2020-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OAK-P-A,Oaktree Capital Group LLC,NYSE,Stock,2018-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OAK-P-B,Oaktree Capital Group LLC,NYSE,Stock,2018-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OALC,OneAscent Large Cap Core ETF,NYSE ARCA,ETF,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OAS,Oasis Petroleum Inc - New,NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OB,Outbrain Inc,NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OBAS,Optibase,NASDAQ,Stock,1999-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OBCI,Ocean Bio-Chem Inc,NASDAQ,Stock,1995-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OBE,Obsidian Energy Ltd,NYSE MKT,Stock,2020-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OBLG,Oblong Inc,NASDAQ,Stock,1995-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OBND,SPDR LOOMIS SAYLES OPPORTUNISTIC BOND ETF ,BATS,ETF,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OBNK,Origin Bancorp Inc,NASDAQ,Stock,2018-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OBOR,KRANESHARES MSCI ONE BELT ONE ROAD INDEX ETF ,NYSE ARCA,ETF,2017-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OBSV,ObsEva SA.,NASDAQ,Stock,2017-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OBT,Orange County Bancorp Inc,NASDAQ,Stock,2007-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OC,Owens Corning,NYSE,Stock,2006-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCA,Omnichannel Acquisition Corp - Class A,NYSE,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCA-U,Omnichannel Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCA-WS,Omnichannel Acquisition Corp - Warrants (30/12/2027),NYSE,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCAX,OCA Acquisition Corp - Class A,NASDAQ,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCAXU,OCA Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCAXW,OCA Acquisition Corp - Warrants (14/01/2026),NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCC,Optical Cable Corp,NASDAQ,Stock,1996-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCCI,OFS Credit Company Inc,NASDAQ,Stock,2018-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCCIN,OFS Credit Company Inc,NASDAQ,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCCIO,OFS Credit Company Inc,NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCDX,Ortho Clinical Diagnostics Holdings plc,NASDAQ,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCEN,IQ Clean Oceans ETF,NYSE ARCA,ETF,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCFC,OceanFirst Financial Corp,NASDAQ,Stock,1996-07-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCFCP,OceanFirst Financial Corp. FXDFR PRF PERPETUAL USD 25 Ser A,NASDAQ,Stock,2020-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCFT,Oneconnect Financial Technology Co Ltd,NYSE,Stock,2019-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCG,Oriental Culture Holding Ltd,NASDAQ,Stock,2020-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCGN,Ocugen Inc,NASDAQ,Stock,2014-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCIO,ClearShares OCIO ETF,NYSE ARCA,ETF,2017-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCN,Ocwen Financial Corp,NYSE,Stock,1996-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCSL,Oaktree Specialty Lending Corp,NASDAQ,Stock,2008-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCSLL,Oaktree Specialty Lending Corporation 6125 senior notes due 2028,NASDAQ,Stock,2013-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCTZ,TrueShares Structured Outcome (October) ETF,BATS,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCUL,Ocular Therapeutix Inc,NASDAQ,Stock,2014-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCUP,Ocuphire Pharma Inc,NASDAQ,Stock,2005-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OCX,Oncocyte Corporation,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ODC,Oil-Dri Corp Of America,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ODFL,Old Dominion Freight Line Inc,NASDAQ,Stock,1991-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ODP,ODP Corporation (The),NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OEC,Orion Engineered Carbons S.A.,NYSE,Stock,2014-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OEF,iShares S&P 100 ETF,NYSE ARCA,ETF,2000-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OEG,Orbital Energy Group Inc,NASDAQ,Stock,1999-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OEPW,One Equity Partners Open Water I Corp - Class A,NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OEPWU,One Equity Partners Open Water I Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OEPWW,One Equity Partners Open Water I Corp - Warrants (14/01/2026),NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OESX,Orion Energy Systems Inc,NASDAQ,Stock,2007-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OEUR,OShares Europe Quality Dividend ETF,BATS,ETF,2015-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OFC,Corporate Office Properties Trust,NYSE,Stock,1991-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OFED,Oconee Federal Financial Corp,NASDAQ,Stock,2011-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OFG,OFG Bancorp,NYSE,Stock,1990-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OFIX,Orthofix Medical Inc,NASDAQ,Stock,1992-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OFLX,Omega Flex Inc,NASDAQ,Stock,2005-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OFS,OFS Capital Corp,NASDAQ,Stock,2012-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OFSSH,OFS Capital Corp,NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OG,Onion Global Ltd,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OGCP,Empire State Realty OP LP,NYSE ARCA,Stock,2013-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OGE,Oge Energy Corp,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OGEN,Oragenics Inc,NYSE MKT,Stock,2004-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OGI,OrganiGram Holdings Inc,NASDAQ,Stock,2014-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OGIG,O`Shares Global Internet Giants ETF,BATS,ETF,2018-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OGN,Organon & Company,NYSE,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OGN-W,Organon & Co. When Issued,NYSE,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OGS,ONE Gas Inc,NYSE,Stock,2014-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OHAA,OPY Acquisition Corp I - Class A,NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OHAAU,OPY Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OHAAW,OPY Acquisition Corp I - Warrants (22/09/2026),NASDAQ,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OHI,Omega Healthcare Investors Inc,NYSE,Stock,1992-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OHPA,Orion Acquisition Corp - Class A,NASDAQ,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OHPAU,Orion Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OHPAW,Orion Acquisition Corp - Warrants (19/02/2026),NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OI,O-I Glass Inc,NYSE,Stock,1991-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OIA,Invesco Municipal Income Opportunities Trust,NYSE,ETF,1988-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OIH,VanEck Oil Services ETF,NYSE ARCA,ETF,2001-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OII,Oceaneering International Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OIIM,O2 Micro International,NASDAQ,Stock,2000-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OIL,iPath Pure Beta Crude Oil ETN,NYSE ARCA,Stock,2011-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OILD,Bank of Montreal,NYSE ARCA,ETF,2017-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OILK,ProShares K-1 Free Crude Oil Strategy ETF,BATS,ETF,2016-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OILU,Bank of Montreal,NYSE ARCA,ETF,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OILX,UBS AG London Branch ETRACS SP GSCI Crude Oil Total Return Index ETN Index Ser B 02222046,NYSE ARCA,ETF,2016-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OIS,Oil States International Inc,NYSE,Stock,2001-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OKE,Oneok Inc,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OKTA,Okta Inc - Class A,NASDAQ,Stock,2017-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLB,OLB Group Inc,NASDAQ,Stock,2007-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLED,Universal Display Corp,NASDAQ,Stock,1996-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLIT,OmniLit Acquisition Corp - Class A,NASDAQ,Stock,2022-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLITU,OmniLit Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLITW,OmniLit Acquisition Corp - Warrants (08/11/2026),NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLK,Olink Holding AB (publ),NASDAQ,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLLI,Ollies Bargain Outlet Holdings Inc,NASDAQ,Stock,2015-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLMA,Olema Pharmaceuticals Inc,NASDAQ,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLN,Olin Corp,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLO,Olo Inc - Class A,NYSE,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLP,One Liberty Properties Inc,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OLPX,Olaplex Holdings Inc,NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OM,Outset Medical Inc,NASDAQ,Stock,2020-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMAB,Grupo Aeroportuario del Centro Norte S.A.B de C.V.,NASDAQ,Stock,2006-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMC,Omnicom Group Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMCL,Omnicell Inc,NASDAQ,Stock,2001-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMEG,Omega Alpha SPAC - Class A,NASDAQ,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMER,Omeros Corporation,NASDAQ,Stock,2009-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMEX,Odyssey Marine Exploration Inc,NASDAQ,Stock,1999-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMF,OneMain Holdings Inc,NYSE,Stock,2015-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMFL,Invesco Russell 1000 Dynamic Multifactor ETF,BATS,ETF,2017-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMFS,Invesco Russell 2000 Dynamic Multifactor ETF,BATS,ETF,2017-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMGA,Omega Therapeutics Inc,NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMI,Owens & Minor Inc,NYSE,Stock,1988-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMIC,Singular Genomics Systems Inc,NASDAQ,Stock,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OMQS,OMNIQ Corp,NASDAQ,Stock,2012-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ON,ON Semiconductor Corp,NASDAQ,Stock,2000-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONB,Old National Bancorp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONBPO,Old National Bancorp,NASDAQ,Stock,2022-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONBPP,Old National Bancorp,NASDAQ,Stock,2022-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONCR,Oncorus Inc,NASDAQ,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONCS,OncoSec Medical Inc,NASDAQ,Stock,2011-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONCT,Oncternal Therapeutics Inc,NASDAQ,Stock,2004-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONCY,Oncolytics Biotech Inc,NASDAQ,Stock,2018-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OND,ProShares On-Demand ETF,NYSE ARCA,ETF,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONDS,Ondas Holdings Inc,NASDAQ,Stock,2018-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONE,OneSmart International Education Group Ltd,NYSE,Stock,2018-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONEM,1life Healthcare Inc,NASDAQ,Stock,2020-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONEO,SPDR Russell 1000 Momentum Focus ETF,NYSE ARCA,ETF,2015-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONEQ,Fidelity Nasdaq Composite Index ETF,NASDAQ,ETF,2003-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONEV,SPDR Russell 1000 Low Volatility Focus ETF,NYSE ARCA,ETF,2015-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONEW,Onewater Marine Inc - Class A,NASDAQ,Stock,2020-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONEY,SPDR Russell 1000 Yield Focus ETF,NYSE ARCA,ETF,2015-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONG,Direxion Daily Oil Services Bull 2X Shares,NYSE ARCA,ETF,2022-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONL,Orion Office REIT Inc,NYSE,Stock,2021-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONL-W,Orion Office REIT Inc WhenIssued,NYSE,Stock,2021-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONLN,ProShares Online Retail ETF,NYSE ARCA,ETF,2018-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONOF,Global X Adaptive U.S. Risk Management ETF,NYSE ARCA,ETF,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONON,On Holding AG Class A,NYSE,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONTF,ON24 Inc,NYSE,Stock,2021-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONTO,Onto Innovation Inc,NYSE,Stock,1992-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONTX,Onconova Therapeutics Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONVO,Organovo Holdings Inc,NASDAQ,Stock,2012-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONYX,Onyx Acquisition Co I - Class A,NASDAQ,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONYXU,Onyx Acquisition Co I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ONYXW,Onyx Acquisition Co I - Warrants (30/11/2028),NASDAQ,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OOMA,Ooma Inc,NYSE,Stock,2015-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OOTO,Direxion Daily Travel & Vacation Bull 2X Shares,NYSE ARCA,ETF,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OP,OceanPal Inc,NASDAQ,Stock,2021-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPA,Magnum Opus Acquisition Ltd - Class A,NYSE,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPA-U,Magnum Opus Acquisition Ltd - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPA-WS,Magnum Opus Acquisition Ltd - Warrants (06/03/2026),NYSE,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPAD,Offerpad Solutions Inc - Class A,NYSE,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPAD-WS,Offerpad Solutions Inc - Warrants (16/10/2025),NYSE,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPBK,OP Bancorp,NASDAQ,Stock,2005-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPCH,Option Care Health Inc,NASDAQ,Stock,1996-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPEN,Opendoor Technologies Inc,NASDAQ,Stock,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPER,ClearShares Ultra-Short Maturity ETF,NYSE ARCA,ETF,2018-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPFI,OppFi Inc - Class A,NYSE,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPFI-WS,OppFi Inc - Warrants (20/07/2026),NYSE,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPGN,Opgen Inc,NASDAQ,Stock,2015-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPHC,Optimumbank Holdings Inc,NASDAQ,Stock,2003-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPI,Office Properties Income Trust,NASDAQ,Stock,2009-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPINL,Office Properties Income Trust,NASDAQ,Stock,2020-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPK,Opko Health Inc,NASDAQ,Stock,1995-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPNT,Opiant Pharmaceuticals Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPOF,Old Point Financial Corp,NASDAQ,Stock,1999-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPP,RiverNorth/DoubleLine Strategic opportunity fund Inc,NYSE,ETF,2016-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPP-P-A,RiverNorth/DoubleLine Strategic opportunity fund Inc,NYSE,Stock,2020-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPP-P-B,RiverNorth/DoubleLine Strategic opportunity fund Inc,NYSE,Stock,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPP-R-W,RiverNorthDoubleLine Strategic Opportunity Fund Inc Rights expiring October 1 2020,NYSE,Stock,2020-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPPX,Corbett Road Tactical Opportunity ETF,NYSE ARCA,ETF,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPRA,Opera Ltd,NASDAQ,Stock,2018-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPRT,Oportun Financial Corp,NASDAQ,Stock,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPRX,OptimizeRx Corp,NASDAQ,Stock,1996-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPT,Opthea Ltd,NASDAQ,Stock,2012-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPTN,OptiNose Inc,NASDAQ,Stock,2017-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPTT,Ocean Power Technologies - Reg S,NYSE MKT,Stock,2007-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OPY,Oppenheimer Holdings Inc - Class A,NYSE,Stock,1993-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OR,Osisko Gold Royalties Ltd,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORA,Ormat Technologies Inc,NYSE,Stock,2004-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORAN,Orange.,NYSE,Stock,1997-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORC,Orchid Island Capital Inc,NYSE,Stock,2013-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORCC,Owl Rock Capital Corp,NYSE,Stock,2019-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORCL,Oracle Corp,NYSE,Stock,1986-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORGN,Origin Materials Inc,NASDAQ,Stock,2020-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORGNW,Origin Materials Inc - Warrants (23/06/2026),NASDAQ,Stock,2020-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORGO,Organogenesis Holdings Inc - Class A,NASDAQ,Stock,2017-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORGS,Orgenesis Inc,NASDAQ,Stock,2012-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORI,Old Republic International Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORIA,Orion Biotech Opportunities Corp - Class A,NASDAQ,Stock,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORIAU,Orion Biotech Opportunities Corp - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORIAW,Orion Biotech Opportunities Corp - Warrants (15/04/2025),NASDAQ,Stock,2021-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORIC,ORIC Pharmaceuticals Inc,NASDAQ,Stock,2020-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORLA,Orla Mining Ltd,NYSE MKT,Stock,2020-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORLY,O`Reilly Automotive Inc,NASDAQ,Stock,1993-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORMP,Oramed Pharmaceuticals Inc,NASDAQ,Stock,2006-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORN,Orion Group Holdings Inc,NYSE,Stock,2007-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORPH,Orphazyme A/S,NASDAQ,Stock,2020-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORRF,Orrstown Financial Services Inc,NASDAQ,Stock,1999-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ORTX,Orchard Therapeutics plc,NASDAQ,Stock,2018-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSBC,Old Second Bancorporation Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSCR,Oscar Health Inc - Class A,NYSE,Stock,2021-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSCV,Opus Small Cap Value Plus ETF,BATS,ETF,2018-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSG,Overseas Shipholding Group Inc - Class A,NYSE,Stock,2015-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSH,Oak Street Health Inc,NYSE,Stock,2020-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSI,Osiris Acquisition Corp - Class A,NYSE,Stock,2021-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSI-U,Osiris Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSI-WS,Osiris Acquisition Corp - Warrants (01/05/2028),NYSE,Stock,2021-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSIS,OSI Systems Inc,NASDAQ,Stock,1997-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSK,Oshkosh Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSLE,Oaktree Specialty Lending Corporation 5875 Senior Notes due 2024,NYSE,Stock,2012-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSLE-CL,,NYSE,Stock,2020-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSPN,OneSpan Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSS,One Stop Systems Inc,NASDAQ,Stock,2018-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSTK,Overstock.com Inc,NASDAQ,Stock,2002-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSTR,Oyster Enterprises Acquisition Corp - Class A,NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSTRU,Oyster Enterprises Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSTRW,Oyster Enterprises Acquisition Corp - Warrants (20/01/2026),NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSUR,Orasure Technologies Inc,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OSW,OneSpaWorld Holdings Ltd,NASDAQ,Stock,2019-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTEC,OceanTech Acquisitions I Corp - Class A,NASDAQ,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTECU,OceanTech Acquisitions I Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTECW,OceanTech Acquisitions I Corp - Warrants (12/05/2026),NASDAQ,Stock,2021-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTEX,Open Text Corp,NASDAQ,Stock,1996-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTIC,Otonomy Inc,NASDAQ,Stock,2014-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTIS,Otis Worldwide Corp,NYSE,Stock,2020-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTLK,Outlook Therapeutics Inc,NASDAQ,Stock,2016-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTLY,Oatly Group AB,NASDAQ,Stock,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTMO,Otonomo Technologies Ltd,NASDAQ,Stock,2021-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTMOW,Otonomo Technologies Ltd - Warrants (13/08/2026),NASDAQ,Stock,2021-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTRA,OTR Acquisition Corp - Class A,NASDAQ,Stock,2020-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTRAU,OTR Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2020-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTRAW,OTR Acquisition Corp - Warrants (01/10/2025),NASDAQ,Stock,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTRK,Ontrak Inc,NASDAQ,Stock,2013-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTRKP,Ontrak Inc,NASDAQ,Stock,2020-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OTTR,Otter Tail Corporation,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OUNZ,VanEck Merk Gold Trust,NYSE ARCA,ETF,2014-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OUSA,OwShares U.S. Quality Dividend ETF,BATS,ETF,2015-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OUSM,OShares U.S. Small-Cap Quality Dividend ETF,BATS,ETF,2016-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OUST,Ouster Inc - Class A,NYSE,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OUST-WS,Ouster Inc - Warrants (31/08/2027),NYSE,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OUT,Outfront Media Inc,NYSE,Stock,2014-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVB,Overlay Shares Core Bond ETF,NYSE ARCA,ETF,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVBC,Ohio Valley Banc Corp,NASDAQ,Stock,1996-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVF,Overlay Shares Foreign Equity ETF,NYSE ARCA,ETF,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVID,Ovid Therapeutics Inc,NASDAQ,Stock,2017-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVL,Overlay Shares Large Cap Equity ETF,NYSE ARCA,ETF,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVLH,OVERLAY SHARES HEDGED LARGE CAP EQUITY ETF ,NYSE ARCA,ETF,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVLY,Oak Valley Bancorp,NASDAQ,Stock,2003-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVM,OVERLAY SHARES MUNICIPAL BOND ETF ,NYSE ARCA,ETF,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVS,OVERLAY SHARES SMALL CAP EQUITY ETF ,NYSE ARCA,ETF,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVT,Overlay Shares Short Term Bond ETF,NYSE ARCA,ETF,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OVV,Ovintiv Inc,NYSE,Stock,2002-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OWL,Blue Owl Capital Inc - Class A,NYSE,Stock,2020-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OWL-WS,Blue Owl Capital Inc Redeemable Warrants,NYSE,Stock,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OWLT,Owlet Inc - Class A,NYSE,Stock,2020-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OWLT-WS,Owlet Inc - Warrants(14/09/2027),NYSE,Stock,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OWNS,Impact Shares Affordable Housing MBS ETF,NYSE ARCA,ETF,2021-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXAC,Oxbridge Acquisition Corp - Class A,NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXACU,Oxbridge Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXACW,Oxbridge Acquisition Corp - Warrants (04/08/2026),NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXBR,Oxbridge Re Holdings Ltd,NASDAQ,Stock,2014-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXBRW,Oxbridge Re Holdings Ltd - Warrants (26/03/2024),NASDAQ,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXLC,Oxford Lane Capital Corp,NASDAQ,ETF,2011-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXLCL,Oxford Lane Capital Corp,NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXLCM,Oxford Lane Capital Corp,NASDAQ,Stock,2017-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXLCO,Oxford Lane Capital Corp,NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXLCP,Oxford Lane Capital Corp,NASDAQ,Stock,2020-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXLCZ,Oxford Lane Capital Corp,NASDAQ,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXM,Oxford Industries Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXSQ,Oxford Square Capital Corp,NASDAQ,Stock,2018-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXSQG,Oxford Square Capital Corp,NASDAQ,Stock,2021-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXSQL,Oxford Square Capital Corp,NASDAQ,Stock,2018-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXSQZ,Oxford Square Capital Corp,NASDAQ,Stock,2019-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXUS,Oxus Acquisition Corp - Class A,NASDAQ,Stock,2021-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXUSU,Oxus Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXUSW,Oxus Acquisition Corp - Warrants (26/08/2026),NASDAQ,Stock,2021-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXY,Occidental Petroleum Corp,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXY-WS,Occidental Petroleum Corp - Warrants (03/08/2027),NYSE,Stock,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXY-WS-W,Occidental Petroleum Corporation Warrants When Issued,NYSE,Stock,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OXY-WSW,Occidental Petroleum Corporation Warrants When Issued,NYSE,Stock,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OYST,Oyster Point Pharma Inc,NASDAQ,Stock,2019-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OZ,Belpointe REIT Inc,NYSE,Stock,2019-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OZK,Bank OZK,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OZKAP,Bank OZK,NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "OZON,Ozon Holdings PLC,NASDAQ,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAA,Plains All American Pipeline LP,NASDAQ,Stock,1998-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAACR,Pacific Special Acquisition Corp Rt,NASDAQ,Stock,2015-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAACW,PAACW,NASDAQ,Stock,2015-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAAS,Pan American Silver Corp,NASDAQ,Stock,1995-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAB,PGIM Active Aggregate Bond ETF,NYSE ARCA,ETF,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PABU,iShares Paris-Aligned Climate MSCI USA ETF,NASDAQ,ETF,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAC,Grupo Aeroportuario Del Pacifico SAB de CV,NYSE,Stock,2006-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PACB,Pacific Biosciences of California Inc,NASDAQ,Stock,2010-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PACI,PROOF Acquisition Corp I - Class A,NYSE,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PACI-U,PROOF Acquisition Corp I Units each consisting of one share of Class A common stock 0.0001 par value and onehalf of one redeemable warrant,NYSE,Stock,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PACI-WS,PROOF Acquisition Corp I - Warrants (01/01/9999),NYSE,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PACK,Ranpak Holdings Corp - Class A,NYSE,Stock,2019-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PACW,Pacwest Bancorp,NASDAQ,Stock,2000-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PACX,Pioneer Merger Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PACXU,Pioneer Merger Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PACXW,Pioneer Merger Corp - Warrants(07/01/2026),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAFO,Pacifico Acquisition Corp,NASDAQ,Stock,2021-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAFOR,Pacifico Acquisition Corp,NASDAQ,Stock,2021-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAFOU,Pacifico Acquisition Corp - Units (1 Ord Share & 1 Right),NASDAQ,Stock,2021-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAG,Penske Automotive Group Inc,NYSE,Stock,1996-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAGP,Plains GP Holdings LP - Class A,NASDAQ,Stock,2013-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAGS,PagSeguro Digital Ltd - Class A,NYSE,Stock,2018-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAHC,Phibro Animal Health Corp - Class A,NASDAQ,Stock,2014-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAI,Western Asset Investment Grade Income Fund Inc,NYSE,ETF,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAK,Global X MSCI Pakistan ETF,NYSE ARCA,ETF,2015-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PALC,Pacer Lunt Large Cap Multi-Factor Alternator ETF,NYSE ARCA,ETF,2020-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PALI,Palisade Bio Inc,NASDAQ,Stock,2006-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PALL,Aberdeen Standard Physical Palladium Shares ETF,NYSE ARCA,ETF,2010-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PALT,Paltalk Inc,NASDAQ,Stock,2018-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAM,Pampa Energia SA,NYSE,ETF,2009-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAMC,Pacer Lunt MidCap Multi-Factor Alternator ETF,NYSE ARCA,ETF,2020-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PANA,Panacea Acquisition Corp II,NASDAQ,Stock,2021-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PANL,Pangaea Logistics Solutions Ltd,NASDAQ,Stock,2013-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PANW,Palo Alto Networks Inc,NASDAQ,Stock,2012-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAPR,Innovator U.S. Equity Power Buffer ETF - April,BATS,ETF,2019-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAQC,Provident Acquisition Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAQCU,Provident Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAQCW,Provident Acquisition Corp - Warrants (08/01/2026),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAR,Par Technology Corp,NYSE,Stock,1988-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PARA,Paramount Global - Class B,NASDAQ,Stock,2006-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PARAA,Paramount Global - Class A,NASDAQ,Stock,2006-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PARAP,Paramount Global Conv Pfd,NASDAQ,Stock,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PARR,Par Pacific Holdings Inc,NYSE,Stock,2012-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PASG,Passage Bio Inc,NASDAQ,Stock,2020-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PATH,UiPath Inc - Class A,NYSE,Stock,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PATI,Patriot Transportation Holding Inc,NASDAQ,Stock,2015-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PATK,Patrick Industries Inc,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAUG,Innovator U.S. Equity Power Buffer ETF - August,BATS,ETF,2019-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAVE,Global X U.S. Infrastructure Development ETF,BATS,ETF,2017-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAVM,PAVmed Inc,NASDAQ,Stock,2016-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAVMZ,PAVmed Inc - Warrants - Series Z (30/04/2024),NASDAQ,Stock,2018-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAWZ,ProShares Pet Care ETF,BATS,ETF,2018-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAX,Patria Investments Ltd - Class A,NASDAQ,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAXS,PIMCO Access Income Fund,NYSE,Stock,2022-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAY,Paymentus Holdings Inc - Class A,NYSE,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAYA,Paya Holdings Inc - Class A,NASDAQ,Stock,2020-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAYC,Paycom Software Inc,NYSE,Stock,2014-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAYO,Payoneer Global Inc,NASDAQ,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAYOW,Payoneer Global Inc - Warrants (25/06/2026),NASDAQ,Stock,2021-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAYS,PaySign Inc,NASDAQ,Stock,2007-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PAYX,Paychex Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PB,Prosperity Bancshares Inc,NYSE,Stock,1998-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBA,Pembina Pipeline Corporation,NYSE,Stock,2010-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBAX,Phoenix Biotech Acquisition Corp - Class A,NASDAQ,Stock,2021-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBAXU,Phoenix Biotech Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBAXW,Phoenix Biotech Acquisition Corp - Warrants (01/09/2026),NASDAQ,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBBK,PB Bankshares Inc,NASDAQ,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBCT,People`s United Financial Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBCTP,People`s United Financial Inc,NASDAQ,Stock,2016-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBD,Invesco Global Clean Energy ETF,NYSE ARCA,ETF,2007-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBDM,INVESCO PUREBETA FTSE DEVELOPED EX-NORTH AMERICA ETF ,BATS,ETF,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBE,Invesco Dynamic Biotechnology & Genome ETF,NYSE ARCA,ETF,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBEE,INVESCO PUREBETA FTSE EMERGING MARKETS ETF ,BATS,ETF,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBF,PBF Energy Inc - Class A,NYSE,Stock,2012-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBFS,Pioneer Bancorp Inc,NASDAQ,Stock,2019-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBFX,Pbf Logistics Lp,NYSE,Stock,2014-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBH,Prestige Consumer Healthcare Inc,NYSE,Stock,2005-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBHC,Pathfinder Bancorp Inc,NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBI,Pitney Bowes Inc,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBI-P-B,Pitney Bowes Inc 670 Notes Due 2043,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBIP,Prudential Bancorp Inc,NASDAQ,Stock,2005-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBJ,Invesco Dynamic Food & Beverage ETF,NYSE ARCA,ETF,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBLA,Panbela Therapeutics Inc,NASDAQ,Stock,2017-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBND,INVESCO PUREBETA US AGGREGATE BOND ETF ,BATS,ETF,2017-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBP,Invesco S&P 500 BuyWrite ETF,NYSE ARCA,ETF,2007-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBPB,Potbelly Corp,NASDAQ,Stock,2013-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBR,Petroleo Brasileiro S.A. Petrobras,NYSE,Stock,2000-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBR-A,Petroleo Brasileiro S.A. Petrobras,NYSE,Stock,2003-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBS,Invesco Dynamic Media ETF,NYSE ARCA,ETF,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBSM,Invesco PureBeta SM MSCI USA Small Cap ETF,BATS,ETF,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBT,Permian Basin Royalty Trust,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBTP,Invesco PureBeta SM 0-5 Yr US TIPS ETF,BATS,ETF,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBTS,Powerbridge Technologies Co Ltd,NASDAQ,Stock,2019-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBUG,Barclays Bank PLC,NYSE ARCA,Stock,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBUS,Invesco PureBeta SM MSCI USA ETF,BATS,ETF,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBW,Invesco WilderHill Clean Energy ETF,NYSE ARCA,ETF,2005-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PBYI,Puma Biotechnology Inc,NASDAQ,Stock,2012-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCAR,Paccar Inc,NASDAQ,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCB,PCB Bancorp.,NASDAQ,Stock,2014-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCCT,Perception Capital Corp II - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCCTU,Perception Capital Corp II - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCCTW,Perception Capital Corp II - Warrants (25/10/2026),NASDAQ,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCEF,Invesco CEF Income Composite ETF,NYSE ARCA,ETF,2010-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCF,High Income Securities Fund,NYSE,ETF,1987-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCG,PG&E Corp,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCG-P-A,Pacific Gas Electric Company 6 Preferred Stock,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCG-P-B,Pacific Gas & Electric Company,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCG-P-C,Pacific Gas & Electric Company,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCG-P-D,Pacific Gas & Electric Company,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCG-P-E,Pacific Gas & Electric Company,NYSE MKT,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCG-P-G,Pacific Gas & Electric Company,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCG-P-H,Pacific Gas & Electric Company,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCG-P-I,Pacific Gas & Electric Company,NYSE MKT,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCGU,PG&E Corp,NYSE,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCH,PotlatchDeltic Corp,NASDAQ,Stock,1985-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCI,PIMCO Dynamic Credit and Mortgage Income Fund,NYSE,ETF,2013-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCK,Pimco California Municipal Income Fund II,NYSE,ETF,2002-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCM,PCM Fund Inc,NYSE,ETF,1993-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCN,PIMCO Corporate & Income Strategy Fund,NYSE,ETF,2001-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCOM,Points.com Inc,NASDAQ,Stock,2011-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCOR,Procore Technologies Inc,NYSE,Stock,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCPC,Periphas Capital Partnering Corp - Class A,NYSE,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCPC-U,Periphas Capital Partnering Corp - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCPC-WS,Periphas Capital Partnering Corp - Warrants (10/12/2028),NYSE,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCPL-U,E2open Parent Holdings Inc - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCQ,Pimco California Municipal Income Fund,NYSE,ETF,2001-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCRX,Pacira BioSciences Inc,NASDAQ,Stock,2011-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCSA,Processa Pharmaceuticals Inc,NASDAQ,Stock,2017-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCSB,PCSB Financial Corp,NASDAQ,Stock,2017-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCT,PureCycle Technologies Inc,NASDAQ,Stock,2020-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCTI,PCTEL Inc,NASDAQ,Stock,1999-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCTTU,PureCycle Technologies Inc - Units (1 Ord Class A & 3/4 War),NASDAQ,Stock,2020-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCTTW,PureCycle Technologies Inc - Warrants (17/03/2026),NASDAQ,Stock,2020-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCTY,Paylocity Holding Corp,NASDAQ,Stock,2014-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCVX,Vaxcyte Inc,NASDAQ,Stock,2020-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCX,Parsec Capital Acquisitions Corp - Class A,NASDAQ,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCXCU,Parsec Capital Acquisitions Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2021-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCXCW,Parsec Capital Acquisitions Corp - Warrants (05/10/2026),NASDAQ,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCY,Invesco Emerging Markets Sovereign Debt ETF,NYSE ARCA,ETF,2007-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCYG,Park City Group Inc,NASDAQ,Stock,1999-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PCYO,Pure Cycle Corp,NASDAQ,Stock,1997-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PD,Pagerduty Inc,NYSE,Stock,2019-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDBC,Invesco Optimum Yield Diversified Commodity Strategy No K-1 ETF,NASDAQ,ETF,2014-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDCE,PDC Energy Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDCO,Patterson Companies Inc,NASDAQ,Stock,1992-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDD,Pinduoduo Inc,NASDAQ,Stock,2018-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDEC,Innovator U.S. Equity Power Buffer ETF - December,BATS,ETF,2019-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDEX,Pro-Dex Inc (co),NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDFS,PDF Solutions Inc,NASDAQ,Stock,2001-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDI,PIMCO Dynamic Income Fund,NYSE,ETF,2012-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDLB,Ponce Financial Group Inc,NASDAQ,Stock,2017-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDM,Piedmont Office Realty Trust Inc - Class A,NYSE,Stock,2010-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDN,Invesco FTSE RAFI Developed Markets ex-U.S. Small-Mid ETF,NYSE ARCA,ETF,2007-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDO,PIMCO Dynamic Income Opportunities Fund,NYSE,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDOT,Peridot Acquisition Corp II - Class A,NYSE,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDOT-U,Peridot Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDOT-WS,Peridot Acquisition Corp II - Warrants (30/04/2028),NYSE,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDP,Invesco DWA Momentum ETF,NASDAQ,ETF,2007-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDS,Precision Drilling Corp,NYSE,Stock,1996-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDSB,PDS Biotechnology Corporation,NASDAQ,Stock,2015-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PDT,John Hancock Premium Dividend Fund,NYSE,ETF,1989-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEAK,Healthpeak Properties Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEAR,Pear Therapeutics Inc - Class A,NASDAQ,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEARW,Pear Therapeutics Inc - Warrants (01/12/2026),NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEB,Pebblebrook Hotel Trust,NYSE,Stock,2009-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEB-P-E,Pebblebrook Hotel Trust 6375 PRF PERPETUAL USD Ser E,NYSE,Stock,2018-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEB-P-F,Pebblebrook Hotel Trust 630 PRF PERPETUAL USD Ser F,NYSE,Stock,2018-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEB-P-G,Pebblebrook Hotel Trust,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEB-P-H,Pebblebrook Hotel Trust,NYSE,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEBK,Peoples Bancorp Of North Carolina Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEBO,Peoples Bancorp Inc (Marietta OH),NASDAQ,Stock,1993-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PECO,Phillips Edison & Company Inc - New,NASDAQ,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PED,PEDEVCO Corp,NYSE MKT,Stock,2003-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEG,Public Service Enterprise Group Inc,NYSE,Stock,1980-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEGA,Pegasystems Inc,NASDAQ,Stock,1996-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEGR,Project Energy Reimagined Acquisition Corp - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEGRU,Project Energy Reimagined Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEGRW,Project Energy Reimagined Acquisition Corp - Warrants (28/10/2026),NASDAQ,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEI,Pennsylvania Real Estate Investment Trust,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEI-P-B,Pennsylvania Real Estate Investment Trust Cumulative Redeemable Perpetual Preferred Shares Series B,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEI-P-C,Pennsylvania Real Estate Investment Trust 720 Series C Cumulative Redeemable Perpetual Preferred Shares,NYSE,Stock,2017-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEI-P-D,Pennsylvania Real Estate Investment Trust 6875 Series D Cumulative Redeemable Perpetual Preferred Shares,NYSE,Stock,2017-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEJ,Invesco Dynamic Leisure and Entertainment ETF,NYSE ARCA,ETF,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEN,Penumbra Inc,NYSE,Stock,2015-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PENN,Penn National Gaming Inc,NASDAQ,Stock,1994-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEO,Adams Natural Resources Fund Inc,NYSE,ETF,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEP,PepsiCo Inc,NASDAQ,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEPL,PepperLime Health Acquisition Corp - Class A,NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEPLU,PepperLime Health Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEPLW,PepperLime Health Acquisition Corp - Warrants (01/10/2026),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PERI,Perion Network Ltd,NASDAQ,Stock,2006-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PESI,Perma-Fix Environmental Services Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PETQ,PetIQ Inc - Class A,NASDAQ,Stock,2017-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PETS,Petmed Express Inc,NASDAQ,Stock,1999-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PETV,PetVivo Holdings Inc,NASDAQ,Stock,2013-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PETVW,PetVivo Holdings Inc - Warrants (15/04/2026),NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PETZ,TDH Holdings Inc,NASDAQ,Stock,2017-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEX,ProShares Global Listed Private Equity ETF,BATS,ETF,2013-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEXL,PACER US EXPORT LEADERS ETF ,NYSE ARCA,ETF,2018-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEY,Invesco High Yield Equity Dividend Achievers ETF,NASDAQ,ETF,2004-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PEZ,Invesco DWA Consumer Cyclicals Momentum ETF,NASDAQ,ETF,2006-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFBC,Preferred Bank,NASDAQ,Stock,1999-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFC,Premier Financial Corp,NASDAQ,Stock,1993-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFD,Flaherty & Crumrine Preferred and Income Fund Inc,NYSE,ETF,1991-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFDR,Pathfinder Acquisition Corp - Class A,NASDAQ,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFDRU,Pathfinder Acquisition Corp - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFDRW,Pathfinder Acquisition Corp - Warrants (17/02/2026),NASDAQ,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFE,Pfizer Inc,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFE-W,Pfizer Inc ExDistribution When Issued,NYSE,Stock,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFEB,Innovator U.S. Equity Power Buffer ETF - February,BATS,ETF,2020-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFF,iShares Trust iShares Preferred and Income Securities ETF,NASDAQ,ETF,2007-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFFA,Virtus InfraCap U.S. Preferred Stock ETF,NYSE ARCA,ETF,2018-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFFD,Global X U.S. Preferred ETF,NYSE ARCA,ETF,2017-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFFL,ETRACS 2xMonthly Pay Leveraged Preferred Stock Index ETN due September 25 2048,NYSE ARCA,ETF,2018-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFFR,InfraCap REIT Preferred ETF,NYSE ARCA,ETF,2017-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFFV,Global X Variable Rate Preferred ETF,NYSE ARCA,ETF,2020-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFG,Principal Financial Group Inc,NASDAQ,Stock,2001-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFGC,Performance Food Group Company,NYSE,Stock,2015-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFH,Prudential Financial Inc,NYSE,Stock,2020-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFHD,Professional Holding Corp - Class A,NASDAQ,Stock,2017-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFI,Invesco DWA Financial Momentum ETF,NASDAQ,ETF,2006-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFIE,Profire Energy Inc,NASDAQ,Stock,2010-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFIG,Invesco Fundamental Investment Grade Corporate Bond ETF,NYSE ARCA,ETF,2011-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFIN,P & F Industries Inc - Class A,NASDAQ,Stock,1992-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFIS,Peoples Financial Services Corp,NASDAQ,Stock,2002-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFIX,Simplify Interest Rate Hedge ETF,NYSE ARCA,ETF,2021-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFL,Pimco Income Strategy Fund,NYSE,ETF,2003-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFLD,AAM Low Duration Preferred and Income Securities ETF,NYSE ARCA,ETF,2019-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFLT,PennantPark Floating Rate Capital Ltd,NASDAQ,Stock,2011-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFM,Invesco Dividend Achievers ETF,NASDAQ,ETF,2005-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFMT,Performant Financial Corp,NASDAQ,Stock,2012-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFN,Pimco Income Strategy Fund II,NYSE,ETF,2004-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFO,Flaherty & Crumrine Preferred and Income Opportunity Fund Inc,NYSE,ETF,1992-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFS,Provident Financial Services Inc,NYSE,Stock,2003-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFSI,PennyMac Financial Services Inc,NYSE,Stock,2013-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFSW,PFSWEB Inc,NASDAQ,Stock,1999-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFTA,Portage Fintech Acquisition Corp - Class A,NASDAQ,Stock,2021-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFTAU,Portage Fintech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFTAW,Portage Fintech Acquisition Corp - Warrants (08/07/2026),NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFUT,Putnam Sustainable Future ETF,NYSE ARCA,ETF,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFX,PhenixFIN Corp,NASDAQ,ETF,2011-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFXF,VanEck Preferred Securities ex Financials ETF,NYSE ARCA,ETF,2012-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFXNL,PhenixFIN Corp,NASDAQ,Stock,2013-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PFXNZ,PhenixFIN Corp,NASDAQ,Stock,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PG,Procter & Gamble Company,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGAL,GLOBAL X MSCI PORTUGAL ETF ,NYSE ARCA,ETF,2013-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGC,Peapack-Gladstone Financial Corp,NASDAQ,Stock,1999-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGEN,Precigen Inc,NASDAQ,Stock,2013-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGF,Invesco Financial Preferred ETF,NYSE ARCA,ETF,2006-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGHY,Invesco Global Short Term High Yield Bond ETF,NYSE ARCA,ETF,2013-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGJ,Invesco Golden Dragon China ETF,NASDAQ,ETF,2004-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGM,iPathA Series B Bloomberg Platinum Subindex Total Return ETN,NYSE ARCA,ETF,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGNY,Progyny Inc,NASDAQ,Stock,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGP,PIMCO Global StocksPLUS Income Fund,NYSE,ETF,2005-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGR,Progressive Corp,NYSE,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGRE,Paramount Group Inc,NYSE,Stock,2014-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGRO,Putnam Focused Large Cap Growth ETF,NYSE ARCA,ETF,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGRU,PropertyGuru Group Ltd,NYSE,Stock,2022-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGRW,Progress Acquisition Corp - Class A,NASDAQ,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGRWU,Progress Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGRWW,Progress Acquisition Corp - Warrants (11/11/2027),NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGSS,Pegasus Digital Mobility Acquisition Corp - Class A,NYSE,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGSS-U,Pegasus Digital Mobility Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGSS-WS,Pegasus Digital Mobility Acquisition Corp - Warrants(01/01/9999),NYSE,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGTI,PGT Innovations Inc,NYSE,Stock,2006-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGX,Invesco Preferred ETF,NYSE ARCA,ETF,2008-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PGZ,Principal Real Estate Income Fund,NYSE,ETF,2013-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PH,Parker-Hannifin Corp,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHAR,Pharming Group N.V.,NASDAQ,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHAS,PhaseBio Pharmaceuticals Inc,NASDAQ,Stock,2018-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHAT,Phathom Pharmaceuticals Inc,NASDAQ,Stock,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHB,Invesco Fundamental High Yield Corporate Bond ETF,NYSE ARCA,ETF,2007-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHCF,Puhui Wealth Investment Management Co Ltd,NASDAQ,Stock,2018-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHD,Pioneer Floating Rate Fund Inc,NYSE,ETF,2004-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHDG,Invesco S&P 500 Downside Hedged ETF,NYSE ARCA,ETF,2012-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHG,Koninklijke Philips N.V.,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHGE,BiomX Inc,NYSE MKT,Stock,2019-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHGE-WS,BiomX Inc - Warrants (13/12/2023),NYSE MKT,Stock,2019-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHI,PLDT Inc,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHIC,Population Health Investment Co Inc - Class A,NASDAQ,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHICU,Population Health Investment Co Inc - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHICW,Population Health Investment Co Inc - Warrants (01/10/2025),NASDAQ,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHIO,Phio Pharmaceuticals Corp,NASDAQ,Stock,2012-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHK,Pimco High Income Fund,NYSE,ETF,2003-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHM,PulteGroup Inc,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHO,Invesco Water Resources ETF,NASDAQ,ETF,2005-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHR,Phreesia Inc,NYSE,Stock,2019-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHT,Pioneer High Income Fund Inc,NYSE,ETF,2002-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHUN,Phunware Inc,NASDAQ,Stock,2016-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHUNW,Phunware Inc - Warrants (11/08/2021),NASDAQ,Stock,2016-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHVS,Pharvaris NV,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHX,PHX Minerals Inc - Class A,NYSE,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHYL,PGIM Active High Yield Bond ETF,NYSE ARCA,ETF,2018-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHYS,Sprott Physical Gold Trust,NYSE ARCA,ETF,2010-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHYT,Pyrophyte Acquisition Corp - Class A,NYSE,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHYT-U,Pyrophyte Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PHYT-WS,Pyrophyte Acquisition Corp - Warrants(01/01/9999),NYSE,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PI,Impinj Inc,NASDAQ,Stock,2016-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIAI,Prime Impact Acquisition I - Class A,NYSE,Stock,2020-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIAI-U,Prime Impact Acquisition I - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIAI-WS,Prime Impact Acquisition I - Warrants (01/10/2030),NYSE,Stock,2020-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIC-U,XL Fleet Corporation - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2019-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PICB,INVESCO INTERNATIONAL CORPORATE BOND ETF ,NYSE ARCA,ETF,2010-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PICC,Pivotal Investment Corp III - Class A,NYSE,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PICC-U,Pivotal Investment Corp III - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PICC-WS,Pivotal Investment Corp III - Warrants (28/01/2028),NYSE,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PICK,iShares MSCI Global Metals & Mining Producers ETF,BATS,ETF,2012-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PID,Invesco International Dividend Achievers ETF,NASDAQ,ETF,2005-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIE,Invesco DWA Emerging Markets Momentum ETF,NASDAQ,ETF,2007-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIFI,ClearShares Piton Intermediate Fixed Income ETF,NYSE ARCA,ETF,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PII,Polaris Inc,NYSE,Stock,1987-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIII,P3 Health Partners Inc - Class A,NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIIIW,P3 Health Partners Inc - Warrants (19/11/2026),NASDAQ,Stock,2021-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIK,Kidpik Corp,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PILL,Direxion Daily Pharmaceutical & Medical Bull 3X Shares,NYSE ARCA,ETF,2017-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIM,Putnam Master Intermediate Income Trust,NYSE,ETF,1988-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIN,Invesco India ETF,NYSE ARCA,ETF,2008-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PINC,Premier Inc - Class A,NASDAQ,Stock,2013-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PINE,Alpine Income Property Trust Inc,NYSE,Stock,2019-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PING,Ping Identity Holding Corp,NYSE,Stock,2019-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PINK,Simplify Health Care ETF,NYSE ARCA,ETF,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PINS,Pinterest Inc - Class A,NYSE,Stock,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIO,Invesco Global Water ETF,NASDAQ,ETF,2007-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIPP,Pine Island Acquisition Corp - Class A,NYSE,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIPP-U,Pine Island Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIPP-WS,Pine Island Acquisition Corp Redeemable warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50,NYSE,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIPR,Piper Sandler Co`s,NYSE,Stock,2004-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIRS,Pieris Pharmaceuticals Inc,NASDAQ,Stock,2015-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIXY,ShiftPixy Inc,NASDAQ,Stock,2017-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIY,Preferred Plus Trust Ser CZN Preferred Plus Trust Ser CZN1 Tr Ctf 8375 Maturity 10012046,NYSE,Stock,2003-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PIZ,Invesco DWA Developed Markets Momentum ETF,NASDAQ,ETF,2008-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PJAN,Innovator U.S. Equity Power Buffer ETF - January,BATS,ETF,2019-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PJP,Invesco Dynamic Pharmaceuticals ETF,NYSE ARCA,ETF,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PJT,PJT Partners Inc - Class A,NYSE,Stock,2015-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PJUL,Innovator U.S. Equity Power Buffer ETF - July,BATS,ETF,2018-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PJUN,Innovator U.S. Equity Power Buffer ETF - June,BATS,ETF,2019-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PK,Park Hotels & Resorts Inc,NYSE,Stock,2017-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKB,Invesco Dynamic Building & Construction ETF,NYSE ARCA,ETF,2005-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKBK,Parke Bancorp Inc,NASDAQ,Stock,2001-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKD,Parker Drilling Company,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKE,Park Aerospace Corp,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKG,Packaging Corp Of America,NYSE,Stock,2000-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKI,Perkinelmer Inc,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKO,Pimco Income Opportunity Fund,NYSE,ETF,2007-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKOH,Park-Ohio Holdings Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKW,Invesco BuyBack Achievers ETF,NASDAQ,ETF,2006-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PKX,POSCO Holdings Inc,NYSE,Stock,1994-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PL,Protective Life Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PL-WS,Planet Labs PBC - Warrants (06/12/2026),NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLAB,Photronics Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLAG,Planet Green Holdings Corp,NYSE MKT,Stock,2008-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLAN,Anaplan Inc,NYSE,Stock,2018-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLAOU,Patria Latin American Opportunity Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2022-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLAT,WISDOMTREE GROWTH LEADERS FUND N/A,NYSE ARCA,ETF,2019-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLAY,Dave & Buster`s Entertainment Inc,NASDAQ,Stock,2014-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLBC,Plumas Bancorp.,NASDAQ,Stock,2002-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLBY,PLBY Group Inc,NASDAQ,Stock,2020-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLCE,Childrens Place Inc,NASDAQ,Stock,1997-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLD,Prologis Inc,NYSE,Stock,1997-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLDR,Putnam Sustainable Leaders ETF,NYSE ARCA,ETF,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLG,Platinum Group Metals Ltd,NYSE MKT,Stock,2002-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLL,Piedmont Lithium Inc,NASDAQ,Stock,2018-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLM,Polymet Mining Corp,NYSE MKT,Stock,2000-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLMI,Plum Acquisition Corp I - Class A,NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLMIU,Plum Acquisition Corp I - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLMIW,Plum Acquisition Corp I - Warrants (15/03/2026),NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLMR,Palomar Holdings Inc,NASDAQ,Stock,2019-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLNT,Planet Fitness Inc - Class A,NYSE,Stock,2015-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLOW,Douglas Dynamics Inc,NYSE,Stock,2010-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLPC,Preformed Line Products Company,NASDAQ,Stock,1999-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLRG,Principal U.S. Large-Cap Adaptive Multi-Factor ETF,BATS,ETF,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLRX,Pliant Therapeutics Inc,NASDAQ,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLSE,Pulse Biosciences Inc,NASDAQ,Stock,2016-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLTK,Playtika Holding Corp,NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLTL,PRINCIPAL U.S. SMALL-CAP ADAPTIVE MULTI-FACTOR ETF ,BATS,ETF,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLTM,GraniteShares Platinum Shares,NYSE ARCA,ETF,2018-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLTR,Palantir Technologies Inc - Class A,NYSE,Stock,2020-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLUG,Plug Power Inc,NASDAQ,Stock,1999-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLUS,ePlus Inc,NASDAQ,Stock,1996-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLW,Invesco 1-30 Laddered Treasury ETF,NASDAQ,ETF,2007-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLX,Protalix BioTherapeutics Inc,NYSE MKT,Stock,1998-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLXP,PLx Pharma Inc,NASDAQ,Stock,2014-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLXS,Plexus Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLYA,Playa Hotels & Resorts N.V.,NASDAQ,Stock,2017-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLYM,Plymouth Industrial Reit Inc,NYSE,Stock,2017-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PLYM-P-A,Plymouth Industrial REIT Inc 750 Series A Cumulative Redeemable Preferred Stock,NYSE MKT,Stock,2017-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PM,Philip Morris International Inc,NYSE,Stock,2008-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMAR,Innovator U.S. Equity Power Buffer ETF - March,BATS,ETF,2020-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMAY,Innovator U.S. Equity Power Buffer ETF - May,BATS,ETF,2020-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMCB,PharmaCyte Biotech Inc,NASDAQ,Stock,2010-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMD,Psychemedics Corp,NASDAQ,Stock,1994-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PME,Pingtan Marine Enterprise Ltd,NASDAQ,Stock,2011-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMF,Pimco Municipal Income Fund,NYSE,ETF,2001-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMGM,Priveterra Acquisition Corp - Class A,NASDAQ,Stock,2021-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMGMU,Priveterra Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMGMW,Priveterra Acquisition Corp - Warrants (28/02/2028),NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PML,Pimco Municipal Income Fund II,NYSE,ETF,2002-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMM,Putnam Managed Municipal Income Trust.,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMO,Putnam Municipal Opportunities Trust,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMT,Pennymac Mortgage Investment Trust,NYSE,Stock,2009-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMT-P-A,Pennymac Mortgage Investment Trust,NYSE,Stock,2017-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMT-P-B,Pennymac Mortgage Investment Trust,NYSE,Stock,2017-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMT-P-C,Pennymac Mortgage Investment Trust,NYSE,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMTS,CPI Card Group Inc,NASDAQ,Stock,2015-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMVC,PMV Consumer Acquisition Corp - Class A,NYSE,Stock,2020-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMVC-U,PMV Consumer Acquisition Corp - Units (1 Ord share Class A & 1/2 War),NYSE,Stock,2020-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMVC-WS,PMV Consumer Acquisition Corp - Warrants (31/08/2027),NYSE,Stock,2020-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMVP,PMV Pharmaceuticals Inc,NASDAQ,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PMX,Pimco Municipal Income Fund III,NYSE,ETF,2002-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNBK,Patriot National Bancorp Inc,NASDAQ,Stock,1994-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNC,PNC Financial Services Group,NYSE,Stock,1988-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNC-P-P,PNC Financial Services Group,NYSE,Stock,2012-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNF,Pimco New York Municipal Income Fund,NYSE,ETF,2001-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNFP,Pinnacle Financial Partners Inc,NASDAQ,Stock,2000-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNFPP,Pinnacle Financial Partners Inc,NASDAQ,Stock,2020-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNI,Pimco New York Municipal Income Fund II,NYSE,ETF,2002-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNM,PNM Resources Inc,NYSE,Stock,1984-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNNT,PennantPark Investment Corporation,NASDAQ,Stock,2007-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNOV,Innovator U.S. Equity Power Buffer ETF - November,BATS,ETF,2019-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNQI,Invesco NASDAQ Internet ETF,NASDAQ,ETF,2008-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNR,Pentair plc,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNRG,PrimeEnergy Resources Corp,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNT,POINT Biopharma Global Inc,NASDAQ,Stock,2020-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNTG,Pennant Group Inc,NASDAQ,Stock,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNTM,Pontem Corp - Class A,NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNTM-U,Pontem Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNTM-WS,Pontem Corp - Warrants (05/01/2026),NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PNW,Pinnacle West Capital Corp,NYSE,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POAI,Predictive Oncology Inc,NASDAQ,Stock,2018-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POCT,Innovator U.S. Equity Power Buffer ETF - October,BATS,ETF,2018-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PODD,Insulet Corporation,NASDAQ,Stock,2007-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POET,POET Technologies Inc,NASDAQ,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POLA,Polar Power Inc,NASDAQ,Stock,2016-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POLY,Plantronics Inc,NYSE,Stock,1994-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POND,Angel Pond Holdings Corp - Class A,NYSE,Stock,2021-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POND-U,Angel Pond Holdings Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POND-WS,Angel Pond Holdings Corp - Warrants (01/01/9999),NYSE,Stock,2021-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PONO,PONO Capital Corp - Class A,NASDAQ,Stock,2021-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PONOU,PONO Capital Corp - Units (1 Ord Share Class A & 3/4 War),NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PONOW,PONO Capital Corp - Warrants(11/08/2026),NASDAQ,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POOL,Pool Corporation,NASDAQ,Stock,1995-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POPM,PopmailCom Inc,NASDAQ,Stock,2001-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POR,Portland General Electric Company,NYSE,Stock,2006-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PORT,Southport Acquisition Corp - Class A,NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PORT-U,Southport Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PORT-WS,Southport Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POSH,Poshmark Inc - Class A,NASDAQ,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POST,Post Holdings Inc,NYSE,Stock,2012-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POST-W,Post Holdings Inc WhenIssued,NYSE,Stock,2022-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POTX,Global X Cannabis ETF,NASDAQ,ETF,2019-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POW,Powered Brands - Class A,NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POWI,Power Integrations Inc,NASDAQ,Stock,1997-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POWL,Powell Industries Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POWRU,Powered Brands - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POWRW,Powered Brands - Warrants (07/01/2025),NASDAQ,Stock,2021-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POWW,AMMO Inc,NASDAQ,Stock,2016-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "POWWP,AMMO Inc,NASDAQ,Stock,2021-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPA,Invesco Aerospace & Defense ETF,NYSE ARCA,ETF,2005-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPBI,Pacific Premier Bancorp Inc,NASDAQ,Stock,1997-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPBT,Purple Biotech Ltd,NASDAQ,Stock,2015-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPC,Pilgrim`s Pride Corp,NASDAQ,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPD,PPD Inc,NASDAQ,Stock,2020-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPG,PPG Industries Inc,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPGH,Poema Global Holdings Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPGHU,Poema Global Holdings Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPGHW,Poema Global Holdings Corp - Warrants (08/01/2026),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPH,VanEck Pharmaceutical ETF,NASDAQ,ETF,2000-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPHP,PHP Ventures Acquisition Corp - Class A,NASDAQ,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPHPR,PHP Ventures Acquisition Corp,NASDAQ,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPHPU,PHP Ventures Acquisition Corp - Units (1 Ord Class A & 1/2 War & 1 Right),NASDAQ,Stock,2021-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPHPW,PHP Ventures Acquisition Corp - Warrants (01/01/2023),NASDAQ,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPI,AXS Astoria Inflation Sensitive ETF,NYSE ARCA,ETF,2021-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPIH,Perma-Pipe International Holdings Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPL,PPL Corp,NYSE,Stock,1985-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPLT,Aberdeen Standard Physical Platinum Shares ETF,NYSE ARCA,ETF,2010-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPR,Voya Prime Rate Trust,NYSE,ETF,1992-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPSI,Pioneer Power Solutions Inc,NASDAQ,Stock,2013-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPT,Putnam Premier Income Trust,NYSE,ETF,1988-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPTA,Perpetua Resources Corp Com,NASDAQ,Stock,2021-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPTY,U.S. Diversified Real Estate ETF,NYSE ARCA,ETF,2018-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPYA,Papaya Growth Opportunity Corp I - Class A,NASDAQ,Stock,2022-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPYAU,Papaya Growth Opportunity Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PPYAW,Papaya Growth Opportunity Corp I - Warrants (31/12/2028),NASDAQ,Stock,2022-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PQDI,PRINCIPAL SPECTRUM TAX-ADVANTAGED DIVIDEND ACTIVE ETF ,NYSE ARCA,ETF,2020-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PQIN,PGIM QMA STRATEGIC ALPHA INTERNATIONAL EQUITY ETF ,NYSE ARCA,ETF,2018-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PQLC,PGIM QMA STRATEGIC ALPHA LARGE-CAP CORE ETF ,NYSE ARCA,ETF,2018-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PQSG,PGIM QMA STRATEGIC ALPHA SMALL-CAP GROWTH ETF ,NYSE ARCA,ETF,2018-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PQSV,PGIM QMA STRATEGIC ALPHA SMALL-CAP VALUE ETF ,NYSE ARCA,ETF,2018-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRA,Proassurance Corporation,NYSE,Stock,1991-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRAA,PRA Group Inc,NASDAQ,Stock,2002-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRAX,Praxis Precision Medicines Inc,NASDAQ,Stock,2020-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRAY,FIS Biblically Responsible Risk Managed ETF,NYSE ARCA,ETF,2022-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRBM,Parabellum Acquisition Corp - Class A,NYSE,Stock,2021-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRBM-U,Parabellum Acquisition Corp - Units (1 Ord Share Class A & 3/4 War),NYSE,Stock,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRBM-WS,Parabellum Acquisition Corp - Warrants(01/01/9999),NYSE,Stock,2021-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRCH,Porch Group Inc - Class A,NASDAQ,Stock,2020-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRCT,Procept BioRobotics Corp,NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRDO,Perdoceo Education Corporation,NASDAQ,Stock,1998-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRDS,Pardes Biosciences Inc,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRE-P-J,PartnerRe Ltd 4.875 Fixed Rate NonCumulative Redeemable Preferred Shares Series J,NYSE,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PREF,Principal Spectrum Preferred Securities Active ETF,NYSE ARCA,ETF,2017-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRF,Invesco FTSE RAFI US 1000 ETF,NYSE ARCA,ETF,2005-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRFT,Perficient Inc,NASDAQ,Stock,1999-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRFX,PainReform Ltd,NASDAQ,Stock,2020-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRFZ,Invesco FTSE RAFI US 1500 Small-Mid ETF,NASDAQ,ETF,2006-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRG,PROG Holdings Inc,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRG-W,PROG Holdings Inc ExDistribution When Issued,NYSE,Stock,2020-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRGO,Perrigo Company plc,NYSE,Stock,1991-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRGS,Progress Software Corp,NASDAQ,Stock,1991-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRI,Primerica Inc,NYSE,Stock,2010-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIF-P-A,Priority Income Fund Inc 6375 Series A Term Preferred Stock due 2025,NYSE,Stock,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIF-P-D,Priority Income Fund Inc 700 Series D Term Preferred Stock due 2029,NYSE,Stock,2019-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIF-P-F,,NYSE,Stock,2020-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIF-P-G,Priority Income Fund Inc,NYSE,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIF-P-H,Priority Income Fund Inc,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIF-P-I,Priority Income Fund Inc,NYSE,Stock,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIF-P-J,Priority Income Fund Inc,NYSE,Stock,2021-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIF-P-K,Priority Income Fund Inc,NYSE,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIF-P-L,Priority Income Fund Inc 6.375 Series L Term Preferred Stock Due 2029,NYSE,Stock,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRIM,Primoris Services Corp,NASDAQ,Stock,2008-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRK,Park National Corp,NYSE MKT,Stock,1991-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRLB,Proto Labs Inc,NYSE,Stock,2012-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRLD,Prelude Therapeutics Inc,NASDAQ,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRLH,Pearl Holdings Acquisition Corp - Class A,NASDAQ,Stock,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRLHU,Pearl Holdings Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRLHW,Pearl Holdings Acquisition Corp - Warrants (15/12/2026),NASDAQ,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRM,Perimeter Solutions SA,NYSE,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRMW,Primo Water Corporation,NYSE,Stock,1992-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRN,Invesco DWA Industrials Momentum ETF,NASDAQ,ETF,2006-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRNT,ARK 3D Printing ETF,BATS,ETF,2016-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRO,Pros Holdings Inc,NYSE,Stock,2007-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PROC,Procaps Group S.A,NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PROCW,Procaps Group S.A - Warrants (29/09/2026),NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PROF,Profound Medical Corp,NASDAQ,Stock,2016-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PROG,Progenity Inc,NASDAQ,Stock,2020-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PROV,Provident Financial Holdings Inc,NASDAQ,Stock,1996-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRPB,CC Neuberger Principal Holdings II - Class A,NYSE,Stock,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRPB-U,CC Neuberger Principal Holdings II - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2020-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRPB-WS,CC Neuberger Principal Holdings II - Warrants (29/07/2025),NYSE,Stock,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRPC,CC Neuberger Principal Holdings III - Class A,NYSE,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRPC-U,CC Neuberger Principal Holdings III - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRPC-WS,CC Neuberger Principal Holdings III - Warrants (01/01/9999),NYSE,Stock,2021-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRPH,ProPhase Labs Inc,NASDAQ,Stock,1997-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRPL,Purple Innovation Inc - Class A,NASDAQ,Stock,2018-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRPO,Precipio Inc,NASDAQ,Stock,2000-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRQR,ProQR Therapeutics N.V,NASDAQ,Stock,2014-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRS,Prudential Financial Inc,NYSE,Stock,2018-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRSO,Peraso Inc,NASDAQ,Stock,2001-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRSR,Prospector Capital Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRSRU,Prospector Capital Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRSRW,Prospector Capital Corp - Warrants (01/01/2025),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRT,PermRock Royalty Trust,NYSE,Stock,2018-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRTA,Prothena Corporation plc,NASDAQ,Stock,2012-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRTC,PureTech Health Plc,NASDAQ,Stock,2020-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRTG,Portage Biotech Inc,NASDAQ,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRTH,Priority Technology Holdings Inc,NASDAQ,Stock,2016-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRTK,Paratek Pharmaceuticals Inc,NASDAQ,Stock,2006-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRTS,CarParts.com Inc,NASDAQ,Stock,2007-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRTY,Party City Holdco Inc,NYSE,Stock,2015-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRU,Prudential Financial Inc,NYSE,Stock,2001-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRVA,Privia Health Group Inc,NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PRVB,Provention Bio Inc,NASDAQ,Stock,2018-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA,Public Storage,NYSE,Stock,1980-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-A,Public Storage Depositary Shares Series A,NYSE,Stock,2014-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-F,Public Storage Depositary Shares Series F,NYSE,Stock,2017-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-G,Public Storage Depositary Shares Series G,NYSE,Stock,2017-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-H,Public Storage,NYSE,Stock,2019-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-I,Public Storage,NYSE,Stock,2019-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-J,Public Storage,NYSE,Stock,2019-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-K,Public Storage,NYSE,Stock,2019-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-L,Public Storage,NYSE,Stock,2020-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-M,Public Storage,NYSE,Stock,2020-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-N,Public Storage,NYSE,Stock,2020-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-O,Public Storage,NYSE,Stock,2020-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-P,Public Storage,NYSE,Stock,2021-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-Q,Public Storage Depositary Shares Series Q,NYSE,Stock,2021-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-R,Public Storage,NYSE,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-S,Public Storage,NYSE,Stock,2022-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-V,Public Storage Dep Shs Repstg 11000th Pfd Sh Ben Int Ser V,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSA-P-V-CL,Public Storage Dep Shs Repstg 11000th Pfd Sh Ben Int Ser V,NYSE,Stock,2010-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSAG,Property Solutions Acquisition Corp II - Class A,NASDAQ,Stock,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSAGU,Property Solutions Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSAGW,Property Solutions Acquisition Corp II - Warrants (01/03/2026),NASDAQ,Stock,2021-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSB,PS Business Parks Inc,NYSE,Stock,1991-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSB-P-U,PS Business Parks Inc Dep Shs Repstg 11000 Pfd Ser U,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSB-P-V,PS Business Parks Inc Depositary Shares Series V,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSB-P-X,PS Business Parks Inc,NYSE,Stock,2017-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSB-P-Y,PS Business Parks Inc,NYSE,Stock,2017-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSB-P-Z,PS Business Parks Inc,NYSE,Stock,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSC,Principal U.S. Small-Cap Multi-Factor ETF,NASDAQ,ETF,2016-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCC,Invesco S&P SmallCap Consumer Staples ETF,NASDAQ,ETF,2010-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCD,Invesco S&P SmallCap Consumer Discretionary ETF,NASDAQ,ETF,2010-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCE,Invesco S&P SmallCap Energy ETF,NASDAQ,ETF,2010-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCF,Invesco S&P SmallCap Financials ETF,NASDAQ,ETF,2010-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCH,Invesco S&P SmallCap Health Care ETF,NASDAQ,ETF,2010-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCI,Invesco S&P SmallCap Industrials ETF,NASDAQ,ETF,2010-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCJ,Pacer Swan SOS Conservative (July) ETF,BATS,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCM,Invesco S&P SmallCap Materials ETF,NASDAQ,ETF,2010-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCQ,PACER SWAN SOS CONSERVATIVE (OCTOBER) ETF ,BATS,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCT,Invesco S&P SmallCap Information Technology ETF,NASDAQ,ETF,2010-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCU,Invesco S&P SmallCap Utilities & Communication Services ETF,NASDAQ,ETF,2010-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCW,Pacer Swan SOS Conservative (April) ETF,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSCX,Pacer Swan SOS Conservative (January) ETF,BATS,ETF,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSDN,AdvisorShares Poseidon Dynamic Cannabis ETF,NYSE ARCA,ETF,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSEC,Prospect Capital Corp,NASDAQ,Stock,2004-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSEC-P-A,Prospect Capital Corp,NYSE,Stock,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSEP,Innovator U.S. Equity Power Buffer ETF - September,BATS,ETF,2019-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSET,Principal Quality ETF,NASDAQ,ETF,2016-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSF,Cohen & Steers Select Preferred and Income Fund Inc,NYSE,ETF,2010-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSFD,Pacer Swan SOS Flex (January) ETF,BATS,ETF,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSFE,Paysafe Ltd - Class A,NYSE,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSFE-WS,Paysafe Ltd - Warrants (11/08/2025),NYSE,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSFF,Pacer Swan SOS Fund of Funds ETF,BATS,ETF,2020-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSFJ,Pacer Swan SOS Flex (July) ETF,BATS,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSFM,Pacer Swan SOS Flex (April) ETF,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSFO,Pacer Swan SOS Flex (October) ETF,BATS,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSHG,Performance Shipping Inc,NASDAQ,Stock,2011-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSI,Invesco Dynamic Semiconductors ETF,NYSE ARCA,ETF,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSIL,AdvisorShares Psychedelics ETF,NYSE ARCA,ETF,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSJ,Invesco Dynamic Software ETF,NYSE ARCA,ETF,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSK,SPDR ICE Preferred Securities ETF,NYSE ARCA,ETF,2009-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSL,Invesco DWA Consumer Staples Momentum ETF,NASDAQ,ETF,2006-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSLV,Sprott Physical Silver Trust,NYSE ARCA,ETF,2010-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSMB,Invesco Balanced Multi-Asset Allocation ETF,BATS,ETF,2017-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSMC,Invesco Conservative Multi-Asset Allocation ETF,BATS,ETF,2017-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSMD,Pacer Swan SOS Moderate (January) ETF,BATS,ETF,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSMG,Invesco Growth Multi-Asset Allocation ETF,BATS,ETF,2017-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSMJ,Pacer Swan SOS Moderate (July) ETF,BATS,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSMM,Invesco Moderately Conservative Multi-Asset Allocation ETF,BATS,ETF,2017-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSMO,Pacer Swan SOS Moderate (October) ETF,BATS,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSMR,Pacer Swan SOS Moderate (April) ETF,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSMT,Pricesmart Inc,NASDAQ,Stock,1997-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSN,Parsons Corp,NYSE,Stock,2019-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSNL,Personalis Inc,NASDAQ,Stock,2019-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSO,Pearson plc,NYSE,Stock,1996-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSP,Invesco Global Listed Private Equity ETF,NYSE ARCA,ETF,2006-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSPC,Post Holdings Partnering Corp - Class A,NYSE,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSPC-U,Post Holdings Partnering Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSPC-WS,Post Holdings Partnering Corp - Warrants (12/04/2026),NYSE,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSQ,ProShares Short QQQ,NYSE ARCA,ETF,2006-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSR,Invesco Active U.S. Real Estate ETF,NYSE ARCA,ETF,2008-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PST,PowerShares UltraShort Lehman 7-10 + Year Treasury ProShares,NYSE ARCA,ETF,2008-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSTG,Pure Storage Inc - Class A,NYSE,Stock,2015-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSTH,Pershing Square Tontine Holdings Ltd - Class A,NYSE,Stock,2020-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSTH-WS,Pershing Square Tontine Holdings Ltd - Warrants (24/07/2025),NYSE,Stock,2020-09-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSTI,Pluristem Therapeutics Inc,NASDAQ,Stock,2003-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSTL,Postal Realty Trust Inc Cls A,NYSE,Stock,2019-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSTP,Innovator Power Buffer Step-Up Strategy ETF,NYSE ARCA,ETF,2022-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSTV,Plus Therapeutics Inc,NASDAQ,Stock,2000-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSTX,Poseida Therapeutics Inc,NASDAQ,Stock,2020-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSX,Phillips 66,NYSE,Stock,2012-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSY,DEFIANCE NEXT GEN ALTERED EXPERIENCE ETF ,NYSE ARCA,ETF,2021-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PSYK,PSYK ETF,NYSE ARCA,ETF,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PT,Pintec Technology Holdings Ltd,NASDAQ,Stock,2018-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTA,Cohen & Steers Tax-Advantaged Preferred Securities & Income Fund,NYSE,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTBD,Pacer Trendpilot US Bond ETF,NYSE ARCA,ETF,2019-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTC,PTC Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTCT,PTC Therapeutics Inc,NASDAQ,Stock,2013-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTE,PolarityTE Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTEN,Patterson-UTI Energy Inc,NASDAQ,Stock,1993-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTEST,PTEST,NYSE ARCA,Stock,2017-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTEST-A,,NYSE ARCA,Stock,2021-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTEST-W,,NYSE ARCA,Stock,2018-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTEST-X,,NYSE ARCA,Stock,2019-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTEST-Y,,NYSE ARCA,Stock,2019-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTEU,PACER TRENDPILOT EUROPEAN INDEX ETF ,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTF,Invesco DWA Technology Momentum ETF,NASDAQ,ETF,2006-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTGX,Protagonist Therapeutics Inc,NASDAQ,Stock,2016-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTH,Invesco DWA Healthcare Momentum ETF,NASDAQ,ETF,2006-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTIC,PropTech Investment Corp II - Class A,NASDAQ,Stock,2021-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTICU,PropTech Investment Corp II - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2020-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTICW,PropTech Investment Corp II - Warrants (08/12/2027),NASDAQ,Stock,2021-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTIN,Pacer Trendpilot International ETF,NYSE ARCA,ETF,2019-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTIX,Protagenic Therapeutics Inc,NASDAQ,Stock,2016-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTIXW,Protagenic Therapeutics Inc - Warrants (13/04/2025),NASDAQ,Stock,2021-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTLC,Pacer Trendpilot US Large Cap ETF,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTLO,Portillos Inc - Class A,NASDAQ,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTMC,Pacer Trendpilot US Mid Cap ETF,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTMN,Portman Ridge Finance Corp,NASDAQ,Stock,2006-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTN,Palatin Technologies Inc,NYSE MKT,Stock,1997-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTNQ,Pacer Trendpilot 100 ETF,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTNR,Partner Communications Company,NASDAQ,Stock,1999-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTOC,Pine Technology Acquisition Corp - Class A,NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTOCU,Pine Technology Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTOCW,Pine Technology Acquisition Corp - Warrants (31/03/2028),NASDAQ,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTON,Peloton Interactive Inc - Class A,NASDAQ,Stock,2019-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTPI,Petros Pharmaceuticals Inc,NASDAQ,Stock,2020-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTR,PetroChina Co. Ltd,NYSE,Stock,2000-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTRA,Proterra Inc,NASDAQ,Stock,2021-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTRB,PGIM Total Return Bond ETF,NYSE ARCA,ETF,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTRS,Partners Bancorp,NASDAQ,Stock,2013-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTSI,P.A.M. Transportation Services Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTVE,Pactiv Evergreen Inc,NASDAQ,Stock,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PTY,PIMCO Corporate & Income Opportunity Fund,NYSE,ETF,2002-12-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUBM,PubMatic Inc - Class A,NASDAQ,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUCK,Goal Acquisitions Corp,NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUCKU,Goal Acquisitions Corp - Units (1 Ord & 1 War),NASDAQ,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUCKW,Goal Acquisitions Corp - Warrants (11/02/2026),NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUI,Invesco DWA Utilities Momentum ETF,NASDAQ,ETF,2005-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUK,Prudential plc,NYSE,Stock,2000-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUK-P,,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUK-W,Prudential Public Ltd Company American Depositary Shares Exdistribution Whenissued,NYSE,Stock,2021-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PULM,Pulmatrix Inc,NASDAQ,Stock,2014-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PULS,PGIM Ultra Short Bond ETF,NYSE ARCA,ETF,2018-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUMP,ProPetro Holding Corp,NYSE,Stock,2017-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUNK,Subversive Metaverse ETF,BATS,ETF,2022-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUTW,WisdomTree CBOE S&P 500 PutWrite Strategy Fund,NYSE ARCA,ETF,2016-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PUYI,Puyi Inc,NASDAQ,Stock,2019-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PV,Primavera Capital Acquisition Corporation - Class A,NYSE,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PV-U,Primavera Capital Acquisition Corporation - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PV-WS,Primavera Capital Acquisition Corporation - Warrants (19/01/2026),NYSE,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PVAL,Putnam Focused Large Cap Value ETF,NYSE ARCA,ETF,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PVBC,Provident Bancorp Inc,NASDAQ,Stock,2015-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PVH,PVH Corp,NYSE,Stock,1987-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PVI,Invesco VRDO Tax-Free ETF,NYSE ARCA,ETF,2007-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PVL,Permianville Royalty Trust,NYSE,Stock,2011-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PVT,PROVIDENT COMPANIES INC,NYSE,Stock,2019-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PVT-U,Pivotal Acquisition Corp Units each consisting of one share of Class A Common Stock and one redeemable Warrant,NYSE,Stock,2019-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PVT-WS,Pivotal Acquisition Corp Redeemable Warrants exercisable for shares of Class A Common Stock at an exercise price of 1150 per share,NYSE,Stock,2019-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PW,Power REIT,NYSE MKT,Stock,1980-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PW-P-A,Power REIT 775 Series A Cumulative Perpetual Preferred Stock,NYSE MKT,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWB,Invesco Dynamic Large Cap Growth ETF,NYSE ARCA,ETF,2005-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWC,Invesco Dynamic Market ETF,NYSE ARCA,ETF,2003-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWFL,PowerFleet Inc,NASDAQ,Stock,1999-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWOD,Penns Woods Bancorp Inc,NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWP,Perella Weinberg Partners - Class A,NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWPPW,Perella Weinberg Partners - Warrants (23/06/2026),NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWR,Quanta Services Inc,NYSE,Stock,1998-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWS,Pacer WealthShield ETF,BATS,ETF,2017-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWSC,PowerSchool Holdings Inc Class A,NYSE,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWUPU,PowerUp Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2022-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWV,Invesco Dynamic Large Cap Value ETF,NYSE ARCA,ETF,2005-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PWZ,Invesco California AMT-Free Municipal Bond ETF,NYSE ARCA,ETF,2007-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PX,P10 Inc - Class A,NYSE,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXD,Pioneer Natural Resources Company,NYSE,Stock,1997-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXE,Invesco Dynamic Energy Exploration & Production ETF,NYSE ARCA,ETF,2005-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXF,Invesco FTSE RAFI Developed Markets ex-U.S. ETF,NYSE ARCA,ETF,2007-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXH,Invesco FTSE RAFI Emerging Markets ETF,NYSE ARCA,ETF,2007-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXI,Invesco DWA Energy Momentum ETF,NASDAQ,ETF,2006-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXJ,Invesco Dynamic Oil & Gas Services ETF,NYSE ARCA,ETF,2005-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXLW,Pixelworks Inc,NASDAQ,Stock,2000-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXQ,INVESCO DYNAMIC NETWORKING ETF ,NYSE ARCA,ETF,2005-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXS,Pyxis Tankers Inc,NASDAQ,Stock,2015-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXSAP,Pyxis Tankers Inc,NASDAQ,Stock,2020-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXSAW,Pyxis Tankers Inc - Warrants (19/08/2025),NASDAQ,Stock,2020-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PXUS,Principal International Adaptive Multi-Factor ETF,BATS,ETF,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PY,Principal Value ETF,NASDAQ,ETF,2016-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYCR,Paycor HCM Inc,NASDAQ,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYN,Pimco New York Municipal Income Fund III,NYSE,ETF,2002-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYPD,Polypid Ltd,NASDAQ,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYPE,ETRACS NYSE Pickens Core Midstream Index ETN due August 20 2048,NYSE ARCA,ETF,2018-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYPL,PayPal Holdings Inc,NASDAQ,Stock,2015-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYR,PyroGenesis Canada Inc,NASDAQ,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYS,Pplus Trust Series RRD-1,NYSE,Stock,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYT,PPLUS Trust Series GSC-2,NYSE,Stock,2004-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYXS,Pyxis Oncology Inc,NASDAQ,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PYZ,Invesco DWA Basic Materials Momentum ETF,NASDAQ,ETF,2006-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PZA,Invesco National AMT-Free Municipal Bond ETF,NYSE ARCA,ETF,2007-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PZC,Pimco California Municipal Income Fund III,NYSE,ETF,2002-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PZG,Paramount Gold Nevada Corp,NYSE MKT,Stock,2006-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PZN,Pzena Investment Management Inc - Class A,NYSE,Stock,2007-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PZT,Invesco New York AMT-Free Municipal Bond ETF,NYSE ARCA,ETF,2007-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "PZZA,Papa John`s International Inc,NASDAQ,Stock,1993-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QABA,First Trust NASDAQ ABA Community Bank Index Fund,NASDAQ,ETF,2009-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QAI,IQ Hedge Multi-Strategy Tracker ETF,NYSE ARCA,ETF,2009-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QARP,Xtrackers Russell 1000 US Quality at a Reasonable Price ETF,NYSE ARCA,ETF,2018-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QAT,iShares MSCI Qatar ETF,NASDAQ,ETF,2014-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QCLN,First Trust Nasdaq Clean Edge Green Energy Index Fund,NASDAQ,ETF,2007-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QCLR,GLOBAL X NASDAQ 100 COLLAR 95-110 ETF ,NASDAQ,ETF,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QCOM,Qualcomm Inc,NASDAQ,Stock,1991-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QCON,AMERICAN CENTURY QUALITY CONVERTIBLE SECURITIES ETF ,BATS,ETF,2021-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QCRH,QCR Holding Inc,NASDAQ,Stock,1993-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QD,Qudian Inc,NYSE,Stock,2017-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QDEC,FT Cboe Vest Nasdaq-100 Buffer ETF - December,BATS,ETF,2020-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QDEF,FlexShares Quality Dividend Defensive Index Fund,NYSE ARCA,ETF,2012-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QDEL,Quidel Corp,NASDAQ,Stock,1992-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QDF,FlexShares Quality Dividend Index Fund,NYSE ARCA,ETF,2012-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QDIV,Global X S&P 500 Quality Dividend ETF,NYSE ARCA,ETF,2018-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QDPL,Pacer Metaurus US Large Cap Dividend Multiplier 400 ETF,NYSE ARCA,ETF,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QDYN,FLEXSHARES QUALITY DIVIDEND DYNAMIC INDEX FUND ,NYSE ARCA,ETF,2012-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QED,IQ Hedge Event-Driven Tracker ETF,NYSE ARCA,ETF,2015-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QEFA,SPDR MSCI EAFE StrategicFactors SM ETF,NYSE ARCA,ETF,2014-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QEMM,SPDR MSCI Emerging Markets StrategicFactors SM ETF,NYSE ARCA,ETF,2014-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QFIN,360 DigiTech Inc,NASDAQ,Stock,2018-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QFTA,Quantum Fintech Acquisition Corp,NYSE,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QFTA-U,Quantum Fintech Acquisition Corp - Unit (1 Ordinary share & 1 Wrt),NYSE,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QFTA-WS,Quantum Fintech Acquisition Corp - Warrants (30/01/2026),NYSE,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QGEN,Qiagen NV,NYSE,Stock,1996-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QGRO,American Century STOXX U.S.Quality Growth ETF,NYSE ARCA,ETF,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QH,Quhuo Ltd,NASDAQ,Stock,2020-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QID,ProShares UltraShort QQQ,NYSE ARCA,ETF,2006-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QINT,American Century Quality Diversified International ETF,NYSE ARCA,ETF,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QIPT,Quipt Home Medical Corp,NASDAQ,Stock,2021-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QIWI,QIWI plc,NASDAQ,Stock,2013-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QJUN,FT Cboe Vest Nasdaq-100 Buffer ETF - June,BATS,ETF,2021-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QK,Q&K International Group Ltd,NASDAQ,Stock,2019-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLC,FlexShares US Quality Large Cap Index Fund,BATS,ETF,2015-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLD,ProShares Ultra QQQ,NYSE ARCA,ETF,2006-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLGN,Qualigen Therapeutics Inc,NASDAQ,Stock,2015-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLI,Qilian International Holding Group ltd,NASDAQ,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLS,IQ Hedge Long/Short Tracker ETF,NYSE ARCA,ETF,2015-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLTA,iShares Aaa - A Rated Corporate Bond ETF,NYSE ARCA,ETF,2012-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLV,FlexShares US Quality Low Volatility Index Fund,NYSE ARCA,Stock,2019-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLVD,FLEXSHARES DEVELOPED MARKETS EX-US QUALITY LOW VOLATILITY INDEX FUND ,NYSE ARCA,Stock,2019-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLVE,FLEXSHARES EMERGING MARKETS QUALITY LOW VOLATILITY INDEX FUND ,NYSE ARCA,Stock,2019-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QLYS,Qualys Inc,NASDAQ,Stock,2012-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QMAR,FT Cboe Vest Nasdaq-100 Buffer ETF - March,BATS,ETF,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QMCO,Quantum Corp,NASDAQ,Stock,1999-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QMN,IQ Hedge Market Neutral Tracker ETF,NYSE ARCA,ETF,2012-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QMOM,Alpha Architect U.S. Quantitative Momentum ETF,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QNGY,Quanergy Systems Inc,NYSE,Stock,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QNGY-WS,Quanergy Systems Inc - Warrants (17/01/2027),NYSE,Stock,2020-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QNRX,Quoin Pharmaceuticals Ltd,NASDAQ,Stock,2016-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QNST,QuinStreet Inc,NASDAQ,Stock,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QPFF,American Century Quality Preferred ETF,BATS,ETF,2021-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QPT,AdvisorShares Q Portfolio Blended Allocation ETF,NYSE ARCA,ETF,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QPX,AdvisorShares Q Dynamic Growth ETF,NYSE ARCA,ETF,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQC,Simplify Nasdaq 100 PLUS Convexity ETF,NASDAQ,ETF,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQD,Simplify Nasdaq 100 PLUS Downside Convexity ETF,NASDAQ,ETF,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQEW,First Trust NASDAQ-100 Equal Weighted Index Fund,NASDAQ,ETF,2006-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQH,HCM Defender 100 Index ETF,NYSE ARCA,ETF,2019-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQJG,Invesco ESG NASDAQ Next Gen 100 ETF,NASDAQ,ETF,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQMG,Invesco ESG NASDAQ 100 ETF,NASDAQ,ETF,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQQ,Invesco QQQ Trust Series 1,NASDAQ,ETF,1999-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQQA,ProShares Nasdaq-100 Dorsey Wright Momentum ETF,NASDAQ,ETF,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQQE,Direxion NASDAQ-100 Equal Weighted Index Shares,NYSE ARCA,ETF,2012-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQQJ,Invesco NASDAQ Next Gen 100 ETF,NASDAQ,ETF,2020-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQQM,Invesco NASDAQ 100 ETF,NASDAQ,ETF,2020-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQQN,VictoryShares Nasdaq Next 50 ETF,NASDAQ,ETF,2020-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQQX,Nuveen NASDAQ 100 Dynamic Overwrite Fund,NASDAQ,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QQXT,FIRST TRUST NASDAQ-100 EX-TECHNOLOGY SECTOR INDEX FUND ,NASDAQ,ETF,2007-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QRFT,QRAFT AI Enhanced U.S. Large Cap ETF,NYSE ARCA,ETF,2019-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QRHC,Quest Resource Holding Corp,NASDAQ,Stock,2010-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QRMI,Global X NASDAQ 100 Risk Managed Income ETF,NASDAQ,ETF,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QRTAV,Qurate Retail Inc,NASDAQ,Stock,2020-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QRTEA,Qurate Retail Inc - Series A,NASDAQ,Stock,2006-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QRTEB,Qurate Retail Inc - Series B,NASDAQ,Stock,2001-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QRTEP,Qurate Retail Inc,NASDAQ,Stock,2020-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QRTEV,Qurate Retail Inc 8.0 Fixed Rate Cumulative Redeemable Preferred Stock When Issued,NASDAQ,Stock,2020-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QRVO,Qorvo Inc,NASDAQ,Stock,2015-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QS,QuantumScape Corp - Class A,NYSE,Stock,2020-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QS-WS,QuantumScape Corp Wt Exp 2025,NYSE,Stock,2020-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QSI,Quantum-Si Incorporated - Class A,NASDAQ,Stock,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QSIAW,Quantum-Si Incorporated - Warrants (10/06/2026),NASDAQ,Stock,2020-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QSPT,FT Cboe Vest Nasdaq-100 Buffer ETF - September,BATS,ETF,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QSR,Restaurant Brands International Inc,NYSE,Stock,2014-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QSWN,Amplify BlackSwan Tech & Treasury ETF,NYSE ARCA,ETF,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTAP,Innovator Growth Accelerated Plus ETF - April,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTEC,First Trust NASDAQ-100 Technology Sector Index Fund,NASDAQ,ETF,2006-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTEK,QualTek Services Inc - Class A,NASDAQ,Stock,2022-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTEKW,QualTek Services Inc - Warrants (14/02/2027),NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTJA,Innovator Growth Accelerated Plus ETF - January,BATS,ETF,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTJL,Innovator Growth Accelerated Plus ETF - July,BATS,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTNT,Quotient Ltd,NASDAQ,Stock,2014-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTOC,Innovator Growth Accelerated Plus ETF - October,BATS,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTR,GLOBAL X NASDAQ 100 TAIL RISK ETF ,NASDAQ,ETF,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTRX,Quanterix Corp,NASDAQ,Stock,2017-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTT,Qutoutiao Inc,NASDAQ,Stock,2018-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTUM,Defiance Quantum ETF,NYSE ARCA,ETF,2018-09-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QTWO,Q2 Holdings Inc,NYSE,Stock,2014-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QUAD,Quad/Graphics Inc - Class A,NYSE,Stock,1995-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QUAL,iShares MSCI USA Quality Factor ETF,BATS,ETF,2013-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QUBT,Quantum Computing Inc,NASDAQ,Stock,2018-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QUIK,Quicklogic Corp,NASDAQ,Stock,1999-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QULL,UBS AG London Branch,NYSE ARCA,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QUMU,Qumu Corp,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QUOT,Quotient Technology Inc,NYSE,Stock,2014-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QURE,uniQure N.V.,NASDAQ,Stock,2014-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QUS,SPDR MSCI USA StrategicFactors SM ETF,NYSE ARCA,ETF,2015-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QVAL,Alpha Architect U.S. Quantitative Value ETF,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QVCC,QVC Inc. 6.250 Sr Secd Nt 2068,NYSE,Stock,2019-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QVCD,QVC Inc 6375 Senior Secured Notes due 2067,NYSE,Stock,2018-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QVML,Invesco S&P 500 QVM Multi-factor ETF,NYSE ARCA,ETF,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QVMM,Invesco S&P MidCap 400 QVM Multi-factor ETF,NYSE ARCA,ETF,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QVMS,Invesco S&P SmallCap 600 QVM Multi-factor ETF,NYSE ARCA,ETF,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QWLD,SPDR MSCI World StrategicFactors SM ETF,NYSE ARCA,ETF,2014-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QYLD,Global X NASDAQ 100 Covered Call ETF,NASDAQ,ETF,2013-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "QYLG,Global X Nasdaq 100 Covered Call & Growth ETF,NASDAQ,ETF,2020-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "R,Ryder System Inc,NYSE,Stock,1980-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RA,Brookfield Real Assets Income Fund Inc,NYSE,ETF,2016-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAAS,Cloopen Group Holding Ltd,NYSE,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAAX,VanEck Inflation Allocation ETF,NYSE ARCA,ETF,2018-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RACB,Research Alliance Corp II - Class A,NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RACE,Ferrari N.V.,NYSE,Stock,2015-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RACYU,Relativity Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAD,Rite Aid Corp,NYSE,Stock,1984-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RADA,Rada Electronic Industries,NASDAQ,Stock,1993-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RADI,Radius Global Infrastructure Inc - Class A,NASDAQ,Stock,2020-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAFE,Pimco Rafi ESG U.S. ETF,NYSE ARCA,ETF,2019-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAIL,FreightCar America Inc,NASDAQ,Stock,2005-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAIN,Rain Therapeutics Inc,NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RALS,ProShares RAFI Long/Short,NYSE ARCA,ETF,2010-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAM,Aries I Acquisition Corp - Class A,NASDAQ,Stock,2021-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAMMU,Aries I Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAMMW,Aries I Acquisition Corp - Warrants (18/03/2026),NASDAQ,Stock,2021-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAMP,LiveRamp Holdings Inc,NYSE,Stock,2018-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAND,Rand Capital Corp,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RANI,Rani Therapeutics Holdings Inc Class A,NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAPT,RAPT Therapeutics Inc,NASDAQ,Stock,2019-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RARE,Ultragenyx Pharmaceutical Inc,NASDAQ,Stock,2014-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAVE,Rave Restaurant Group Inc,NASDAQ,Stock,1993-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAVI,FlexShares Ready Access Variable Income Fund,NYSE ARCA,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAYC,Rayliant Quantamental China Equity ETF,NYSE ARCA,ETF,2020-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAYD,Rayliant Quantitative Developed Market Equity ETF,NYSE ARCA,ETF,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAYE,Rayliant Quantamental Emerging Market Equity ETF,NYSE ARCA,ETF,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RAYS,Global X Solar ETF,NASDAQ,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBA,Ritchie Bros Auctioneers Inc,NYSE,Stock,1998-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBAC,RedBall Acquisition Corp - Class A,NYSE,Stock,2020-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBAC-U,RedBall Acquisition Corp - Units (1 Ord Class A & 1/3 War),NYSE,Stock,2020-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBAC-WS,RedBall Acquisition Corp - Warrants(17/08/2022),NYSE,Stock,2020-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBB,RBB Bancorp,NASDAQ,Stock,2017-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBBN,Ribbon Communications Inc - New,NASDAQ,Stock,2017-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBC-W,Regal Beloit Corporation Additional Shares WhenIssued,NYSE,Stock,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBCAA,Republic Bancorp Inc (KY) - Class A,NASDAQ,Stock,1998-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBCN,Rubicon Technology Inc,NASDAQ,Stock,2007-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBIN,NATIONWIDE RISK-BASED INTERNATIONAL EQUITY ETF ,NYSE ARCA,ETF,2017-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBKB,Rhinebeck Bancorp Inc,NASDAQ,Stock,2019-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBLX,Roblox Corporation - Class A,NYSE,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBND,SPDR Bloomberg SASB Corporate Bond ESG Select ETF,NYSE ARCA,ETF,2020-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBOT,Vicarious Surgical Inc - Class A,NYSE,Stock,2020-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBOT-WS,Vicarious Surgical Inc - Warrants (05/08/2027),NYSE,Stock,2020-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBS,,NYSE,Stock,2020-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RBUS,Nationwide Risk-Based U.S. Equity ETF,NYSE ARCA,ETF,2017-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RC,Ready Capital Corp,NYSE,Stock,2013-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RC-P-C,Ready Capital Corp,NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RC-P-E,Ready Capital Corp,NYSE,Stock,2021-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCA,Ready Capital Corporation 700 Convertible Senior Notes due 2023,NYSE,Stock,2018-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCAC,Revelstone Capital Acquisition Corp - Class A,NASDAQ,Stock,2022-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCACU,Revelstone Capital Acquisition Corp - Units (1 Ord ShareClass A & 1/2 War),NASDAQ,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCACW,Revelstone Capital Acquisition Corp - Warrants (15/09/2026),NASDAQ,Stock,2022-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCAT,Red Cat Holdings Inc,NASDAQ,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCB,Ready Capital Corp,NYSE,Stock,2019-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCC,Ready Capital Corp,NYSE,Stock,2021-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCD,Invesco S&P 500 Equal Weight Consumer Discretionary ETF,NYSE ARCA,ETF,2006-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCEL,AVITA Medical Inc,NASDAQ,Stock,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCF-U,RCF Acquisition Corp Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant,NYSE,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCFA,RCF Acquisition Corp - Class A,NYSE,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCFA-U,RCF Acquisition Corp Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant,NYSE,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCFA-WS,RCF Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCG,RENN Fund Inc,NYSE MKT,ETF,1996-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCHG,Recharge Acquisition Corp - Class A,NASDAQ,Stock,2020-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCHGU,Recharge Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCHGW,Recharge Acquisition Corp - Warrants (23/09/2025),NASDAQ,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCI,Rogers Communications Inc - Class B,NYSE,Stock,1996-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCII,Rent-a-Center Inc,NASDAQ,Stock,1995-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCKT,Rocket Pharmaceuticals Inc,NASDAQ,Stock,2015-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCKY,Rocky Brands Inc,NASDAQ,Stock,1993-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCL,Royal Caribbean Group,NYSE,Stock,1993-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCLF,Rosecliff Acquisition Corp I - Class A,NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCLFU,Rosecliff Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCLFW,Rosecliff Acquisition Corp I - Warrants (11/02/2026),NASDAQ,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCM,R1 RCM Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCMT,RCM Technologies Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCON,Recon Technology Ltd - Class A,NASDAQ,Stock,2009-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCOR,Renovacor Inc,NYSE MKT,Stock,2020-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCOR-WS,Renovacor Inc - Warrants (05/03/2025),NYSE MKT,Stock,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCRT,Recruiter.com Group Inc,NASDAQ,Stock,2008-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCRTW,Recruiter.com Group Inc - Warrants (15/06/2026),NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCS,PIMCO Strategic Income Fund Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RCUS,Arcus Biosciences Inc,NYSE,Stock,2018-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDBX,Redbox Entertainment Inc - Class A,NASDAQ,Stock,2020-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDBXW,Redbox Entertainment Inc - Warrants (22/10/2026),NASDAQ,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDCM,Radcom,NASDAQ,Stock,1997-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDFI,Rareview Dynamic Fixed Income ETF,BATS,ETF,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDFN,Redfin Corp,NASDAQ,Stock,2017-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDHL,Redhill Biopharma,NASDAQ,Stock,2013-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDI,Reading International Inc - Class A,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDIB,Reading International Inc - Class B,NASDAQ,Stock,2000-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDIV,Invesco S&P Ultra Dividend Revenue ETF,NYSE ARCA,ETF,2013-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDMX,SPDR Bloomberg SASB Developed Markets Ex US ESG Select ETF,NYSE ARCA,ETF,2022-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDN,Radian Group Inc,NYSE,Stock,1992-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDNT,Radnet Inc,NASDAQ,Stock,1997-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDOG,ALPS REIT DIVIDEND DOGS ETF ,NYSE ARCA,ETF,2008-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDS-A,Shell Plc ADR (Representing - Class A),NYSE,Stock,2005-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDUS,Radius Health Inc,NASDAQ,Stock,2014-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDVT,Red Violet Inc,NASDAQ,Stock,2018-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDVY,First Trust Rising Dividend Achievers ETF,NASDAQ,ETF,2014-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDW,Redwire Corporation,NYSE,Stock,2021-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDW-WS,Redwire Corporation - Warrants(27/05/2027),NYSE,Stock,2021-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDWR,Radware,NASDAQ,Stock,1999-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RDY,Dr. Reddy`s Laboratories Ltd,NYSE,Stock,2001-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RE,Everest Re Group Ltd,NYSE,Stock,1995-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REAL,Therealreal Inc,NASDAQ,Stock,2019-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REAX,The Real Brokerage Inc,NASDAQ,Stock,2021-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REC,Emles Real Estate Credit ETF,BATS,ETF,2020-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RECS,Columbia Research Enhanced Core ETF,NYSE ARCA,ETF,2001-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REDU,RISE Education Cayman Ltd,NASDAQ,Stock,2017-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REE,REE Automotive Ltd - Class A,NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REEAW,REE Automotive Ltd - Warrants (22/07/2026),NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REED,Reeds Inc,NASDAQ,Stock,2007-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REET,iShares Global REIT ETF,NYSE ARCA,ETF,2014-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REFI,Chicago Atlantic Real Estate Finance Inc,NASDAQ,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REFR,Research Frontiers Inc,NASDAQ,Stock,1993-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REG,Regency Centers Corporation,NASDAQ,Stock,1993-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REGI,Renewable Energy Group Inc,NASDAQ,Stock,2012-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REGL,ProShares S&P MidCap 400 Div Aristocrats ETF,BATS,ETF,2015-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REGN,Regeneron Pharmaceuticals Inc,NASDAQ,Stock,1991-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REI,Ring Energy Inc,NYSE MKT,Stock,2007-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REIT,ALPS Active REIT ETF,NASDAQ,ETF,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REK,ProShares Short Real Estate,NYSE ARCA,ETF,2010-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REKR,Rekor Systems Inc,NASDAQ,Stock,2017-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RELI,Reliance Global Group Inc,NASDAQ,Stock,2016-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RELIW,Reliance Global Group Inc - Warrants - Series A (01/02/2026),NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RELL,Richardson Electronics Ltd,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RELX,RELX Plc,NYSE,Stock,1994-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RELY,Remitly Global Inc,NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REM,iShares Mortgage Real Estate ETF,BATS,ETF,2007-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REMG,SPDR Bloomberg SASB Emerging Markets ESG Select ETF,NYSE ARCA,ETF,2022-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REMX,VanEck Rare Earth/Strategic Metals ETF,NYSE ARCA,ETF,2010-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RENN,Renren Inc,NYSE,Stock,2011-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RENO,Renovare Environmental Inc,NASDAQ,Stock,2015-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RENT,Rent the Runway Inc - Class A,NASDAQ,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REPL,Replimune Group Inc,NASDAQ,Stock,2018-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REPX,Riley Exploration Permian Inc,NYSE MKT,Stock,1998-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RERE,ATRenew Inc,NYSE,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RES,RPC Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RESD,WISDOMTREE INTERNATIONAL ESG FUND N/A,BATS,ETF,2016-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RESE,WISDOMTREE EMERGING MARKETS ESG FUND N/A,BATS,ETF,2016-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RESI,Kelly Residential & Apartment Real Estate ETF,NYSE ARCA,ETF,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RESN,Resonant Inc,NASDAQ,Stock,2014-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RESP,WisdomTree U.S. ESG Fund,NYSE ARCA,ETF,2007-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RETA,Reata Pharmaceuticals Inc - Class A,NASDAQ,Stock,2016-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RETL,Direxion Daily Retail Bull 3x Shares,NYSE ARCA,ETF,2010-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RETO,ReTo Eco-Solutions Inc,NASDAQ,Stock,2017-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REV,Revlon Inc - Class A,NYSE,Stock,1996-02-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVB,Revelation Biosciences Inc,NASDAQ,Stock,2020-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVBU,Revelation Biosciences Inc - Units (1 Ord share & 1 War),NASDAQ,Stock,2020-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVBW,Revelation Biosciences Inc - Warrants(10/01/2027),NASDAQ,Stock,2020-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVE,Alpine Acquisition Corp,NASDAQ,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVEU,Alpine Acquisition Corp - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVEW,Alpine Acquisition Corp - Warrants (01/05/2026),NASDAQ,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVG,REV Group Inc,NYSE,Stock,2017-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVH,Revolution Healthcare Acquisition Corp - Class A,NASDAQ,Stock,2021-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVHU,Revolution Healthcare Acquisition Corp - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVHW,Revolution Healthcare Acquisition Corp - Warrants (17/03/2026),NASDAQ,Stock,2021-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REVS,COLUMBIA RESEARCH ENHANCED VALUE ETF ,NYSE ARCA,ETF,2019-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REW,ProShares UltraShort Technology,NYSE ARCA,ETF,2007-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REX,REX American Resources Corp,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REXR,Rexford Industrial Realty Inc,NYSE,Stock,2013-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REXR-P-B,Rexford Industrial Realty Inc 5875 Series B Cumulative Redeemable Preferred Stock,NYSE,Stock,2017-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REXR-P-C,Rexford Industrial Realty Inc 5.625 PRF PERPETUAL USD 25 Ser C,NYSE,Stock,2019-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REYN,Reynolds Consumer Products Inc,NASDAQ,Stock,2020-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REZ,iShares Residential and Multisector Real Estate ETF,NYSE ARCA,ETF,2007-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "REZI,Resideo Technologies Inc,NYSE,Stock,2018-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RF,Regions Financial Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RF-P-B,Regions Financial Corp,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RF-P-C,Regions Financial Corp,NYSE,Stock,2019-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RF-P-E,Regions Financial Corp,NYSE,Stock,2021-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFCI,RiverFront Dynamic Core Income ETF,NYSE ARCA,ETF,2016-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFDA,RiverFront Dynamic US Dividend Advantage ETF,NYSE ARCA,ETF,2016-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFDI,First Trust RiverFront Dynamic Developed International ETF,NASDAQ,ETF,2016-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFEM,FIRST TRUST RIVERFRONT DYNAMIC EMERGING MARKETS ETF ,NASDAQ,ETF,2016-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFEU,FIRST TRUST RIVERFRONT DYNAMIC EUROPE ETF ,NASDAQ,ETF,2016-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFFC,RIVERFRONT DYNAMIC US FLEX-CAP ETF ,NYSE ARCA,ETF,2016-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFG,Invesco S&P MidCap 400 Pure Growth ETF,NYSE ARCA,ETF,2006-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFI,Cohen & Steers Total Return Realty Fund Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFIL,RF Industries Ltd,NASDAQ,Stock,1997-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFL,Rafael Holdings Inc - Class B,NYSE,Stock,2018-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFM,RiverNorth Flexible Municipal Income Fund Inc,NYSE,Stock,2020-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFMZ,RiverNorth Flexible Municipal Income Fund II Inc,NYSE,Stock,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFP,Resolute Forest Products Inc,NYSE,Stock,2010-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RFV,Invesco S&P MidCap 400 Pure Value ETF,NYSE ARCA,ETF,2006-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGA,Reinsurance Group Of America Inc,NYSE,Stock,2008-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGC,Regencell Bioscience Holdings Ltd,NASDAQ,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGCO,RGC Resources Inc,NASDAQ,Stock,1994-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGEN,Repligen Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGF,Real Good Food Company Inc (The) - Class A,NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGI,Invesco S&P 500 Equal Weight Industrials ETF,NYSE ARCA,ETF,2006-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGLD,Royal Gold Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGLS,Regulus Therapeutics Inc,NASDAQ,Stock,2012-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGNX,Regenxbio Inc,NASDAQ,Stock,2015-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGP,Resources Connection Inc,NASDAQ,Stock,2000-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGR,Sturm Ruger & Co. Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGS,Regis Corp,NYSE,Stock,1991-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGT,Royce Global Value Trust Inc,NYSE,ETF,2013-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGTI,Rigetti Computing Inc,NASDAQ,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RGTIW,Rigetti Computing Inc - Warrants (01/01/9999),NASDAQ,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RH,RH - Class A,NYSE,Stock,2012-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RHCB,BNY Mellon Responsible Horizons Corporate Bond ETF,NYSE ARCA,ETF,2022-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RHE,Regional Health Properties Inc,NYSE MKT,Stock,2017-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RHE-P-A,Regional Health Properties Inc,NYSE MKT,Stock,2017-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RHI,Robert Half International Inc,NYSE,Stock,1992-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RHP,Ryman Hospitality Properties Inc,NYSE,Stock,1991-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RHRX,RH Tactical Rotation ETF,NYSE ARCA,ETF,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RHS,Invesco S&P 500 Equal Weight Consumer Staples ETF,NYSE ARCA,ETF,2006-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RHTX,RH Tactical Outlook ETF,NYSE ARCA,ETF,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIBT,RiceBran Technologies,NASDAQ,Stock,2003-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RICK,RCI Hospitality Holdings Inc,NASDAQ,Stock,1995-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RICO,Agrico Acquisition Corp - Class A,NASDAQ,Stock,2021-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RICOU,Agrico Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RICOW,Agrico Acquisition Corp - Warrants (08/07/2026),NASDAQ,Stock,2021-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIDE,Lordstown Motors Corp - Class A,NASDAQ,Stock,2019-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIET,Hoya Capital High Dividend Yield ETF,NYSE ARCA,ETF,2021-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIG,Transocean Ltd,NYSE,Stock,1993-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIGL,Rigel Pharmaceuticals,NASDAQ,Stock,2000-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIGS,RIVERFRONT STRATEGIC INCOME FUND ,NYSE ARCA,ETF,2013-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIGZ,Viridi Cleaner Energy Crypto-Mining & Semiconductor ETF,NYSE ARCA,ETF,2021-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILY,B. Riley Financial Inc,NASDAQ,Stock,2015-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILYG,B. Riley Financial Inc,NASDAQ,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILYK,B. Riley Financial Inc,NASDAQ,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILYL,B. Riley Financial Inc,NASDAQ,Stock,2016-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILYM,B. Riley Financial Inc,NASDAQ,Stock,2020-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILYN,B. Riley Financial Inc,NASDAQ,Stock,2019-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILYO,B. Riley Financial Inc,NASDAQ,Stock,2019-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILYP,B. Riley Financial Inc,NASDAQ,Stock,2019-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILYT,B. Riley Financial Inc,NASDAQ,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RILYZ,B. Riley Financial Inc,NASDAQ,Stock,2021-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RINF,ProShares Inflation Expectations ETF,NYSE ARCA,ETF,2012-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RING,iShares MSCI Global Gold Miners ETF,NASDAQ,ETF,2012-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIO,Rio Tinto plc,NYSE,Stock,1990-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIOT,Riot Blockchain Inc,NASDAQ,Stock,2003-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RISN,Inspire Tactical Balanced ESG ETF,NYSE ARCA,ETF,2020-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RISR,FolioBeyond Rising Rates ETF,NYSE ARCA,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RITA,ETFB GREEN SRI REITS ETF ,NYSE ARCA,ETF,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIV,RiverNorth Opportunities Fund Inc,NYSE,ETF,2015-12-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIV-R-W,RiverNorth Opportunities Fund Inc Rights expiring November 5 2021 WhenIssued,NYSE,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RIVN,Rivian Automotive Inc - Class A,NASDAQ,Stock,2021-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RJA,ELEMENTS Linked to the Rogers International Commodity Index Agriculture Total Return ETN,NYSE ARCA,ETF,2007-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RJAC,Jackson Acquisition Co - Class A,NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RJAC-U,Jackson Acquisition Co - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RJAC-WS,Jackson Acquisition Co - Warrants (01/01/9999),NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RJF,Raymond James Financial Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RJI,ELEMENTS Linked to the Rogers International Commodity Index ETN,NYSE ARCA,ETF,2007-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RJN,AB Svensk Exportkredit,NYSE ARCA,ETF,2007-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RJZ,AB Svensk Exportkredit,NYSE ARCA,ETF,2007-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RKDA,Arcadia Biosciences Inc,NASDAQ,Stock,2015-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RKLB,Rocket Lab USA Inc,NASDAQ,Stock,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RKLY,Rockley Photonics Holdings Ltd,NYSE,Stock,2021-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RKLY-WS,Rockley Photonics Holdings Ltd - Warrants (01/01/9999),NYSE,Stock,2021-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RKT,Rocket Companies Inc Class A,NYSE,Stock,2020-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RKTA,Rocket Internet Growth Opportunities Corp - Class A,NYSE,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RKTA-U,Rocket Internet Growth Opportunities Corp - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RKTA-WS,Rocket Internet Growth Opportunities Corp - Warrants (01/01/9999),NYSE,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RL,Ralph Lauren Corp - Class A,NYSE,Stock,1997-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLAY,Relay Therapeutics Inc,NASDAQ,Stock,2020-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLGT,Radiant Logistics Inc,NYSE MKT,Stock,2006-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLGY,Realogy Holdings Corp,NYSE,Stock,2012-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLI,RLI Corp,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLJ,RLJ Lodging Trust,NYSE,Stock,2011-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLJ-P-A,RLJ Lodging Trust,NYSE,Stock,2017-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLMD,Relmada Therapeutics Inc,NASDAQ,Stock,2014-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLTY,Cohen & Steers Real Estate Opportunities and Income Fund,NYSE,Stock,2022-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLX,RLX Technology Inc,NYSE,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLY,SPDR SSgA Multi-Asset Real Return ETF,NYSE ARCA,ETF,2012-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RLYB,Rallybio Corp,NASDAQ,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RM,Regional Management Corp,NYSE,Stock,2012-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMAX,RE/MAX Holdings Inc - Class A,NYSE,Stock,2013-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMBI,Richmond Mutual Bancorporation Inc,NASDAQ,Stock,2019-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMBL,RumbleON Inc - Class B,NASDAQ,Stock,2017-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMBS,Rambus Inc,NASDAQ,Stock,1997-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMCF,Rocky Mountain Chocolate Factory Inc,NASDAQ,Stock,1993-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMD,Resmed Inc,NYSE,Stock,1995-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMED,Ra Medical Systems Inc,NYSE MKT,Stock,2018-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMG-U,Romeo Power Inc - Unit (1 Ord Cls A & 0.33 Wrt),NYSE,Stock,2019-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMGC,RMG Acquisition Corp III - Class A,NASDAQ,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMGCU,RMG Acquisition Corp III - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMGCW,RMG Acquisition Corp III - Warrants (08/02/2026),NASDAQ,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMI,RiverNorth Opportunistic Municipal Income Fund Inc,NYSE,Stock,2018-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMM,RiverNorth Managed Duration Municipal Income Fund Inc,NYSE,Stock,2019-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMMZ,RiverNorth Managed Duration Municipal Income Fund II Inc,NYSE,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMNI,Rimini Street Inc,NASDAQ,Stock,2015-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMO,Romeo Power Inc - Class A,NYSE,Stock,2019-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMO-WS,Romeo Power Inc Warrants,NYSE,Stock,2020-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMPL-P,RiverNorth Marketplace Lending Corporation 5875 Series A Term Preferred Stock Due 2024,NYSE,Stock,2017-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMR,RMR Group Inc (The) - Class A,NASDAQ,Stock,2015-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMT,Royce Micro Capital Trust Inc,NYSE,ETF,1993-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RMTI,Rockwell Medical Inc,NASDAQ,Stock,1998-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNA,Avidity Biosciences Inc,NASDAQ,Stock,2020-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNAZ,TransCode Therapeutics Inc,NASDAQ,Stock,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNDB,Randolph Bancorp Inc,NASDAQ,Stock,2016-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNDM,First Trust Developed International Equity Select ETF,NASDAQ,ETF,2017-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNDV,First Trust US Equity Dividend Select ETF,NASDAQ,ETF,2017-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNEM,EMERGING MARKETS EQUITY SELECT ETF ,NASDAQ,ETF,2017-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNER,Mount Rainier Acquisition Corp - Class A,NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNERU,Mount Rainier Acquisition Corp - Unit (1 Ordinary share & 1 Wrt),NASDAQ,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNERW,Mount Rainier Acquisition Corp - Warrants (27/11/2026),NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNG,RingCentral Inc - Class A,NYSE,Stock,2013-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNGR,Ranger Energy Services Inc - Class A,NYSE,Stock,2017-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNLC,First Trust Large Cap US Equity Select ETF,NASDAQ,ETF,2017-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNLX,Renalytix Plc,NASDAQ,Stock,2020-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNMC,First Trust Mid Cap US Equity Select ETF,NASDAQ,ETF,2017-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNP,Cohen & Steers REIT & Preferred Income Fund Inc,NYSE,ETF,2003-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNR,RenaissanceRe Holdings Ltd,NYSE,Stock,1995-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNR-P-C,RenaissanceRe Holdings Ltd 608 Series C Preference Shares,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNR-P-C-CL,RenaissanceRe Holdings Ltd. 6.08 Series C Preference Shares,NYSE,Stock,2020-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNR-P-F,RenaissanceRe Holdings Ltd,NYSE,Stock,2018-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNR-P-G,RenaissanceRe Holdings Ltd Depositary Shares Series G,NYSE,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNRG,Global X Renewable Energy Producers ETF,NASDAQ,ETF,2015-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNSC,First Trust Small Cap US Equity Select ETF,NASDAQ,ETF,2017-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNST,Renasant Corp,NASDAQ,Stock,1992-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNW,ReNew Energy Global plc - Class A,NASDAQ,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNWK,Realnetworks Inc,NASDAQ,Stock,1997-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNWWW,ReNew Energy Global plc - Warrants (23/08/2026),NASDAQ,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RNXT,RenovoRx Inc,NASDAQ,Stock,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROAD,Construction Partners Inc - Class A,NASDAQ,Stock,2018-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROAM,Hartford Multifactor Emerging Markets ETF,NYSE ARCA,ETF,2015-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROBO,ETCT ROBO Global Robotics and Automation Index ETF,NYSE ARCA,ETF,2013-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROBT,First Trust Nasdaq Artificial Intelligence and Robotics ETF,NASDAQ,ETF,2018-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROC,ROC Energy Acquisition Corp,NASDAQ,Stock,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCAR,ROC Energy Acquisition Corp,NASDAQ,Stock,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCAU,ROC Energy Acquisition Corp - Units (1 Ord Share & 1 Right),NASDAQ,Stock,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCC,Ranger Oil Corp - Class A,NASDAQ,Stock,2016-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCG,Roth CH Acquisition IV Company,NASDAQ,Stock,2021-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCGU,Roth CH Acquisition IV Co - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCGW,Roth CH Acquisition IV Co - Warrants (01/07/2026),NASDAQ,Stock,2021-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCK,Gibraltar Industries Inc,NASDAQ,Stock,1993-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCL,Roth CH Acquisition V Company,NASDAQ,Stock,2022-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCLU,Roth CH Acquisition V Co - Unit (1 Ordinary share & 1/2 Wrt),NASDAQ,Stock,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCLW,Roth CH Acquisition V Co - Warrants (10/12/2026),NASDAQ,Stock,2022-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROCR,QualTek Services Inc,NASDAQ,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RODE,HARTFORD MULTIFACTOR DIVERSIFIED INTERNATIONAL ETF ,BATS,ETF,2017-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RODI,Barclays Return on Disability ETN,BATS,ETF,2014-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RODM,Hartford Multifactor Developed Markets (ex-US) ETF,NYSE ARCA,ETF,2015-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROG,Rogers Corp,NYSE,Stock,1980-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROIC,Retail Opportunity Investments Corp,NASDAQ,Stock,2009-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROIV,Roivant Sciences Ltd,NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROIVW,Roivant Sciences Ltd - Warrants (30/09/2026),NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROK,Rockwell Automation Inc,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROKT,SPDR S&P Kensho Final Frontiers ETF,NYSE ARCA,ETF,2018-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROKU,Roku Inc - Class A,NASDAQ,Stock,2017-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROL,Rollins Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROLL,RBC Bearings Inc,NASDAQ,Stock,2005-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROLLP,RBC Bearings Inc,NASDAQ,Stock,2021-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROM,ProShares Ultra Technology,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROMO,Strategy Shares Newfound/ReSolve Robust Momentum ETF,BATS,ETF,2019-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RONI,Rice Acquisition Corp II - Class A,NYSE,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RONI-U,Rice Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RONI-WS,Rice Acquisition Corp II - Warrants (01/01/9999),NYSE,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROOF,IQ U.S. Real Estate Small Cap ETF,NYSE ARCA,ETF,2011-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROOT,Root Inc - Class A,NASDAQ,Stock,2020-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROP,Roper Technologies Inc,NYSE,Stock,1992-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RORO,ATAC US Rotation ETF,NYSE ARCA,ETF,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROSC,Hartford Multifactor Small Cap ETF,NYSE ARCA,ETF,2015-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROSE,Rose Hill Acquisition Corp - Class A,NASDAQ,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROSEU,Rose Hill Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROSEW,Rose Hill Acquisition Corp - Warrants (07/10/2026),NASDAQ,Stock,2016-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROSS,Ross Acquisition Corp II - Class A,NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROSS-U,Ross Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROSS-WS,Ross Acquisition Corp II - Warrants (01/02/2026),NYSE,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROST,Ross Stores Inc,NASDAQ,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROUS,Hartford Multifactor US Equity ETF,NYSE ARCA,ETF,2015-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ROVR,Rover Group Inc - Class A,NASDAQ,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPAR,RPAR Risk Parity ETF,NYSE ARCA,ETF,2019-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPAY,Repay Holdings Corporation - Class A,NASDAQ,Stock,2018-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPD,Rapid7 Inc,NASDAQ,Stock,2015-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPG,Invesco S&P 500 Pure Growth ETF,NYSE ARCA,ETF,2006-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPHM,Reneo Pharmaceuticals Inc,NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPID,Rapid Micro Biosystems Inc - Class A,NASDAQ,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPM,RPM International Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPRX,Royalty Pharma plc - Class A,NASDAQ,Stock,2020-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPT,RPT Realty,NYSE,Stock,1988-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPT-P-D,RPT Realty,NYSE,Stock,2014-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPTX,Repare Therapeutics Inc,NASDAQ,Stock,2020-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RPV,Invesco S&P 500 Pure Value ETF,NYSE ARCA,ETF,2006-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RQI,Cohen & Steers Quality Income Realty Fund Inc,NYSE,ETF,2002-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RRAC,Rigel Resource Acquisition Corp - Class A,NYSE,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RRAC-U,Rigel Resource Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RRAC-WS,Rigel Resource Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RRBI,Red River Bancshares Inc,NASDAQ,Stock,2019-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RRC,Range Resources Corp,NYSE,Stock,1992-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RRGB,Red Robin Gourmet Burgers Inc,NASDAQ,Stock,2002-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RRH,Advocate Rising Rate Hedge ETF,NYSE ARCA,ETF,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RRR,Red Rock Resorts Inc - Class A,NASDAQ,Stock,2016-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RRX,Regal Rexnord Corp,NYSE,Stock,1983-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RS,Reliance Steel & Aluminum Company,NYSE,Stock,1994-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSEE,Rareview Systematic Equity ETF,BATS,ETF,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSF,RiverNorth Specialty Finance Corp,NYSE,ETF,2016-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSG,Republic Services Inc,NYSE,Stock,1998-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSI,Rush Street Interactive Inc - Class A,NYSE,Stock,2020-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSKD,Riskified Ltd - Class A,NYSE,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSLS,ReShape Lifesciences Inc,NASDAQ,Stock,2016-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSP,Invesco S&P 500 Equal Weight ETF,NYSE ARCA,ETF,2003-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSPE,Invesco ESG S&P 500 Equal Weight ETF,NYSE ARCA,ETF,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSPY,REVERE SECTOR OPPORTUNITY ETF ,NYSE ARCA,ETF,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSSS,Research Solutions Inc,NASDAQ,Stock,2009-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSVR,Reservoir Media Inc,NASDAQ,Stock,2021-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSVRW,Reservoir Media Inc - Warrants (28/07/2026),NASDAQ,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSX,VanEck Russia ETF,BATS,ETF,2007-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RSXJ,VanEck Russia Small-Cap ETF,BATS,ETF,2011-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTAI,Rareview Tax Advantaged Income ETF,BATS,ETF,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTH,VanEck Retail ETF,NASDAQ,ETF,2001-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTIX,Surgalign Holdings,NASDAQ,Stock,2000-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTL,Necessity Retail REIT Inc (The) - Class A,NASDAQ,Stock,2018-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTLPO,Necessity Retail REIT Inc (The),NASDAQ,Stock,2020-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTLPP,Necessity Retail REIT Inc (The),NASDAQ,Stock,2019-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTLR,Rattler Midstream Lp,NASDAQ,Stock,2019-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTM,Invesco S&P 500 Equal Weight Materials ETF,NYSE ARCA,ETF,2006-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTX,Raytheon Technologies Corporation,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RTYD,Simplify US Small Cap PLUS Downside Convexity ETF,NYSE ARCA,ETF,2022-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RUBI,Rubicon Project,NASDAQ,Stock,2014-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RUBY,Rubius Therapeutics Inc,NASDAQ,Stock,2018-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RUFF,Alpha Dog ETF,NYSE ARCA,ETF,2021-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RULE,Adaptive Core ETF,BATS,ETF,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RUN,Sunrun Inc,NASDAQ,Stock,2015-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RUSHA,Rush Enterprises Inc - Class A,NASDAQ,Stock,2002-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RUSHB,Rush Enterprises Inc - Class B,NASDAQ,Stock,1996-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RUSS,DIREXION DAILY RUSSIA BEAR 3X SHARES ,NYSE ARCA,ETF,2011-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RUTH,Ruths Hospitality Group Inc,NASDAQ,Stock,2005-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVAC,Riverview Acquisition Corp - Class A,NASDAQ,Stock,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVACU,Riverview Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-08-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVACW,Riverview Acquisition Corp - Warrants(29/07/2026),NASDAQ,Stock,2021-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVI,Retail Value Inc,NYSE,Stock,2018-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVLP,RVL Pharmaceuticals plc,NASDAQ,Stock,2018-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVLV,Revolve Group Inc - Class A,NYSE,Stock,2019-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVMD,Revolution Medicines Inc,NASDAQ,Stock,2020-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVNC,Revance Therapeutics Inc,NASDAQ,Stock,2014-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVNU,Xtrackers Municipal Infrastructure Revenue Bond ETF,NYSE ARCA,ETF,2013-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVP,Retractable Technologies Inc,NYSE MKT,Stock,2001-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVPH,Reviva Pharmaceuticals Holdings Inc,NASDAQ,Stock,2018-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVPHW,Reviva Pharmaceuticals Holdings Inc - Warrants (25/12/2025),NASDAQ,Stock,2018-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVSB,Riverview Bancorp Inc,NASDAQ,Stock,1993-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RVT,Royce Value Trust Inc,NYSE,ETF,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWAY,Runway Growth Finance Corp,NASDAQ,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWGE-U,Regalwood Global Energy Ltd Units,NYSE,Stock,2017-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWGV,Direxion Russell 1000 Growth Over Value ETF,NYSE ARCA,ETF,2019-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWJ,Invesco S&P SmallCap 600 Revenue ETF,NYSE ARCA,ETF,2008-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWK,Invesco S&P MidCap 400 Revenue ETF,NYSE ARCA,ETF,2008-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWL,Invesco S&P 500 Revenue ETF,NYSE ARCA,ETF,2008-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWLK,Rewalk Robotics Ltd,NASDAQ,Stock,2014-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWM,ProShares Short Russell2000,NYSE ARCA,ETF,2007-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWO,SPDR Dow Jones Global Real Estate ETF,NYSE ARCA,ETF,2008-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWR,SPDR DJ Wilshire REIT ETF,NYSE ARCA,ETF,2001-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWT,Redwood Trust Inc,NYSE,Stock,1995-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWVG,Direxion Russell 1000 Value Over Growth ETF,NYSE ARCA,ETF,2019-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RWX,SPDR Dow Jones International Real Estate ETF,NYSE ARCA,ETF,2006-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXD,ProShares UltraShort Health Care,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXDX,Prometheus Biosciences Inc,NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXI,iShares Global Consumer Discretionary ETF,NYSE ARCA,ETF,2006-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXL,ProShares Ultra Health Care,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXN-W,Rexnord Corporation ExDistribution WhenIssued,NYSE,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXRA,RXR Acquisition Corp - Class A,NASDAQ,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXRAU,RXR Acquisition Corp - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXRAW,RXR Acquisition Corp - Warrants (01/01/2025),NASDAQ,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXRX,Recursion Pharmaceuticals Inc - Class A,NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXST,RxSight Inc,NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RXT,Rackspace Technology Inc,NASDAQ,Stock,2020-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RY,Royal Bank Of Canada,NYSE,Stock,1995-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RY-P-T,Royal Bank Of Canada,NYSE,Stock,2015-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYAAY,Ryanair Holdings Plc,NASDAQ,Stock,1997-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYAM,Rayonier Advanced Materials Inc,NYSE,Stock,2014-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYAN,Ryan Specialty Group Holdings Inc Class A,NYSE,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYB,RYB Education Inc,NYSE,Stock,2017-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYCE,Amira Nature Foods Ltd,NYSE,Stock,2012-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYE,Invesco S&P 500 Equal Weight Energy ETF,NYSE ARCA,ETF,2006-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYF,Invesco S&P 500 Equal Weight Financials ETF,NYSE ARCA,ETF,2006-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYH,Invesco S&P 500 Equal Weight Health Care ETF,NYSE ARCA,ETF,2006-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYI,Ryerson Holding Corp,NYSE,Stock,2014-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYJ,Invesco Raymond James SB-1 Equity ETF,NYSE ARCA,ETF,2006-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYLD,Global X Russell 2000 Covered Call ETF,BATS,ETF,2019-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYN,Rayonier Inc,NYSE,Stock,1994-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYT,Invesco S&P 500 Equal Weight Technology ETF,NYSE ARCA,ETF,2006-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYTM,Rhythm Pharmaceuticals Inc,NASDAQ,Stock,2017-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RYU,Invesco S&P 500 Equal Weight Utilities ETF,NYSE ARCA,ETF,2006-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RZA,Reinsurance Group Of America Inc,NYSE,Stock,2012-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RZB,Reinsurance Group Of America Inc,NASDAQ,Stock,2016-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RZG,INVESCO S&P SMALLCAP 600 PURE GROWTH ETF ,NYSE ARCA,ETF,2006-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RZLT,Rezolute Inc,NASDAQ,Stock,2014-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "RZV,Invesco S&P SmallCap 600 Pure Value ETF,NYSE ARCA,ETF,2006-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "S,SentinelOne Inc - Class A,NYSE,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SA,Seabridge Gold Inc,NYSE,Stock,2004-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAA,ProShares Ultra SmallCap600,NYSE ARCA,ETF,2007-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAB,Grupo Casa Saba SA De CV,NYSE,Stock,2016-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAB-CL,,NYSE,Stock,2020-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SABR,Sabre Corp,NASDAQ,Stock,2014-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SABRP,Sabre Corp,NASDAQ,Stock,2020-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SABS,SAB Biotherapeutics Inc,NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SABSW,SAB Biotherapeutics Inc - Warrants (25/07/2027),NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SACC,Sachem Capital Corp,NYSE MKT,Stock,2019-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SACH,Sachem Capital Corp,NYSE MKT,Stock,2017-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SACH-P-A,Sachem Capital Corp 7.75 Series A Cumulative Redeemable Preferred Stock,NYSE MKT,Stock,2021-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAEF,Schwab Ariel ESG ETF,NYSE ARCA,ETF,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAFE,Safehold Inc,NYSE,Stock,2017-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAFM,Sanderson Farms Inc,NASDAQ,Stock,1989-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAFT,Safety Insurance Group Inc,NASDAQ,Stock,2002-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAGA,Sagaliam Acquisition Corp - Class A,NASDAQ,Stock,2022-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAGAR,Sagaliam Acquisition Corp,NASDAQ,Stock,2022-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAGAU,Sagaliam Acquisition Corp - Units (1 Class A & 1 Right),NASDAQ,Stock,2021-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAGE,Sage Therapeutics Inc,NASDAQ,Stock,2014-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAGP,Strategas Global Policy Opportunities ETF,NYSE ARCA,ETF,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAH,Sonic Automotive Inc - Class A,NYSE,Stock,1997-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAIA,Saia Inc,NASDAQ,Stock,2002-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAIC,Science Applications International Corp,NYSE,Stock,2013-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAIL,SailPoint Technologies Holdings Inc,NYSE,Stock,2017-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAK,Saratoga Investment Corp 7.25 Notes due 2025,NYSE,Stock,2020-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAL,Salisbury Bancorp Inc,NASDAQ,Stock,1998-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SALM,Salem Media Group Inc - Class A,NASDAQ,Stock,1999-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAM,Boston Beer Co. Inc - Class A,NYSE,Stock,1995-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAMA,Schultze Special Purpose Acquisition Corp II - Class A,NASDAQ,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAMAU,Schultze Special Purpose Acquisition Corp II - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAMAW,Schultze Special Purpose Acquisition Corp II - Warrants (25/03/2028),NASDAQ,Stock,2021-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAMG,Silvercrest Asset Management Group Inc - Class A,NASDAQ,Stock,2013-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAMT,Strategas Macro Thematic Opportunities ETF,NYSE ARCA,ETF,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAN,Banco Santander S.A.,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SANA,Sana Biotechnology Inc,NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SANB,Sanaby Health Acquisition Corp I - Class A,NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SANBU,Sanaby Health Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SANBW,Sanaby Health Acquisition Corp I - Warrants (30/07/2028),NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAND,Sandstorm Gold Ltd,NYSE,Stock,2009-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SANG,SANGSTAT MEDICAL CORP,NASDAQ,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SANM,Sanmina Corp,NASDAQ,Stock,1993-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SANW,S&W Seed Company,NASDAQ,Stock,2010-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAP,Sap SE,NYSE,Stock,1995-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAR,Saratoga Investment Corp,NYSE,Stock,2007-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SARK,Tuttle Capital Short Innovation ETF,NASDAQ,ETF,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SASR,Sandy Spring Bancorp,NASDAQ,Stock,1996-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SATL,Satellogic Inc - Class A,NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SATLW,Satellogic Inc - Warrants (25/01/2027),NASDAQ,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SATO,INVESCO ALERIAN GALAXY CRYPTO ECONOMY ETF ,BATS,ETF,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SATS,EchoStar Corp,NASDAQ,Stock,2008-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAVA,Cassava Sciences Inc,NASDAQ,Stock,2000-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAVE,Spirit Airlines Inc,NYSE,Stock,2011-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SAVN,LIFEGOAL GENERAL CONSERVATIVE INVESTMENT ETF ,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SB,Safe Bulkers Inc,NYSE,Stock,2008-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SB-P-C,Safe Bulkers Inc Cumulative Redeemable Perpetual Preferred Series C Marshall Islands,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SB-P-D,Safe Bulkers Inc Perpetual Preferred Series D Marshall Islands,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBAC,SBA Communications Corp - Class A,NASDAQ,Stock,1999-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBB,ProShares Short SmallCap600,NYSE ARCA,ETF,2007-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBBA,Scorpio Tankers Inc,NYSE,Stock,2020-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBCF,Seacoast Banking Corp Of Florida,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBE-U,ChargePoint Holdings Inc - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2019-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBET,SharpLink Gaming Ltd,NASDAQ,Stock,1997-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBEV,Splash Beverage Group Inc,NYSE MKT,Stock,2019-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBEV-WS,Splash Beverage Group Inc - Warrants (01/01/9999),NYSE MKT,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBFG,SB Financial Group Inc,NASDAQ,Stock,1999-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBFM,Sunshine Biopharma Inc,NASDAQ,Stock,2009-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBFMW,Sunshine Biopharma Inc - Warrants (15/02/2027),NASDAQ,Stock,2022-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBG-WS,Sandbridge Acquisition Corporation Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50,NYSE,Stock,2020-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBGI,Sinclair Broadcast Group Inc - Class A,NASDAQ,Stock,1995-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBH,Sally Beauty Holdings Inc,NYSE,Stock,2006-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBI,Western Asset Intermediate Muni Fund Inc,NYSE,ETF,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBII,Sandbridge X2 Corp - Class A,NYSE,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBII-U,Sandbridge X2 Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBII-WS,Sandbridge X2 Corp - Warrants (01/01/9999),NYSE,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBIO,ALPS Medical Breakthroughs ETF,NYSE ARCA,ETF,2014-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBLK,Star Bulk Carriers Corp,NASDAQ,Stock,2006-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBM,ProShares Short Basic Materials,NYSE ARCA,ETF,2010-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBND,COLUMBIA SHORT DURATION BOND ETF ,NYSE ARCA,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBNY,Signature Bank,NASDAQ,Stock,2004-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBNYP,Signature Bank,NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBOW,SilverBow Resources Inc,NYSE,Stock,2016-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBR,Sabine Royalty Trust,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBRA,Sabra Healthcare REIT Inc,NASDAQ,Stock,2002-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBS,Companhia de Saneamento Basico do Estado de Sao Paulo.,NYSE,Stock,2002-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBSI,Southside Bancshares Inc,NASDAQ,Stock,1998-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBSW,Sibanye Stillwater Ltd,NYSE,Stock,2013-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBT,Sterling Bancorp Inc,NASDAQ,Stock,2017-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBTX,Silverback Therapeutics Inc,NASDAQ,Stock,2020-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBUG,Barclays Bank Plc iPath Silver ETN Global Med Term Nt Ser A 10062049,NYSE ARCA,ETF,2019-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SBUX,Starbucks Corp,NASDAQ,Stock,1992-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCAQ,Stratim Cloud Acquisition Corp - Class A,NASDAQ,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCAQU,Stratim Cloud Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCAQW,Stratim Cloud Acquisition Corp - Warrants (05/03/2026),NASDAQ,Stock,2021-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCC,ProShares UltraShort Consumer Services,NYSE ARCA,ETF,2007-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCCB,Sachem Capital Corp,NYSE MKT,Stock,2019-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCCC,Sachem Capital Corp,NYSE MKT,Stock,2020-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCCD,Sachem Capital Corp,NYSE MKT,Stock,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCCE,Sachem Capital Corp,NYSE MKT,Stock,2022-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCCO,Southern Copper Corporation,NYSE,Stock,1996-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCD,LMP Capital and Income Fund Inc,NYSE,ETF,2004-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCDL,UBS AG London Branch,NYSE ARCA,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCE-P-G,SCE Trust II Trust Preferred Securities,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCE-P-H,SCE Trust III FixedFloating Rate Trust Preference Securities,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCE-P-J,Southern California Edison Company 5375 FixedtoFloating Rate Trust Preference Securities,NYSE,Stock,2015-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCE-P-K,Southern California Edison Company 545 FixedtoFloating Rate Trust Preference Securities,NYSE,Stock,2016-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCE-P-L,SCE TRUST VI,NYSE,Stock,2017-06-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHA,Schwab U.S. Small-Cap ETF,NYSE ARCA,ETF,2009-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHB,Schwab U.S. Broad Market ETF,NYSE ARCA,ETF,2009-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHC,Schwab International Small-Cap Equity ETF,NYSE ARCA,ETF,2010-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHD,Schwab US Dividend Equity ETF,NYSE ARCA,ETF,2011-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHE,Schwab Emerging Markets Equity ETF,NYSE ARCA,ETF,2010-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHF,Schwab International Equity ETF,NYSE ARCA,ETF,2009-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHG,Schwab U.S. Large-Cap Growth ETF,NYSE ARCA,ETF,2010-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHH,Schwab U.S. REIT ETF,NYSE ARCA,ETF,2011-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHI,Schwab 5-10 Year Corporate Bond ETF,NYSE ARCA,ETF,2019-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHJ,Schwab 1-5 Year Corporate Bond ETF,NYSE ARCA,ETF,2019-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHK,Schwab 1000 Index ETF,NYSE ARCA,ETF,2017-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHL,Scholastic Corp,NASDAQ,Stock,1992-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHM,Schwab U.S. Mid-Cap ETF,NYSE ARCA,ETF,2011-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHN,Schnitzer Steel Industries Inc - Class A,NASDAQ,Stock,1993-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHO,Schwab Short-Term U.S. Treasury ETF,NYSE ARCA,ETF,2010-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHP,Schwab U.S. Tips ETF,NYSE ARCA,ETF,2010-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHQ,Schwab US Long-Term U.S. Treasury ETF,NYSE ARCA,ETF,2019-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHR,Schwab Intermediate-Term U.S. Treasury ETF,NYSE ARCA,ETF,2010-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHV,Schwab U.S. Large-Cap Value ETF,NYSE ARCA,ETF,2009-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHW,Charles Schwab Corp,NYSE,Stock,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHW-P-D,Charles Schwab Corp,NYSE,Stock,2016-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHW-P-J,Charles Schwab Corp,NYSE,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHX,Schwab U.S. Large-Cap ETF,NYSE ARCA,ETF,2009-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHY,Schwab International Dividend Equity ETF,NYSE ARCA,ETF,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCHZ,Schwab US Aggregate Bond ETF,NYSE ARCA,ETF,2011-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCI,Service Corp International,NYSE,Stock,1987-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCJ,ISHARES MSCI JAPAN SMALL-CAP ETF ,NYSE ARCA,ETF,2007-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCKT,Socket Mobile Inc,NASDAQ,Stock,1995-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCL,Stepan Company,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCLE,Broadscale Acquisition Corp - Class A,NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCLEU,Broadscale Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCLEW,Broadscale Acquisition Corp - Warrants (02/02/2026),NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCM,Stellus Capital Investment Corp,NYSE,Stock,2012-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCMA,Seaport Calibre Materials Acquisition Corp - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCMAU,Seaport Calibre Materials Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCMAW,Seaport Calibre Materials Acquisition Corp - Warrants (28/10/2026),NASDAQ,Stock,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCO,ProShares UltraShort Bloomberg Crude Oil,NYSE ARCA,ETF,2008-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCOA,ScION Tech Growth I - Class A,NASDAQ,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCOAU,ScION Tech Growth I - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCOAW,ScION Tech Growth I - Warrants (01/11/2025),NASDAQ,Stock,2021-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCOB,ScION Tech Growth II - Class A,NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCOBU,ScION Tech Growth II - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCOBW,ScION Tech Growth II - Warrants (09/02/2026),NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCOR,Comscore Inc,NASDAQ,Stock,2007-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCPE-U,SC Health Corporation Units,NYSE,Stock,2019-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCPH,scPharmaceuticals Inc,NASDAQ,Stock,2017-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCPL,Sciplay Corp - Class A,NASDAQ,Stock,2019-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCPS,Scopus Biopharma Inc,NASDAQ,Stock,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCRD,Janus Henderson Sustainable Corporate Bond ETF,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCRM,Screaming Eagle Acquisition Corp - Class A,NASDAQ,Stock,2022-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCRMU,Screaming Eagle Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2022-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCRMW,Screaming Eagle Acquisition Corp - Warrants (05/01/2027),NASDAQ,Stock,2022-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCS,Steelcase Inc - Class A,NYSE,Stock,1998-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCSC,Scansource Inc,NASDAQ,Stock,1994-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCTL,Societal CDMO Inc,NASDAQ,Stock,2014-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCU,Sculptor Capital Management Inc - Class A,NYSE,Stock,2007-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCUA,Sculptor Acquisition Corp I - Class A,NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCUA-U,Sculptor Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCUA-WS,Sculptor Acquisition Corp I - Warrants (01/01/9999),NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCVL,Shoe Carnival Inc,NASDAQ,Stock,1993-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCVX-U,SCVX Corp - Units (1 Ord Class A & 1/2 War),NYSE MKT,Stock,2020-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCWX,SecureWorks Corp - Class A,NASDAQ,Stock,2016-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCX,L.S. Starrett Co. - Class A,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCYX,Scynexis Inc,NASDAQ,Stock,2014-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SCZ,iShares MSCI EAFE Small-Cap ETF,NASDAQ,ETF,2007-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SD,Sandridge Energy Inc New,NYSE,Stock,2016-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDAC,Sustainable Development Acquisition I Corp - Class A,NASDAQ,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDACU,Sustainable Development Acquisition I Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDACW,Sustainable Development Acquisition I Corp - Warrants (05/02/2026),NASDAQ,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDC,Smiledirectclub Inc - Class A,NASDAQ,Stock,2019-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDCI,USCF SummerHaven Dynamic Commodity Strategy No K-1 Fund,NYSE ARCA,ETF,2018-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDD,PROSHARES ULTRASHORT SMALLCAP600 ,NYSE ARCA,ETF,2007-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDEF,Sound Enhanced Fixed Income ETF,NYSE ARCA,ETF,2020-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDEI,Sound Equity Income ETF,NYSE ARCA,ETF,2020-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDEM,Global X MSCI SuperDividend Emerging Markets ETF,NYSE ARCA,ETF,2015-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDG,iShares MSCI Global Sustainable Development Goals ETF,NASDAQ,ETF,2016-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDGA,Impact Shares Sustainable Development Goals Global Equity ETF,NYSE ARCA,ETF,2018-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDGR,Schrodinger Inc,NASDAQ,Stock,2020-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDH,Global Internet of People Inc,NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDHY,PGIM Short Duration High Yield Opportunities Fund,NYSE,Stock,2020-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDIG,Stronghold Digital Mining Inc - Class A,NASDAQ,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDIV,Global X SuperDividend ETF,NYSE ARCA,ETF,2011-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDOG,ALPS Sector Dividend Dogs ETF,NYSE ARCA,ETF,2012-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDOW,ProShares UltraPro Short Dow30,NYSE ARCA,ETF,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDP,ProShares UltraShort Utilities,NYSE ARCA,ETF,2007-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDPI,Superior Drilling Products Inc,NYSE MKT,Stock,2014-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDS,ProShares UltraShort S&P500,NYSE ARCA,ETF,2006-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDVY,First Trust SMID Cap Rising Dividend Achievers ETF,NASDAQ,ETF,2017-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SDY,SPDR Dividend ETF,NYSE ARCA,ETF,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SE,Sea Ltd,NYSE,Stock,2017-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEA,U.S. Global Sea to Sky Cargo ETF,NYSE ARCA,ETF,2010-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEAC,Seachange International Inc,NASDAQ,Stock,1996-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEAL-P-A,Seapeak LLC,NYSE,Stock,2016-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEAL-P-B,Seapeak LLC,NYSE,Stock,2017-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEAS,SeaWorld Entertainment Inc,NYSE,Stock,2013-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEAT,Vivid Seats Inc - Class A,NASDAQ,Stock,2020-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEB,Seaboard Corp,NYSE MKT,Stock,1980-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SECO,Secoo Holding Ltd,NASDAQ,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SECT,Main Sector Rotation ETF,BATS,ETF,2017-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEDA,SDCL EDGE Acquisition Corp - Class A,NYSE,Stock,2021-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEDA-U,SDCL EDGE Acquisition Corporation Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant,NYSE,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEDA-WS,SDCL EDGE Acquisition Corporation Redeemable warrants each whole warrant exercisable for one share of Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2021-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEDG,Solaredge Technologies Inc,NASDAQ,Stock,2015-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEE,Sealed Air Corp,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEED,Origin Agritech Ltd,NASDAQ,Stock,2004-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEEL,Seelos Therapeutics Inc,NASDAQ,Stock,1999-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEER,Seer Inc - Class A,NASDAQ,Stock,2020-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEF,ProShares Short Financials,NYSE ARCA,ETF,2008-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEIC,SEI Investments Company,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEIX,Virtus Seix Senior Loan ETF,NYSE ARCA,ETF,2019-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SELB,Selecta Biosciences Inc,NASDAQ,Stock,2016-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SELF,Global Self Storage Inc,NASDAQ,Stock,2008-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEM,Select Medical Holdings Corporation,NYSE,Stock,2009-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEMR,SEMrush Holdings Inc - Class A,NYSE,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SENEA,Seneca Foods Corp - Class A,NASDAQ,Stock,1998-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SENEB,Seneca Foods Corp - Class B,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SENS,Senseonics Holdings Inc,NYSE MKT,Stock,2016-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SENT,ADVISORSHARES ALPHA DNA EQUITY SENTIMENT ETF ,NYSE ARCA,ETF,2021-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEPZ,TrueShares Structured Outcome (September) ETF,BATS,ETF,2020-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SERA,Sera Prognostics Inc Class A,NASDAQ,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SES,SES AI Corporation - Class A,NYSE,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SES-WS,SES AI Corporation - Warrants (08/01/2026),NYSE,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SESN,Sesen Bio Inc,NASDAQ,Stock,2014-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEV,Sono Group N.V.,NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SEVN,Seven Hills Realty Trust .,NASDAQ,Stock,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SF,Stifel Financial Corp,NYSE,Stock,1983-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SF-P-B,Stifel Financial,NYSE,Stock,2019-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SF-P-C,,NYSE,Stock,2020-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SF-P-D,Stifel Financial Corporation Depositary Shares Series D,NYSE,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFB,Stifel Financial Corporation 520 Senior Notes due 2047,NYSE,Stock,2017-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFBC,Sound Financial Bancorp Inc,NASDAQ,Stock,2008-01-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFBS,ServisFirst Bancshares Inc,NYSE,Stock,2014-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFE,Safeguard Scientifics Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFET,Safe-T Group Ltd,NASDAQ,Stock,2018-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFHY,WISDOMTREE U.S. SHORT-TERM HIGH YIELD CORPORATE BOND FUND N/A,BATS,ETF,2016-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFIG,WISDOMTREE U.S. SHORT-TERM CORPORATE BOND FUND N/A,BATS,ETF,2016-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFIX,Stitch Fix Inc - Class A,NASDAQ,Stock,2017-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFL,SFL Corporation Ltd,NYSE,Stock,2004-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFM,Sprouts Farmers Market Inc,NASDAQ,Stock,2013-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFNC,Simmons First National Corp - Class A,NASDAQ,Stock,1992-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFST,Southern First Bancshares Inc,NASDAQ,Stock,1999-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFT,Shift Technologies Inc - Class A,NASDAQ,Stock,2019-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFTW-U,BlackSky Technology Inc - Units (1 Ord Class A & 1/2 Warr),NYSE,Stock,2019-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFUN,Fang Holdings Ltd,NYSE,Stock,2010-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFY,SoFi Select 500 ETF,NYSE ARCA,ETF,2019-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFYF,SOFI 50 ETF ,NYSE ARCA,ETF,2019-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SFYX,SoFi Next 500 ETF,NYSE ARCA,ETF,2019-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SG,Sweetgreen Inc - Class A,NYSE,Stock,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGA,Saga Communications Inc - Class A,NASDAQ,Stock,1993-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGAM,,NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGBX,SG Blocks Inc,NASDAQ,Stock,2017-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGC,Superior Group of Companies Inc.,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGDJ,Sprott Junior Gold Miners ETF,NYSE ARCA,ETF,2015-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGDM,Sprott Gold Miners ETF,NYSE ARCA,ETF,2014-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGEN,Seagen Inc,NASDAQ,Stock,2001-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGFY,Signify Health Inc - Class A,NYSE,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGG,iPathA Series B Bloomberg Sugar Subindex Total Return ETN,NYSE ARCA,ETF,2018-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGH,SMART Global Holdings Inc,NASDAQ,Stock,2017-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGHC,Super Group (SGHC) Ltd,NYSE,Stock,2022-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGHC-WS,Super Group SGHC Ltd Redeemable Warrants each whole Warrant exercisable for one Ordinary Share each at an exercise price of 11.50 per share,NYSE,Stock,2022-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGHLU,Signal Hill Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGHT,Sight Sciences Inc,NASDAQ,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGII,Seaport Global Acquisition II Corp - Class A,NASDAQ,Stock,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGIIU,Seaport Global Acquisition II Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGIIW,Seaport Global Acquisition II Corp - Warrants (17/11/2026),NASDAQ,Stock,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGLB,Sigma Labs Inc,NASDAQ,Stock,2010-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGLY,Singularity Future Technology Ltd,NASDAQ,Stock,2008-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGMA,Sigmatron International Inc,NASDAQ,Stock,1994-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGML,Sigma Lithium Corporation,NASDAQ,Stock,2021-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGMO,Sangamo Therapeutics Inc,NASDAQ,Stock,2000-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGMS,Scientific Games Corporation,NASDAQ,Stock,1992-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGOL,Aberdeen Standard Physical Gold Shares ETF,NYSE ARCA,ETF,2009-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGOV,iShares 0-3 Month Treasury Bond ETF,NYSE ARCA,ETF,2020-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGRP,Spar Group Inc,NASDAQ,Stock,1996-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGRY,Surgery Partners Inc,NASDAQ,Stock,2015-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGTX,Sigilon Therapeutics Inc,NASDAQ,Stock,2020-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SGU,Star Group L.P.,NYSE,Stock,1995-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SH,ProShares Short S&P500,NYSE ARCA,ETF,2006-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHAC,SCP & CO Healthcare Acquisition Co - Class A,NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHACU,SCP & CO Healthcare Acquisition Co - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHACW,SCP & CO Healthcare Acquisition Co - Warrants (27/10/2025),NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHAG,WisdomTree Yield Enhanced U.S. Short-Term Aggregate Bond Fund,BATS,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHAK,Shake Shack Inc - Class A,NYSE,Stock,2015-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHAP,Spree Acquisition Corp 1 Ltd - Class A,NYSE,Stock,2022-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHAP-U,Spree Acquisition Corp 1 Ltd - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHAP-WS,Spree Acquisition Corp 1 Ltd - Warrants (22/12/2028),NYSE,Stock,2022-02-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHBI,Shore Bancshares Inc,NASDAQ,Stock,2001-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHC,Sotera Health Company,NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHCA,Spindletop Health Acquisition Corp - Class A,NASDAQ,Stock,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHCAU,Spindletop Health Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHCAW,Spindletop Health Acquisition Corp - Warrants (04/11/2026),NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHCR,Sharecare Inc - Class A,NASDAQ,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHCRW,Sharecare Inc - Warrants (01/07/2026),NASDAQ,Stock,2020-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHE,SPDR SSGA Gender Diversity Index ETF,NYSE ARCA,ETF,2016-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHEL,Shell Plc ADR (Representing - ),NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHEL-W,Royal Dutch Shell PLC American Depositary Shares each representing two 2 WhenIssued,NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHEN,Shenandoah Telecommunications Company,NASDAQ,Stock,1999-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHFT,iClima Distributed Smart Energy ETF,NYSE ARCA,ETF,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHG,Shinhan Financial Group Co. Ltd,NYSE,Stock,2003-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHI,Sinopec Shanghai Petrochemical Co. Ltd,NYSE,Stock,1993-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHIP,Seanergy Maritime Holdings Corp,NASDAQ,Stock,2007-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHIPW,Seanergy Maritime Holdings Corp - Warrants - Class A (07/12/2021),NASDAQ,Stock,2016-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHIPZ,Seanergy Maritime Holdings Corp - Warrants - Class B (09/05/2022),NASDAQ,Stock,2019-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHLL-U,Hyliion Holdings Corporation - Unit (1 Ordinary share Cls A & 1/2 Wrt),NYSE,Stock,2019-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHLS,Shoals Technologies Group Inc - Class A,NASDAQ,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHLX,Shell Midstream Partners L.P.,NYSE,Stock,2014-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHM,SPDR Nuveen Bloomberg Short Term Municipal Bond ETF,NYSE ARCA,ETF,2007-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHO,Sunstone Hotel Investors Inc,NYSE,Stock,2004-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHO-P-H,Sunstone Hotel Investors Inc,NYSE,Stock,2021-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHO-P-I,Sunstone Hotel Investors Inc,NYSE,Stock,2021-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHOO,Steven Madden Ltd,NASDAQ,Stock,1993-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHOP,Shopify Inc - Class A,NYSE,Stock,2015-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHPW,Shapeways Holdings Inc,NYSE,Stock,2019-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHPW-WS,Shapeways Holdings Inc Redeemable Warrants each whole warrant exercisable for one share of Common Stock at an exercise price of 11.50,NYSE,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHQA,Shelter Acquisition Corp I - Class A,NASDAQ,Stock,2021-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHQAU,Shelter Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHQAW,Shelter Acquisition Corp I - Warrants (25/02/2026),NASDAQ,Stock,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHUAU,SHUAA Partners Acquisition Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHUS,Syntax Stratified U.S. Total Market Hedged ETF,NYSE ARCA,ETF,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHV,iShares Short Treasury Bond ETF,NASDAQ,ETF,2007-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHW,Sherwin-Williams Company,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHY,iShares 1-3 Year Treasury Bond ETF,NASDAQ,ETF,2002-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHYD,VANECK SHORT HIGH YIELD MUNI ETF ,BATS,ETF,2014-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHYF,Shyft Group Inc (The),NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHYG,iShares 0-5 Year High Yield Corporate Bond ETF,NYSE ARCA,ETF,2013-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SHYL,Xtrackers Short Duration High Yield Bond ETF,NYSE ARCA,ETF,2018-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SI,Silvergate Capital Corp - Class A,NYSE,Stock,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SI-P-A,Silvergate Capital Corp,NYSE,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIBN,SI-BONE Inc,NASDAQ,Stock,2018-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIC,Select Interior Concepts Inc - Class A,NASDAQ,Stock,2018-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SID,Companhia Siderurgica Nacional,NYSE,Stock,1996-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIDU,Sidus Space Inc - Class A,NASDAQ,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIEB,Siebert Financial Corp,NASDAQ,Stock,1980-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIEN,Sientra Inc,NASDAQ,Stock,2014-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIER,Sierra Lake Acquisition Corp - Class A,NASDAQ,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIERU,Sierra Lake Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIERW,Sierra Lake Acquisition Corp - Warrants (31/03/2028),NASDAQ,Stock,2021-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIF,SIFCO Industries Inc,NYSE MKT,Stock,1980-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIFI,HARBOR SCIENTIFIC ALPHA INCOME ETF ,NYSE ARCA,ETF,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIFY,Sify Technologies Ltd,NASDAQ,Stock,1999-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIG,Signet Jewelers Ltd,NYSE,Stock,1994-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIGA,SIGA Technologies Inc,NASDAQ,Stock,1997-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIGI,Selective Insurance Group Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIGIP,Selective Insurance Group Inc Depositary Shares each representing a 11000th interest in a share of 4.60 NonCumulative Preferred Stock Series B,NASDAQ,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIHY,HARBOR SCIENTIFIC ALPHA HIGH-YIELD ETF ,NYSE ARCA,ETF,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SII,Sprott Inc,NYSE,Stock,2020-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIJ,ProShares UltraShort Industrials,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIL,Global X Silver Miners ETF,NYSE ARCA,ETF,2010-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SILC,Silicom Ltd,NASDAQ,Stock,1994-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SILJ,ETFMG Prime Junior Silver Miners ETF,NYSE ARCA,ETF,2012-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SILK,Silk Road Medical Inc,NASDAQ,Stock,2019-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SILV,SilverCrest Metals Inc,NYSE MKT,Stock,2015-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SILX,ETFMG Prime 2X Daily Junior Silver Miners ETF,NYSE ARCA,ETF,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIM,Grupo Simec S.A.B. de C.V.,NYSE MKT,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIMO,Silicon Motion Technology Corp,NASDAQ,Stock,2005-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIMS,SPDR S&P Kensho Intelligent Structures ETF,NYSE ARCA,ETF,2017-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SINT,SINTX Technologies Inc,NASDAQ,Stock,2014-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SINV,ETFMG Prime 2X Daily Inverse Junior Silver Miners ETF,NYSE ARCA,ETF,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIOX,Sio Gene Therapies Inc,NASDAQ,Stock,2015-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIRE,Sisecam Resources LP,NYSE,Stock,2015-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIRI,Sirius XM Holdings Inc,NASDAQ,Stock,1994-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SISI,Shineco Inc,NASDAQ,Stock,2016-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SITC,SITE Centers Corp,NYSE,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SITC-P-A,SITE Centers Corp 6375 Class A Preferred Shares,NYSE,Stock,2017-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SITE,SiteOne Landscape Supply Inc,NYSE,Stock,2016-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SITM,SiTime Corp,NASDAQ,Stock,2019-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIVB,SVB Financial Group,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIVBP,SVB Financial Group,NASDAQ,Stock,2019-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIVR,Aberdeen Standard Physical Silver Shares ETF,NYSE ARCA,ETF,2009-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIX,Six Flags Entertainment Corp,NYSE,Stock,2010-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIXA,ETC 6 Meridian Mega Cap Equity ETF,NYSE ARCA,ETF,2020-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIXH,ETC 6 Meridian Hedged Equity Index Option ETF,NYSE ARCA,ETF,2020-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIXJ,AllianzIM U.S. Large Cap 6 Month Buffer10 Jan/Jul ETF,NYSE ARCA,ETF,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIXL,ETC 6 Meridian Low Beta Equity ETF,NYSE ARCA,ETF,2020-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIXO,AllianzIM U.S. Large Cap 6 Month Buffer10 Apr/Oct ETF,NYSE ARCA,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIXS,ETC 6 Meridian Small Cap Equity ETF,NYSE ARCA,ETF,2020-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SIZE,iShares MSCI USA Size Factor ETF,NYSE ARCA,ETF,2013-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJ,Scienjoy Holding Corporation - Class A,NASDAQ,Stock,2019-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJB,ProShares Short High Yield,NYSE ARCA,ETF,2011-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJI,South Jersey Industries Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJIJ,South Jersey Industries Inc. 5.625 NT REDEEM 16092079 USD 25,NYSE,Stock,2019-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJIV,South Jersey Industries Inc,NYSE,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJM,J.M. Smucker Company,NYSE,Stock,1994-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJNK,SPDR Bloomberg Short Term High Yield Bond ETF,NYSE ARCA,ETF,2012-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJR,Shaw Communications Inc - Class B,NYSE,Stock,1998-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJT,San Juan Basin Royalty Trust,NYSE,Stock,1987-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SJW,SJW Group,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKE,Skeena Resources Ltd,NYSE,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKF,ProShares UltraShort Financials,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKIL,Skillsoft Corp - Class A,NYSE,Stock,2019-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKIL-WS,Skillsoft Corp New Wt Exp 06112026,NYSE,Stock,2021-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKIN,Beauty Health Company (The) - Class A,NASDAQ,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKLZ,Skillz Inc - Class A,NYSE,Stock,2020-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKM,SK Telecom Co Ltd,NYSE,Stock,1996-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKOR,FlexShares Credit-Scored US Corporate Bond Index Fund,NASDAQ,ETF,2014-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKT,Tanger Factory Outlet Centers Inc,NYSE,Stock,1993-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKX,Skechers U S A Inc - Class A,NYSE,Stock,1999-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKY,Skyline Champion Corp,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYA,Skydeck Acquisition Corp - Class A,NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYAU,Skydeck Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYAW,Skydeck Acquisition Corp - Warrants (13/05/2026),NASDAQ,Stock,2021-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYH,Sky Harbour Group Corporation - Class A,NYSE MKT,Stock,2020-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYH-WS,Sky Harbour Group Corporation - Warrants (22/10/2025),NYSE MKT,Stock,2022-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYT,SkyWater Technology Inc,NASDAQ,Stock,2021-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYU,ProShares Ultra Nasdaq Cloud Computing ETF,NASDAQ,ETF,2021-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYW,Skywest Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYX,SQL Technologies Corp,NASDAQ,Stock,2016-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SKYY,First Trust Cloud Computing ETF,NASDAQ,ETF,2011-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLAB,Silicon Laboratories Inc,NASDAQ,Stock,2000-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLAC,Social Leverage Acquisition Corp I - Class A,NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLAC-U,Social Leverage Acquisition Corp I - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLAC-WS,Social Leverage Acquisition Corp I - Warrants (17/02/2028),NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLAM,Slam Corp - Class A,NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLAMU,Slam Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLAMW,Slam Corp - Warrants (23/02/2026),NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLB,Schlumberger Ltd,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLCA,U.S. Silica Holdings Inc,NYSE,Stock,2012-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLCR,Silver Crest Acquisition Corp - Class A,NASDAQ,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLCRU,Silver Crest Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLCRW,Silver Crest Acquisition Corp - Warrants (15/12/2025),NASDAQ,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLDB,Solid Biosciences Inc,NASDAQ,Stock,2018-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLDP,Solid Power Inc - Class A,NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLDPW,Solid Power Inc - Warrants (08/12/2026),NASDAQ,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLF,Sun Life Financial Inc,NYSE,Stock,2000-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLG,SL Green Realty Corp,NYSE,Stock,1997-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLG-P-I,SL Green Realty Corporation Preferred Series I,NYSE,Stock,2002-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLGC,SomaLogic Inc - Class A,NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLGCW,SomaLogic Inc - Warrants (31/08/2026),NASDAQ,Stock,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLGG,Super League Gaming Inc,NASDAQ,Stock,2019-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLGL,Sol-Gel Technologies Ltd,NASDAQ,Stock,2018-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLGN,Silgan Holdings Inc,NASDAQ,Stock,1997-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLHG,Skylight Health Group Inc,NASDAQ,Stock,2021-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLHGP,Skylight Health Group Inc,NASDAQ,Stock,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLI,Standard Lithium Ltd,NYSE MKT,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLM,SLM Corp,NASDAQ,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLMBP,SLM Corporation Floating Rate NonCumulative Preferred Stock Series B,NASDAQ,Stock,2005-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLN,Silence Therapeutics Plc,NASDAQ,Stock,2020-09-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLNG,Stabilis Solutions Inc,NASDAQ,Stock,2006-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLNH,Soluna Holdings Inc,NASDAQ,Stock,2009-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLNHP,Soluna Holdings Inc,NASDAQ,Stock,2021-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLNO,Soleno Therapeutics Inc,NASDAQ,Stock,2014-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLP,Simulations Plus Inc,NASDAQ,Stock,1997-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLQD,iShares 0-5 Year Investment Grade Corporate Bond ETF,NASDAQ,ETF,2013-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLQT,SelectQuote Inc,NYSE,Stock,2020-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLRC,SLR Investment Corp,NASDAQ,Stock,2010-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLRX,Salarius Pharmaceuticals Inc,NASDAQ,Stock,2015-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLS,SELLAS Life Sciences Group Inc,NASDAQ,Stock,2017-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLV,iShares Silver Trust,NYSE ARCA,ETF,2006-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLVM,Sylvamo Corp,NYSE,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLVM-W,Sylvamo Corporation When Issued,NYSE,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLVO,Credit Suisse AG Nassau Branch,NASDAQ,ETF,2013-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLVP,iShares MSCI Global Silver and Metals Miners ETF,BATS,ETF,2012-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLVR,SilverSPAC Inc - Class A,NASDAQ,Stock,2021-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLVRU,SilverSPAC Inc - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLVRW,SilverSPAC Inc - Warrants (09/09/2026),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLX,VanEck Steel ETF,NYSE ARCA,ETF,2006-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLY,SPDR S&P 600 Small Cap ETF,NYSE ARCA,ETF,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLYG,SPDR S&P 600 Small Cap Growth ETF,NYSE ARCA,ETF,2000-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SLYV,SPDR S&P 600 Small Cap Value ETF,NYSE ARCA,ETF,2000-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SM,SM Energy Company,NYSE,Stock,1992-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMAP,SportsMap Tech Acquisition Corp,NASDAQ,Stock,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMAPU,SportsMap Tech Acquisition Corp - Units (1 Ord Share & 3/4 War),NASDAQ,Stock,2021-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMAPW,SportsMap Tech Acquisition Corp - Warrants - (01/09/2027),NASDAQ,Stock,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMAR,Smartsheet Inc - Class A,NYSE,Stock,2018-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMB,VanEck Short Muni ETF,BATS,ETF,2008-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMBC,Southern Missouri Bancorp Inc,NASDAQ,Stock,1994-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMBK,SmartFinancial Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMCI,Super Micro Computer Inc,NASDAQ,Stock,2007-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMCP,ALPHAMARK ACTIVELY MANAGED SMALL CAP ETF ,NASDAQ,ETF,2015-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMDD,PROSHARES ULTRAPRO SHORT MIDCAP400 ,NYSE ARCA,ETF,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMDV,ProShares Russell 2000 Div Growers ETF,BATS,ETF,2015-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMDY,Syntax Stratified MidCap ETF,NYSE ARCA,ETF,2020-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMED,Sharps Compliance Corp,NASDAQ,Stock,1999-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMFG,Sumitomo Mitsui Financial Group Inc,NYSE,Stock,2006-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMFL,Smart for Life Inc,NASDAQ,Stock,2022-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMFR,Sema4 Holdings Corp - Class A,NASDAQ,Stock,2020-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMFRW,Sema4 Holdings Corp - Warrants (22/07/2026),NASDAQ,Stock,2020-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMG,Scotts Miracle-Gro Company - Class A,NYSE,Stock,1992-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMH,VanEck Semiconductor ETF,NASDAQ,ETF,2000-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMHB,UBS AG London Branch FR SP ETRACS REDEEM 10112048 USD 25 Ser B,NYSE ARCA,ETF,2018-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMHI,SEACOR Marine Holdings Inc,NYSE,Stock,2017-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMI,VANECK HIP SUSTAINABLE MUNI ETF ,BATS,ETF,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMID,Smith-Midland Corp,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMIG,AAM Bahl & Gaynor Small/Mid Cap Income Growth ETF,NYSE ARCA,ETF,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMIH,Summit Healthcare Acquisition Corp - Class A,NASDAQ,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMIHU,Summit Healthcare Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMIHW,Summit Healthcare Acquisition Corp - Warrants (03/06/2026),NASDAQ,Stock,2021-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMIN,iShares MSCI India Small-Cap ETF,BATS,ETF,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMIT,Schmitt Industries Inc,NASDAQ,Stock,1995-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMLE,XTRACKERS S&P SMALLCAP 600 ESG ETF ,NYSE ARCA,ETF,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMLF,iShares MSCI USA Small-Cap Multifactor ETF,NYSE ARCA,ETF,2015-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMLP,Summit Midstream Partners LP,NYSE,Stock,2012-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMLR,Semler Scientific Inc,NASDAQ,Stock,2014-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMLV,SPDR SSGA US Small Cap Low Volatility Index ETF,NYSE ARCA,ETF,2013-02-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMM,Salient Midstream & MLP Fund,NYSE,ETF,2012-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMMD,iShares Russell 2500 ETF,BATS,ETF,2017-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMMF,Summit Financial Group Inc,NASDAQ,Stock,2000-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMMT,Summit Therapeutics Inc,NASDAQ,Stock,2015-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMMU,PIMCO Short Term Municipal Bond Active Exchange-Traded Fund,NYSE ARCA,ETF,2010-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMMV,iShares MSCI USA Small-Cap Min Vol Factor ETF,BATS,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMN,ProShares UltraShort Basic Materials,NYSE ARCA,ETF,2007-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMOG,VANECK LOW CARBON ENERGY ETF ,NYSE ARCA,ETF,2007-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMP,Standard Motor Products Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMPL,Simply Good Foods Company,NASDAQ,Stock,2017-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMRT,SmartRent Inc,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMSI,Smith Micro Software Inc,NASDAQ,Stock,1995-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMTC,Semtech Corp,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMTI,Sanara MedTech Inc,NASDAQ,Stock,2011-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMTS,Sierra Metals Inc,NYSE MKT,Stock,2017-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SMWB,Similarweb Ltd,NYSE,Stock,2021-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNA,Snap-on Inc,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNAP,Snap Inc - Class A,NYSE,Stock,2017-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNAX,Stryve Foods Inc - Class A,NASDAQ,Stock,2015-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNAXW,Stryve Foods Inc - Warrants (20/07/2026),NASDAQ,Stock,2015-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNBR,Sleep Number Corp,NASDAQ,Stock,1998-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNCE,Science 37 Holdings Inc,NASDAQ,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNCR,Synchronoss Technologies Inc,NASDAQ,Stock,2006-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNCRL,Synchronoss Technologies Inc,NASDAQ,Stock,2021-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNCY,Sun Country Airlines Holdings Inc,NASDAQ,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SND,Smart Sand Inc,NASDAQ,Stock,2016-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNDA,Sonida Senior Living Inc,NYSE,Stock,1997-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNDL,Sundial Growers Inc,NASDAQ,Stock,2019-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNDR,Schneider National Inc - Class B,NYSE,Stock,2017-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNDX,Syndax Pharmaceuticals Inc,NASDAQ,Stock,2016-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNES,SenesTech Inc,NASDAQ,Stock,2016-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNEX,StoneX Group Inc,NASDAQ,Stock,1996-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNFCA,Security National Financial Corp - Class A,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNGX,Soligenix Inc,NASDAQ,Stock,2012-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNLN,Highland/iBoxx Senior Loan ETF,NASDAQ,ETF,2012-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNMP,Evolve Transition Infrastructure LP,NYSE MKT,Stock,2006-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNN,Smith & Nephew plc,NYSE,Stock,1999-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNOA,Sonoma Pharmaceuticals Inc,NASDAQ,Stock,2007-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNOAW,Sonoma Pharmaceuticals Inc Warrants,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNOW,Snowflake Inc - Class A,NYSE,Stock,2020-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNP,China Petroleum & Chemical Corp,NYSE,Stock,2000-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNPE,Xtrackers S&P 500 ESG ETF,NYSE ARCA,ETF,2019-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNPO,Snap One Holdings Corp,NASDAQ,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNPS,Synopsys Inc,NASDAQ,Stock,1992-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNPX,Synaptogenix Inc,NASDAQ,Stock,2020-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNRH,Senior Connect Acquisition Corp I - Class A,NASDAQ,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNRHU,Senior Connect Acquisition Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNRHW,Senior Connect Acquisition Corp I - Warrants (09/12/2025),NASDAQ,Stock,2021-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNSE,Sensei Biotherapeutics Inc,NASDAQ,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNSR,Global X Funds Global X Internet of Things ETF,NASDAQ,ETF,2016-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNT,Senstar Technologies Ltd,NASDAQ,Stock,1993-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNTG,Sentage Holdings Inc,NASDAQ,Stock,2021-07-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNUG,Merlyn.AI Tactical Growth and Income ETF,NASDAQ,ETF,2020-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNV,Synovus Financial Corp,NYSE,Stock,1990-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNV-P-D,Synovus Financial Corp,NYSE,Stock,2018-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNV-P-E,Synovus Financial Corp,NYSE,Stock,2019-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNX,TD Synnex Corp,NYSE,Stock,2003-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SNY,Sanofi,NASDAQ,Stock,2002-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SO,Southern Company,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SO 6.75 08-01-22,Southern Company Unit Series A 2019,NYSE,Stock,2019-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOAC-U,Sustainable Opportunities Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOCL,Global X Social Media ETF,NASDAQ,ETF,2011-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOFI,SoFi Technologies Inc,NASDAQ,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOFO,Sonic Foundry Inc,NASDAQ,Stock,1998-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOGU,The Short De-SPAC ETF,NASDAQ,ETF,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOHO,Sotherly Hotels Inc,NASDAQ,Stock,2004-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOHOB,Sotherly Hotels Inc 80 Series B Cumulative Redeemable Perpetual Preferred Stock,NASDAQ,Stock,2016-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOHON,Sotherly Hotels Inc Perp Pfd Ser D,NASDAQ,Stock,2019-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOHOO,Sotherly Hotels Inc 7875 Series C Cumulative Redeemable Perpetual Preferred Stock,NASDAQ,Stock,2017-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOHU,Sohu.com Ltd,NASDAQ,Stock,2000-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOI,Solaris Oilfield Infrastructure Inc - Class A,NYSE,Stock,2017-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOJB,Southern Company,NYSE,Stock,2016-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOJC,Southern Company,NYSE,Stock,2017-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOJD,,NYSE,Stock,2020-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOJE,Southern Company,NYSE,Stock,2020-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOL,Renesola,NYSE,Stock,2008-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOLO,Electrameccanica Vehicles Corp,NASDAQ,Stock,2018-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOLOW,Electrameccanica Vehicles Corp - Warrants (03/08/2023),NASDAQ,Stock,2018-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOLR,SmartETFs Sustainable Energy II ETF,NYSE ARCA,ETF,2020-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SON,Sonoco Products Company,NYSE,Stock,1985-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOND,Sonder Holdings Inc - Class A,NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SONDW,Sonder Holdings Inc - Warrants (18/01/2027),NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SONM,Sonim Technologies Inc,NASDAQ,Stock,2019-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SONN,Sonnet BioTherapeutics Holdings Inc,NASDAQ,Stock,2006-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SONO,Sonos Inc,NASDAQ,Stock,2018-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SONX,Sonendo Inc,NYSE,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SONY,Sony Group Corporation,NYSE,Stock,1974-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOPA,Society Pass Inc,NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOPH,SOPHiA Genetics SA,NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOR,Source Capital Inc,NYSE,ETF,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOS,SOS Ltd,NYSE,Stock,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOTK,Sono-Tek Corp,NASDAQ,Stock,1996-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOVO,Sovos Brands Inc,NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOXL,Direxion Daily Semiconductor Bull 3X Shares,NYSE ARCA,ETF,2010-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOXQ,Invesco PHLX Semiconductor ETF,NASDAQ,ETF,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOXS,Direxion Daily Semiconductor Bear 3X Shares,NYSE ARCA,ETF,2010-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOXX,iShares Semiconductor ETF,NASDAQ,ETF,2001-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SOYB,Teucrium Soybean Fund,NYSE ARCA,ETF,2011-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SP,SP Plus Corp,NASDAQ,Stock,2004-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPAB,SPDR Portfolio Aggregate Bond ETF,NYSE ARCA,ETF,2007-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPAK,Defiance Next Gen SPAC Derived ETF,NYSE ARCA,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPAX,Robinson Alternative Yield Pre-merger SPAC ETF,NYSE ARCA,ETF,2021-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPB,Spectrum Brands Holdings Inc,NYSE,Stock,2009-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPBC,SIMPLIFY U.S. EQUITY PLUS GBTC ETF ,NASDAQ,ETF,2021-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPBO,SPDR Portfolio Corporate Bond ETF,NYSE ARCA,ETF,2011-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPC,CrossingBridge Pre-Merger SPAC ETF,NASDAQ,ETF,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPCB,SuperCom Ltd,NASDAQ,Stock,2005-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPCE,Virgin Galactic Holdings Inc - Class A,NYSE,Stock,2017-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPCE-WS,,NYSE,Stock,2019-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPCMU,Sound Point Acquisition Corp I Ltd - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPCX,The SPAC and New Issue ETF,NASDAQ,ETF,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPD,Simplify US Equity PLUS Downside Convexity ETF,NYSE ARCA,ETF,2020-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPDN,Direxion Daily S&P 500 Bear 1X Shares,NYSE ARCA,ETF,2016-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPDV,AAM S&P 500 High Dividend Value ETF,NYSE ARCA,ETF,2017-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPDW,SPDR Portfolio Developed World ex-US ETF,NYSE ARCA,ETF,2007-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPE,Special Opportunities Fund Inc,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPE-P-C,Special Opportunities Fund Inc,NYSE,Stock,2022-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPE-R-W,Special Opportunities Fund Inc Rights expiring January 21 2022 Rights when issued,NYSE,Stock,2021-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPEM,SPDR Portfolio Emerging Markets ETF,NYSE ARCA,ETF,2007-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPEU,SPDR Portfolio Europe ETF,NYSE ARCA,ETF,2002-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPFF,Global X SuperIncome Preferred ETF,NYSE ARCA,ETF,2012-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPFI,South Plains Financial Inc,NASDAQ,Stock,2019-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPG,Simon Property Group Inc,NYSE,Stock,1993-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPG-P-J,Simon Property Group Inc,NYSE,Stock,2002-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPGI,S&P Global Inc,NYSE,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPGM,SPDR Portfolio MSCI Global Stock Market ETF,NYSE ARCA,ETF,2012-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPGP,Invesco S&P 500 GARP ETF,NYSE ARCA,ETF,2011-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPGS,Simon Property Group Acquisition Holdings Inc - Class A,NYSE,Stock,2021-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPGS-U,Simon Property Group Acquisition Holdings Inc - Units (1 Ord Class A & 1/5 War),NYSE,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPGS-WS,Simon Property Group Acquisition Holdings Inc - Warrants (04/02/2026),NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPH,Suburban Propane Partners LP,NYSE,Stock,1996-02-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPHB,Invesco S&P 500 High Beta ETF,NYSE ARCA,ETF,2011-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPHD,Invesco S&P 500 High Dividend Low Volatility ETF,NYSE ARCA,ETF,2012-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPHQ,Invesco S&P 500 Quality ETF,NYSE ARCA,ETF,2005-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPHY,SPDR Portfolio High Yield Bond ETF,NYSE ARCA,ETF,2012-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPI,SPI Energy Co Ltd,NASDAQ,Stock,2016-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPIB,SPDR Portfolio Intermediate Term Corporate Bond ETF,NYSE ARCA,ETF,2009-02-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPIP,SPDR Portfolio TIPS ETF,NYSE ARCA,ETF,2007-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPIR,Spire Global Inc - Class A,NYSE,Stock,2020-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPIR-WS,Spire Global Inc Warrants,NYSE,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPK,SPK Acquisition Corp,NASDAQ,Stock,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPKAR,SPK Acquisition Corp,NASDAQ,Stock,2021-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPKAU,SPK Acquisition Corp - Units (1 Ord & 1 Right),NASDAQ,Stock,2021-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPKB,Silver Spike Acquisition Corp II - Class A,NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPKBU,Silver Spike Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPKBW,Silver Spike Acquisition Corp II - Warrants (26/02/2026),NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPLB,SPDR Portfolio Long Term Corporate Bond ETF,NYSE ARCA,ETF,2009-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPLG,SPDR Portfolio S&P 500 ETF,NYSE ARCA,ETF,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPLK,Splunk Inc,NASDAQ,Stock,2012-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPLP,Steel Partners Holdings LP,NYSE,Stock,2012-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPLP-P-A,Steel Partners Holdings LP,NYSE,Stock,2017-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPLV,Invesco S&P 500 Low Volatility ETF,NYSE ARCA,ETF,2011-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPMB,SPDR Portfolio Mortgage Backed Bond ETF,NYSE ARCA,ETF,2009-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPMD,SPDR Portfolio S&P 400 Mid Cap ETF,NYSE ARCA,ETF,2005-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPMO,Invesco S&P 500 Momentum ETF,NYSE ARCA,ETF,2015-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPMV,Invesco S&P 500 Minimum Variance ETF,BATS,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPNE,SeaSpine Holdings Corp,NASDAQ,Stock,2015-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPNS,Sapiens International Corp NV,NASDAQ,Stock,1998-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPNT,SiriusPoint Ltd,NYSE,Stock,2013-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPNT-P-B,SiriusPoint Ltd,NYSE,Stock,2021-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPOK,Spok Holdings Inc,NASDAQ,Stock,2004-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPOT,Spotify Technology S.A.,NYSE,Stock,2018-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPPI,Spectrum Pharmaceuticals Inc,NASDAQ,Stock,1996-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPPP,Sprott Physical Platinum and Palladium Trust,NYSE ARCA,ETF,2012-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPR,Spirit Aerosystems Holdings Inc - Class A,NYSE,Stock,2006-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPRB,Spruce Biosciences Inc,NASDAQ,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPRC,SciSparc Ltd,NASDAQ,Stock,2021-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPRE,SP Funds S&P Global REIT Sharia ETF,NYSE ARCA,ETF,2020-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPRO,Spero Therapeutics Inc,NASDAQ,Stock,2004-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPRX,Spear Alpha ETF,NASDAQ,ETF,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPSB,SPDR Portfolio Short Term Corporate Bond ETF,NYSE ARCA,ETF,2009-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPSC,SPS Commerce Inc,NASDAQ,Stock,2010-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPSK,SP Funds Dow Jones Global Sukuk ETF,NYSE ARCA,ETF,2019-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPSM,SPDR Portfolio S&P 600 Small Cap ETF,NYSE ARCA,ETF,2017-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPT,Sprout Social Inc Class A,NASDAQ,Stock,2019-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPTI,SPDR Portfolio Intermediate Term Treasury ETF,NYSE ARCA,ETF,2007-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPTK,SportsTek Acquisition Corp - Class A,NASDAQ,Stock,2021-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPTKU,SportsTek Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPTKW,SportsTek Acquisition Corp - Warrants (16/02/2028),NASDAQ,Stock,2021-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPTL,SPDR Portfolio Long Term Treasury ETF,NYSE ARCA,ETF,2007-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPTM,SPDR Portfolio S&P 1500 Composite Stock Market ETF,NYSE ARCA,ETF,2000-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPTN,SpartanNash Company,NASDAQ,Stock,2000-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPTS,SPDR Portfolio Short Term Treasury ETF,NYSE ARCA,ETF,2011-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPUC,Simplify US Equity PLUS Upside Convexity ETF,NYSE ARCA,ETF,2020-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPUS,SP Funds S&P 500 Sharia Industry Exclusions ETF,NYSE ARCA,ETF,2019-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPUU,Direxion Daily S&P 500 Bull 2X Shares,NYSE ARCA,ETF,2014-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPVM,Invesco Russell Top 200 Pure Value ETF,NYSE ARCA,ETF,2011-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPVU,Invesco S&P 500 Enhanced Value ETF,NYSE ARCA,ETF,2015-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPWH,Sportsman`s Warehouse Holdings Inc,NASDAQ,Stock,2014-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPWR,Sunpower Corp,NASDAQ,Stock,2005-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXB,ProShares S&P 500 Bond ETF,NYSE ARCA,ETF,2018-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXC,SPX Corp,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXE,S&P 500 EX-ENERGY ETF ,NYSE ARCA,ETF,2015-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXL,Direxion Daily S&P 500 Bull 3X Shares,NYSE ARCA,ETF,2008-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXN,S&P 500 EX-FINANCIALS ETF ,NYSE ARCA,ETF,2015-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXS,Direxion Daily S&P 500 Bear 3X Shares,NYSE ARCA,ETF,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXT,ProShares S&P 500 Ex-Technology ETF,NYSE ARCA,ETF,2015-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXU,ProShares UltraPro Short S&P 500 ETF,NYSE ARCA,ETF,2009-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXV,S&P 500 EX-HEALTH CARE ETF ,NYSE ARCA,ETF,2015-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXX,Nuveen S&P 500 Dynamic Overwrite Fund,NYSE,ETF,2005-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPXZ,Morgan Creek - Exos SPAC Originated ETF,NYSE ARCA,ETF,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPY,S&P 500 ETF TRUST ETF,NYSE ARCA,ETF,1993-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPYC,Simplify US Equity PLUS Convexity ETF,NYSE ARCA,ETF,2020-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPYD,SPDR Portfolio S&P 500 High Dividend ETF,NYSE ARCA,ETF,2015-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPYG,SPDR Portfolio S&P 500 Growth ETF,NYSE ARCA,ETF,2000-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPYV,SPDR Portfolio S&P 500 Value ETF,NYSE ARCA,ETF,2000-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SPYX,SSGA SPDR S&P 500 Fossil Fuel Free ETF,NYSE ARCA,ETF,2015-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQ,Block Inc - Class A,NYSE,Stock,2015-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQEW,LeaderShares Equity Skew ETF,NYSE ARCA,ETF,2020-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQFT,Presidio Property Trust Inc - Class A,NASDAQ,Stock,2020-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQFTP,Presidio Property Trust Inc,NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQFTW,Presidio Property Trust Inc - Warrants (24/01/2027),NASDAQ,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQL,SeqLL Inc,NASDAQ,Stock,2021-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQLLW,SeqLL Inc - Warrants (06/08/2026),NASDAQ,Stock,2021-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQLV,Legg Mason Small-Cap Quality Value ETF,NASDAQ,ETF,2017-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQM,Sociedad Quimica Y Minera de Chile S.A.,NYSE,Stock,1993-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQM-R,Sociedad Quimica y Minera S.A. Rights expires April 19 2021,NYSE,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQM-R-W,Sociedad Quimica y Minera S.A. Rights expires April 19 2021 When Issued,NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQNS,Sequans Communications S.A,NYSE,Stock,2011-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQQQ,ProShares UltraPro Short QQQ,NASDAQ,ETF,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQSP,Squarespace Inc - Class A,NYSE,Stock,2021-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SQZ,SQZ Biotechnologies Company,NYSE,Stock,2020-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SR,Spire Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SR-P-A,Spire Inc Depositary Shares Series A,NYSE,Stock,2019-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRAD,Sportradar Group AG - Class A,NASDAQ,Stock,2021-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRAX,SRAX Inc - Class A,NASDAQ,Stock,2012-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRC,Spirit Realty Capital Inc,NYSE,Stock,2012-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRC-P-A,Spirit Realty Capital Inc,NYSE,Stock,2017-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRCE,1st Source Corp,NASDAQ,Stock,1996-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRCL,Stericycle Inc,NASDAQ,Stock,1996-08-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRDX,Surmodics Inc,NASDAQ,Stock,1998-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRE,Sempra Energy,NYSE,Stock,1998-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SREA,Sempra Energy,NYSE,Stock,2019-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRET,Global X SuperDividend REIT ETF,NASDAQ,ETF,2015-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SREV,ServiceSource International Inc,NASDAQ,Stock,2011-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRF,Cushing Royalty Income Fund,NYSE,ETF,2012-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRG,Seritage Growth Properties - Class A,NYSE,Stock,2015-07-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRG-P-A,Seritage Growth Properties,NYSE,Stock,2017-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRGA,Surgalign Holdings Inc,NASDAQ,Stock,2000-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRI,Stoneridge Inc,NYSE,Stock,1997-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRL,Scully Royalty Ltd,NYSE,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRLN,SPDR Blackstone Senior Loan ETF,NYSE ARCA,ETF,2013-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRLP,Sprague Resources LP,NYSE,Stock,2013-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRNE,Sorrento Therapeutics Inc,NASDAQ,Stock,2007-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRPT,Sarepta Therapeutics Inc,NASDAQ,Stock,1997-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRRA,Sierra Oncology Inc,NASDAQ,Stock,2015-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRRK,Scholar Rock Holding Corp,NASDAQ,Stock,2018-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRS,ProShares UltraShort Real Estate,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRSA,Sarissa Capital Acquisition Corp - Class A,NASDAQ,Stock,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRSAU,Sarissa Capital Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRSAW,Sarissa Capital Acquisition Corp - Warrants (20/10/2025),NASDAQ,Stock,2020-12-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRT,Startek Inc,NYSE,Stock,1997-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRTS,Sensus Healthcare Inc,NASDAQ,Stock,2016-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRTY,ProShares UltraPro Short Russell2000,NYSE ARCA,ETF,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRV,Cushing MLP & Infrastructure Total Return Fund,NYSE,ETF,2007-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRVR,Pacer Benchmark Data & Infrastructure Real Estate SCTR ETF,NYSE ARCA,ETF,2018-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRZN,Surrozen Inc,NASDAQ,Stock,2021-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SRZNW,Surrozen Inc - Warrants (01/08/2026),NASDAQ,Stock,2021-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSAA,Science Strategic Acquisition Corp Alpha - Class A,NASDAQ,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSAAU,Science Strategic Acquisition Corp Alpha - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSAAW,Science Strategic Acquisition Corp Alpha - Warrants (20/01/2026),NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSB,SouthState Corporation,NASDAQ,Stock,1997-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSBI,Summit State Bank,NASDAQ,Stock,2006-07-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSBK,Southern States Bancshares Inc,NASDAQ,Stock,2021-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSD,Simpson Manufacturing Co. Inc,NYSE,Stock,1994-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSFI,Day Hagan/Ned Davis Research Smart Sector Fixed Income ETF,NYSE ARCA,ETF,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSG,ProShares UltraShort Semiconductors,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSIC,Silver Spike Investment Corp,NASDAQ,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSKN,STRATA Skin Sciences Inc,NASDAQ,Stock,2005-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSL,Sasol Ltd,NYSE,Stock,1982-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSLY,Syntax Stratified SmallCap ETF,NYSE ARCA,ETF,2020-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSNC,SS&C Technologies Holdings Inc,NASDAQ,Stock,2010-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSNT,SilverSun Technologies Inc,NASDAQ,Stock,2012-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSO,ProShares Ultra S&P500,NYSE ARCA,ETF,2006-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSP,E.W. Scripps Co. - Class A,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSPX,JANUS HENDERSON U.S. SUSTAINABLE EQUITY ETF ,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSPY,Syntax Stratified LargeCap ETF,NYSE ARCA,ETF,2019-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSRM,SSR Mining Inc,NASDAQ,Stock,1996-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSSS,SuRo Capital Corp,NASDAQ,Stock,2011-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSSSL,SuRo Capital Corp,NASDAQ,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SST,System1 Inc - Class A,NYSE,Stock,2020-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SST-WS,System1 Inc - Warrants (01/01/9999),NYSE,Stock,2020-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSTI,ShotSpotter Inc,NASDAQ,Stock,2017-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSTK,Shutterstock Inc,NYSE,Stock,2012-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSU,SIGNA Sports United N.V.,NYSE,Stock,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSU-WS,SIGNA Sports United N.V. - Warrants (06/08/2025),NYSE,Stock,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSUS,Day Hagan/Ned Davis Research Smart Sector ETF,NYSE ARCA,ETF,2020-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSWA,Seaspan Corporation 7125 Notes due 2027,NYSE,Stock,2017-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSY,Sunlink Health Systems Inc,NYSE MKT,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SSYS,Stratasys Ltd,NASDAQ,Stock,1994-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ST,Sensata Technologies Holding Plc,NYSE,Stock,2010-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STAA,Staar Surgical Company,NASDAQ,Stock,1992-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STAB,Statera BioPharma Inc,NASDAQ,Stock,2006-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STAF,Staffing 360 Solutions Inc,NASDAQ,Stock,2013-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STAG,STAG Industrial Inc,NYSE,Stock,2011-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STAR,iStar Inc,NYSE,Stock,1989-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STAR-P-D,iStar Inc,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STAR-P-G,iStar Inc Series G Cumulative Redeemable Preferred Stock,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STAR-P-I,iStar Inc Series I Cumulative Redeemable Preferred Stock,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STBA,S & T Bancorp Inc,NASDAQ,Stock,1992-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STBL,DRIVEWEALTH STEADY SAVER ETF ,NYSE ARCA,ETF,2021-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STC,Stewart Information Services Corp,NYSE,Stock,1990-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STCN,Steel Connect Inc,NASDAQ,Stock,2018-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STE,Steris Plc,NYSE,Stock,1992-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STEM,Stem Inc - Class A,NYSE,Stock,2020-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STEM-WS,Stem Inc Wt Exp,NYSE,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STEP,StepStone Group Inc - Class A,NASDAQ,Stock,2020-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STER,Sterling Check Corp,NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STET,ST Energy Transition I Ltd - Class A,NYSE,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STET-U,ST Energy Transition I Ltd - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STET-WS,ST Energy Transition I Ltd - Warrants (02/12/2026),NYSE,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STG,Sunlands Technology Group,NYSE,Stock,2018-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STGW,Stagwell Inc - Class A,NASDAQ,Stock,2021-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STIM,Neuronetics Inc,NASDAQ,Stock,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STIP,iShares 0-5 Year TIPS Bond ETF,NYSE ARCA,ETF,2010-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STK,Columbia Seligman Premium Technology Growth Fund Inc,NYSE,ETF,2009-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STKL,Sunopta Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STKS,ONE Group Hospitality Inc,NASDAQ,Stock,2014-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STLA,Stellantis N.V,NYSE,Stock,2010-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STLD,Steel Dynamics Inc,NASDAQ,Stock,1996-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STLG,iShares Factors US Growth Style ETF,BATS,ETF,2020-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STLV,iShares Factors US Value Style ETF,BATS,ETF,2020-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STM,ST Microelectronics,NYSE,Stock,1994-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STN,Stantec Inc,NYSE,Stock,2005-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STNC,Stance Equity ESG Large Cap Core ETF,NYSE ARCA,ETF,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STNE,StoneCo Ltd - Class A,NASDAQ,Stock,2018-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STNEV,StoneCo Ltd,NASDAQ,Stock,2021-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STNG,Scorpio Tankers Inc,NYSE,Stock,2010-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STOK,Stoke Therapeutics Inc,NASDAQ,Stock,2019-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STON,StoneMor Inc,NYSE,Stock,2004-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STOR,Store Capital Corp,NYSE,Stock,2014-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STOT,SPDR DoubleLine Short Duration Total Return Tactical ETF,BATS,ETF,2016-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STPZ,PIMCO 1-5 Year U.S. TIPS Index Exchange-Traded Fund,NYSE ARCA,ETF,2009-08-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRA,Strategic Education Inc,NASDAQ,Stock,1996-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRC,Sarcos Technology and Robotics Corporation,NASDAQ,Stock,2021-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRCW,Sarcos Technology and Robotics Corporation - Warrants (24/09/2026),NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRE,Supernova Partners Acquisition Co III Ltd - Class A,NYSE,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRE-U,Supernova Partners Acquisition Co III Ltd - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRE-WS,Supernova Partners Acquisition Co III Ltd - Warrants (01/01/9999),NYSE,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRL,Sterling Construction Company Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRM,Streamline Health Solutions Inc,NASDAQ,Stock,1996-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRN,Stran & Company Inc,NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRNW,Stran & Company Inc - Warrants (01/11/2026),NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRO,Sutro Biopharma Inc,NASDAQ,Stock,2018-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRR,Star Equity Holdings Inc,NASDAQ,Stock,2004-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRRP,Star Equity Holdings Inc,NASDAQ,Stock,2019-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRS,Stratus Properties Inc,NASDAQ,Stock,1993-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STRT,Strattec Security Corp,NASDAQ,Stock,1995-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STSA,Satsuma Pharmaceuticals Inc,NASDAQ,Stock,2019-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STT,State Street Corp,NYSE,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STT-P-C,State Street Corporation Dep Shs Representing 14000 Ownership Int In Sh Non Cum Perpertual Pfd Stk Ser C,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STT-P-C-CL,State Street Corporation Dep Shs,NYSE,Stock,2020-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STT-P-D,State Street Corp,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STT-P-G,State Street Corp,NYSE,Stock,2007-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STTK,Shattuck Labs Inc,NASDAQ,Stock,2020-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STVN,Stevanato Group Spa,NYSE,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STWD,Starwood Property Trust Inc,NYSE,Stock,2009-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STWO,ESS Tech Inc - Class A,NASDAQ,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STX,Seagate Technology Holdings Plc,NASDAQ,Stock,2002-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STXB,Spirit of Texas Bancshares Inc,NASDAQ,Stock,2018-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STXS,Stereotaxis Inc,NYSE MKT,Stock,2004-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STZ,Constellation Brands Inc - Class A,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "STZ-B,Constellation Brands Inc - Class B,NYSE,Stock,2002-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SU,Suncor Energy Inc,NYSE,Stock,1993-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUAC,ShoulderUp Technology Acquisition Corp - Class A,NYSE,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUAC-U,ShoulderUp Technology Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUAC-WS,ShoulderUp Technology Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUB,iShares Short-Term National Muni Bond ETF,NYSE ARCA,ETF,2008-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUBS,Fount Subscription Economy ETF,NYSE ARCA,ETF,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUBZ,Roundhill Streaming Services & Technology ETF,NYSE ARCA,ETF,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUI,Sun Communities Inc,NYSE,Stock,1993-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUM,Summit Materials Inc - Class A,NYSE,Stock,2015-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUMO,Sumo Logic Inc,NASDAQ,Stock,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUMR,Summer Infant Inc,NASDAQ,Stock,2007-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUN,Sunoco LP,NYSE,Stock,2012-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUNL,Sunlight Financial Holdings Inc - Class A,NYSE,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUNL-WS,Sunlight Financial Holdings Inc Wt Exp 11282025,NYSE,Stock,2021-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUNS,SLR Senior Investment Corp,NASDAQ,Stock,2011-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUNW,Sunworks Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUP,Superior Industries International Inc,NYSE,Stock,1985-07-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUPN,Supernus Pharmaceuticals Inc,NASDAQ,Stock,2012-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUPV,Grupo Supervielle S.A.,NYSE,Stock,2016-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SURF,Surface Oncology Inc,NASDAQ,Stock,2018-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SURG,Surgepays Inc,NASDAQ,Stock,2005-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SURGW,Surgepays Inc - Warrants (22/10/2024),NASDAQ,Stock,2021-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUSA,MSCI USA ESG Select ETF,NYSE ARCA,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUSB,iShares Trust iShares ESG Aware 1-5 Year USD Corporate Bond ETF,NASDAQ,ETF,2017-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUSC,iShares Trust iShares ESG Aware USD Corporate Bond ETF,NASDAQ,ETF,2017-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUSL,iShares ESG MSCI USA Leaders ETF,NASDAQ,ETF,2019-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SUZ,Suzano S.A.,NYSE,Stock,2007-08-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SV,Spring Valley Acquisition Corp - Class A,NASDAQ,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVA,Sinovac Biotech Ltd,NASDAQ,Stock,2003-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVAL,iShares US Small Cap Value Factor ETF,BATS,ETF,2020-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVC,Service Properties Trust,NASDAQ,Stock,1995-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVFA,SVF Investment Corp - Class A,NASDAQ,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVFAU,SVF Investment Corp - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVFAW,SVF Investment Corp - Warrants (20/12/2025),NASDAQ,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVFB,SVF Investment Corp 2 - Class A,NASDAQ,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVFC,SVF Investment Corp 3 - Class A,NASDAQ,Stock,2021-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVFD,Save Foods Inc,NASDAQ,Stock,2017-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVM,Silvercorp Metals Inc,NYSE MKT,Stock,2005-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVNA,7 Acquisition Corp - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVNAU,7 Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVNAW,7 Acquisition Corp - Warrants (05/11/2026),NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVOK,,NASDAQ,Stock,2021-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVOL,Simplify Volatility Premium ETF,NYSE ARCA,ETF,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVRA,Savara Inc,NASDAQ,Stock,2004-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVSVU,Spring Valley Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVSVW,Spring Valley Acquisition Corp - Warrants (11/11/2025),NASDAQ,Stock,2020-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVT,Servotronics Inc,NYSE MKT,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVVC,Firsthand Technology Value Fund Inc,NASDAQ,Stock,2011-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SVXY,ProShares Short VIX Short-Term Futures ETF,BATS,ETF,2011-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWAG,Software Acquisition Group Inc III - Class A,NASDAQ,Stock,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWAGU,Software Acquisition Group Inc III - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWAGW,Software Acquisition Group Inc III - Warrants (01/03/2028),NASDAQ,Stock,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWAN,Amplify BlackSwan Growth & Treasury Core ETF,NYSE ARCA,ETF,2018-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWAR,Direxion Daily Software Bull 2X Shares,NYSE ARCA,ETF,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWAV,ShockWave Medical Inc,NASDAQ,Stock,2019-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWBI,Smith & Wesson Brands Inc,NASDAQ,Stock,1999-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWBIV,Smith & Wesson Brands Inc,NASDAQ,Stock,2020-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWCH,Switch Inc - Class A,NYSE,Stock,2017-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWET,Athlon Acquisition Corp - Class A,NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWETU,Athlon Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWETW,Athlon Acquisition Corp - Warrants (12/01/2026),NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWI,SolarWinds Corp,NYSE,Stock,2018-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWI-W,SolarWinds Corporation ExDistribution When Issued,NYSE,Stock,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWIM,Latham Group Inc,NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWIR,Sierra Wireless Inc,NASDAQ,Stock,2000-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWJ-CL,Stanley Black Decker Inc 575 Junior Subordinated Debenture due 2052,NYSE,Stock,2012-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWK,Stanley Black & Decker Inc,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWKH,Swk Holdings Corp,NASDAQ,Stock,2009-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWKS,Skyworks Solutions Inc,NASDAQ,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWM,Schweitzer-Mauduit International Inc,NYSE,Stock,1995-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWN,Southwestern Energy Company,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWP,Stanley Black Decker Inc Corporate Units,NYSE,Stock,2017-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWSS,Springwater Special Situations Corp,NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWSSU,Springwater Special Situations Corp - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWSSW,Springwater Special Situations Corp - Warrants (01/12/2027),NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWT,Stanley Black & Decker Inc Unit,NYSE,Stock,2019-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWTX,SpringWorks Therapeutics Inc,NASDAQ,Stock,2019-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWX,Southwest Gas Holdings Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SWZ,Swiss Helvetia Fund Inc,NYSE,ETF,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SXC,SunCoke Energy Inc,NYSE,Stock,2011-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SXI,Standex International Corp,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SXQG,ETC 6 Meridian Quality Growth ETF,NYSE ARCA,ETF,2021-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SXT,Sensient Technologies Corp,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SXTC,China SXT Pharmaceuticals Inc,NASDAQ,Stock,2019-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SXUS,Janus Henderson International Sustainable Equity ETF,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SY,So-Young International Inc,NASDAQ,Stock,2019-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYBT,Stock Yards Bancorp Inc,NASDAQ,Stock,1993-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYBX,Synlogic Inc,NASDAQ,Stock,2015-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYF,Synchrony Financial,NYSE,Stock,2014-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYF-P-A,Synchrony Financial,NYSE,Stock,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYK,Stryker Corp,NYSE,Stock,1988-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYLD,Cambria Shareholder Yield ETF,BATS,ETF,2013-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYN,Synthetic Biologics Inc,NYSE MKT,Stock,2006-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYNA,Synaptics Inc,NASDAQ,Stock,2002-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYNH,Syneos Health Inc - Class A,NASDAQ,Stock,2014-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYNL,Synalloy Corp,NASDAQ,Stock,1991-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYPR,Sypris Solutions Inc,NASDAQ,Stock,1994-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYRS,Syros Pharmaceuticals Inc,NASDAQ,Stock,2016-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYTA,Siyata Mobile Inc,NASDAQ,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYTAW,Siyata Mobile Inc - Warrants (25/09/2025),NASDAQ,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYUS,Syntax Stratified U.S. Total Market ETF,NYSE ARCA,ETF,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SYY,Sysco Corp,NYSE,Stock,1973-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SZC,Cushing NextGen Infrastructure Income Fund,NYSE,ETF,2012-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SZK,PROSHARES ULTRASHORT CONSUMER GOODS ,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SZNE,PACER CFRA-STOVALL EQUAL WEIGHT SEASONAL ROTATION ETF ,NYSE ARCA,ETF,2018-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SZZL,Sizzle Acquisition Corp,NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "SZZLW,Sizzle Acquisition Corp - Warrants (02/11/2026),NASDAQ,Stock,2022-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "T,AT&T Inc,NYSE,Stock,1984-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "T-P-A,AT&T Inc,NYSE,Stock,2019-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "T-P-C,AT&T Inc,NYSE,Stock,2020-02-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TA,TravelCenters of America Inc,NASDAQ,Stock,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAC,Transalta Corp,NYSE,Stock,2001-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TACA,Trepont Acquisition Corp I - Class A,NYSE,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TACA-U,Trepont Acquisition Corp I Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant,NYSE,Stock,2020-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TACA-WS,Trepont Acquisition Corp I - Warrants (24/11/2025),NYSE,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TACK,Fairlead Tactical Sector ETF,NYSE ARCA,ETF,2022-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TACT,Transact Technologies Inc,NASDAQ,Stock,1996-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAGG,T. Rowe Price QM U.S. Bond ETF,NYSE ARCA,ETF,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAGS,Teucrium Agricultural Fund,NYSE ARCA,ETF,2012-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAIL,Cambria Tail Risk ETF,BATS,ETF,2017-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAIT,Taitron Components Inc - Class A,NASDAQ,Stock,1995-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAK,Takeda Pharmaceutical Company,NYSE,Stock,2008-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAL,TAL Education Group,NYSE,Stock,2010-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TALK,Talkspace Inc,NASDAQ,Stock,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TALKW,Talkspace Inc - Warrants (21/06/2025),NASDAQ,Stock,2020-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TALO,Talos Energy Inc,NYSE,Stock,2018-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TALS,Talaris Therapeutics Inc,NASDAQ,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAN,Invesco Solar ETF,NYSE ARCA,ETF,2008-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TANH,Tantech Holdings Ltd,NASDAQ,Stock,2015-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TANNI,TravelCenters of America Inc,NASDAQ,Stock,2013-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TANNL,TravelCenters of America Inc,NASDAQ,Stock,2014-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TANNZ,TravelCenters of America Inc,NASDAQ,Stock,2015-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAO,INVESCO CHINA REAL ESTATE ETF,NYSE ARCA,ETF,2007-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAOP,Taoping Inc,NASDAQ,Stock,2006-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAP,Molson Coors Beverage Company - Class B,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAP-A,Molson Coors Beverage Company - Class A,NYSE,Stock,2006-02-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TARA,Protara Therapeutics Inc,NASDAQ,Stock,2014-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TARO,Taro Pharmaceutical Industries,NYSE,Stock,1993-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TARS,Tarsus Pharmaceuticals Inc,NASDAQ,Stock,2020-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TASK,TaskUs Inc Class A,NASDAQ,Stock,2021-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAST,Carrols Restaurant Group Inc,NASDAQ,Stock,2006-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TATT,Tat Technologies,NASDAQ,Stock,1993-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAXF,American Century Diversified Municipal Bond ETF,NYSE ARCA,ETF,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TAYD,Taylor Devices Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBB,AT&T Inc,NYSE,Stock,2017-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBBK,Bancorp Inc (The),NASDAQ,Stock,2004-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBC,AT&T Inc,NYSE,Stock,2018-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBCP,Thunder Bridge Capital Partners III Inc - Class A,NASDAQ,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBCPU,Thunder Bridge Capital Partners III Inc - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBCPW,Thunder Bridge Capital Partners III Inc - Warrants (01/02/2025),NASDAQ,Stock,2021-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBF,ProShares Short 20+ Year Treasury,NYSE ARCA,ETF,2009-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBI,TrueBlue Inc,NYSE,Stock,1995-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBJL,Innovator 20+ Year Treasury Bond 9 Buffer ETF - July,BATS,ETF,2020-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBK,Triumph Bancorp Inc,NASDAQ,Stock,2014-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBKCP,Triumph Bancorp Inc,NASDAQ,Stock,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBLA,Taboola.com Ltd,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBLD,Thornburg Income Builder Opportunities Trust,NASDAQ,Stock,2021-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBLT,Toughbuilt Industries Inc,NASDAQ,Stock,2018-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBLTW,Toughbuilt Industries Inc Warrants Series A 09112023,NASDAQ,Stock,2018-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBNK,Territorial Bancorp Inc,NASDAQ,Stock,2009-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBPH,Theravance Biopharma Inc,NASDAQ,Stock,2014-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBSA,TB SA Acquisition Corp - Class A,NASDAQ,Stock,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBSAU,TB SA Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBSAW,TB SA Acquisition Corp - Warrants (01/03/2028),NASDAQ,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBT,PowerShares UltraShort Lehman 20+ Year Treasury ProShares,NYSE ARCA,ETF,2008-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBUX,T. Rowe Price Ultra Short-Term Bond ETF,NYSE ARCA,ETF,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TBX,ProShares Short 7-10 Year Treasury,NYSE ARCA,ETF,2011-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TC,TuanChe Ltd,NASDAQ,Stock,2018-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCAC,Tuatara Capital Acquisition Corp - Class A,NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCACU,Tuatara Capital Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCACW,Tuatara Capital Acquisition Corp - Warrants (11/02/2026),NASDAQ,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCBC,TC Bancshares Inc,NASDAQ,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCBI,Texas Capital Bancshares Inc,NASDAQ,Stock,2003-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCBIO,Texas Capital Bancshares Inc,NASDAQ,Stock,2021-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCBK,Trico Bancshares,NASDAQ,Stock,1993-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCBP,TC BioPharm (Holdings) plc,NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCBPW,TC BioPharm (Holdings) plc - Warrants (08/02/2027),NASDAQ,Stock,2022-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCBS,Texas Community Bancshares Inc,NASDAQ,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCBX,Third Coast Bancshares Inc,NASDAQ,Stock,2021-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCDA,Tricida Inc,NASDAQ,Stock,2018-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCFC,Community Financial Corp,NASDAQ,Stock,2002-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCHI,ISHARES MSCI CHINA MULTISECTOR TECH ETF ,NASDAQ,ETF,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCHP,T. Rowe Price Blue Chip Growth ETF,NYSE ARCA,ETF,2020-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCI,Transcontinental Realty Investors Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCMD,Tactile Systems Technology Inc,NASDAQ,Stock,2016-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCN,Tricon Residential Inc,NYSE,Stock,2017-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCOA,Trajectory Alpha Acquisition Corp - Class A,NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCOA-U,Trajectory Alpha Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCOA-WS,Trajectory Alpha Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCOM,Trip.com Group Ltd,NASDAQ,Stock,2003-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCON,TRACON Pharmaceuticals Inc,NASDAQ,Stock,2015-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCPC,BlackRock TCP Capital Corp,NASDAQ,Stock,2012-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCRR,Tcr2 Therapeutics Inc,NASDAQ,Stock,2019-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCRT,Alaunos Therapeutics Inc,NASDAQ,Stock,2005-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCRX,Tscan Therapeutics Inc,NASDAQ,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCS,Container Store Group Inc,NYSE,Stock,2013-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCTL,Premise Capital Diversified Tactical ETF,BATS,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCVA,TCV Acquisition Corp - Class A,NASDAQ,Stock,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TCX,Tucows Inc - Class A,NASDAQ,Stock,1996-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TD,Toronto Dominion Bank,NYSE,Stock,1996-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDAC,,NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDC,Teradata Corp,NYSE,Stock,2007-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDCX,TDCX Inc,NYSE,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDF,Templeton Dragon Fund Inc,NYSE,ETF,1995-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDG,Transdigm Group Incorporated,NYSE,Stock,2006-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDIV,First Trust ETF VI First Trust NASDAQ Technology Dividend Index Fund,NASDAQ,ETF,2012-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDOC,Teladoc Health Inc,NYSE,Stock,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDS,Telephone And Data Systems Inc,NYSE,Stock,1991-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDS-P-U,Telephone And Data Systems Inc,NYSE,Stock,2021-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDS-P-V,Telephone And Data Systems Inc,NYSE,Stock,2021-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDSA,Cabana Target Drawdown 5 ETF,NYSE ARCA,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDSB,Cabana Target Drawdown 7 ETF,NYSE ARCA,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDSC,Cabana Target Drawdown 10 ETF,NYSE ARCA,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDSD,Cabana Target Drawdown 13 ETF,NYSE ARCA,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDSE,Cabana Target Drawdown 16 ETF,NYSE ARCA,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDTF,FlexShares iBoxx 5-Year Target Duration TIPS Index Fund,NYSE ARCA,ETF,2011-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDTT,FlexShares iBoxx 3-Year Target Duration TIPS Index Fund,NYSE ARCA,ETF,2011-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDUP,ThredUp Inc - Class A,NASDAQ,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDV,ProShares S&P Technology Dividend Aristocrats ETF,BATS,ETF,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDVG,T. Rowe Price Dividend Growth ETF,NYSE ARCA,ETF,2020-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDW,Tidewater Inc - New,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDW-WS,Tidewater Inc - Warrants (24/11/2024),NYSE MKT,Stock,2018-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDW-WS-A,Tidewater Inc - Warrants - Class A (31/07/2023),NYSE,Stock,2017-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDW-WS-B,Tidewater Inc - Warrants - Class B (31/07/2023),NYSE,Stock,2017-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TDY,Teledyne Technologies Inc,NYSE,Stock,1999-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEAF,Ecofin Sustainable and Social Impact Term Fund,NYSE,Stock,2019-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEAM,Atlassian Corporation Plc - Class A,NASDAQ,Stock,2015-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TECB,iShares U.S. Tech Breakthrough Multisector ETF,NYSE ARCA,ETF,2020-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TECH,Bio-Techne Corp,NASDAQ,Stock,1992-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TECK,Teck Resources Ltd - Class B,NYSE,Stock,2002-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TECL,Direxion Daily Technology Bull 3X Shares,NYSE ARCA,ETF,2008-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TECS,Direxion Daily Technology Bear 3X Shares,NYSE ARCA,ETF,2008-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TECTP,Tectonic Financial Inc,NASDAQ,Stock,2019-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEDU,Tarena International Inc,NASDAQ,Stock,2014-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEF,Telefonica S.A,NYSE,Stock,1987-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEI,Templeton Emerging Markets Income Fund,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEKK,Tekkorp Digital Acquisition Corp - Class A,NASDAQ,Stock,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEKKU,Tekkorp Digital Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2020-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEKKW,Tekkorp Digital Acquisition Corp - Warrants(26/10/2027),NASDAQ,Stock,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEL,TE Connectivity Ltd,NYSE,Stock,2007-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TELA,TELA Bio Inc,NASDAQ,Stock,2019-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TELL,Tellurian Inc,NYSE MKT,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TELZ,Tellurian Inc,NYSE MKT,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEMP,JPMORGAN CLIMATE CHANGE SOLUTIONS ETF ,NYSE ARCA,ETF,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEN,Tenneco Inc - Class A,NYSE,Stock,1982-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TENB,Tenable Holdings Inc,NASDAQ,Stock,2018-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TENG,DIREXION DAILY 5G COMMUNICATIONS BULL 2X SHARES ,NYSE ARCA,ETF,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TENX,Tenax Therapeutics Inc,NASDAQ,Stock,1997-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEO,Telecom Argentina S.A.,NYSE,Stock,1994-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEQI,T. Rowe Price Equity Income ETF,NYSE ARCA,ETF,2020-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TER,Teradyne Inc,NASDAQ,Stock,1987-03-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TERN,Terns Pharmaceuticals Inc,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TESS,Tessco Technologies Inc,NASDAQ,Stock,1994-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TETC,Tech and Energy Transition Corp - Class A,NASDAQ,Stock,2021-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TETCU,Tech and Energy Transition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TETCW,Tech and Energy Transition Corp - Warrants (31/03/2028),NASDAQ,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TETE,Technology & Telecommunication Acquisition Corp - Class A,NASDAQ,Stock,2022-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TETEU,Technology & Telecommunication Acquisition Corp - Units (1 Ord Class A & 1 War),NASDAQ,Stock,2022-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TETEW,Technology & Telecommunication Acquisition Corp - Warrants (13/01/2027),NASDAQ,Stock,2022-03-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEVA,Teva- Pharmaceutical Industries Ltd,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TEX,Terex Corp,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFC,Truist Financial Corporation,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFC-P-I,Truist Financial Corporation,NYSE,Stock,2019-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFC-P-O,Truist Financial Corporation,NYSE,Stock,2020-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFC-P-R,Truist Financial Corporation,NYSE,Stock,2020-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFFP,Tff Pharmaceuticals Inc,NASDAQ,Stock,2019-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFI,SPDR Nuveen Bloomberg Municipal Bond ETF,NYSE ARCA,ETF,2007-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFII,TFI International Inc,NYSE,Stock,2008-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFJL,Innovator 20+ Year Treasury Bond 5 Floor ETF - July,BATS,ETF,2020-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFLO,iShares Treasury Floating Rate Bond ETF,NYSE ARCA,ETF,2014-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFSA,Terra Income Fund 6 Inc,NYSE,Stock,2021-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFSL,TFS Financial Corporation,NASDAQ,Stock,2007-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TFX,Teleflex Incorporated,NYSE,Stock,1988-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TG,Tredegar Corp,NYSE,Stock,1990-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGA,Transglobe Energy Corp,NASDAQ,Stock,1994-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGAA,Target Global Acquisition I Corp - Class A,NASDAQ,Stock,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGAAU,Target Global Acquisition I Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGAAW,Target Global Acquisition I Corp - Warrants (09/03/2026),NASDAQ,Stock,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGB,Taseko Mines Ltd,NYSE MKT,Stock,1994-06-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGH,Textainer Group Holdings Ltd,NYSE,Stock,2007-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGH-P-A,Textainer Group Holdings Ltd,NYSE,Stock,2021-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGH-P-B,Textainer Group Holdings Ltd,NYSE,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGI,Triumph Group Inc,NYSE,Stock,1996-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGIF,SOFI WEEKLY INCOME ETF ,NYSE ARCA,ETF,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGLS,Tecnoglass Inc,NASDAQ,Stock,2012-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGNA,TEGNA Inc,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGR-U,Kimbell Tiger Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2022-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGRW,T. Rowe Price Growth Stock ETF,NYSE ARCA,ETF,2020-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGS,Transportadora de Gas del Sur,NYSE,Stock,1994-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGT,Target Corp,NYSE,Stock,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGTX,TG Therapeutics Inc,NASDAQ,Stock,2010-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGVC,TG Venture Acquisition Corp - Class A,NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGVCU,TG Venture Acquisition Corp - Units (1 Ord Share Class A & 1 War),NASDAQ,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TGVCW,TG Venture Acquisition Corp - Warrants (15/08/2028),NASDAQ,Stock,2021-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TH,Target Hospitality Corp - Class A,NASDAQ,Stock,2013-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THAC,Thrive Acquisition Corp - Class A,NASDAQ,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THACU,Thrive Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THACW,Thrive Acquisition Corp - Warrants (31/10/2028),NASDAQ,Stock,2021-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THBRU,Thunder Bridge Acquisition II Ltd Units 1 Ord Share Class A & 12 War,NASDAQ,Stock,2019-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THBRW,Thunder Bridge Acquisition II Ltd Wt 11302026,NASDAQ,Stock,2019-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THC,Tenet Healthcare Corp,NYSE,Stock,1982-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THCA,Tuscan Holdings Corp II,NASDAQ,Stock,2019-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THCAU,Tuscan Holdings Corp II - Units (1 Ord shares & 1/2 Wrt),NASDAQ,Stock,2019-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THCAW,Tuscan Holdings Corp II - Warrants (01/04/2026),NASDAQ,Stock,2019-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THCP,Thunder Bridge Capital Partners IV Inc - Class A,NASDAQ,Stock,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THCPU,Thunder Bridge Capital Partners IV Inc - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THCPW,Thunder Bridge Capital Partners IV Inc - Warrants (30/06/2026),NASDAQ,Stock,2021-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THCX,THE CANNABIS ETF ,NYSE ARCA,ETF,2019-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THD,iShares MSCI Thailand ETF,NYSE ARCA,ETF,2008-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THFF,First Financial Corp - Indiana,NASDAQ,Stock,1992-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THG,Hanover Insurance Group Inc,NYSE,Stock,1995-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THM,International Tower Hill Mines Ltd,NYSE MKT,Stock,2007-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THMO,ThermoGenesis Holdings Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THNQ,ROBO Global Artificial Intelligence ETF,NYSE ARCA,ETF,2020-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THO,Thor Industries Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THQ,Tekla Healthcare Opportunities Fund,NYSE,ETF,2014-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THR,Thermon Group Holdings Inc,NYSE,Stock,2011-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THRM,Gentherm Inc - Class A,NASDAQ,Stock,1993-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THRN,Thorne Healthtech Inc,NASDAQ,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THRX,Theseus Pharmaceuticals Inc,NASDAQ,Stock,2021-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THRY,Thryv Holdings Inc,NASDAQ,Stock,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THS,Treehouse Foods Inc,NYSE,Stock,2005-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THTX,Theratechnologies Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THW,Tekla World Healthcare Fund,NYSE,ETF,2015-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THWWW,Target Hospitality Corp - Warrants (15/03/2024),NASDAQ,Stock,2018-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "THY,Toews Agility Shares Dynamic Tactical Income ETF,BATS,ETF,2020-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIG,Trean Insurance Group Inc,NASDAQ,Stock,2020-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIGO,Millicom International Cellular S.A.,NASDAQ,Stock,2011-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIGR,UP Fintech Holding Ltd,NASDAQ,Stock,2019-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIL,Instil Bio Inc,NASDAQ,Stock,2021-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TILE,Interface Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TILT,FlexShares Morningstar US Market Factors Tilt Index Fund,BATS,ETF,2011-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIMB,TIM SA,NYSE,Stock,2020-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIMB-W,TIM S.A. American Depositary Shares Each representing 5 When Issued,NYSE,Stock,2020-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TINT,ProShares Smart Materials ETF,NYSE ARCA,ETF,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TINV,Tiga Acquisition Corp - Class A,NYSE,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TINV-U,Tiga Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TINV-WS,Tiga Acquisition Corp - Warrants (06/11/2025),NYSE,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TINY,ProShares Nanotechnology ETF,NYSE ARCA,ETF,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIOA,Tio Tech A - Class A,NASDAQ,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIOAU,Tio Tech A - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIOAW,Tio Tech A - Warrants (31/03/2028),NASDAQ,Stock,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIP,iShares TIPS Bond ETF,NYSE ARCA,ETF,2003-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIPT,Tiptree Inc,NASDAQ,Stock,2010-10-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIPX,SPDR Bloomberg 1-10 Year TIPS ETF,NYSE ARCA,ETF,2013-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIPZ,PIMCO Broad U.S. TIPS Index Exchange-Traded Fund,NYSE ARCA,ETF,2009-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIRX,Tian Ruixiang Holdings Ltd - Class A,NASDAQ,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TISI,Team Inc,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TITN,Titan Machinery Inc,NASDAQ,Stock,2007-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIVC,Tivic Health Systems Inc,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TIXT,TELUS International (Cda) Inc (Sub Voting),NYSE,Stock,2021-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TJX,TJX Companies Inc,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TK,Teekay Corp,NYSE,Stock,1995-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TKAT,Takung Art Co Ltd,NYSE MKT,Stock,2015-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TKC,Turkcell Iletisim Hizmetleri A.S.,NYSE,Stock,2000-07-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TKLF,Yoshitsu Co Ltd,NASDAQ,Stock,2022-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TKNO,Alpha Teknova Inc,NASDAQ,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TKR,Timken Company,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLGA,TLG Acquisition One Corp - Class A,NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLGA-U,TLG Acquisition One Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLGA-WS,TLG Acquisition One Corp - Warrants (25/01/2028),NYSE,Stock,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLGY,TLGY Acquisition Corp - Class A,NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLGYU,TLGY Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLGYW,TLGY Acquisition Corp - Warrants (09/11/2026),NASDAQ,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLH,iShares 10-20 Year Treasury Bond ETF,NYSE ARCA,ETF,2007-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLI,Western Asset Corporate Loan Fund Inc,NYSE,ETF,1998-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLIS,Talis Biomedical Corp,NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLK,PT Telkom Indonesia (Persero) Tbk,NYSE,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLMD,SOC Telemed Inc - Class A,NASDAQ,Stock,2020-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLMDW,SOC Telemed Inc - Warrants(30/10/2025),NASDAQ,Stock,2020-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLRY,Tilray Brands Inc - Class 2,NASDAQ,Stock,2018-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLS,Telos Corp,NASDAQ,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLSA,Tiziana Life Sciences Ltd,NASDAQ,Stock,2018-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLT,iShares 20+ Year Treasury Bond ETF,NASDAQ,ETF,2002-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLTD,FlexShares Morningstar Developed Markets ex-US Factor Tilt Index Fund,NYSE ARCA,ETF,2012-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLTE,FLEXSHARES MORNINGSTAR EMERGING MARKETS FACTOR TILT INDEX FUND ,NYSE ARCA,ETF,2012-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TLYS,Tillys Inc - Class A,NYSE,Stock,2012-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TM,Toyota Motor Corporation,NYSE,Stock,1976-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMAC,Music Acquisition Corporation - Series A,NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMAC-U,Music Acquisition Corporation - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMAC-WS,Music Acquisition Corporation - Warrants (05/02/2028),NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMAT,Main Thematic Innovation ETF,BATS,ETF,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMBR,Timber Pharmaceuticals Inc,NYSE MKT,Stock,2015-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMC,TMC the metals company Inc,NASDAQ,Stock,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMCI,Treace Medical Concepts Inc,NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMCWW,TMC the metals company Inc - Warrants (09/09/2026),NASDAQ,Stock,2020-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMDI,Titan Medical Inc,NASDAQ,Stock,2009-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMDV,ProShares Russell US Dividend Growers ETF,BATS,ETF,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMDX,Transmedics Group Inc,NASDAQ,Stock,2019-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TME,Tencent Music Entertainment Group,NYSE,Stock,2018-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMF,Direxion Daily 20+ Year Treasury Bull 3X Shares,NYSE ARCA,ETF,2009-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMFC,Motley Fool 100 Index ETF,BATS,ETF,2018-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMFE,Motley Fool Capital Efficiency 100 Index ETF,NYSE ARCA,ETF,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMFG,Motley Fool Global Opportunities ETF,BATS,ETF,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMFM,Motley Fool Mid Cap Growth ETF,BATS,ETF,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMFS,Motley Fool Small-Cap Growth ETF,BATS,ETF,2018-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMFX,Motley Fool Next Index ETF,NYSE ARCA,ETF,2021-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMHC,Taylor Morrison Home Corp,NYSE,Stock,2013-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMKR,Tastemaker Acquisition Corp - Class A,NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMKRU,Tastemaker Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-01-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMKRW,Tastemaker Acquisition Corp - Warrants (02/12/2025),NASDAQ,Stock,2021-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMO,Thermo Fisher Scientific Inc,NYSE,Stock,1987-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMP,Tompkins Financial Corp,NYSE MKT,Stock,1990-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMPM,Turmeric Acquisition Corp - Class A,NASDAQ,Stock,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMPMU,Turmeric Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2020-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMPMW,Turmeric Acquisition Corp - Warrants (20/10/2025),NASDAQ,Stock,2020-12-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMQ,Trilogy Metals Inc,NYSE MKT,Stock,2012-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMST,TimkenSteel Corp,NYSE,Stock,2014-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMUS,T-Mobile US Inc,NASDAQ,Stock,2007-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMUSR,TMobile US Inc Tradeable Rights June 2020,NASDAQ,Stock,2020-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMV,Direxion Daily 20+ Year Treasury Bear 3X Shares,NYSE ARCA,ETF,2009-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TMX,Terminix Global Holdings Inc,NYSE,Stock,2014-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNA,Direxion Dialy Small Cap Bull 3X Shares,NYSE ARCA,ETF,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNC,Tennant Company,NYSE,Stock,1992-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNDM,Tandem Diabetes Care Inc,NASDAQ,Stock,2013-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNET,TriNet Group Inc,NYSE,Stock,2014-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNGX,Tango Therapeutics Inc,NASDAQ,Stock,2020-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNK,Teekay Tankers Ltd - Class A,NYSE,Stock,2007-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNL,Travel+Leisure Company,NYSE,Stock,2006-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNP,Tsakos Energy Navigation Ltd,NYSE,Stock,2002-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNP-P-D,Tsakos Energy Navigation Ltd,NYSE,Stock,2015-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNP-P-E,Tsakos Energy Navigation Ltd,NYSE,Stock,2017-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNP-P-F,Tsakos Energy Navigation Ltd,NYSE,Stock,2018-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNXP,Tonix Pharmaceuticals Holding Corp,NASDAQ,Stock,2012-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TNYA,Tenaya Therapeutics Inc,NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOAC,Talon 1 Acquisition Corp - Class A,NASDAQ,Stock,2022-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOACU,Talon 1 Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOACW,Talon 1 Acquisition Corp - Warrants (02/11/2026),NASDAQ,Stock,2022-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOI,Oncology Institute Inc (The),NASDAQ,Stock,2021-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOIIW,Oncology Institute Inc (The) - Warrants (15/11/2026),NASDAQ,Stock,2020-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOK,iShares MSCI KLD 400 Social ETF,NYSE ARCA,ETF,2007-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOKE,CAMBRIA CANNABIS ETF ,BATS,ETF,2019-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOL,Toll Brothers Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOLZ,PROSHARES DJ BROOKFIELD GLOBAL INFRASTRUCTURE ETF ,NYSE ARCA,ETF,2014-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOMZ,TOMI Environmental Solutions Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOPS,Top Ships Inc,NASDAQ,Stock,2004-08-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOST,Toast Inc - Class A,NYSE,Stock,2021-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOTL,SPDR DoubleLine Total Return Tactical ETF,NYSE ARCA,ETF,2015-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOTR,T. Rowe Price Total Return ETF,NYSE ARCA,ETF,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOUR,Tuniu Corp,NASDAQ,Stock,2014-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TOWN,Townebank Portsmouth VA,NASDAQ,Stock,1999-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPAY,ECOFIN DIGITAL PAYMENTS INFRASTRUCTURE FUND ,NYSE ARCA,Stock,2019-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPB,Turning Point Brands Inc,NYSE,Stock,2016-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPBA,TPB Acquisition Corp I - Class A,NASDAQ,Stock,2021-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPBAU,TPB Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPBAW,TPB Acquisition Corp I - Warrants (09/08/2026),NASDAQ,Stock,2021-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPC,Tutor Perini Corp,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPG,TPG Inc - Class A,NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPGY,TPG Pace Beneficial Finance Corp - Class A,NYSE,Stock,2020-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPGY-U,TPG Pace Beneficial Finance Corp - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2020-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPGY-WS,TPG Pace Beneficial Finance Corp - Warrants (10/09/2027),NYSE,Stock,2020-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPH,Tri Pointe Homes Inc,NYSE,Stock,2013-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPHD,Timothy Plan High Dividend Stock ETF,NYSE ARCA,ETF,2019-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPHE,Timothy Plan High Dividend Stock Enhanced ETF,NYSE ARCA,ETF,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPHS,Trinity Place Holdings Inc,NYSE MKT,Stock,2012-09-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPIC,TPI Composites Inc,NASDAQ,Stock,2016-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPIF,Timothy Plan International ETF,NYSE ARCA,ETF,2019-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPL,Texas Pacific Land Corporation,NYSE,Stock,1987-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPLC,Timothy Plan US Large/Mid Cap Core ETF,NYSE ARCA,ETF,2019-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPLE,Timothy Plan US Large/Mid Cap Core Enhanced ETF,NYSE ARCA,ETF,2021-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPOR,Direxion Daily Transportation Bull 3X Shares,NYSE ARCA,ETF,2017-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPR,Tapestry Inc,NYSE,Stock,2000-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPSC,Timothy Plan US Small Cap Core ETF,NYSE ARCA,ETF,2019-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPST,Tempest Therapeutics Inc,NASDAQ,Stock,2012-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPTA,Terra Property Trust Inc,NYSE,Stock,2021-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPTX,Turning Point Therapeutics Inc,NASDAQ,Stock,2019-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPVG,TriplePoint Venture Growth BDC Corp,NYSE,Stock,2014-03-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPX,Tempur Sealy International Inc,NYSE,Stock,2003-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPYP,Tortoise North American Pipeline Fund ETF,NYSE ARCA,ETF,2015-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TPZ,Tortoise Power Energy Infrstrct Fd Inc,NYSE,ETF,2009-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TQQQ,ProShares UltraPro QQQ,NASDAQ,ETF,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TR,Tootsie Roll Industries Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRAQ,Trine II Acquisition Corp - Class A,NYSE,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRAQ-U,Trine II Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRAQ-WS,Trine II Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRC,Tejon Ranch Company,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRCA,Twin Ridge Capital Acquisition Corp - Class A,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRCA-U,Twin Ridge Capital Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRCA-WS,Twin Ridge Capital Acquisition Corp Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRDA,Entrada Therapeutics Inc,NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRDF,The NextGen Trend and Defend ETF,BATS,ETF,2022-01-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TREC,Trecora Resources,NYSE,Stock,2006-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TREE,LendingTree Inc,NASDAQ,Stock,2008-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TREX,TREX Co. Inc,NYSE,Stock,1999-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRGP,Targa Resources Corp,NYSE,Stock,2010-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRHC,Tabula Rasa HealthCare Inc,NASDAQ,Stock,2016-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRI,Thomson-Reuters Corp,NYSE,Stock,2002-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRIB,Trinity Biotech Plc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRIN,Trinity Capital Inc,NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRIP,TripAdvisor Inc,NASDAQ,Stock,2011-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRIS,Tristar Acquisition I Corp - Class A,NYSE,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRIS-U,Tristar Acquisition I Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRIS-WS,Tristar Acquisition I Corp - Warrants (01/01/9999),NYSE,Stock,2021-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRKA,Troika Media Group Inc,NASDAQ,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRKAW,Troika Media Group Inc - Warrants (13/04/2024),NASDAQ,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRMB,Trimble Inc,NASDAQ,Stock,1992-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRMD,Torm Plc - Class A,NASDAQ,Stock,2018-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRMK,Trustmark Corp,NASDAQ,Stock,1992-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRMR,Tremor International Ltd,NASDAQ,Stock,2021-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRN,Trinity Industries Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRND,Pacer Trendpilot Fund of Funds ETF,NYSE ARCA,ETF,2019-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRNE-U,Desktop Metal Inc - Unit (1 Ord share Cls A & 1/2 Wrt),NYSE,Stock,2019-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRNO,Terreno Realty Corp,NYSE,Stock,2010-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRNS,Transcat Inc,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRON,Corner Growth Acquisition Corp 2 - Class A,NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRONU,Corner Growth Acquisition Corp 2 - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRONW,Corner Growth Acquisition Corp 2 - Warrants (09/04/2026),NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TROO,TROOPS Inc,NASDAQ,Stock,2008-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TROW,T. Rowe Price Group Inc,NASDAQ,Stock,1989-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TROX,Tronox Holdings plc - Class A,NYSE,Stock,2010-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRP,TC Energy Corporation,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRPL,PACER METAURUS US LARGE CAP DIVIDEND MULTIPLIER 300 ETF ,NYSE ARCA,ETF,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRQ,Turquoise Hill Resources Ltd,NYSE,Stock,2003-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRS,Trimas Corporation,NASDAQ,Stock,2007-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRST,Trustco Bank Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRT,Trio-Tech International,NYSE MKT,Stock,1995-04-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTL,TortoiseEcofin Acquisition Corp III - Class A,NYSE,Stock,2014-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTL-U,TortoiseEcofin Acquisition Corp III - Units (1 Ord Share Class A & 1/4 War),NYSE,Stock,2021-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTL-WS,TortoiseEcofin Acquisition Corp III - Warrants (01/01/9999),NYSE,Stock,2021-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTN,Triton International Ltd,NYSE,Stock,2005-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTN-P-A,Triton International Limited 8.50 Series A Cumulative Redeemable Perpetual Preference Shares,NYSE,Stock,2019-03-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTN-P-B,Triton International Ltd 8 PRF PERPETUAL USD 25 Ser B,NYSE,Stock,2019-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTN-P-C,Triton International Ltd,NYSE,Stock,2019-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTN-P-D,Triton International Ltd,NYSE,Stock,2020-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTN-P-E,Triton International Ltd,NYSE,Stock,2021-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTX,TPG RE Finance Trust Inc,NYSE,Stock,2017-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTX-P-C,TPG RE Finance Trust Inc,NYSE,Stock,2021-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRTY,Cambria Trinity ETF,BATS,ETF,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRU,TransUnion,NYSE,Stock,2015-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRUE,Truecar Inc,NASDAQ,Stock,2000-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRUP,Trupanion Inc,NASDAQ,Stock,2014-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRV,Travelers Companies Inc,NYSE,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRVG,Trivago NV,NASDAQ,Stock,2016-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRVI,Trevi Therapeutics Inc,NASDAQ,Stock,2019-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRVN,Trevena Inc,NASDAQ,Stock,2014-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRX,Tanzanian Gold Corp,NYSE MKT,Stock,2005-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TRYP,SonicShares Airlines Hotels Cruise Lines ETF,NYSE ARCA,ETF,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TS,Tenaris S.A.,NYSE,Stock,2002-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSAT,Telesat Corp - Class A,NASDAQ,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSBK,Timberland Bancorp Inc,NASDAQ,Stock,1998-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSC,Tristate Capital Holdings Inc,NASDAQ,Stock,2013-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSCAP,Tristate Capital Holdings Inc,NASDAQ,Stock,2018-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSCBP,Tristate Capital Holdings Inc,NASDAQ,Stock,2019-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSCO,Tractor Supply Company,NASDAQ,Stock,1994-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSE,Trinseo PLC,NYSE,Stock,2014-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSEM,Tower Semiconductor Ltd,NASDAQ,Stock,1994-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSHA,Taysha Gene Therapies Inc,NASDAQ,Stock,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSI,TCW Strategic Income Fund Inc,NYSE,ETF,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSIB,Tishman Speyer Innovation Corp II - Class A,NASDAQ,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSIBU,Tishman Speyer Innovation Corp II - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSIBW,Tishman Speyer Innovation Corp II - Warrants (11/02/2026),NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSJA,Innovator Triple Stacker ETF - January,BATS,ETF,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSLA,Tesla Inc,NASDAQ,Stock,2010-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSLX,Sixth Street Specialty Lending Inc,NYSE,Stock,2014-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSM,Taiwan Semiconductor Manufacturing,NYSE,Stock,1997-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSN,Tyson Foods Inc - Class A,NYSE,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSOC,Innovator Triple Stacker ETF - October,BATS,ETF,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSP,TuSimple Holdings Inc - Class A,NASDAQ,Stock,2021-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSPA,T. Rowe Price U.S. Equity Research ETF,NYSE ARCA,ETF,2021-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSPQ,TCW Special Purpose Acquisition Corp - Class A,NYSE,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSPQ-U,TCW Special Purpose Acquisition Corp - Units (1 Ord Class A & 1/3 War),NYSE,Stock,2021-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSPQ-WS,TCW Special Purpose Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSQ,Townsquare Media Inc - Class A,NYSE,Stock,2014-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSRI,TSR Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSVT,2seventy bio Inc,NASDAQ,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TSVTV,2seventy bio Inc,NASDAQ,Stock,2021-11-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TT,Trane Technologies plc - Class A,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTAC,FCF US Quality ETF,BATS,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTAI,FCF International Quality ETF,BATS,ETF,2017-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTC,Toro Company,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTCF,Tattooed Chef Inc - Class A,NASDAQ,Stock,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTD,Trade Desk Inc - Class A,NASDAQ,Stock,2016-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTE,TotalEnergies SE,NYSE,Stock,1991-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTEC,TTEC Holdings Inc,NASDAQ,Stock,1996-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTEK,Tetra Tech Inc,NASDAQ,Stock,1991-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTGT,Techtarget Inc,NASDAQ,Stock,2007-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTI,Tetra Technologies Inc,NYSE,Stock,1990-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTM,Tata Motors Ltd,NYSE,Stock,2004-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTMI,TTM Technologies Inc,NASDAQ,Stock,2000-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTNP,Titan Pharmaceuticals Inc (de),NASDAQ,Stock,2006-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTOO,T2 Biosystems Inc,NASDAQ,Stock,2014-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTP,Tortoise Pipeline & Energy Fund Inc,NYSE,ETF,2011-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTSH,Tile Shop Hldgs Inc,NASDAQ,Stock,2012-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTT,ProShares UltraPro Short 20+ Year Treasury,NYSE ARCA,ETF,2012-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TTWO,Take-Two Interactive Software Inc,NASDAQ,Stock,1997-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TU,Telus Corp,NYSE,Stock,1996-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUEM,Tuesday Morning Corp - New,NASDAQ,Stock,2021-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUFN,Tufin Software Technologies Ltd,NYSE,Stock,2019-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUGC,TradeUP Global Corp - Class A,NASDAQ,Stock,2021-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUGCU,TradeUP Global Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUGCW,TradeUP Global Corp - Warrants (27/04/2026),NASDAQ,Stock,2021-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUP,Tupperware Brands Corporation,NYSE,Stock,1996-05-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUR,iShares MSCI Turkey ETF,NASDAQ,ETF,2008-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TURN,180 Degree Capital Corp,NASDAQ,Stock,2017-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUSA,FIRST TRUST TOTAL US MARKET ALPHADEX ETF ,NASDAQ,ETF,2004-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUSK,Mammoth Energy Services Inc,NASDAQ,Stock,2016-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TUYA,Tuya Inc,NYSE,Stock,2021-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TV,Grupo Televisa SAB,NYSE,Stock,1993-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TVC,Tennessee Valley Authority,NYSE,Stock,1998-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TVE,Tennessee Valley Authority,NYSE,Stock,1999-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TVTX,Travere Therapeutics Inc,NASDAQ,Stock,2012-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TVTY,Tivity Health Inc,NASDAQ,Stock,1991-08-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TW,Tradeweb Markets Inc Cls A,NASDAQ,Stock,2019-04-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWCB,Bilander Acquisition Corp - Class A,NASDAQ,Stock,2021-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWCBU,Bilander Acquisition Corp - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-07-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWCBW,Bilander Acquisition Corp - Warrants (19/05/2026),NASDAQ,Stock,2021-09-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWI,Titan International Inc,NYSE,Stock,1993-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWIN,Twin Disc Incorporated,NASDAQ,Stock,1987-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWIO,Trajan Wealth Income Opportunities ETF,NYSE ARCA,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWKS,Thoughtworks Holding Inc,NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWLO,Twilio Inc Class A,NYSE,Stock,2016-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWLV,Twelve Seas Investment Co II - Class A,NASDAQ,Stock,2021-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWLVU,Twelve Seas Investment Co II - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWLVW,Twelve Seas Investment Co II - Warrants (26/02/2026),NASDAQ,Stock,2018-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWM,ProShares UltraShort Russell2000,NYSE ARCA,ETF,2007-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWN,Taiwan Fund Inc,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWND,Tailwind Acquisition Corp - Class A,NYSE,Stock,2020-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWND-U,Tailwind Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2020-09-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWND-WS,Tailwind Acquisition Corp Redeemable Warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50,NYSE,Stock,2020-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWNI,Tailwind International Acquisition Corp - Class A,NYSE,Stock,2021-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWNI-U,Tailwind International Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWNI-WS,Tailwind International Acquisition Corp - Warrants (01/03/2028),NYSE,Stock,2021-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWNK,Hostess Brands Inc - Class A,NASDAQ,Stock,2015-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWNT,Tailwind Two Acquisition Corp - Class A,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWNT-U,Tailwind Two Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWNT-WS,Tailwind Two Acquisition Corp Redeemable warrants included as part of the units each whole warrant exercisable for one Class A ordinary share at an exercise pr,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWO,Two Harbors Investment Corp,NYSE,Stock,2009-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWO-P-A,Two Harbors Investments Corp 8125 Series A FixedtoFloating Rate Cumulative Redeemable Preferred Stock 2500 liquidation preference per share,NYSE,Stock,2017-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWO-P-B,Two Harbors Investments Corp 7625 Series B FixedtoFloating Rate Cumulative Redeemable Preferred Stock,NYSE,Stock,2017-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWO-P-C,Two Harbors Investments Corp 725 Series C FixedtoFloating Rate Cumulative Redeemable Preferred Stock,NYSE,Stock,2017-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWOA,two - Class A,NYSE,Stock,2021-03-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWOU,2U Inc,NASDAQ,Stock,2014-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWST,Twist Bioscience Corp,NASDAQ,Stock,2018-10-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TWTR,Twitter Inc,NYSE,Stock,2013-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TX,Ternium S.A.,NYSE,Stock,2006-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TXG,10x Genomics Inc - Class A,NASDAQ,Stock,2019-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TXMD,TherapeuticsMD Inc,NASDAQ,Stock,2003-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TXN,Texas Instruments Inc,NASDAQ,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TXRH,Texas Roadhouse Inc,NASDAQ,Stock,2004-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TXT,Textron Inc,NYSE,Stock,1984-10-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TY,Tri-Continental Corp,NYSE,ETF,1983-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TY-P,Tri-Continental Corp,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TYA,Simplify Risk Parity Treasury ETF,BATS,ETF,2021-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TYD,Direxion Daily 7-10 Year Treasury Bull 3X Shares,NYSE ARCA,ETF,2009-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TYG,Tortoise Energy Infrastructure Corp,NYSE,ETF,2004-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TYL,Tyler Technologies Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TYME,Tyme Technologies Inc,NASDAQ,Stock,2015-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TYNE,DIREXION NANOTECHNOLOGY ETF ,NYSE ARCA,ETF,2021-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TYO,Direxion Daily 7-10 Year Treasury Bear 3X Shares,NYSE ARCA,ETF,2009-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TYRA,Tyra Biosciences Inc,NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TZA,Direxion Daily Small Cap Bear 3X Shares,NYSE ARCA,ETF,2008-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TZOO,Travelzoo,NASDAQ,Stock,2002-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TZPS,TZP Strategies Acquisition Corp - Class A,NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TZPSU,TZP Strategies Acquisition Corp - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "TZPSW,TZP Strategies Acquisition Corp - Warrants (06/01/2026),NASDAQ,Stock,2021-03-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "U,Unity Software Inc,NYSE,Stock,2020-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UA,Under Armour Inc - Class C,NYSE,Stock,2016-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UAA,Under Armour Inc - Class A,NYSE,Stock,2005-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UAE,iShares MSCI UAE ETF,NASDAQ,ETF,2014-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UAL,United Airlines Holdings Inc,NASDAQ,Stock,2006-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UAMY,United States Antimony Corp,NYSE MKT,Stock,2000-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UAN,CVR Partners LP,NYSE,Stock,2011-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UAPR,Innovator U.S. Equity Ultra Buffer ETF - April,BATS,ETF,2019-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UAUG,Innovator U.S. Equity Ultra Buffer ETF - August,BATS,ETF,2019-08-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UAVS,AgEagle Aerial Systems Inc,NYSE MKT,Stock,2018-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBA,Urstadt Biddle Properties Inc - Class A,NYSE,Stock,1998-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBCB,UBC ALGORITHMIC FUNDAMENTALS ETF ,NYSE ARCA,ETF,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBCP,United Bancorp Inc (Martins Ferry OH),NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBER,Uber Technologies Inc,NYSE,Stock,2019-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBFO,United Security Bancshares (CA),NASDAQ,Stock,1999-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBND,VictoryShares ESG Core Plus Bond ETF,NASDAQ,ETF,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBOH,United Bancshares Inc (OH),NASDAQ,Stock,2000-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBP,Urstadt Biddle Properties Inc,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBP-P-H,Urstadt Biddle Properties Inc 6250 Series H Cumulative Redeemable Preferred Stock,NYSE,Stock,2017-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBP-P-K,Urstadt Biddle Properties Inc,NYSE,Stock,2019-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBR,ProShares Ultra MSCI Brazil Capped ETF,NYSE ARCA,ETF,2010-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBS,UBS Group AG,NYSE,Stock,2014-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBSI,United Bankshares Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBT,ProShares Ultra 20+ Year Treasury,NYSE ARCA,ETF,2010-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UBX,Unity Biotechnology Inc,NASDAQ,Stock,2018-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCBI,United Community Banks Inc,NASDAQ,Stock,2002-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCBIO,United Community Banks Inc,NASDAQ,Stock,2020-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCC,ProShares Ultra Consumer Services,NYSE ARCA,ETF,2007-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCIB,UCIB,NYSE ARCA,ETF,2015-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCL,Ucloudlink Group Inc,NASDAQ,Stock,2020-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCO,ProShares Ultra Bloomberg Crude Oil,NYSE ARCA,ETF,2008-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCON,First Trust TCW Unconstrained Plus Bond ETF,NYSE ARCA,ETF,2018-06-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCRD,VictoryShares ESG Corporate Bond ETF,NASDAQ,ETF,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCTT,Ultra Clean Hldgs Inc,NASDAQ,Stock,2004-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UCYB,ProShares Ultra Nasdaq Cybersecurity ETF,NASDAQ,ETF,2021-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UDEC,Innovator U.S. Equity Ultra Buffer ETF - December,BATS,ETF,2019-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UDMY,Udemy Inc,NASDAQ,Stock,2021-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UDN,Invesco DB US Dollar Index Bearish Fund,NYSE ARCA,ETF,2007-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UDOW,ProShares UltraPro Dow30,NYSE ARCA,ETF,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UDR,UDR Inc,NYSE,Stock,1990-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UE,Urban Edge Properties,NYSE,Stock,2015-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UEC,Uranium Energy Corp,NYSE MKT,Stock,2007-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UEIC,Universal Electronics Inc,NASDAQ,Stock,1993-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UEPS,Net 1 UEPS Technologies Inc,NASDAQ,Stock,1999-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UEVM,VictoryShares USAA MSCI Emerging Markets Value Momentum ETF,NYSE ARCA,ETF,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UFAB,Unique Fabricating Inc,NYSE MKT,Stock,2015-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UFCS,United Fire Group Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UFEB,Innovator U.S. Equity Ultra Buffer ETF - February,BATS,ETF,2020-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UFI,UNIFI Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UFO,PROCURE SPACE ETF ,NASDAQ,ETF,2019-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UFPI,UFP Industries Inc,NASDAQ,Stock,1993-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UFPT,UFP Technologies Inc,NASDAQ,Stock,1993-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UG,United-Guardian Inc,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UGA,United States Gasoline Fund LP,NYSE ARCA,ETF,2008-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UGAZ,VelocityShares 3x Long Natural Gas ETN,NYSE ARCA,ETF,2012-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UGCE,Uncommon Portfolio Design Core Equity ETF,NYSE ARCA,ETF,2021-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UGE,ProShares Ultra Consumer Goods,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UGI,UGI Corp,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UGIC,UGI Corp,NYSE,Stock,2021-05-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UGL,ProShares Ultra Gold,NYSE ARCA,ETF,2008-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UGP,Ultrapar Participacoes S.A.,NYSE,Stock,1999-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UGRO,Urban-gro Inc,NASDAQ,Stock,2019-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UHAL,Amerco,NASDAQ,Stock,1994-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UHS,Universal Health Services Inc - Class B,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UHT,Universal Health Realty Income Trust,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UI,Ubiquiti Inc,NYSE,Stock,2011-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UIHC,United Insurance Holdings Corp,NASDAQ,Stock,2007-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UIS,Unisys Corp,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UITB,VictoryShares USAA Core Intermediate-Term Bond ETF,NYSE ARCA,ETF,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UIVM,VictoryShares USAA MSCI International Value Momentum ETF,NYSE ARCA,ETF,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UJAN,Innovator U.S. Equity Ultra Buffer ETF - January,BATS,ETF,2019-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UJB,PROSHARES ULTRA HIGH YIELD ,NYSE ARCA,ETF,2011-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UJUL,Innovator U.S. Equity Ultra Buffer ETF - July,BATS,ETF,2018-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UJUN,Innovator U.S. Equity Ultra Buffer ETF - June,BATS,ETF,2019-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UK,Ucommune International Ltd - Class A,NASDAQ,Stock,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UKOMW,Ucommune International Ltd - Warrants (17/11/2025),NASDAQ,Stock,2020-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UL,Unilever plc,NYSE,Stock,1988-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ULBI,Ultralife Corp,NASDAQ,Stock,1992-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ULBR,Citigroup Global Markets Holdings Inc VelocityShares Long LIBOR ETN,NYSE ARCA,ETF,2017-08-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ULCC,Frontier Group Holdings Inc,NASDAQ,Stock,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ULE,ProShares Ultra Euro,NYSE ARCA,ETF,2008-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ULH,Universal Logistics Holdings Inc,NASDAQ,Stock,2016-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ULST,SPDR SSgA Ultra Short Term Bond ETF,NYSE ARCA,ETF,2013-10-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ULTA,Ulta Beauty Inc,NASDAQ,Stock,2007-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ULTR,IQ Ultra Short Duration ETF,NYSE ARCA,ETF,2019-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ULVM,VictoryShares USAA MSCI USA Value Momentum ETF,NYSE ARCA,ETF,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMAR,Innovator U.S. Equity Ultra Buffer ETF - March,BATS,ETF,2020-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMAY,Innovator U.S. Equity Ultra Buffer ETF - May,BATS,ETF,2020-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMBF,UMB Financial Corp,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMC,United Micro Electronics,NYSE,Stock,2000-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMDD,ProShares UltraPro MidCap400,NYSE ARCA,ETF,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMH,UMH Properties Inc,NYSE,Stock,1993-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMH-P-C,UMH Properties Inc 675 Series C Cumulative Redeemable Preferred Stock Liquidation Preference 25 per share,NYSE,Stock,2017-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMH-P-D,UMH Properties Inc 6375 Series D Cumulative Redeemable Preferred Stock Liquidation Preference 25 per share,NYSE,Stock,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMI,USCF Midstream Energy Income Fund ETF,NYSE ARCA,ETF,2017-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMMA,Wahed Dow Jones Islamic World ETF,NASDAQ,ETF,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UMPQ,Umpqua Holdings Corp,NASDAQ,Stock,1998-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNAM,Unico American Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNB,Union Bankshares Inc,NASDAQ,Stock,1999-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNCY,Unicycive Therapeutics Inc,NASDAQ,Stock,2021-07-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNF,Unifirst Corp,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNFI,United Natural Foods Inc,NYSE,Stock,1996-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNG,United States Natural Gas Fund,NYSE ARCA,ETF,2007-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNH,Unitedhealth Group Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNIT,Uniti Group Inc,NASDAQ,Stock,2015-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNL,United States 12 Month Natural Gas Fund,NYSE ARCA,ETF,2010-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNM,Unum Group,NYSE,Stock,1986-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNMA,Unum Group 6250 Junior Subordinated Notes due 2058,NYSE,Stock,2018-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNOV,Innovator U.S. Equity Ultra Buffer ETF - November,BATS,ETF,2019-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNP,Union Pacific Corp,NYSE,Stock,1980-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNQL,Unique Logistics International Inc,NYSE ARCA,Stock,2013-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNTY,Unity Bancorp Inc,NASDAQ,Stock,1997-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UNVR,Univar Solutions Inc,NYSE,Stock,2015-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UOCT,Innovator U.S. Equity Ultra Buffer ETF - October,BATS,ETF,2018-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UONE,Urban One Inc - Class A,NASDAQ,Stock,1999-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UONEK,Urban One Inc - Class D,NASDAQ,Stock,2000-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UP,Wheels Up Experience Inc - Class A,NYSE,Stock,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UP-WS,Wheels Up Experience Inc - Warrants (19/09/2025),NYSE,Stock,2020-11-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPAR,UPAR Ultra Risk Parity ETF,NYSE ARCA,ETF,2022-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPC,Universe Pharmaceuticals INC,NASDAQ,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPH,UpHealth Inc,NYSE,Stock,2019-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPH-WS,UpHealth Inc Warrants,NYSE,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPLD,Upland Software Inc,NASDAQ,Stock,2014-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPRO,ProShares UltraPro S&P 500 ETF,NYSE ARCA,ETF,2009-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPS,United Parcel Service Inc - Class B,NYSE,Stock,1999-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPST,Upstart Holdings Inc,NASDAQ,Stock,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPTD,TradeUP Acquisition Corp,NASDAQ,Stock,2021-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPTDU,TradeUP Acquisition Corp - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPTDW,TradeUP Acquisition Corp - Warrants (15/10/2027),NASDAQ,Stock,2021-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPV,ProShares Ultra FTSE Europe,NYSE ARCA,ETF,2010-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPW,ProShares Ultra Utilities,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UPWK,Upwork Inc,NASDAQ,Stock,2018-10-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "URA,Global X Uranium ETF,NYSE ARCA,ETF,2010-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "URBN,Urban Outfitters Inc,NASDAQ,Stock,1993-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "URE,ProShares Ultra Real Estate,NYSE ARCA,ETF,2007-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "URG,Ur-Energy Inc,NYSE MKT,Stock,2008-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "URGN,UroGen Pharma Ltd,NASDAQ,Stock,2017-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "URI,United Rentals Inc,NYSE,Stock,1997-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "URNM,North Shore Global Uranium Mining ETF,NYSE ARCA,ETF,2019-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UROY,Uranium Royalty Corp,NASDAQ,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "URTH,iShares MSCI World ETF,NYSE ARCA,ETF,2012-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "URTY,ProShares UltraPro Russell2000,NYSE ARCA,ETF,2010-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USA,Liberty All-Star Equity Fund,NYSE,ETF,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USAC,USA Compression Partners LP,NYSE,Stock,2013-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USAI,Pacer American Energy Independence ETF,NYSE ARCA,ETF,2017-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USAK,USA Truck Inc,NASDAQ,Stock,1992-03-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USAP,Universal Stainless & Alloy Products Inc,NASDAQ,Stock,1994-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USAS,Americas Gold and Silver Corp,NYSE MKT,Stock,2016-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USAU,U.S. Gold Corp,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USB,U.S. Bancorp.,NYSE,Stock,1987-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USB-P-A,US Bancorp Depositary Shares Series A,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USB-P-H,US Bancorp Depositary Shares repstg 11000th Pfd Ser B,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USB-P-P,US Bancorp Depositary Shares Series K,NYSE,Stock,2018-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USB-P-Q,U.S. Bancorp.,NYSE,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USB-P-R,U.S. Bancorp.,NYSE,Stock,2021-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USB-P-S,U.S. Bancorp.,NYSE,Stock,2022-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USBF,ISHARES USD BOND FACTOR ETF ,NASDAQ,ETF,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USCB,USCB Financial Holdings Inc - Class A,NASDAQ,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USCI,United States Commodity Index Fund,NYSE ARCA,ETF,2010-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USCT,Tkb Critical Technologies 1 - Class A,NASDAQ,Stock,2021-12-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USCTU,Tkb Critical Technologies 1 - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USCTW,Tkb Critical Technologies 1 - Warrants (20/10/2026),NASDAQ,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USD,ProShares Ultra Semiconductors,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USDP,USD Partners LP,NYSE,Stock,2014-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USDU,WisdomTree Bloomberg U.S. Dollar Bullish Fund,NYSE ARCA,ETF,2013-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USEG,U.S. Energy Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USEP,Innovator U.S. Equity Ultra Buffer ETF - September,BATS,ETF,2019-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USEQ,Invesco Russell 1000 Enhanced Equal Weight ETF,BATS,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USER,UserTesting Inc,NYSE,Stock,2021-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USFD,US Foods Holding Corp,NYSE,Stock,2016-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USFR,WisdomTree Floating Rate Treasury Fund,NYSE ARCA,ETF,2014-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USHY,iShares Broad USD High Yield Corporate Bond ETF,BATS,ETF,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USI,PRINCIPAL ULTRA-SHORT ACTIVE INCOME ETF ,NYSE ARCA,ETF,2019-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USIG,iShares Broad USD Investment Grade Corporate Bond ETF,NASDAQ,ETF,2007-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USIO,Usio Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USL,United States 12 Month Oil Fund LP,NYSE ARCA,ETF,2007-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USLB,Invesco Russell 1000 Low Beta Equal Weight ETF,NASDAQ,ETF,2015-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USLM,United States Lime & Minerals Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USM,United States Cellular Corporation,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USMC,Principal U.S. Mega-Cap ETF,NASDAQ,ETF,2017-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USMF,WisdomTree U.S. Multifactor Fund,BATS,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USML,UBS AG London Branch,NYSE ARCA,ETF,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USMV,iShares MSCI USA Min Vol Factor ETF,BATS,ETF,2011-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USNA,Usana Health Sciences Inc,NYSE,Stock,1995-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USO,United States Oil Fund,NYSE ARCA,ETF,2006-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USOI,Credit Suisse AG Nassau Branch,NASDAQ,ETF,2017-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USPH,U.S. Physical Therapy Inc,NYSE,Stock,1992-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USRT,iShares Core U.S. REIT ETF,NYSE ARCA,ETF,2007-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USSG,Xtrackers MSCI USA ESG Leaders Equity ETF,NYSE ARCA,ETF,2019-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UST,ProShares Ultra 7-10 Year Treasury,NYSE ARCA,ETF,2010-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USTB,VictoryShares USAA Core Short-Term Bond ETF,NYSE ARCA,ETF,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USVM,VictoryShares USAA MSCI USA Small Cap Value Momentum ETF,NYSE ARCA,ETF,2017-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USVT,US VALUE ETF ,NYSE ARCA,ETF,2021-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USWS,U.S. Well Services Inc - Class A,NASDAQ,Stock,2017-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USX,U.S. Xpress Enterprises Inc - Class A,NYSE,Stock,2018-06-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "USXF,iShares ESG Advanced MSCI USA ETF,NASDAQ,ETF,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTAA,UTA Acquisition Corp - Class A,NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTAAU,UTA Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTAAW,UTA Acquisition Corp - Warrants (30/10/2026),NASDAQ,Stock,2022-01-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTES,Virtus Reaves Utilities ETF,NYSE ARCA,ETF,2015-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTF,Cohen & Steers Infrastructure Fund Inc,NYSE,ETF,2004-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTG,Reaves Utility Income Fund,NYSE MKT,ETF,2004-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTHR,United Therapeutics Corp,NASDAQ,Stock,1999-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTI,Universal Technical Institute Inc,NYSE,Stock,2003-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTL,Unitil Corp,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTMD,Utah Medical Products Inc,NASDAQ,Stock,1999-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTME,UTime Ltd,NASDAQ,Stock,2021-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTRN,Vesper U.S. Large Cap Short-Term Reversal Strategy ETF,NYSE ARCA,ETF,2018-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTRS,Minerva Surgical Inc,NASDAQ,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTSI,UTStarcom Holdings Corp,NASDAQ,Stock,2000-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTSL,Direxion Daily Utilities Bull 3X Shares,NYSE ARCA,ETF,2017-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTX-W,United Technologies Corporation ExDistribution When Issued,NYSE,Stock,2020-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTZ,Utz Brands Inc - Class A,NYSE,Stock,2018-11-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UTZ-WS,Utz Brands Inc - Warrants (28/08/2025),NYSE,Stock,2020-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UUP,Invesco DB US Dollar Index Bullish Fund,NYSE ARCA,ETF,2007-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UUU,Universal Security Instruments Inc,NYSE MKT,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UUUU,Energy Fuels Inc,NYSE MKT,Stock,2006-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UVDV,UVA Dividend Value ETF,NYSE ARCA,ETF,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UVE,Universal Insurance Holdings Inc,NYSE,Stock,2003-06-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UVSP,Univest Financial Corp,NASDAQ,Stock,1998-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UVV,Universal Corp,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UVXY,ProShares Ultra VIX Short-Term Futures ETF,BATS,ETF,2011-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UWM,ProShares Ultra Russell2000,NYSE ARCA,ETF,2007-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UWMC,UWM Holdings Corporation Class A,NYSE,Stock,2021-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UWMC-WS,UWM Holdings Corporation Warrant,NYSE,Stock,2021-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UXI,ProShares Ultra Industrials,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UXIN,Uxin Ltd,NASDAQ,Stock,2018-06-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UYG,ProShares Ultra Financials,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UYM,PROSHARES ULTRA BASIC MATERIALS ,NYSE ARCA,ETF,2007-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UZD,United States Cellular Corporation,NYSE,Stock,2020-08-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UZE,United States Cellular Corporation,NYSE,Stock,2020-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "UZF,United States Cellular Corporation,NYSE,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "V,Visa Inc - Class A,NYSE,Stock,2008-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VABK,Virginia National Bankshares Corp,NASDAQ,Stock,2001-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VABS,VIRTUS NEWFLEET ABS/MBS ETF ,NYSE ARCA,ETF,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VAC,Marriott Vacations Worldwide Corp,NYSE,Stock,2011-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VACC,Vaccitech plc,NASDAQ,Stock,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VAL,Valaris Ltd,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VAL-WS,Valaris Ltd - Warrants (29/04/2028),NYSE,Stock,2021-05-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VALE,Vale S.A.,NYSE,Stock,2002-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VALN,Valneva SE,NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VALQ,American Century STOXX U.S. Quality Value ETF,NYSE ARCA,ETF,2018-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VALT,ETFMG SIT ULTRA SHORT ETF ,NYSE ARCA,ETF,2019-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VALU,Value Line Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VAM,The Vivaldi Opportunities Fund,NYSE,Stock,2018-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VAMO,Cambria ETF Trust Cambria Value and Momentum ETF,BATS,ETF,2015-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VAPO,Vapotherm Inc,NYSE,Stock,2018-11-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VAQC,Vector Acquisition Corp II - Class A,NASDAQ,Stock,2021-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VATE,Innovate Corp,NYSE,Stock,2009-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VAW,Vanguard Materials ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VAXX,Vaxxinity Inc - Class A,NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VB,Vanguard Small Cap ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBB,VALKYRIE BALANCE SHEET OPPORTUNITIES ETF ,NASDAQ,ETF,2021-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBF,Invesco Bond Fund,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBFC,Village Bank & Trust Financial Corporation,NASDAQ,Stock,1996-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBIV,VBI Vaccines Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBK,Vanguard Small Cap Growth ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBLT,Vascular Biogenics Ltd,NASDAQ,Stock,2014-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBND,VIDENT CORE U.S. BOND STRATEGY ETF ,NYSE ARCA,ETF,2014-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBNK,VILLAGE BANCORP INC,NASDAQ,Stock,2021-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBOC,Viscogliosi Brothers Acquisition Corp,NASDAQ,Stock,2022-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBOCU,Viscogliosi Brothers Acquisition Corp - Units (1 Ord & 1/2 War),NASDAQ,Stock,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBOCW,Viscogliosi Brothers Acquisition Corp - Warrants (18/03/2027),NASDAQ,Stock,2022-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBR,Vanguard Small Cap Value ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VBTX,Veritex Holdings Inc,NASDAQ,Stock,2014-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VC,Visteon Corp,NASDAQ,Stock,2010-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCAR,SIMPLIFY VOLT ROBOCAR DISRUPTION AND TECH ETF ,NYSE ARCA,ETF,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCEB,Vanguard ESG U.S. Corporate Bond ETF,BATS,ETF,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCEL,Vericel Corp,NASDAQ,Stock,1997-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCF,Delaware Investments Colorado Municipal Income Fund Inc,NYSE MKT,ETF,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCIF,Vertical Capital Income Fund.,NYSE,ETF,2019-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCIT,Vanguard Intermediate-Term Corporate Bond ETF,NASDAQ,ETF,2009-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCKA,Vickers Vantage Corp I,NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCKAU,Vickers Vantage Corp I - Units (1 Ord & 1/2 War),NASDAQ,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCKAW,Vickers Vantage Corp I - Warrants (15/09/2027),NASDAQ,Stock,2021-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCLN,VIRTUS DUFF & PHELPS CLEAN ENERGY ETF ,NYSE ARCA,ETF,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCLO,Simplify Volt Cloud and Cybersecurity Disruption ETF,NYSE ARCA,ETF,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCLT,Vanguard Long-Term Corporate Bond ETF,NASDAQ,ETF,2009-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCNX,Vaccinex Inc,NASDAQ,Stock,2018-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCR,Vanguard Consumer Discretionary ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCSA,Vacasa Inc - Class A,NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCSH,Vanguard Short-Term Corporate Bond ETF,NASDAQ,ETF,2009-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCTR,Victory Capital Holdings Inc - Class A,NASDAQ,Stock,2018-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCV,Invesco California Value Municipal Income Trust,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCXA,10X Capital Venture Acquisition Corp II - Class A,NASDAQ,Stock,2021-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCXAU,10X Capital Venture Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCXAW,10X Capital Venture Acquisition Corp II - Warrants (19/04/2028),NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCXB,10X Capital Venture Acquisition Corp III - Class A,NYSE,Stock,2022-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCXB-U,10X Capital Venture Acquisition Corp III - Units (1 Ord Share Class A & 1/2 War),NYSE,Stock,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCXB-WS,10X Capital Venture Acquisition Corp III - Warrants (30/06/2028),NYSE,Stock,2022-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VCYT,Veracyte Inc,NASDAQ,Stock,2013-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VDC,Vanguard Consumer Staples ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VDE,Vanguard Energy ETF,NYSE ARCA,ETF,2004-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VDNI,V-Shares US Leadership Diversity ETF,NYSE ARCA,ETF,2021-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEA,Vanguard FTSE Developed Markets ETF,NYSE ARCA,ETF,2007-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEC,Vectrus Inc,NYSE,Stock,2014-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VECO,Veeco Instruments Inc,NASDAQ,Stock,1994-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VECT,VectivBio Holding AG,NASDAQ,Stock,2021-04-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEEE,Twin Vee PowerCats Company,NASDAQ,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEEV,Veeva Systems Inc - Class A,NYSE,Stock,2013-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEGA,AdvisorShares STAR Global Buy-Write ETF,NYSE ARCA,ETF,2012-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEGI,iShares MSCI Global Agriculture Producers ETF,NYSE ARCA,ETF,2012-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEGN,US Vegan Climate ETF,NYSE ARCA,ETF,2019-09-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEL,Velocity Financial Inc,NYSE,Stock,2020-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VELO,Velocity Acquisition Corp - Class A,NASDAQ,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VELOU,Velocity Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VELOW,Velocity Acquisition Corp - Warrants (24/02/2028),NASDAQ,Stock,2021-04-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VENA,Venus Acquisition Corp,NASDAQ,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VENAR,Venus Acquisition Corp,NASDAQ,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VENAU,Venus Acquisition Corp - Units (1 Ord 1 Right & 1 War),NASDAQ,Stock,2021-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VENAW,Venus Acquisition Corp - Warrants (30/04/2027),NASDAQ,Stock,2021-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEON,VEON Ltd,NASDAQ,Stock,1996-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VER-P-F,VEREIT Inc,NYSE,Stock,2015-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERA,Vera Therapeutics Inc - Class A,NASDAQ,Stock,2021-05-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERB,Verb Technology Company Inc,NASDAQ,Stock,2015-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERBW,Verb Technology Company Inc - Warrants (14/03/2024),NASDAQ,Stock,2019-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERI,Veritone Inc,NASDAQ,Stock,2017-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERO,Venus Concept Inc,NASDAQ,Stock,2012-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERS,ProShares Metaverse ETF,NYSE ARCA,ETF,2022-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERU,Veru Inc,NASDAQ,Stock,1999-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERV,Verve Therapeutics Inc,NASDAQ,Stock,2021-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERX,Vertex Inc Class A,NASDAQ,Stock,2020-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VERY,Vericity Inc,NASDAQ,Stock,2019-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VET,Vermilion Energy Inc,NYSE,Stock,2010-09-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEU,Vanguard FTSE All-World ex-US ETF,NYSE ARCA,ETF,2007-03-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VEV,Vicinity Motor Corp,NASDAQ,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFC,VF Corp,NYSE,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFF,Village Farms International Inc,NASDAQ,Stock,2010-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFH,Vanguard Financials ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFIN,SIMPLIFY VOLT FINTECH DISRUPTION ETF ,NYSE ARCA,ETF,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFL,Delaware Investments Natnl Mncpl Incm Fd,NYSE MKT,ETF,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFLQ,Vanguard U.S. Liquidity Factor ETF,BATS,ETF,2018-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFMF,Vanguard U.S. Multifactor ETF,BATS,ETF,2018-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFMO,Vanguard U.S. Momentum Factor ETF,BATS,ETF,2018-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFMV,Vanguard U.S. Minimum Volatility ETF,BATS,ETF,2018-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFQY,Vanguard U.S. Quality Factor ETF,BATS,ETF,2018-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VFVA,Vanguard U.S. Value Factor ETF,BATS,ETF,2018-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VG,Vonage Holdings Corp,NASDAQ,Stock,2006-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGI,Virtus Global MultiSector Income Fund,NYSE,ETF,2012-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGII,Virgin Group Acquisition Corp II - Class A,NYSE,Stock,2021-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGII-U,Virgin Group Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2021-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGII-WS,Virgin Group Acquisition Corp II - Warrants (01/01/9999),NYSE,Stock,2021-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGIT,Vanguard Intermediate-Term Treasury ETF,NASDAQ,ETF,2009-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGK,Vanguard FTSE Europe ETF,NYSE ARCA,ETF,2005-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGLT,Vanguard Long-Term Treasury ETF,NASDAQ,ETF,2010-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGM,Invesco Trust for Investment Grade Municipals,NYSE,ETF,1992-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGR,Vector Group Ltd,NYSE,Stock,1987-10-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGSH,Vanguard Short-Term Treasury ETF,NASDAQ,ETF,2009-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGT,Vanguard Information Technology ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VGZ,Vista Gold Corp,NYSE MKT,Stock,1990-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VHAQ,Viveon Health Acquisition Corp,NYSE MKT,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VHAQ-U,Viveon Health Acquisition Corp - Units (1 Ord 1 War & 1 Right ),NYSE MKT,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VHAQ-WS,Viveon Health Acquisition Corp - Warrants (01/01/9999),NYSE MKT,Stock,2021-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VHC,Virnetx Holding Corp,NYSE,Stock,1999-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VHI,Valhi Inc,NYSE,Stock,1986-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VHNA,Vahanna Tech Edge Acquisition I Corp - Class A,NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VHNAU,Vahanna Tech Edge Acquisition I Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VHNAW,Vahanna Tech Edge Acquisition I Corp - Warrants (30/11/2028),NASDAQ,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VHT,Vanguard Health Care ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIA,Via Renewables Inc - Class A,NASDAQ,Stock,2014-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIACP,ViacomCBS Inc,NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIAO,VIA optronics AG,NYSE,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIASP,Via Renewables Inc,NASDAQ,Stock,2017-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIAV,Viavi Solutions Inc,NASDAQ,Stock,2015-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VICE,ADVISORSHARES VICE ETF ,NYSE ARCA,ETF,2020-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VICI,VICI Properties Inc,NYSE,Stock,2017-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VICR,Vicor Corp,NASDAQ,Stock,1991-11-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIDI,WisdomTree Vident International Equity Fund,NYSE ARCA,ETF,2013-10-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIEW,View Inc - Class A,NASDAQ,Stock,2020-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIEWW,View Inc - Warrants (08/03/2026),NASDAQ,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIG,Vanguard Dividend Appreciation FTF,NYSE ARCA,ETF,2006-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIGI,Vanguard International Dividend Appreciation ETF,NASDAQ,ETF,2016-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIGL,Vigil Neuroscience Inc,NASDAQ,Stock,2022-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VII,7GC & Co Holdings Inc - Class A,NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIIAU,7GC & Co Holdings Inc - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2020-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIIAW,7GC & Co Holdings Inc - Warrants (23/12/2025),NASDAQ,Stock,2021-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VINC,Vincerx Pharma Inc,NASDAQ,Stock,2020-05-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VINE,Fresh Vine Wine Inc,NYSE MKT,Stock,2021-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VINO,Gaucho Group Holdings Inc,NASDAQ,Stock,2016-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VINP,Vinci Partners Investments Ltd - Class A,NASDAQ,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIOG,VANGUARD S&P SMALL-CAP 600 GROWTH INDEX FUND ETF SHARES,NYSE ARCA,ETF,2010-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIOO,Vanguard S&P Small-Cap 600 ETF,NYSE ARCA,ETF,2010-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIOT,Viomi Technology Co Ltd,NASDAQ,Stock,2018-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIOV,VANGUARD S&P SMALL-CAP 600 VALUE INDEX FUND ETF SHARES,NYSE ARCA,ETF,2010-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIPS,Vipshop Holdings Ltd,NYSE,Stock,2012-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIR,Vir Biotechnology Inc,NASDAQ,Stock,2019-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIRC,Virco Manufacturing Corp,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIRI,Virios Therapeutics Inc,NASDAQ,Stock,2020-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIRS,Pacer BioThreat Strategy ETF,BATS,ETF,2020-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIRT,Virtu Financial Inc - Class A,NASDAQ,Stock,2015-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIRX,Viracta Therapeutics Inc,NASDAQ,Stock,2005-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIS,Vanguard Industrials ETF,NYSE ARCA,ETF,2004-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VISL,Vislink Technologies Inc,NASDAQ,Stock,2012-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIST,Vista Oil & Gas Sab De Cv,NYSE,Stock,2019-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VITL,Vital Farms Inc,NASDAQ,Stock,2020-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIV,Telefonica Brasil S.A.,NYSE,Stock,1998-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIV-W,Telefonica Brasil S.A. American Depositary Shares Each representing One When Issued,NYSE,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIVE,Viveve Medical Inc,NASDAQ,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIVK,Vivakor Inc,NASDAQ,Stock,2011-02-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIVO,Meridian Bioscience Inc,NASDAQ,Stock,1992-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIXM,ProShares VIX Mid-Term Futures ETF,BATS,ETF,2011-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VIXY,ProShares VIX Short-Term Futures ETF,BATS,ETF,2011-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VJET,Voxeljet AG,NASDAQ,Stock,2013-10-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VKI,Invesco Advantage Municipal Income Trust II,NYSE MKT,ETF,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VKQ,Invesco Municipal Trust Common,NYSE,ETF,1991-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VKTX,Viking Therapeutics Inc,NASDAQ,Stock,2015-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLAT,Valor Latitude Acquisition Corp - Class A,NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLATU,Valor Latitude Acquisition Corp - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-05-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLATW,Valor Latitude Acquisition Corp - Warrants (02/04/2026),NASDAQ,Stock,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLCN,Volcon Inc,NASDAQ,Stock,2021-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLD,Velo3D Inc - New,NYSE,Stock,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLD-WS,Velo3D Inc Redeemable warrants each whole warrant exercisable for one share of Common Stock at an exercise price of 11.50,NYSE,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLDR,Velodyne Lidar Inc,NASDAQ,Stock,2018-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLDRW,Velodyne Lidar Inc Warrant,NASDAQ,Stock,2020-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLGEA,Village Super Market Inc - Class A,NASDAQ,Stock,1990-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLN,Valens Semiconductor Ltd,NYSE,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLN-WS,Valens Semiconductor Ltd Warrants each warrant to purchase onehalf of one Ordinary Share,NYSE,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLNS,Valens Company Inc (The),NASDAQ,Stock,2009-09-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLO,Valero Energy Corp,NYSE,Stock,1982-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLON,Vallon Pharmaceuticals Inc,NASDAQ,Stock,2021-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLRS,Controladora Vuela Cia De Aviacion,NYSE,Stock,2013-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLT,Invesco High Income Trust II,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLTA,Volta Inc - Class A,NYSE,Stock,2020-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLTA-WS,Volta Inc - Warrants(14/06/2027),NYSE,Stock,2020-11-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLU,SPDR S&P 1500 Value Tilt ETF,NYSE ARCA,ETF,2012-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLUE,iShares MSCI USA Value Factor ETF,BATS,ETF,2013-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLY,Valley National Bancorp,NASDAQ,Stock,1990-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLYPO,Valley National Bancorp 55 Fixed to Floating Rate Series B NonCumulative Perpetual Preferred Stock,NASDAQ,Stock,2017-07-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VLYPP,Valley National Bancorp 625 FixedtoFloating Rate Series A NonCumulative Perpetual Preferred Stock,NASDAQ,Stock,2015-06-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMAR,Vision Marine Technologies Inc,NASDAQ,Stock,2020-11-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMBS,Vanguard Mortgage-Backed Securities ETF,NASDAQ,ETF,2009-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMC,Vulcan Materials Company,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMCAU,Valuence Merger Corp I - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2022-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMD,Viemed Healthcare Inc,NASDAQ,Stock,2018-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMEO,Vimeo Inc,NASDAQ,Stock,2021-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMGA,VMG Consumer Acquisition Corp - Class A,NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMGAU,VMG Consumer Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMGAW,VMG Consumer Acquisition Corp - Warrants (08/11/2026),NASDAQ,Stock,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMI,Valmont Industries Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMM,Delaware Investments MN Muni Inc Fund II,NYSE MKT,ETF,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMO,Invesco Municipal Opportunity Trust,NYSE,ETF,1992-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMOT,Alpha Architect Value Momentum Trend ETF,BATS,ETF,2017-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMW,Vmware Inc - Class A,NYSE,Stock,2007-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VMW-W,VMware Inc Class A,NYSE,Stock,2021-10-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNAM,Global X MSCI Vietnam ETF,NYSE ARCA,ETF,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNCE,Vince Holding Corp,NYSE,Stock,2013-11-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNDA,Vanda Pharmaceuticals Inc,NASDAQ,Stock,2006-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNE,Veoneer Inc,NYSE,Stock,2018-06-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNET,VNET Group Inc,NASDAQ,Stock,2011-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNLA,Janus Henderson Short Duration Income ETF,NYSE ARCA,ETF,2016-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNM,VanEck Vietnam ETF,BATS,ETF,2009-08-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNMC,Natixis Vaughan Nelson Mid Cap ETF,NYSE ARCA,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNO,Vornado Realty Trust,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNO-P-L,Vornado Realty Trust Pfd Ser L,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNO-P-M,Vornado Realty Trust 525 Series M Cumulative Redeemable Preferred Shares of Beneficial Interest liquidation preference 2500 per share no par value per share,NYSE,Stock,2017-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNO-P-N,Vornado Realty Trust,NYSE,Stock,2020-11-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNO-P-O,Vornado Realty Trust 4.45 Series O Cumulative Redeemable Preferred Shares Liquidation Preference 25.00 Per Share,NYSE,Stock,2021-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNOM,Viper Energy Partners LP,NASDAQ,Stock,2014-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNQ,Vanguard Real Estate Index Fund ETF,NYSE ARCA,ETF,2004-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNQI,Vanguard Global ex-U.S. Real Estate ETF,NASDAQ,ETF,2010-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNRX,VolitionRX Ltd,NYSE MKT,Stock,2007-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNSE,Natixis Vaughan Nelson Select ETF,NYSE ARCA,ETF,2020-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNT,Vontier Corporation,NYSE,Stock,2020-09-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNT-W,Vontier Corporation When Issued,NYSE,Stock,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VNTR,Venator Materials PLC,NYSE,Stock,2017-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VO,Vanguard Mid-Cap ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOC,VOC Energy Trust,NYSE,Stock,2011-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOD,Vodafone Group plc,NASDAQ,Stock,1988-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOE,Vanguard Mid-Cap Value ETF,NYSE ARCA,ETF,2006-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOLT,Volt Information Sciences Inc,NYSE MKT,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VONE,Vanguard Russell 1000 Index ETF,NASDAQ,ETF,2010-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VONG,Vanguard Russell 1000 Growth Index ETF,NASDAQ,ETF,2010-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VONV,Vanguard Russell 1000 Value Index ETF,NASDAQ,ETF,2010-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOO,Vanguard S&P 500 ETF,NYSE ARCA,ETF,2010-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOOG,Vanguard S&P 500 Growth ETF,NYSE ARCA,ETF,2010-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOOV,Vanguard S&P 500 Value ETF,NYSE ARCA,ETF,2010-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOR,Vor Biopharma Inc,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VORB,Virgin Orbit Holdings Inc,NASDAQ,Stock,2021-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VORBW,Virgin Orbit Holdings Inc - Warrants (29/12/2026),NASDAQ,Stock,2021-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOT,Vanguard Mid-Cap Growth ETF,NYSE ARCA,ETF,2006-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOTE,Engine No. 1 Transform 500 ETF,BATS,ETF,2021-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOX,Vanguard Communication Services ETF,NYSE ARCA,ETF,2004-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOXX,VOXX International Corp - Class A,NASDAQ,Stock,1992-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOYA,Voya Financial Inc,NYSE,Stock,2013-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VOYA-P-B,Voya Financial Inc,NYSE,Stock,2019-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPC,Virtus Private Credit Strategy ETF,NYSE ARCA,ETF,2019-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPCB,VPC Impact Acquisition Holdings II - Class A,NASDAQ,Stock,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPCBU,VPC Impact Acquisition Holdings II - Units (1 Ord Share Class A & 1/4 War),NASDAQ,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPCBW,VPC Impact Acquisition Holdings II - Warrants (05/03/2026),NASDAQ,Stock,2021-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPG,Vishay Precision Group Inc,NYSE,Stock,2010-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPL,Vanguard FTSE Pacific ETF,NYSE ARCA,ETF,2005-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPN,Global X Data Center REITs & Digital Infrastructure ETF,NASDAQ,ETF,2020-10-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPOP,SIMPLIFY VOLT POP CULTURE DISRUPTION ETF ,NYSE ARCA,ETF,2020-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPU,Vanguard Utilities ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VPV,Invesco Pennsylvania Value Municipal Income Trust,NYSE,ETF,1994-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VQS,VIQ Solutions Inc,NASDAQ,Stock,2021-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRA,Vera Bradley Inc,NASDAQ,Stock,2010-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRAI,Virtus Real Asset Income ETF,NYSE ARCA,ETF,2019-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRAR,Glimpse Group Inc (The),NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRAY,ViewRay Inc,NASDAQ,Stock,2015-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRCA,Verrica Pharmaceuticals Inc,NASDAQ,Stock,2018-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRDN,Viridian Therapeutics Inc,NASDAQ,Stock,2014-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRE,Veris Residential Inc,NYSE,Stock,1994-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VREX,Varex Imaging Corp,NASDAQ,Stock,2017-01-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRIG,Invesco Variable Rate Investment Grade ETF,NASDAQ,ETF,2016-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRM,Vroom Inc,NASDAQ,Stock,2020-06-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRME,VerifyMe Inc,NASDAQ,Stock,2009-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRMEW,VerifyMe Inc - Warrants (17/06/2025),NASDAQ,Stock,2020-06-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRNA,Verona Pharma Plc,NASDAQ,Stock,2017-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRNS,Varonis Systems Inc,NASDAQ,Stock,2014-02-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRNT,Verint Systems Inc,NASDAQ,Stock,2002-05-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRP,Invesco Variable Rate Preferred ETF,NYSE ARCA,ETF,2014-05-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRPX,Virpax Pharmaceuticals Inc,NASDAQ,Stock,2021-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRRM,Verra Mobility Corp - Class A,NASDAQ,Stock,2017-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRS,Verso Corp - Class A,NYSE,Stock,2016-07-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRSK,Verisk Analytics Inc,NASDAQ,Stock,2009-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRSN,Verisign Inc,NASDAQ,Stock,1998-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRT,Vertiv Holdings Co - Class A,NYSE,Stock,2018-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRTS,Virtus Investment Partners Inc,NASDAQ,Stock,2009-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRTV,Veritiv Corp,NYSE,Stock,2014-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VRTX,Vertex Pharmaceuticals Inc,NASDAQ,Stock,1991-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VS,Versus Systems Inc,NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSAC,Vision Sensing Acquisition Corp - Class A,NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSACU,Vision Sensing Acquisition Corp - Units (1 Ord Class A & 3/4 War),NASDAQ,Stock,2021-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSACW,Vision Sensing Acquisition Corp - Warrants (21/10/2026),NASDAQ,Stock,2021-12-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSAT,Viasat Inc,NASDAQ,Stock,1996-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSCO,Victoria`s Secret & Company,NYSE,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSCO-W,Victorias Secret & Co. WhenIssued,NYSE,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSDA,VictoryShares Dividend Accelerator ETF,NASDAQ,ETF,2017-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSEC,VSE Corp,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSGX,Vanguard ESG International Stock ETF,BATS,ETF,2018-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSH,Vishay Intertechnology Inc,NYSE,Stock,1988-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSL,VOLSHARES LARGE CAP ETF ,NYSE ARCA,ETF,2018-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSLU,Applied Finance Valuation Large Cap ETF,NYSE ARCA,ETF,2021-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSMV,VICTORYSHARES US MULTI-FACTOR MINIMUM VOLATILITY ETF ,NASDAQ,ETF,2017-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSPY,VectorShares Min Vol ETF,NYSE ARCA,ETF,2021-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSS,Vanguard FTSE All-World Ex-US Small Capital Index Fund ETF,NYSE ARCA,ETF,2009-04-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSSYW,Versus Systems Inc - Warrants- Unit A (17/12/2025),NASDAQ,Stock,2021-01-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VST,Vistra Corp,NYSE,Stock,2016-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VST-WS-A,Vistra Corp - Warrants (02/02/2024),NYSE,Stock,2018-04-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSTA,Vasta Platform Ltd Class A,NASDAQ,Stock,2020-07-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSTM,Verastem Inc,NASDAQ,Stock,2012-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VSTO,Vista Outdoor Inc,NYSE,Stock,2015-02-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VT,Vanguard Total World Stock ETF,NYSE ARCA,ETF,2008-06-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTA,Invesco Dynamic Credit Opportu,NYSE,ETF,2007-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTAQ,Ventoux CCM Acquisition Corp,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTAQR,Ventoux CCM Acquisition Corp,NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTAQU,Ventoux CCM Acquisition Corp - Units (1 Ord 1Right & 1 War),NASDAQ,Stock,2020-12-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTAQW,Ventoux CCM Acquisition Corp - Warrants (30/09/2025),NASDAQ,Stock,2021-02-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTC,Vanguard Total Corporate Bond ETF,NASDAQ,ETF,2017-11-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTEB,Vanguard Tax-Exempt Bond ETF,NYSE ARCA,ETF,2015-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTEX,Vtex - Class A,NYSE,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTGN,VistaGen Therapeutics Inc,NASDAQ,Stock,2016-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTHR,Vanguard Russell 3000 Index ETF,NASDAQ,ETF,2010-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTI,Vanguard Total Stock Market ETF,NYSE ARCA,ETF,2001-05-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTIP,Vanguard Short-Term Inflation-Protected Securities Index Fund,NASDAQ,ETF,2012-10-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTIQ,VectoIQ Acquisition Corp II - Class A,NASDAQ,Stock,2021-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTIQU,VectoIQ Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War),NASDAQ,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTIQW,VectoIQ Acquisition Corp II - Warrants(07/01/2028),NASDAQ,Stock,2021-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTN,Invesco Trust For Investment Grade New York Municipals,NYSE,ETF,1992-05-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTNR,Vertex Energy Inc,NASDAQ,Stock,1997-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTOL,Bristow Group Inc,NYSE,Stock,2013-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTR,Ventas Inc,NYSE,Stock,1997-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTRS,Viatris Inc,NASDAQ,Stock,2020-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTRSV,Viatris Inc,NASDAQ,Stock,2020-11-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTRU,Vitru Ltd,NASDAQ,Stock,2020-09-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTSI,VirTra Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTV,Vanguard Value ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTVT,vTv Therapeutics Inc - Class A,NASDAQ,Stock,2015-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTWG,Vanguard Russell 2000 Growth Index ETF,NASDAQ,ETF,2010-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTWO,Vanguard Russell 2000 Index ETF,NASDAQ,ETF,2010-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTWV,Vanguard Russell 2000 Value Index ETF,NASDAQ,ETF,2010-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VTYX,Ventyx Biosciences Inc,NASDAQ,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VUG,Vanguard Growth ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VUSB,Vanguard Ultra-Short Bond ETF,BATS,ETF,2021-04-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VUSE,ESS Vident Core US Equity ETF,NYSE ARCA,ETF,2014-01-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VUZI,Vuzix Corporation,NASDAQ,Stock,2010-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VV,Vanguard Large Cap ETF,NYSE ARCA,ETF,2004-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VVI,Viad Corp,NYSE,Stock,2004-08-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VVNT,Vivint Smart Home Inc - Class A,NYSE,Stock,2020-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VVOS,Vivos Therapeutics Inc,NASDAQ,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VVPR,VivoPower International PLC,NASDAQ,Stock,2016-12-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VVR,Invesco Senior Income Trust,NYSE,ETF,1998-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VVV,Valvoline Inc,NYSE,Stock,2016-09-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VWE,Vintage Wine Estates Inc,NASDAQ,Stock,2021-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VWEWW,Vintage Wine Estates Inc - Warrants (16/08/2027),NASDAQ,Stock,2021-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VWID,Virtus WMC International Dividend ETF,BATS,ETF,2017-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VWO,Vanguard FTSE Emerging Markets ETF,NYSE ARCA,ETF,2005-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VWOB,Vanguard Emerging Markets Government Bond ETF,NASDAQ,ETF,2013-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VWTR,Vidler Water Resources Inc,NASDAQ,Stock,1991-03-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VXF,Vanguard Extended Market Index ETF,NYSE ARCA,ETF,2002-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VXRT,Vaxart Inc,NASDAQ,Stock,2018-02-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VXUS,Vanguard Total International Stock ETF,NASDAQ,ETF,2011-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VXX,Barclays Bank PLC,BATS,ETF,2009-01-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VXZ,iPath Series B SP 500 VIX MidTerm Futures ETN,BATS,ETF,2018-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VYGG,Vy Global Growth - Class A,NYSE,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VYGG-U,Vy Global Growth - Units (1 Ord Share Class A & 1/5 War),NYSE,Stock,2020-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VYGG-WS,Vy Global Growth - Warrants (30/01/2030),NYSE,Stock,2020-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VYGR,Voyager Therapeutics Inc,NASDAQ,Stock,2015-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VYM,Vanguard High Dividend Yield Indx ETF,NYSE ARCA,ETF,2006-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VYMI,Vanguard International High Dividend Yield ETF,NASDAQ,ETF,2016-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VYNE,VYNE Therapeutics Inc,NASDAQ,Stock,2018-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VYNT,Vyant Bio Inc,NASDAQ,Stock,2013-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VZ,Verizon Communications Inc,NYSE,Stock,1983-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VZIO,VIZIO Holding Corp - Class A,NYSE,Stock,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "VZLA,Vizsla Silver Corp,NYSE MKT,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "W,Wayfair Inc - Class A,NYSE,Stock,2014-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAB,Westinghouse Air Brake Technologies Corp,NYSE,Stock,1995-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WABC,Westamerica Bancorporation,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAFD,Washington Federal Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAFDP,Washington Federal Inc,NASDAQ,Stock,2021-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAFU,Wah Fu Education Group Ltd,NASDAQ,Stock,2019-04-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAL,Western Alliance Bancorp,NYSE,Stock,2005-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAL-P-A,Western Alliance Bancorporation Depositary Shares Series A,NYSE,Stock,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WALD,Waldencast Acquisition Corp - Class A,NASDAQ,Stock,2021-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WALDU,Waldencast Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WALDW,Waldencast Acquisition Corp - Warrants (11/03/2026),NASDAQ,Stock,2021-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WANT,DIREXION DAILY CONSUMER DISCRETIONARY BULL 3X SHARES ,NYSE ARCA,ETF,2018-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WARR,Warrior Technologies Acquisition Co - Class A,NYSE,Stock,2021-04-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WARR-U,Warrior Technologies Acquisition Co - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-02-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WARR-WS,Warrior Technologies Acquisition Co - Warrants (31/03/2028),NYSE,Stock,2021-04-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WASH,Washington Trust Bancorp Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAT,Waters Corp,NYSE,Stock,1995-11-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WATT,Energous Corp,NASDAQ,Stock,2014-03-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAVC,Waverley Capital Acquisition Corp 1 - Class A,NYSE,Stock,2021-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAVC-U,Waverley Capital Acquisition Corp 1 - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2021-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAVC-WS,Waverley Capital Acquisition Corp 1 - Warrants (01/01/9999),NYSE,Stock,2021-10-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAVD,WaveDancer Inc,NASDAQ,Stock,1995-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAVE,Eco Wave Power Global AB,NASDAQ,Stock,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WAVSU,Western Acquisition Ventures Corp - Unit (1 Ordinary share & 1 Wrt),NASDAQ,Stock,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WB,Weibo Corp,NASDAQ,Stock,2014-04-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBA,Walgreens Boots Alliance Inc,NASDAQ,Stock,1985-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBAT,WisdomTree Battery Value Chain and Innovation Fund,BATS,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBEV,Winc Inc,NYSE MKT,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBIF,WBI BullBear Value 3000 ETF,NYSE ARCA,ETF,2014-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBIG,WBI BullBear Yield 3000 ETF,NYSE ARCA,ETF,2014-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBII,WBI BullBear Global Income ETF,NYSE ARCA,ETF,2014-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBIL,WBI BullBear Quality 3000 ETF,NYSE ARCA,ETF,2014-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBIT,WBI BullBear Trend Switch US 3000 Total Return ETF,NYSE ARCA,ETF,2019-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBIY,WBI POWER FACTOR HIGH DIVIDEND ETF ,NYSE ARCA,ETF,2016-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBND,Western Asset Total Return ETF,NASDAQ,ETF,2018-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBS,Webster Financial Corp,NYSE,Stock,1986-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBS-P-F,Webster Financial Corp,NYSE,Stock,2017-12-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBS-P-G,Webster Financial Corp,NYSE,Stock,2022-02-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBT,Welbilt Inc,NYSE,Stock,2016-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBX,Wallbox N.V - Class A,NYSE,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WBX-WS,Wallbox N.V - Warrants(01/01/9999),NYSE,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WCBR,WisdomTree Cybersecurity Fund,NASDAQ,ETF,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WCC,Wesco International Inc,NYSE,Stock,1999-05-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WCC-P-A,Wesco International Inc,NYSE,Stock,2020-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WCLD,WisdomTree Cloud Computing Fund,NASDAQ,Stock,2019-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WCN,Waste Connections Inc,NYSE,Stock,1998-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WD,Walker & Dunlop Inc,NYSE,Stock,2010-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WDAY,Workday Inc - Class A,NASDAQ,Stock,2012-10-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WDC,Western Digital Corp,NASDAQ,Stock,1987-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WDFC,WD-40 Company,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WDH,Waterdrop Inc,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WDI,Western Asset Diversified Income Fund,NYSE,Stock,2021-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WDIV,SPDR S&P Global Dividend ETF,NYSE ARCA,ETF,2013-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WDNA,WisdomTree BioRevolution Fund,BATS,ETF,2021-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WE,WeWork Inc - Class A,NYSE,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WE-WS,WeWork Inc Redeemable Warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50 per share,NYSE,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEA,Western Asset Premier Bond Fund,NYSE,ETF,2002-03-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEAT,Teucrium Wheat Fund,NYSE ARCA,ETF,2011-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEAV,Weave Communications Inc,NYSE,Stock,2021-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEBL,Direxion Daily Dow Jones Internet Bull 3X Shares,NYSE ARCA,Stock,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEBR,Weber Inc - Class A,NYSE,Stock,2021-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEBS,Direxion Daily Dow Jones Internet Bear 3X Shares,NYSE ARCA,Stock,2019-11-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEC,WEC Energy Group Inc,NYSE,Stock,1984-10-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEI,Weidai Ltd,NYSE,Stock,2018-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEIX,Dynamic Short Short Term Volatility Futures ETF,NYSE ARCA,ETF,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEJO,Wejo Group Ltd,NASDAQ,Stock,2021-11-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEJOW,Wejo Group Ltd - Warrants (18/11/2026),NASDAQ,Stock,2021-03-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEL,Integrated Wellness Acquisition Corp - Class A,NYSE,Stock,2022-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEL-U,Integrated Wellness Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEL-WS,Integrated Wellness Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-01-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WELL,Welltower Inc,NYSE,Stock,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEN,Wendy`s Co - Class A,NASDAQ,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WERN,Werner Enterprises Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WES,Western Midstream Partners LP,NYSE,Stock,2012-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WETF,Wisdomtree Investments Inc,NASDAQ,Stock,1993-03-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEX,WEX Inc,NYSE,Stock,2005-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WEYS,Weyco Group Inc,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WF,Woori Financial Group Inc,NYSE,Stock,2003-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFC,Wells Fargo & Company,NYSE,Stock,1972-06-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFC-P-A,Wells Fargo & Company,NYSE,Stock,2020-10-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFC-P-C,Wells Fargo & Company,NYSE,Stock,2021-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFC-P-D,Wells Fargo & Company,NYSE,Stock,2021-07-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFC-P-L,Wells Fargo & Company,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFC-P-Q,Wells Fargo & Company,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFC-P-R,Wells Fargo & Company,NYSE,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFC-P-Y,Wells Fargo & Company,NYSE,Stock,1998-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFC-P-Z,,NYSE,Stock,2020-01-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFCF,Where Food Comes From Inc,NASDAQ,Stock,2011-02-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFE-P-A,Wells Fargo Company Cumulative Perpetual Preferred Stock Series A Liquidation Preference 25 per share,NYSE,Stock,2014-12-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFG,West Fraser Timber Co. Ltd,NYSE,Stock,2007-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFH,Direxion Work From Home ETF,NYSE ARCA,ETF,2020-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFHY,WisdomTree U.S. High Yield Corporate Bond Fund,BATS,ETF,2016-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFIG,WISDOMTREE U.S. CORPORATE BOND FUND N/A,BATS,ETF,2016-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WFRD,Weatherford International plc - New,NASDAQ,Stock,2021-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WGLD,Wilshire wShares Enhanced Gold ETF,NYSE ARCA,ETF,2021-02-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WGMI,Valkyrie Bitcoin Miners ETF,NASDAQ,ETF,2022-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WGO,Winnebago Industries Inc,NYSE,Stock,1984-11-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WGRO,WISDOMTREE US GROWTH & MOMENTUM FUND NA,NASDAQ,ETF,2021-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WH,Wyndham Hotels & Resorts Inc,NYSE,Stock,2018-05-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WHD,Cactus Inc - Class A,NYSE,Stock,2018-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WHF,WhiteHorse Finance Inc,NASDAQ,Stock,2012-12-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WHG,Westwood Holdings Group Inc,NYSE,Stock,2002-06-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WHLM,Wilhelmina International Inc,NASDAQ,Stock,1996-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WHLR,Wheeler Real Estate Investment Trust Inc,NASDAQ,Stock,2012-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WHLRD,Wheeler Real Estate Investment Trust Inc,NASDAQ,Stock,2016-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WHLRL,Wheeler Real Estate Investment Trust Inc,NASDAQ,Stock,2021-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WHLRP,Wheeler Real Estate Investment Trust Inc,NASDAQ,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WHR,Whirlpool Corp,NYSE,Stock,1983-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WIA,Western Asset Inflation-Linked Income Fund,NYSE,ETF,2003-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WIL,Barclays Women in Leadership ETN,BATS,ETF,2014-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WILC,G. Willi-Food International Ltd,NASDAQ,Stock,1997-05-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WIMI,Wimi Hologram Cloud Inc,NASDAQ,Stock,2020-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WINA,Winmark Corporation,NASDAQ,Stock,1993-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WINC,Western Asset Short Duration Income ETF,NASDAQ,ETF,2019-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WING,Wingstop Inc,NASDAQ,Stock,2015-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WINN,Harbor Long-Term Growers ETF,NYSE ARCA,ETF,2022-02-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WINT,Windtree Therapeutics Inc,NASDAQ,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WINV,WinVest Acquisition Corp,NASDAQ,Stock,2021-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WINVR,WinVest Acquisition Corp,NASDAQ,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WINVU,WinVest Acquisition Corp - Units (1 1 Rights & 1 War),NASDAQ,Stock,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WINVW,WinVest Acquisition Corp - Warrants (09/08/2026),NASDAQ,Stock,2021-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WIP,SPDR Citi International Government Inflation-Protected Bond ETF,NYSE ARCA,ETF,2008-03-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WIRE,Encore Wire Corp,NASDAQ,Stock,1992-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WISA,WiSA Technologies Inc,NASDAQ,Stock,2018-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WISH,ContextLogic Inc - Class A,NASDAQ,Stock,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WIT,Wipro Ltd,NYSE,Stock,2000-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WIW,Western AssetClaymore InfLkd Opp Income Fund,NYSE,ETF,2004-02-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WIX,Wix.com Ltd,NASDAQ,Stock,2013-11-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WIZ,Alpha Architect Merlyn.AI Bull-Rider Bear-Fighter ETF,NASDAQ,ETF,2019-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WK,Workiva Inc - Class A,NYSE,Stock,2014-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WKEY,WISeKey International Holding Ltd,NASDAQ,Stock,2019-01-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WKHS,Workhorse Group Inc,NASDAQ,Stock,2014-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WKLY,SoFi Weekly Dividend ETF,NYSE ARCA,ETF,2021-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WKME,WalkMe Ltd,NASDAQ,Stock,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WKSP,Worksport Ltd,NASDAQ,Stock,2003-07-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WKSPW,Worksport Ltd - Warrants (01/06/2026),NASDAQ,Stock,2021-08-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WLDN,Willdan Group Inc,NASDAQ,Stock,2006-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WLDR,Affinity World Leaders Equity ETF,BATS,ETF,2018-01-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WLFC,Willis Lease Finance Corp,NASDAQ,Stock,1996-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WLK,Westlake Corporation,NYSE,Stock,2004-08-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WLKP,Westlake Chemical Partners LP,NYSE,Stock,2014-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WLL,Whiting Petroleum Corp (New),NYSE,Stock,2020-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WLMS,Williams Industrial Services Group Inc,NYSE MKT,Stock,2006-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WLTG,WealthTrust DBS Long Term Growth ETF,NYSE ARCA,ETF,2021-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WLTH,LifeGoal Wealth Builder ETF,NYSE ARCA,ETF,2021-09-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WM,Waste Management Inc,NYSE,Stock,1991-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WMB,Williams Cos Inc,NYSE,Stock,1981-12-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WMC,Western Asset Mortgage Capital Corp,NYSE,Stock,2012-05-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WMG,Warner Music Group Corp - Class A,NASDAQ,Stock,2020-06-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WMK,Weis Markets Inc,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WMPN,William Penn Bancorporation,NASDAQ,Stock,2008-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WMS,Advanced Drainage Systems Inc,NYSE,Stock,2014-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WMT,Walmart Inc,NYSE,Stock,1972-08-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WNC,Wabash National Corp,NYSE,Stock,1991-11-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WNDY,GLOBAL X WIND ENERGY ETF ,NASDAQ,ETF,2021-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WNEB,Western New England Bancorp Inc,NASDAQ,Stock,2002-05-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WNNR,Andretti Acquisition Corp - Class A,NYSE,Stock,2022-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WNNR-U,Andretti Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WNNR-WS,Andretti Acquisition Corp - Warrants (01/01/9999),NYSE,Stock,2022-03-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WNS,WNS Holdings Ltd,NYSE,Stock,2006-07-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WNW,Meiwu Technology Company Ltd,NASDAQ,Stock,2020-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WOLF,Wolfspeed Inc,NYSE,Stock,1993-02-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WOMN,Impact Shares YWCA Womens Empowerment ETF,NYSE ARCA,ETF,2018-08-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WOOD,iShares Global Timber & Forestry ETF,NASDAQ,ETF,2008-06-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WOOF,Petco Health and Wellness Co Inc - Class A,NASDAQ,Stock,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WOR,Worthington Industries Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WORX,SCWorx Corp,NASDAQ,Stock,2016-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WOW,WideOpenWest Inc,NYSE,Stock,2017-05-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPC,W. P. Carey Inc,NYSE,Stock,1998-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPCA,Warburg Pincus Capital Corp I A - Class A,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPCA-U,Warburg Pincus Capital Corp I A - Units (1 Ord Class A & 1/5 War),NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPCA-WS,Warburg Pincus Capital Corp I A - Warrants (01/01/9999),NYSE,Stock,2021-04-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPCB,Warburg Pincus Capital Corp I B - Class A,NYSE,Stock,2021-04-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPCB-U,Warburg Pincus Capital Corp I B - Units (1 Ord Class A & 1/5 War),NYSE,Stock,2021-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPCB-WS,Warburg Pincus Capital Corporation IB Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50,NYSE,Stock,2021-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPM,Wheaton Precious Metals Corp,NYSE,Stock,2016-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPP,WPP Plc.,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPRT,Westport Fuel Systems Inc,NASDAQ,Stock,2008-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WPS,ISHARES INTERNATIONAL DEVELOPED PROPERTY ETF ,NYSE ARCA,ETF,2007-08-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WQGA,World Quantum Growth Acquisition Corp - Class A,NYSE,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WQGA-U,World Quantum Growth Acquisition Corp - Units (1 Ord Class A & 1/2 War),NYSE,Stock,2021-08-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WQGA-WS,World Quantum Growth Acquisition Corp - Warrants (04/08/2026),NYSE,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRAC,Williams Rowland Acquisition Corp,NYSE,Stock,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRAC-U,Williams Rowland Acquisition Corp - Units (1 Ord & 1/2 War),NYSE,Stock,2021-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRAC-WS,Williams Rowland Acquisition Corp - Warrants (11/12/2026),NYSE,Stock,2021-09-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRAP,Wrap Technologies Inc,NASDAQ,Stock,2018-05-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRB,W.R. Berkley Corp,NYSE,Stock,1984-09-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRB-P-E,W.R. Berkley Corp,NYSE,Stock,2018-04-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRB-P-F,W.R. Berkley Corp,NYSE,Stock,2019-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRB-P-G,W.R. Berkley Corp,NYSE,Stock,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRB-P-H,W.R. Berkley Corp,NYSE,Stock,2021-02-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRBY,Warby Parker Inc - Class A,NYSE,Stock,2021-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRE,Washington Real Estate Investment Trust,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRK,WestRock Company,NYSE,Stock,2015-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRLD,World Acceptance Corp,NASDAQ,Stock,1991-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRLSR,Pensare Acquisition Corp Right,NASDAQ,Stock,2017-08-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRLSU,Pensare Acquisition Corp Unit,NASDAQ,Stock,2017-07-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRN,Western Copper & Gold Corp,NYSE MKT,Stock,2006-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WRND,IQ Global Equity R&D Leaders ETF,NYSE ARCA,ETF,2022-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSBC,Wesbanco Inc,NASDAQ,Stock,1995-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSBCP,Wesbanco Inc,NASDAQ,Stock,2020-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSBF,Waterstone Financial Inc,NASDAQ,Stock,2005-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSC,WillScot Mobile Mini Holdings Corp,NASDAQ,Stock,2017-11-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSFS,WSFS Financial Corp,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSM,Williams-Sonoma Inc,NYSE,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSO,Watsco Inc - Class A,NYSE,Stock,1984-06-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSO-B,Watsco Inc - Class B,NYSE,Stock,1992-03-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSR,Whitestone REIT,NYSE,Stock,2010-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WST,West Pharmaceutical Services Inc,NYSE,Stock,1988-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WSTG,Wayside Technology Group Inc,NASDAQ,Stock,1995-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTAI,WisdomTree Artificial Intelligence and Innovation Fund,BATS,ETF,2021-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTBA,West Bancorporation,NASDAQ,Stock,1999-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTER,Alkaline Water Company Inc (The),NASDAQ,Stock,2014-07-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTFC,Wintrust Financial Corp,NASDAQ,Stock,1998-04-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTFCM,Wintrust Financial Corp,NASDAQ,Stock,2015-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTFCP,,NASDAQ,Stock,2020-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTI,W & T Offshore Inc,NYSE,Stock,2005-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTID,UBS ETRACS ProShares Daily 3x Inverse Crude ETN,NYSE ARCA,ETF,2017-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTM,White Mountains Insurance Group Ltd,NYSE,Stock,1986-05-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTMA,Welsbach Technology Metals Acquisition Corp,NASDAQ,Stock,2022-01-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTMAR,Welsbach Technology Metals Acquisition Corp,NASDAQ,Stock,2022-01-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTMAU,Welsbach Technology Metals Acquisition Corp - Units (1 Ord & 1 Right),NASDAQ,Stock,2021-12-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTMF,WisdomTree Managed Futures Strategy Fund,NYSE ARCA,ETF,2011-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTRG,Essential Utilities Inc,NYSE,Stock,1987-12-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTRH,Waitr Holdings Inc,NASDAQ,Stock,2016-08-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTRU,Essential Utilities Inc,NYSE,Stock,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTS,Watts Water Technologies Inc - Class A,NYSE,Stock,1986-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTT,Wireless Telecom Group Inc,NYSE MKT,Stock,1993-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTTR,Select Energy Services Inc - Class A,NYSE,Stock,2017-04-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTV,WisdomTree U.S. Value Fund,NYSE ARCA,ETF,2017-12-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WTW,Willis Towers Watson Public Ltd Company,NASDAQ,Stock,2016-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WU,Western Union Company,NYSE,Stock,2006-10-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WUGI,Esoterica NextG Economy ETF,BATS,ETF,2020-03-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WULF,TeraWulf Inc,NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WVE,Wave Life Sciences Ltd,NASDAQ,Stock,2015-11-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WVFC,WVS Financial Corp,NASDAQ,Stock,1993-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WVVI,Willamette Valley Vineyard Inc,NASDAQ,Stock,1994-09-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WVVIP,Willamette Valley Vineyard Inc,NASDAQ,Stock,2016-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WW,WW International Inc,NASDAQ,Stock,2001-11-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WWAC,Worldwide Webb Acquisition Corp - Class A,NASDAQ,Stock,2021-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WWACU,Worldwide Webb Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-10-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WWACW,Worldwide Webb Acquisition Corp - Warrants (20/10/2026),NASDAQ,Stock,2021-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WWD,Woodward Inc,NASDAQ,Stock,1996-05-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WWE,World Wrestling Entertainment Inc - Class A,NYSE,Stock,1999-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WWJD,Inspire International ESG ETF,NYSE ARCA,ETF,2019-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WWOW,DIREXION WORLD WITHOUT WASTE ETF ,NYSE ARCA,ETF,2020-12-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WWR,Westwater Resources Inc,NYSE MKT,Stock,2017-08-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WWW,Wolverine World Wide Inc,NYSE,Stock,1984-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WY,Weyerhaeuser Company,NYSE,Stock,1973-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WYNN,Wynn Resorts Ltd,NASDAQ,Stock,2002-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "WYY,Widepoint Corp,NYSE MKT,Stock,1998-05-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "X,United States Steel Corp,NYSE,Stock,1991-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XAIR,Beyond Air Inc,NASDAQ,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XAR,SPDR S&P Aerospace & Defense ETF,NYSE ARCA,ETF,2011-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBAP,Innovator U.S. Equity Accelerated 9 Buffer ETF - April,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBI,SPDR Biotech ETF,NYSE ARCA,ETF,2006-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBIO,Xenetic Biosciences Inc,NASDAQ,Stock,2014-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBIOW,Xenetic Biosciences Inc Warrants 19072024,NASDAQ,Stock,2019-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBIT,XBiotech Inc,NASDAQ,Stock,2015-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBITV,XBiotech Inc,NASDAQ,Stock,2020-02-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBJA,Innovator U.S. Equity Accelerated 9 Buffer ETF - January,BATS,ETF,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBJL,Innovator U.S. Equity Accelerated 9 Buffer ETF - July,BATS,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBOC,Innovator U.S. Equity Accelerated 9 Buffer ETF - October,BATS,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XBTF,VanEck Bitcoin Strategy ETF,BATS,ETF,2021-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XCEM,Columbia EM Core ex-China ETF,NYSE ARCA,ETF,2015-09-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XCLR,GLOBAL X S&P 500 COLLAR 95-110 ETF ,NYSE ARCA,ETF,2021-03-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XCUR,Exicure Inc,NASDAQ,Stock,2018-05-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XDAP,Innovator U.S. Equity Accelerated ETF - April,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XDAT,Franklin Exponential Data ETF,BATS,ETF,2021-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XDEC,FT Cboe Vest U.S. Equity Enhance & Moderate Buffer ETF - December,BATS,ETF,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XDJA,Innovator U.S. Equity Accelerated ETF - January,BATS,ETF,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XDJL,Innovator U.S. Equity Accelerated ETF - July,BATS,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XDNA,Kelly CRISPR & Gene Editing Technology ETF,NASDAQ,ETF,2022-01-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XDOC,Innovator U.S. Equity Accelerated ETF - October,BATS,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XDQQ,Innovator Growth Accelerated ETF - Quarterly,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XDSQ,Innovator U.S. Equity Accelerated ETF - Quarterly,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XEL,Xcel Energy Inc,NASDAQ,Stock,1985-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XELA,Exela Technologies Inc,NASDAQ,Stock,2015-03-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XELAP,Exela Technologies Inc,NASDAQ,Stock,2022-03-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XELB,Xcel Brands Inc,NASDAQ,Stock,2001-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XENE,Xenon Pharmaceuticals Inc,NASDAQ,Stock,2014-11-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XENT,Intersect ENT Inc,NASDAQ,Stock,2014-07-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XERS,Xeris Biopharma Holdings Inc,NASDAQ,Stock,2018-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XES,SPDR Oil & Gas Equipment and Services ETF,NYSE ARCA,ETF,2006-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XFIN,ExcelFin Acquisition Corp - Class A,NASDAQ,Stock,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XFINU,ExcelFin Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XFINW,ExcelFin Acquisition Corp - Warrants (25/10/2028),NASDAQ,Stock,2021-12-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XFLT,XAI Octagon Floating Rate & Alternative Income Term Trust,NYSE,ETF,2017-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XFLT-P-A,XAI Octagon Floating Rate & Alternative Income Term Trust,NYSE,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XFOR,X4 Pharmaceuticals Inc,NASDAQ,Stock,2017-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XGN,Exagen Inc,NASDAQ,Stock,2019-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHB,SPDR Homebuilders ETF,NYSE ARCA,ETF,2006-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHE,SPDR S&P Health Care Equipment ETF,NYSE ARCA,ETF,2011-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHR,Xenia Hotels & Resorts Inc,NYSE,Stock,2015-02-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHS,SPDR S&P Health Care Services ETF,NYSE ARCA,ETF,2011-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHYC,BondBloxx USD High Yield Bond Consumer Cyclicals Sector ETF,NYSE ARCA,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHYD,BondBloxx USD High Yield Bond Consumer Non-Cyclicals Sector ETF,NYSE ARCA,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHYE,BondBloxx USD High Yield Bond Energy Sector ETF,NYSE ARCA,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHYF,BondBloxx USD High Yield Bond Financial & REIT Sector ETF,NYSE ARCA,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHYH,BondBloxx USD High Yield Bond Healthcare Sector ETF,NYSE ARCA,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHYI,BondBloxx USD High Yield Bond Industrial Sector ETF,NYSE ARCA,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XHYT,BondBloxx USD High Yield Bond Telecom Media & Technology Sector ETF,NYSE ARCA,ETF,2022-02-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XIN,Xinyuan Real Estate Co. Ltd,NYSE,Stock,2007-12-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XITK,SPDR FactSet Innovative Technology ETF,NYSE ARCA,ETF,2016-01-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XJH,iShares ESG Screened S&P Mid-Cap ETF,BATS,ETF,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XJR,ISHARES ESG SCREENED S&P SMALL-CAP ETF ,BATS,ETF,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XJUN,FT CBOE VEST U.S. EQUITY ENHANCE & MODERATE BUFFER ETF - JUNE ,BATS,ETF,2021-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XL,XL Fleet Corporation - Class A,NYSE,Stock,2019-09-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XL-WS,XL Fleet Corp Wt Exp 06012025,NYSE,Stock,2020-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLB,Materials Select Sector SPDR,NYSE ARCA,ETF,1998-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLC,Communication Services Select Sector SPDR Fund,NYSE ARCA,ETF,2018-06-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLE,The Energy Select Sector SPDR Fund,NYSE ARCA,ETF,1998-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLF,Financial Select Sector SPDR,NYSE ARCA,ETF,1998-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLG,Invesco S&P 500 Top 50 ETF,NYSE ARCA,ETF,2005-05-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLI,Industrial Select Sector SPDR,NYSE ARCA,ETF,1998-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLK,Technology Select Sector SPDR ETF,NYSE ARCA,ETF,1998-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLO,Xilio Therapeutics Inc,NASDAQ,Stock,2021-10-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLP,Consumer Staples Select Sector SPDR,NYSE ARCA,ETF,1998-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLRE,Real Estate Select Sector SPDR Fund (The),NYSE ARCA,ETF,2015-10-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLSR,SPDR SSGA U.S. Sector Rotation ETF,NYSE ARCA,ETF,2019-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLU,Utilities Select Sector SPDR ETF,NYSE ARCA,ETF,1998-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLV,Health Care Select Sector SPDR,NYSE ARCA,ETF,1998-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XLY,Consumer Discretionary Select Sector SPDR,NYSE ARCA,ETF,1998-12-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XM,Qualtrics International Inc - Class A,NASDAQ,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XME,SPDR Metals & Mining ETF,NYSE ARCA,ETF,2006-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XMHQ,Invesco S&P MidCap Quality ETF,NYSE ARCA,ETF,2006-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XMLV,Invesco S&P MidCap Low Volatility ETF,NYSE ARCA,ETF,2013-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XMMO,Invesco S&P MidCap Momentum ETF,NYSE ARCA,ETF,2005-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XMPT,VanEck CEF Muni Income ETF,BATS,ETF,2011-07-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XMTR,Xometry Inc - Class A,NASDAQ,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XMVM,Invesco S&P MidCap Value with Momentum ETF,NYSE ARCA,ETF,2005-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XNCR,Xencor Inc,NASDAQ,Stock,2013-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XNET,Xunlei Ltd,NASDAQ,Stock,2014-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XNTK,SPDR NYSE Technology ETF,NYSE ARCA,ETF,2001-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XOM,Exxon Mobil Corp,NYSE,Stock,1970-01-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XOMA,XOMA Corp,NASDAQ,Stock,1989-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XOMAO,XOMA Corp,NASDAQ,Stock,2021-04-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XOMAP,XOMA Corp,NASDAQ,Stock,2020-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XOP,SPDR Oil & Gas Exploration and Production ETF,NYSE ARCA,ETF,2006-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XOS,Xos Inc,NASDAQ,Stock,2021-08-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XOSWW,Xos Inc - Warrants (20/08/2026),NASDAQ,Stock,2020-12-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XOUT,GraniteShares XOUT U.S. Large Cap ETF,NYSE ARCA,ETF,2019-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XP,XP Inc - Class A,NASDAQ,Stock,2019-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPAX,XPAC Acquisition Corp - Class A,NASDAQ,Stock,2021-09-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPAXU,XPAC Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPAXW,XPAC Acquisition Corp - Warrants (01/01/9999),NASDAQ,Stock,2021-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPDB,Power & Digital Infrastructure Acquisition II Corp - Class A,NASDAQ,Stock,2022-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPDBU,Power & Digital Infrastructure Acquisition II Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2021-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPDBW,Power & Digital Infrastructure Acquisition II Corp - Warrants (09/12/2026),NASDAQ,Stock,2022-01-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPEL,XPEL Inc - Reg S,NASDAQ,Stock,2007-07-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPER,Xperi Holding Corp,NASDAQ,Stock,2003-11-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPEV,XPeng Inc,NYSE,Stock,2020-08-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPH,SPDR Pharmaceuticals ETF,NYSE ARCA,ETF,2006-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPL,Solitario Zinc Corp,NYSE MKT,Stock,2006-09-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPND,First Trust Expanded Technology ETF,NYSE ARCA,ETF,2021-06-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPO,XPO Logistics Inc,NYSE,Stock,2003-10-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPO-W,XPO Logistics Inc ExDistribution Whenissued,NYSE,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPOA,DPCM Capital Inc - Class A,NYSE,Stock,2020-12-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPOA-U,DPCM Capital Inc - Units (1 Ord Share Class A & 1/3 War),NYSE,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPOA-WS,DPCM Capital Inc Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50,NYSE,Stock,2020-12-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPOF,Xponential Fitness Inc - Class A,NYSE,Stock,2021-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPP,ProShares Ultra FTSE China 50,NYSE ARCA,ETF,2009-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPRO,Expro Group Holdings N.V.,NYSE,Stock,2013-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XPVVV,XP Inc,NASDAQ,Stock,2021-10-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XRAY,DENTSPLY Sirona Inc,NASDAQ,Stock,1991-04-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XRLV,Invesco S&P 500 ex-Rate Sensitive Low Volatility ETF,NYSE ARCA,ETF,2015-04-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XRMI,Global X S&P 500 Risk Managed Income ETF,NYSE ARCA,ETF,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XRT,SPDR Retail ETF,NYSE ARCA,ETF,2006-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XRTX,XORTX Therapeutics Inc,NASDAQ,Stock,2018-11-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XRX,Xerox Holdings Corp,NASDAQ,Stock,1977-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XSD,SPDR Semiconductors ETF,NYSE ARCA,ETF,2006-02-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XSHD,Invesco S&P SmallCap High Dividend Low Volatility ETF,BATS,ETF,2016-12-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XSHQ,Invesco S&P SmallCap Quality ETF,BATS,ETF,2017-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XSLV,Invesco S&P SmallCap Low Volatility ETF,NYSE ARCA,ETF,2013-02-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XSMO,Invesco S&P SmallCap Momentum ETF,NYSE ARCA,ETF,2005-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XSOE,WisdomTree Emerging Markets ex-State-Owned Enterprises Fund,NYSE ARCA,ETF,2014-12-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XSPA,XpresSpa Group Inc,NASDAQ,Stock,2018-01-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XSVM,Invesco S&P SmallCap Value with Momentum ETF,NYSE ARCA,ETF,2005-03-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XSW,SPDR S&P Software & Services ETF,NYSE ARCA,ETF,2011-09-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XT,iShares Exponential Technologies ETF,NASDAQ,ETF,2015-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XTAP,Innovator U.S. Equity Accelerated Plus ETF - April,BATS,ETF,2021-04-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XTJA,Innovator U.S. Equity Accelerated Plus ETF - January,BATS,ETF,2022-01-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XTJL,Innovator U.S. Equity Accelerated Plus ETF - July,BATS,ETF,2021-07-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XTL,SPDR S&P Telecom ETF,NYSE ARCA,ETF,2011-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XTLB,X.T.L. Biopharmaceuticals Ltd,NASDAQ,Stock,2005-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XTN,SPDR S&P Transportation ETF,NYSE ARCA,ETF,2011-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XTNT,Xtant Medical Holdings Inc,NYSE MKT,Stock,2015-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XTOC,Innovator U.S. Equity Accelerated Plus ETF - October,BATS,ETF,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XTR,GLOBAL X S&P 500 TAIL RISK ETF ,NYSE ARCA,ETF,2021-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XVOL,Acruence Active Hedge U.S. Equity ETF,NYSE ARCA,ETF,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XVV,iShares ESG Screened S&P 500 ETF,BATS,ETF,2020-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XWEB,SPDR S&P Internet ETF,NYSE ARCA,ETF,2016-06-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XXII,22nd Century Group Inc,NASDAQ,Stock,2011-01-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XYF,X Financial,NYSE,Stock,2018-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XYL,Xylem Inc,NYSE,Stock,2011-10-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XYLD,Global X S&P 500 Covered Call ETF,NYSE ARCA,ETF,2013-06-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "XYLG,Global X S&P 500 Covered Call & Growth ETF,NYSE ARCA,ETF,2020-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "Y,Alleghany Corp,NYSE,Stock,1980-03-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YALA,Yalla Group Ltd,NYSE,Stock,2020-09-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YANG,Direxion Daily FTSE China Bear 3X Shares,NYSE ARCA,ETF,2009-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YCBD,cbdMD Inc,NYSE MKT,Stock,2019-04-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YCBD-P-A,cbdMD Inc,NYSE MKT,Stock,2019-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YCL,ProShares Ultra Yen ETF,NYSE ARCA,ETF,2008-12-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YCS,ProShares UltraShort Yen,NYSE ARCA,ETF,2008-11-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YDEC,FT Cboe Vest International Equity Buffer ETF - December,BATS,ETF,2020-12-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YELL,Yellow Corporation,NASDAQ,Stock,1986-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YELP,Yelp Inc,NYSE,Stock,2012-03-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YETI,YETI Holdings Inc,NYSE,Stock,2018-10-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YEXT,Yext Inc,NYSE,Stock,2017-04-13,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YGMZ,MingZhu Logistics Holdings Ltd,NASDAQ,Stock,2020-10-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YI,111 Inc,NASDAQ,Stock,2018-09-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YINN,Direxion Daily FTSE China Bull 3X Shares,NYSE ARCA,ETF,2009-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YJ,Yunji Inc,NASDAQ,Stock,2019-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YJUN,FT Cboe Vest International Equity Buffer ETF - June,BATS,ETF,2021-06-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YLD,Principal Active High Yield ETF,NYSE ARCA,ETF,2015-07-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YLDE,CLEARBRIDGE DIVIDEND STRATEGY ESG ETF ,NASDAQ,ETF,2017-05-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YMAB,Y-Mabs Therapeutics Inc,NASDAQ,Stock,2018-09-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YMAR,FT Cboe Vest International Equity Buffer ETF - March,BATS,ETF,2021-03-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YMM,Full Truck Alliance Co Ltd,NYSE,Stock,2021-06-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YMTX,Yumanity Therapeutics Inc,NASDAQ,Stock,2016-02-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YNDX,Yandex NV - Class A,NASDAQ,Stock,2011-05-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YOLO,AdvisorShares Pure Cannabis ETF,NYSE ARCA,ETF,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YORW,York Water Company,NASDAQ,Stock,1999-05-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YOU,Clear Secure Inc Class A,NYSE,Stock,2021-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YPF,YPF,NYSE,Stock,1993-06-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YPS,Arrow Reverse Cap 500 ETF,BATS,ETF,2021-05-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YQ,17 Education & Technology Group Inc,NASDAQ,Stock,2020-12-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YRD,Yiren Digital Ltd,NYSE,Stock,2015-12-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YSAC-U,Yellowstone Acquisition Company Units,NYSE,Stock,2022-01-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YSEP,FT Cboe Vest International Equity Buffer ETF - September,BATS,ETF,2021-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YSG,Yatsen Holding Ltd,NYSE,Stock,2020-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YTEN,Yield10 Bioscience Inc,NASDAQ,Stock,2006-11-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YTPG,TPG Pace Beneficial II Corp - Class A,NYSE,Stock,2021-04-14,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YTRA,Yatra Online Inc,NASDAQ,Stock,2016-12-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YUM,Yum Brands Inc,NYSE,Stock,1997-09-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YUMC,Yum China Holdings Inc,NYSE,Stock,2016-10-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YUMY,VANECK FUTURE OF FOOD ETF ,NYSE ARCA,ETF,2021-12-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YVR,Liquid Media Group Ltd,NASDAQ,Stock,2018-08-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YXI,ProShares Short FTSE China 50,NYSE ARCA,ETF,2010-03-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YY,JOYY Inc,NASDAQ,Stock,2012-11-21,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "YYY,Amplify High Income ETF,NYSE ARCA,ETF,2012-06-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "Z,Zillow Group Inc - Class C,NASDAQ,Stock,2015-08-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZAZZT,ZAZZT,NASDAQ,Stock,2016-08-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZBH,Zimmer Biomet Holdings Inc,NYSE,Stock,2001-07-25,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZBIO,PROSHARES ULTRAPRO SHORT NASDAQ BIOTECHNOLOGY ,NASDAQ,ETF,2015-06-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZBRA,Zebra Technologies Corp - Class A,NASDAQ,Stock,1991-08-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZBZX,Bats Listed Test,BATS,Stock,2011-10-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZBZZT,ZBZZT,NASDAQ,Stock,2016-08-31,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZCMD,Zhongchao Inc - Class A,NASDAQ,Stock,2020-02-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZCZZT,Super Montage IPO X Tst Security SM IPO X 3,NASDAQ,Stock,2016-08-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZD,Ziff Davis Inc,NASDAQ,Stock,1999-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZDGE,Zedge Inc - Class B,NYSE MKT,Stock,2016-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZDVSV,j2 Global Inc,NASDAQ,Stock,2021-10-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZEAL,Zealand Pharma A/S.,NASDAQ,Stock,2017-08-09,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZECP,Zacks Earnings Consistent Portfolio ETF,BATS,ETF,2021-08-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZEN,Zendesk Inc,NYSE,Stock,2014-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZENV,Zenvia Inc - Class A,NASDAQ,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZEPP,Zepp Health Corporation,NYSE,Stock,2018-02-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZEST,Ecoark Holdings Inc,NASDAQ,Stock,2017-11-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZETA,Zeta Global Holdings Corp - Class A,NYSE,Stock,2021-06-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZEUS,Olympic Steel Inc,NASDAQ,Stock,1994-03-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZEV,Lightning eMotors Inc,NYSE,Stock,2020-07-02,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZEV-WS,Lightning eMotors Inc Wt Exp 05182025,NYSE,Stock,2021-05-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZG,Zillow Group Inc - Class A,NASDAQ,Stock,2011-07-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZGEN,THE GEN Z ETF ,NASDAQ,ETF,2021-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZGN,Ermenegildo Zegna N.V.,NYSE,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZGN-WS,Ermenegildo Zegna N.V. - Warrants (17/12/2026),NYSE,Stock,2021-12-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZH,Zhihu Inc,NYSE,Stock,2021-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZHDG,ZEGA Buy and Hedge ETF,NYSE ARCA,ETF,2021-07-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZI,ZoomInfo Technologies Inc - Class A,NASDAQ,Stock,2020-06-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIG,The Acquirers Fund,NYSE ARCA,ETF,2019-05-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIM,Zim Integrated Shipping Services Ltd,NYSE,Stock,2021-01-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIMV,ZimVie Inc,NASDAQ,Stock,2022-03-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIMVV,ZimVie Inc,NASDAQ,Stock,2022-02-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZING,FTAC Zeus Acquisition Corp - Class A,NASDAQ,Stock,2022-01-12,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZINGU,FTAC Zeus Acquisition Corp - Units (1 Ord Share Class A & 1/2 War),NASDAQ,Stock,2021-11-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZINGW,FTAC Zeus Acquisition Corp - Warrants (15/04/2026),NASDAQ,Stock,2022-01-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZION,Zions Bancorporation N.A,NASDAQ,Stock,1990-03-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIONL,Zions Bancorporation NA 695 FixedtoFloating Rate Subordinated Notes due September 15 2028,NASDAQ,Stock,2013-09-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIONN,Zions Bancorporation N.A,NASDAQ,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIONO,Zions Bancorporation N.A,NASDAQ,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIONP,Zions Bancorporation N.A,NASDAQ,Stock,2014-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIP,ZipRecruiter Inc - Class A,NYSE,Stock,2021-05-26,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIVO,Zivo Bioscience Inc,NASDAQ,Stock,2012-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZIVOW,Zivo Bioscience Inc - Warrants (29/04/2026),NASDAQ,Stock,2021-05-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZJZZT,NASDAQ TEST STOCK,NASDAQ,Stock,2014-09-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZKIN,ZK International Group Co Ltd,NASDAQ,Stock,2017-09-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZLAB,Zai Lab Ltd,NASDAQ,Stock,2017-09-20,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZM,Zoom Video Communications Inc - Class A,NASDAQ,Stock,2019-04-18,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZME,Zhangmen Education Inc,NYSE,Stock,2021-06-08,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZNGA,Zynga Inc - Class A,NASDAQ,Stock,2011-12-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZNH,China Southern Airlines Company Ltd,NYSE,Stock,1997-07-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZNTE,Zanite Acquisition Corp - Class A,NASDAQ,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZNTEU,Zanite Acquisition Corp - Units (1 Ord Class A & 1/2 War),NASDAQ,Stock,2020-11-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZNTEW,Zanite Acquisition Corp - Warrants(08/10/2025),NASDAQ,Stock,2021-01-07,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZNTL,Zentalis Pharmaceuticals Inc,NASDAQ,Stock,2020-04-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZOM,Zomedica Corp,NYSE MKT,Stock,2016-07-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZROZ,PIMCO 25+ Year Zero Coupon U.S. Treasury Index Exchange-Traded Fund,NYSE ARCA,ETF,2009-11-04,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZS,Zscaler Inc,NASDAQ,Stock,2018-03-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZSAN,Zosano Pharma Corp,NASDAQ,Stock,2015-01-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZSL,ProShares UltraShort Silver,NYSE ARCA,ETF,2008-12-03,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZT,Zimmer Energy Transition Acquisition Corp - Class A,NASDAQ,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZTAQU,Zimmer Energy Transition Acquisition Corp - Units (1 Ord Share Class A & 1/3 War),NASDAQ,Stock,2021-06-16,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZTAQW,Zimmer Energy Transition Acquisition Corp - Warrants (16/06/2026),NASDAQ,Stock,2021-08-17,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZTEST,,BATS,Stock,2011-10-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZTO,ZTO Express (Cayman) Inc,NYSE,Stock,2016-10-27,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZTR,Virtus Total Return Fund Inc,NYSE,ETF,1989-06-30,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZTS,Zoetis Inc - Class A,NYSE,Stock,2013-02-01,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZTST,,BATS,Stock,2015-10-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZUMZ,Zumiez Inc,NASDAQ,Stock,2005-05-06,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZUO,Zuora Inc - Class A,NYSE,Stock,2018-04-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZVIA,Zevia PBC - Class A,NYSE,Stock,2021-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZVO,Zovio Inc,NASDAQ,Stock,2009-04-15,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZVV,LISTED TEST SYMBOL,NYSE ARCA,Stock,2017-10-11,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZVZZC,ZVZZC,NASDAQ,Stock,2016-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZVZZT,NASDAQ TEST STOCK,NASDAQ,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZWRK,Z-Work Acquisition Corp - Class A,NASDAQ,Stock,2021-04-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZWRKU,Z-Work Acquisition Corp - Units (1 Ord Class A & 1/3 War),NASDAQ,Stock,2021-01-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZWRKW,Z-Work Acquisition Corp - Warrants (29/01/2026),NASDAQ,Stock,2021-03-24,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZWS,Zurn Water Solutions Corp,NYSE,Stock,2012-03-29,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZWZZT,NASDAQ TEST STOCK,NASDAQ,Stock,2017-09-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZXYZ-A,NASDAQ SYMBOLOGY TEST,NASDAQ,Stock,2016-01-19,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZXZZT,NASDAQ TEST STOCK,NASDAQ,Stock,2006-07-10,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZY,Zymergen Inc,NASDAQ,Stock,2021-04-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZYME,Zymeworks Inc,NYSE,Stock,2017-04-28,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZYNE,Zynerba Pharmaceuticals Inc,NASDAQ,Stock,2015-08-05,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZYXI,Zynex Inc,NASDAQ,Stock,2012-07-23,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZZK,,NYSE ARCA,Stock,2020-07-22,null,Active" - }, - { - "symbol,name,exchange,assetType,ipoDate,delistingDate,status": "ZZZ,TEST TICKER FOR UTP,NYSE ARCA,Stock,2014-10-31,null,Active" + "symbol": "A", + "name": "Agilent Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AA", + "name": "Alcoa Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAA", + "name": "AAF FIRST PRIORITY CLO BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAAU", + "name": "Goldman Sachs Physical Gold ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAC", + "name": "Ares Acquisition Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAC-U", + "name": "Ares Acquisition Corporation - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAC-WS", + "name": "Ares Acquisition Corporation - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AACG", + "name": "ATA Creativity Global", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AACI", + "name": "Armada Acquisition Corp I", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AACIU", + "name": "Armada Acquisition Corp I - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AACIW", + "name": "Armada Acquisition Corp I - Warrants (13/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AADI", + "name": "Aadi Bioscience Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AADR", + "name": "AdvisorShares Dorsey Wright ADR ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAIC", + "name": "Arlington Asset Investment Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAIC-P-B", + "name": "Arlington Asset Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAIC-P-C", + "name": "Arlington Asset Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAIN", + "name": "Arlington Asset Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAL", + "name": "American Airlines Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAM-P-A", + "name": "Apollo Asset Management Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAM-P-B", + "name": "Apollo Asset Management Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAMC", + "name": "Altisource Asset Management Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2012-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAME", + "name": "Atlantic American Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAN", + "name": "Aarons Company Inc (The)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAN-W", + "name": "Aarons Holdings Company Inc When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAOI", + "name": "Applied Optoelectronics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAON", + "name": "AAON Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAP", + "name": "Advance Auto Parts Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAPL", + "name": "Apple Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1980-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAQC", + "name": "Accelerate Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAQC-U", + "name": "Accelerate Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAQC-WS", + "name": "Accelerate Acquisition Corp - Warrants (15/03/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAT", + "name": "American Assets Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AATC", + "name": "Autoscope Technologies Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAU", + "name": "Almaden Minerals Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAWW", + "name": "Atlas Air Worldwide Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AAXJ", + "name": "iShares MSCI All Country Asia ex Japan ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AB", + "name": "AllianceBernstein Holding Lp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABB", + "name": "ABB Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABBV", + "name": "Abbvie Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABC", + "name": "Amerisource Bergen Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABCB", + "name": "Ameris Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABCL", + "name": "AbCellera Biologics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABCM", + "name": "Abcam", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABEO", + "name": "Abeona Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1980-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABEQ", + "name": "ABSOLUTE CORE STRATEGY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABEV", + "name": "Ambev S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABG", + "name": "Asbury Automotive Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABGI", + "name": "ABG Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABIO", + "name": "ARCA biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABM", + "name": "ABM Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABMD", + "name": "Abiomed Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1987-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABNB", + "name": "Airbnb Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABOS", + "name": "Acumen Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABR", + "name": "Arbor Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABR-P-D", + "name": "Arbor Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABR-P-E", + "name": "Arbor Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABR-P-F", + "name": "Arbor Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABSI", + "name": "Absci Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABST", + "name": "Absolute Software Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABT", + "name": "Abbott Laboratories", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABTX", + "name": "Allegiance Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABUS", + "name": "Arbutus Biopharma Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ABVC", + "name": "ABVC BioPharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AC", + "name": "Associated Capital Group Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACA", + "name": "Arcosa Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAB", + "name": "Atlantic Coastal Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACABU", + "name": "Atlantic Coastal Acquisition Corp II - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACABW", + "name": "Atlantic Coastal Acquisition Corp II - Warrants (13/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAD", + "name": "Acadia Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAH", + "name": "Atlantic Coastal Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAHU", + "name": "Atlantic Coastal Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAHW", + "name": "Atlantic Coastal Acquisition Corp - Warrants (02/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAQ", + "name": "Athena Consumer Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAQ-U", + "name": "Athena Consumer Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAQ-WS", + "name": "Athena Consumer Acquisition Corp - Warrants(31/07/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAX", + "name": "Alset Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAXR", + "name": "Alset Capital Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAXU", + "name": "Alset Capital Acquisition Corp - Units (1 Ord Class A & 1/2 War & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACAXW", + "name": "Alset Capital Acquisition Corp - Warrants (31/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACB", + "name": "Aurora Cannabis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACBA", + "name": "Ace Global Business Acquisition Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACBAU", + "name": "Ace Global Business Acquisition Ltd - Units (1 Ord & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACBAW", + "name": "Ace Global Business Acquisition Ltd - Warrants (26/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACC", + "name": "American Campus Communities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACCD", + "name": "Accolade Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACCO", + "name": "Acco Brands Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACDI", + "name": "Ascendant Digital Acquisition Corp III - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACDI-U", + "name": "Ascendant Digital Acquisition Corp III - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACDI-WS", + "name": "Ascendant Digital Acquisition Corp III - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACEL", + "name": "Accel Entertainment Inc - Class A1", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACER", + "name": "Acer Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACES", + "name": "ALPS Clean Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACET", + "name": "Adicet Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACEV", + "name": "ACE Convergence Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACEVU", + "name": "ACE Convergence Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACEVW", + "name": "ACE Convergence Acquisition Corp - Warrants (30/09/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACGL", + "name": "Arch Capital Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACGLN", + "name": "Arch Capital Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACGLO", + "name": "Arch Capital Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACH", + "name": "Aluminum Corporation Of China Ltd.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACHC", + "name": "Acadia Healthcare Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACHL", + "name": "Achilles Therapeutics Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACHR", + "name": "Archer Aviation Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACHR-WS", + "name": "Archer Aviation Inc Wt", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACHV", + "name": "Achieve Life Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACI", + "name": "Albertsons Companies Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACII", + "name": "Atlas Crest Investment Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACII-U", + "name": "Atlas Crest Investment Corp II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACII-WS", + "name": "Atlas Crest Investment Corp II - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACIO", + "name": "ETF Series Solutions Aptus Collared Income Opportunity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACIU", + "name": "AC Immune SA", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACIW", + "name": "ACI Worldwide Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACKIT", + "name": "Ackrell SPAC Partners I Co - Subunits (1 Ord & 0.5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACKIU", + "name": "Ackrell SPAC Partners I Co - Units ( 1Subunit & 0.5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACKIW", + "name": "Ackrell SPAC Partners I Co - Warrants (21/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACLS", + "name": "Axcelis Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACLX", + "name": "Arcellx Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACM", + "name": "AECOM", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACMR", + "name": "ACM Research Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACN", + "name": "Accenture plc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACNB", + "name": "ACNB Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACND-WS", + "name": "Ascendant Digital Acquisition Corp Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACOR", + "name": "Acorda Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACP", + "name": "Aberdeen Income Credit Strategies Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACP-P-A", + "name": "Aberdeen Income Credit Strategies Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACP-R-W", + "name": "Aberdeen Income Credit Strategies Fund Rights expiring June 16 2021 When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACQR", + "name": "Independence Holdings Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACQRU", + "name": "Independence Holdings Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACQRW", + "name": "Independence Holdings Corp - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACR", + "name": "ACRES Commercial Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACR-P-C", + "name": "ACRES Commercial Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACR-P-D", + "name": "ACRES Commercial Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACRE", + "name": "Ares Commercial Real Estate Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACRO", + "name": "Acropolis Infrastructure Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACRO-U", + "name": "Acropolis Infrastructure Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACRO-WS", + "name": "Acropolis Infrastructure Acquisition Corp - Warrants (30/03/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACRS", + "name": "Aclaris Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACRX", + "name": "Acelrx Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACSI", + "name": "AMERICAN CUSTOMER SATISFACTION ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACST", + "name": "Acasti Pharma Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACT", + "name": "Enact Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACTD", + "name": "ArcLight Clean Transition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACTDU", + "name": "ArcLight Clean Transition Corp II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACTDW", + "name": "ArcLight Clean Transition Corp II - Warrants (16/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACTG", + "name": "Acacia Research Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACTTW", + "name": "Act II Global Acquisition Corp Warrants 30042026", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACTV", + "name": "LeaderShares Activist Leaders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACU", + "name": "Acme United Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACV", + "name": "Virtus AllianzGI Diversified Income & Convertible Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2015-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACVA", + "name": "ACV Auctions Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACVF", + "name": "American Conservative Values ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACWF", + "name": "iShares MSCI Global Multifactor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACWI", + "name": "iShares MSCI ACWI ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACWV", + "name": "iShares MSCI Global Min Vol Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACWX", + "name": "iShares MSCI ACWI ex US ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACXP", + "name": "Acurx Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ACY", + "name": "Aerocentury Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1998-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADAG", + "name": "Adagene Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADAL", + "name": "Anthemis Digital Acquisitions I Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADALU", + "name": "Anthemis Digital Acquisitions I Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADALW", + "name": "Anthemis Digital Acquisitions I Corp - Warrants (18/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADAP", + "name": "Adaptimmune Therapeutics Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADBE", + "name": "Adobe Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADC", + "name": "Agree Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADC-P-A", + "name": "Agree Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADCT", + "name": "Adc Therapeutics SA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADER", + "name": "26 Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADERU", + "name": "26 Capital Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADERW", + "name": "26 Capital Acquisition Corp - Warrants (31/12/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADES", + "name": "Advanced Emissions Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADEX", + "name": "Adit Edtech Acquisition Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADEX-U", + "name": "Adit Edtech Acquisition Corp - Units (1 Ord Share & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADEX-WS", + "name": "Adit Edtech Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADFI", + "name": "Anfield Dynamic Fixed Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADGI", + "name": "Adagio Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADI", + "name": "Analog Devices Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADIL", + "name": "Adial Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADILW", + "name": "Adial Pharmaceuticals Inc Warrants 31072023", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADIV", + "name": "SmartETFs Asia Pacific Dividend Builder ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADM", + "name": "Archer Daniels Midland Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADMA", + "name": "Adma Biologics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADME", + "name": "Aptus Drawdown Managed Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADMP", + "name": "Adamis Pharmaceuticals Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADN", + "name": "Advent Technologies Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADNT", + "name": "Adient plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADOC", + "name": "Edoc Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADOCR", + "name": "Edoc Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADOCW", + "name": "Edoc Acquisition Corp - Warrants (30/11/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADP", + "name": "Automatic Data Processing Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADPT", + "name": "Adaptive Biotechnologies Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADRA", + "name": "Adara Acquisition Corp - Class A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADRA-U", + "name": "Adara Acquisition Corp - Units (1Ord Class A & 0.5 Warr)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADRA-WS", + "name": "Adara Acquisition Corp - Warrants (11/02/2026)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADRE", + "name": "Invesco BLDRS Emerging Markets 50 ADR Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2002-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADRT", + "name": "Ault Disruptive Technologies Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADRT-U", + "name": "Ault Disruptive Technologies Corp - Units (1 Ord Share & 3/4 War)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADRT-WS", + "name": "Ault Disruptive Technologies Corp - Warrants (01/01/9999)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2022-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADS", + "name": "Bread Financial Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADS-W", + "name": "Alliance Data Systems Corporation ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADSE", + "name": "Ads-Tec Energy Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADSEW", + "name": "Ads-Tec Energy Plc - Warrants (22/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADSK", + "name": "Autodesk Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADT", + "name": "ADT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADTH", + "name": "AdTheorent Holding Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADTHW", + "name": "AdTheorent Holding Company Inc - Warrants (22/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADTN", + "name": "Adtran Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADTX", + "name": "Aditxt Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADUS", + "name": "Addus HomeCare Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADV", + "name": "Advantage Solutions Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADVM", + "name": "Adverum Biotechnologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADVWW", + "name": "Advantage Solutions Inc - Warrants (28/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADX", + "name": "Adams Diversified Equity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ADXN", + "name": "Addex Therapeutics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AE", + "name": "Adams Resources & Energy Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEAC", + "name": "Authentic Equity Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEACU", + "name": "Authentic Equity Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEACW", + "name": "Authentic Equity Acquisition Corp - Warrants (31/10/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEAE", + "name": "AltEnergy Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEAEU", + "name": "AltEnergy Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEAEW", + "name": "AltEnergy Acquisition Corp - Warrants (29/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEE", + "name": "Ameren Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEF", + "name": "Aberdeen Emerging Markets Equity Income Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEFC", + "name": "Aegon Funding Company LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEG", + "name": "Aegon N. V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEHA", + "name": "Aesther Healthcare Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEHAU", + "name": "Aesther Healthcare Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEHAW", + "name": "Aesther Healthcare Acquisition Corp - Warrants (14/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEHL", + "name": "Antelope Enterprise Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEHR", + "name": "Aehr Test Systems", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEI", + "name": "Alset EHome International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEIS", + "name": "Advanced Energy Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEL", + "name": "American Equity Investment Life Holding Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEL-P-A", + "name": "American Equity Investment Life Holding Company 5.95 PRF PERPETUAL USD 25 Ser A 11000th", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEL-P-B", + "name": "American Equity Investment Life Holding Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEM", + "name": "Agnico Eagle Mines Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEMB", + "name": "AMERICAN CENTURY EMERGING MARKETS BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEMD", + "name": "Aethlon Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AENZ", + "name": "Aenza S.A.A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEO", + "name": "American Eagle Outfitters Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEP", + "name": "American Electric Power Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEP-P-C", + "name": "American Electric Power Company Inc Corporate Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEPPZ", + "name": "American Electric Power Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AER", + "name": "Aercap Holdings N.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AERC", + "name": "AeroClean Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AERI", + "name": "Aerie Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AES", + "name": "AES Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AESC", + "name": "AES Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AESE", + "name": "Allied Esports Entertainment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AESR", + "name": "Anfield U.S. Equity Sector Rotation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEVA", + "name": "Aeva Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEVA-WS", + "name": "Aeva Technologies Inc - Warrants (29/10/2024)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEY", + "name": "Addvantage Technologies Group", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEYE", + "name": "AudioEye Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AEZS", + "name": "Aeterna Zentaris Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFAC", + "name": "Arena Fortify Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFACU", + "name": "Arena Fortify Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFACW", + "name": "Arena Fortify Acquisition Corp - Warrants (10/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFAQ", + "name": "AF Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFAQU", + "name": "AF Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFAQW", + "name": "AF Acquisition Corp - Warrants (16/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFB", + "name": "AllianceBernstein National Municipal Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFBI", + "name": "Affinity Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFCG", + "name": "AFC Gamma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFG", + "name": "American Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFGB", + "name": "American Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFGC", + "name": "American Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFGD", + "name": "American Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFGE", + "name": "American Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFI", + "name": "Armstrong Flooring Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFIB", + "name": "Acutus Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFIF", + "name": "Anfield Universal Fixed Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFK", + "name": "VANECK AFRICA INDEX ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFL", + "name": "Aflac Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFLG", + "name": "First Trust Active Factor Large Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFMC", + "name": "FIRST TRUST ACTIVE FACTOR MID CAP ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFMD", + "name": "Affimed N.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFRM", + "name": "Affirm Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFSM", + "name": "FIRST TRUST ACTIVE FACTOR SMALL CAP ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFT", + "name": "Apollo Senior Floating Rate Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFTR", + "name": "AfterNext HealthTech Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFTR-U", + "name": "AfterNext HealthTech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFTR-WS", + "name": "AfterNext HealthTech Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFTY", + "name": "PACER CSOP FTSE CHINA A50 ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AFYA", + "name": "Afya Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AG", + "name": "First Majestic Silver Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGAC", + "name": "African Gold Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGAC-U", + "name": "African Gold Acquisition Corp - Units (1 Ord Class A & 3/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGAC-WS", + "name": "African Gold Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGBA", + "name": "Agba Acquisition Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGBAR", + "name": "Agba Acquisition Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGBAU", + "name": "Agba Acquisition Ltd - Unit (1 Ordinary share 1 Wrt & 1 Rts )", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGBAW", + "name": "Agba Acquisition Ltd - Warrants (10/05/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGCB", + "name": "Altimeter Growth Corp 2 - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGCO", + "name": "AGCO Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGD", + "name": "Aberdeen Global Dynamic Dividend Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2006-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGE", + "name": "AgeX Therapeutics Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGEN", + "name": "Agenus Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGFS", + "name": "AgroFresh Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGFY", + "name": "Agrify Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGG", + "name": "iShares Core U.S. Aggregate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2003-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGGH", + "name": "Simplify Aggregate Bond PLUS Credit Hedge ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGGR", + "name": "Agile Growth Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGGRU", + "name": "Agile Growth Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGGRW", + "name": "Agile Growth Corp - Warrants (09/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGGY", + "name": "WisdomTree Yield Enhanced U.S. Aggregate Bond Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGI", + "name": "Alamos Gold Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGIL", + "name": "AgileThought Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGILW", + "name": "AgileThought Inc - Warrants(20/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGIO", + "name": "Agios Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGL", + "name": "Agilon Health Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGLE", + "name": "Aeglea BioTherapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGM", + "name": "Federal Agricultural Mortgage Corp - Class C", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGM-A", + "name": "Federal Agricultural Mortgage Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGM-P-C", + "name": "Federal Agricultural Mortgage Corporation Preferred Series C Fixed to Fltg", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGM-P-D", + "name": "Federal Agricultural Mortgage Corporation 5700 NonCumulative Preferred Stock Series D", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGM-P-E", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGM-P-F", + "name": "Federal Agricultural Mortgage Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGM-P-G", + "name": "Federal Agricultural Mortgage Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGMH", + "name": "AGM Group Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGNC", + "name": "AGNC Investment Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGNCM", + "name": "AGNC Investment Corp FXDFR PRF PERPETUAL USD 25 Ser D 11000th int", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGNCN", + "name": "AGNC Investment Corp Depositary Shares Each Representing a 11000th Interest in a Share of 700 Series C FixedToFloating Rate Cumulative Redeemable Preferre", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGNCO", + "name": "AGNC Investment Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGNCP", + "name": "AGNC Investment Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGND", + "name": "WISDOMTREE NEGATIVE DURATION U.S. AGGREGATE BOND FUND NA", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGNG", + "name": "Global X Aging Population ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGO", + "name": "Assured Guaranty Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGOV", + "name": "ETC Gavekal Asia Pacific Government Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGOX", + "name": "Adaptive Alpha Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGQ", + "name": "ProShares Ultra Silver", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGR", + "name": "Avangrid Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGRI", + "name": "AgriFORCE Growing Systems Ltd", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGRIW", + "name": "AgriFORCE Growing Systems Ltd - Warrants (14/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGRO", + "name": "Adecoagro S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGRX", + "name": "Agile Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGS", + "name": "PlayAGS Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGT", + "name": "ISHARES MSCI ARGENTINA AND GLOBAL EXPOSURE ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGTC", + "name": "Applied Genetic Technologies Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGTI", + "name": "Agiliti Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGX", + "name": "Argan Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGYS", + "name": "Agilysys Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGZ", + "name": "iShares Agency Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AGZD", + "name": "WisdomTree Interest Rate Hedged U.S. Aggregate Bond Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHCO", + "name": "AdaptHealth Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHG", + "name": "Akso Health Group", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHH", + "name": "Armada Hoffler Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHH-P-A", + "name": "Armada Hoffler Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHHX", + "name": "Adaptive High Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHI", + "name": "Advanced Human Imaging Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHL-P-C", + "name": "Aspen Insurance Holdings Limited 595 FixedtoFloating Rate Perpetual NonCumulative Preference Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHL-P-D", + "name": "Aspen Insurance Holdings Limited 5625 Perpetual NonCumulative Preference Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHL-P-E", + "name": "Aspen Insurance Hldgs", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHPA", + "name": "Avista Public Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHPAU", + "name": "Avista Public Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHPAW", + "name": "Avista Public Acquisition Corp II - Warrants (06/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHPI", + "name": "Allied Healthcare Product Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHRN", + "name": "Ahren Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHRNU", + "name": "Ahren Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHRNW", + "name": "Ahren Acquisition Corp - Warrants (09/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHT", + "name": "Ashford Hospitality Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHT-P-D", + "name": "Ashford Hospitality Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHT-P-F", + "name": "Ashford Hospitality Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHT-P-G", + "name": "Ashford Hospitality Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHT-P-H", + "name": "Ashford Hospitality Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHT-P-I", + "name": "Ashford Hospitality Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AHYB", + "name": "American Century Select High Yield ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AI", + "name": "C3.ai Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIA", + "name": "iShares Asia 50 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIB", + "name": "AIB Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIBBR", + "name": "AIB Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIBBU", + "name": "AIB Acquisition Corp - Units (1 Ord Share Class A & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIC", + "name": "Arlington Asset Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIEQ", + "name": "AI Powered Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIF", + "name": "Apollo Tactical Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIG", + "name": "American International Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIG-P-A", + "name": "American International Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIH", + "name": "Aesthetic Medical International Holdings Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIHS", + "name": "Senmiao Technology Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIIQ", + "name": "AI POWERED INTERNATIONAL EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIKI", + "name": "AIkido Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AILG", + "name": "ALPHA INTELLIGENT - LARGE CAP GROWTH ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AILV", + "name": "ALPHA INTELLIGENT - LARGE CAP VALUE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIM", + "name": "AIM ImmunoTech Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1996-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIMC", + "name": "Altra Industrial Motion Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIN", + "name": "Albany International Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AINC", + "name": "Ashford Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AINV", + "name": "Apollo Investment Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIO", + "name": "Virtus AllianzGI Artificial Intelligence & Technology Opportunities Fd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIP", + "name": "Arteris Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIQ", + "name": "Global X Artificial Intelligence & Technology ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIR", + "name": "AAR Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIRC", + "name": "Apartment Income REIT Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIRG", + "name": "Airgain Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIRI", + "name": "Air Industries Group", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2000-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIRR", + "name": "First Trust RBA American Industrial Renaissance ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIRS", + "name": "Airsculpt Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIRT", + "name": "Air T Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIRTP", + "name": "Air T Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIRTW", + "name": "Air T Inc - Warrants (30/08/2021)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIT", + "name": "Applied Industrial Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIV", + "name": "Apartment Investment & Management Co. - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIVI", + "name": "WisdomTree International AI Enhanced Value Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIVL", + "name": "WisdomTree U.S. AI Enhanced Value Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIZ", + "name": "Assurant Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AIZN", + "name": "Assurant Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AJAX-WS", + "name": "Ajax I - Warrants (27/10/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AJG", + "name": "Arthur J. Gallagher & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AJRD", + "name": "Aerojet Rocketdyne Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AJX", + "name": "Great Ajax Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AJXA", + "name": "Great Ajax Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKA", + "name": "a.k.a. Brands Holding Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKAM", + "name": "Akamai Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKAN", + "name": "Akanda Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKBA", + "name": "Akebia Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKIC", + "name": "Sports Ventures Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKICU", + "name": "Sports Ventures Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKICW", + "name": "Sports Ventures Acquisition Corp - Warrants (30/11/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKO-A", + "name": "Embotelladora Andina S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKO-B", + "name": "Embotelladora Andina S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKR", + "name": "Acadia Realty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKRO", + "name": "Akero Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKTS", + "name": "Akoustis Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKTX", + "name": "Akari Therapeutics Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKU", + "name": "Akumin Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKUS", + "name": "Akouos Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AKYA", + "name": "Akoya Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AL", + "name": "Air Lease Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AL-P-A", + "name": "Air Lease Corporation 6150 FixedtoFloating Rate NonCumulative Perpetual Preferred Stock Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALAC", + "name": "Alberton Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALACR", + "name": "Alberton Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALACU", + "name": "Alberton Acquisition Corp - Units (1 Ord 1 Warr & 1Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALACW", + "name": "Alberton Acquisition Corp - Warrants (26/04/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALB", + "name": "Albemarle Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALBO", + "name": "Albireo Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALC", + "name": "Alcon Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALCC", + "name": "AltC Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALCO", + "name": "Alico Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALDX", + "name": "Aldeyra Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALE", + "name": "Allete Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALEC", + "name": "Alector Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALEX", + "name": "Alexander & Baldwin Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALF", + "name": "ALFI Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALFA", + "name": "ESS AlphaClone Alternative Alpha ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALFIW", + "name": "ALFI Inc - Warrants (01/03/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALG", + "name": "Alamo Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALGM", + "name": "Allegro Microsystems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALGN", + "name": "Align Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALGS", + "name": "Aligos Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALGT", + "name": "Allegiant Travel", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALHC", + "name": "Alignment Healthcare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALIM", + "name": "Alimera Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALIN-P-A", + "name": "Altera Infrastructure L.P", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALIN-P-B", + "name": "Altera Infrastructure L.P", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALIN-P-E", + "name": "Altera Infrastructure L.P", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALIT", + "name": "Alight Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALIT-WS", + "name": "Alight Inc Wt", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALJJ", + "name": "Alj Regional Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALK", + "name": "Alaska Air Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALKS", + "name": "Alkermes plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALKT", + "name": "Alkami Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALL", + "name": "Allstate Corp (The)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALL-P-A", + "name": "Allstate Corporation The Dep Shs Repstg 11000th Perp Pfd Ser A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALL-P-B", + "name": "Allstate Corp (The)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALL-P-G", + "name": "Allstate Corp (The)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALL-P-H", + "name": "Allstate Corp (The)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALL-P-I", + "name": "Allstate Corp (The)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALLE", + "name": "Allegion plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALLG", + "name": "Allego NV", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALLG-WS", + "name": "Allego N.V. Warrants each exercisable for one Ordinary Share at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALLK", + "name": "Allakos Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALLO", + "name": "Allogene Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALLR", + "name": "Allarity Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALLT", + "name": "Allot Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALLY", + "name": "Ally Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALNA", + "name": "Allena Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALNY", + "name": "Alnylam Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALOR", + "name": "ALSP Orchid Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALORU", + "name": "ALSP Orchid Acquisition Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALORW", + "name": "ALSP Orchid Acquisition Corp I - Warrants (30/11/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALOT", + "name": "AstroNova Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALP-P-Q", + "name": "Alabama Power Company 500 Class A Preferred Stock Cumulative Par Value 1 Per Share Stated Capital 25 Per Share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALPA", + "name": "Alpha Healthcare Acquisition Corp III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALPAU", + "name": "Alpha Healthcare Acquisition Corp III - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALPAW", + "name": "Alpha Healthcare Acquisition Corp III - Warrants (01/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALPN", + "name": "Alpine Immune Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALPP", + "name": "Alpine 4 Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALR", + "name": "AlerisLife Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALRM", + "name": "Alarm.com Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALRN", + "name": "Aileron Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALRS", + "name": "Alerus Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALSA", + "name": "Alpha Star Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALSAR", + "name": "Alpha Star Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALSAU", + "name": "Alpha Star Acquisition Corp - Units (1 1 Right 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALSAW", + "name": "Alpha Star Acquisition Corp - Warrants (13/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALSN", + "name": "Allison Transmission Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALT", + "name": "Altimmune Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTG", + "name": "Alta Equipment Group Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTG-P-A", + "name": "Alta Equipment Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTL", + "name": "Pacer Lunt Large Cap Alternator ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTO", + "name": "Alto Ingredients Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTR", + "name": "Altair Engineering Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTS", + "name": "PROSHARES MORNINGSTAR ALTERNATIVES SOLUTION ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTU", + "name": "Altitude Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTUU", + "name": "Altitude Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTUW", + "name": "Altitude Acquisition Corp - Warrants (30/11/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALTY", + "name": "Global X Alternative Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALV", + "name": "Autoliv Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALVR", + "name": "AlloVir Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALX", + "name": "Alexander`s Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALXO", + "name": "Alx Oncology Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALYA", + "name": "Alithya Group Inc - Class A - Class A (Sub Voting)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ALZN", + "name": "Alzamend Neuro Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AM", + "name": "Antero Midstream Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMAL", + "name": "Amalgamated Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMAM", + "name": "Ambrx Biopharma Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMAO", + "name": "American Acquisition Opportunity Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMAOU", + "name": "American Acquisition Opportunity Inc - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMAOW", + "name": "American Acquisition Opportunity Inc - Warrants (17/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMAT", + "name": "Applied Materials Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMAX", + "name": "RH Hedged Multi-Asset Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMBA", + "name": "Ambarella Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMBC", + "name": "AMBAC Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMBC-WS", + "name": "AMBAC Financial Group Inc - Warrants (30/04/2023)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMBO", + "name": "Ambow Education Holding Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMBP", + "name": "Ardagh Metal Packaging S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMBP-WS", + "name": "Ardagh Metal Packaging S.A. Warrants each exercisable for one Share at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMC", + "name": "AMC Entertainment Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMCI", + "name": "AMCI Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMCIU", + "name": "AMCI Acquisition Corp II - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMCIW", + "name": "AMCI Acquisition Corp II - Warrants (24/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMCR", + "name": "Amcor Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMCX", + "name": "AMC Networks Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMD", + "name": "Advanced Micro Devices Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1983-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AME", + "name": "Ametek Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMED", + "name": "Amedisys Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMEH", + "name": "Apollo Medical Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMER", + "name": "EMLES MADE IN AMERICA ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMG", + "name": "Affiliated Managers Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMGN", + "name": "AMGEN Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMH", + "name": "American Homes 4 Rent - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMH-P-F", + "name": "American Homes 4 Rent 5875 Series F Cumulative Redeemable Perpetual Preferred Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMH-P-G", + "name": "American Homes 4 Rent Series G cumulative redeemable perpetual preferred shares of beneficial interest", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMH-P-H", + "name": "American Homes 4 Rent Series H cumulative redeemable perpetual Preferred Shares of Beneficial Interest", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMJ", + "name": "JPMorgan Chase & Company", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMK", + "name": "Assetmark Financial Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMKR", + "name": "AMKOR Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMLP", + "name": "Alerian MLP ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMLX", + "name": "Amylyx Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMN", + "name": "AMN Healthcare Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMNA", + "name": "ETRACS Alerian Midstream Energy Index ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMNB", + "name": "American National Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMND", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2020-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMOM", + "name": "QRAFT AI Enhanced U.S. Large Cap Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMOT", + "name": "Allied Motion Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMOV", + "name": "America Movil S.A.B.DE C.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMP", + "name": "Ameriprise Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPE", + "name": "Ampio Pharmaceuticals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2010-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPG", + "name": "Amplitech Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPGW", + "name": "Amplitech Group Inc - Warrants (01/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPH", + "name": "Amphastar Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPI", + "name": "Advanced Merger Partners Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPI-U", + "name": "Advanced Merger Partners Inc - Units (1 Ord Share Class A & 1/6 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPI-WS", + "name": "Advanced Merger Partners Inc - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPL", + "name": "Amplitude Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPS", + "name": "Altus Power Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPS-WS", + "name": "Altus Power Inc - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMPY", + "name": "Amplify Energy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMR", + "name": "Alpha Metallurgical Resources Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMRC", + "name": "Ameresco Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMRK", + "name": "A-Mark Precious Metals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMRN", + "name": "Amarin Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMRS", + "name": "Amyris Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMRX", + "name": "Amneal Pharmaceuticals Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMS", + "name": "American Shared Hospital Services", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMSC", + "name": "American Superconductor Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMSF", + "name": "Amerisafe Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMST", + "name": "Amesite Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMSWA", + "name": "American Software Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMT", + "name": "American Tower Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMTB", + "name": "Amerant Bancorp Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMTD", + "name": "AMTD IDEA Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMTI", + "name": "Applied Molecular Transport Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMTR", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMTX", + "name": "Aemetis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMUB", + "name": "AMUB", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMWD", + "name": "American Woodmark Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMWL", + "name": "American Well Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMX", + "name": "America Movil S.A.B.DE C.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMYT", + "name": "Amryt Pharma Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMZA", + "name": "InfraCap MLP ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AMZN", + "name": "Amazon.com Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AN", + "name": "Autonation Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANAB", + "name": "AnaptysBio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANAC", + "name": "Arctos NorthStar Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANAC-U", + "name": "Arctos NorthStar Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANAC-WS", + "name": "Arctos NorthStar Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANAT", + "name": "American National Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANDE", + "name": "Andersons Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-02-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANEB", + "name": "Anebulo Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANET", + "name": "Arista Networks Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANEW", + "name": "PROSHARES MSCI TRANSFORMATIONAL CHANGES ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANF", + "name": "Abercrombie & Fitch Co. - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANGH", + "name": "Anghami Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANGHW", + "name": "Anghami Inc - Warrants (28/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANGI", + "name": "Angi Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANGL", + "name": "VanEck Fallen Angel High Yield Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANGN", + "name": "Angion Biomedica Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANGO", + "name": "Angiodynamic Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANIK", + "name": "Anika Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANIP", + "name": "ANI Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANIX", + "name": "Anixa Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANNX", + "name": "Annexon Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANPC", + "name": "AnPac Bio-Medical Science Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANSS", + "name": "Ansys Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANTE", + "name": "AirNet Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANTM", + "name": "Anthem Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANVS", + "name": "Annovis Bio Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANY", + "name": "Sphere 3D Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANZU", + "name": "Anzu Special Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANZUU", + "name": "Anzu Special Acquisition Corp I - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ANZUW", + "name": "Anzu Special Acquisition Corp I - Warrants (27/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOA", + "name": "iShares Core Aggressive Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOD", + "name": "Aberdeen Total Dynamic Dividend Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOGO", + "name": "Arogo Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOGOW", + "name": "Arogo Capital Acquisition Corp - Warrants (23/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOK", + "name": "iShares Core Conservative Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOM", + "name": "iShares Core Moderate Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOMR", + "name": "Angel Oak Mortgage Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AON", + "name": "Aon plc. - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOR", + "name": "iShares Core Growth Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AORT", + "name": "Artivion Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOS", + "name": "A.O. Smith Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOSL", + "name": "Alpha & Omega Semiconductor Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOUT", + "name": "American Outdoor Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AOUTV", + "name": "American Outdoor Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AP", + "name": "Ampco-Pittsburgh Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AP-WS", + "name": "Ampco-Pittsburgh Corp - Warrants (01/08/2025)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APA", + "name": "APA Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1979-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APAC", + "name": "StoneBridge Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APACU", + "name": "StoneBridge Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APACW", + "name": "StoneBridge Acquisition Corp - Warrants (11/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APAM", + "name": "Artisan Partners Asset Management Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APCA", + "name": "AP Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APCA-U", + "name": "AP Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APCA-WS", + "name": "AP Acquisition Corp - Warrants (07/12/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APCX", + "name": "AppTech Payments Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APCXW", + "name": "AppTech Payments Corp - Warrants (17/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APD", + "name": "Air Products & Chemicals Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APDN", + "name": "Applied Dna Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APEI", + "name": "American Public Education Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APEN", + "name": "Apollo Endosurgery Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APG", + "name": "APi Group Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APGB", + "name": "Apollo Strategic Growth Capital II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APGB-U", + "name": "Apollo Strategic Growth Capital II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APGB-WS", + "name": "Apollo Strategic Growth Capital II - Warrants (12/02/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APH", + "name": "Amphenol Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "API", + "name": "Agora Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APLE", + "name": "Apple Hospitality REIT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APLS", + "name": "Apellis Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APLT", + "name": "Applied Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APM", + "name": "Aptorum Group Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APMI", + "name": "AxonPrime Infrastructure Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APMIU", + "name": "AxonPrime Infrastructure Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APMIW", + "name": "AxonPrime Infrastructure Acquisition Corp - Warrants (31/05/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APN", + "name": "Apeiron Capital Investment Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APN-U", + "name": "Apeiron Capital Investment Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APN-WS", + "name": "Apeiron Capital Investment Corp - Warrants(02/04/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APO", + "name": "Apollo Global Management Inc - Class A (New)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APOG", + "name": "Apogee Enterprises Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APOP", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APP", + "name": "Applovin Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APPF", + "name": "Appfolio Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APPH", + "name": "AppHarvest Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APPHW", + "name": "AppHarvest Inc - Warrants (30/06/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APPN", + "name": "Appian Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APPS", + "name": "Digital Turbine Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APR", + "name": "Apria Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APRE", + "name": "Aprea Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APRN", + "name": "Blue Apron Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APRZ", + "name": "TrueShares Structured Outcome (April) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APSG", + "name": "Apollo Strategic Growth Capital - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APSG-U", + "name": "Apollo Strategic Growth Capital - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APSG-WS", + "name": "Apollo Strategic Growth Capital - Warrants (29/10/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APT", + "name": "Alpha Pro Tech Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1999-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APTM", + "name": "Alpha Partners Technology Merger Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APTMU", + "name": "Alpha Partners Technology Merger Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APTMW", + "name": "Alpha Partners Technology Merger Corp - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APTO", + "name": "Aptose Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APTS", + "name": "Preferred Apartment Communities Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APTV", + "name": "Aptiv PLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APTV-P-A", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APTX", + "name": "Aptinyx Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APVO", + "name": "Aptevo Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APWC", + "name": "Asia Pacific Wire & Cable", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APXH", + "name": "APEX HealthCare ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APXI", + "name": "APx Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APXIU", + "name": "APx Acquisition Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APXIW", + "name": "APx Acquisition Corp I - Warrants (30/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "APYX", + "name": "Apyx Medical Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQB", + "name": "AquaBounty Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQGX", + "name": "AI Quality Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQMS", + "name": "Aqua Metals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQN", + "name": "Algonquin Power & Utilities Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQNA", + "name": "Algonquin Power & Utilities Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQNB", + "name": "Algonquin Power & Utilities Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQNU", + "name": "Algonquin Power & Utilities Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQST", + "name": "Aquestive Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQUA", + "name": "Evoqua Water Technologies Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AQWA", + "name": "GLOBAL X CLEAN WATER ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AR", + "name": "Antero Resources Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARAV", + "name": "Aravive Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARAY", + "name": "Accuray Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARB", + "name": "AltShares Merger Arbitrage ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARBE", + "name": "Arbe Robotics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARBEW", + "name": "Arbe Robotics Ltd - Warrants (07/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARBG", + "name": "Aequi Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARBGU", + "name": "Aequi Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARBGW", + "name": "Aequi Acquisition Corp - Warrants(27/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARBK", + "name": "Argo Blockchain Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARBKL", + "name": "Argo Blockchain Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARC", + "name": "ARC Document Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCB", + "name": "ArcBest Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCC", + "name": "Ares Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCE", + "name": "Arco Platform Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCH", + "name": "Arch Resources Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCK", + "name": "Arbor Rapha Capital Bioholdings Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCKU", + "name": "Arbor Rapha Capital Bioholdings Corp I - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCKW", + "name": "Arbor Rapha Capital Bioholdings Corp I - Warrants (31/10/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCM", + "name": "Arrow Reserve Capital Management ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCO", + "name": "Arcos Dorados Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARCT", + "name": "Arcturus Therapeutics Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARDC", + "name": "Ares Dynamic Credit Allocation Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARDS", + "name": "Aridis Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARDX", + "name": "Ardelyx Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARE", + "name": "Alexandria Real Estate Equities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AREB", + "name": "American Rebel Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AREBW", + "name": "American Rebel Holdings Inc - Warrants (21/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AREC", + "name": "American Resources Corporation - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AREN", + "name": "Arena Group Holdings Inc (The)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARES", + "name": "Ares Management Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARGD", + "name": "Argo Group US Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARGO", + "name": "Argo Group International Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARGO-P-A", + "name": "Argo Group International Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARGT", + "name": "GLOBAL X MSCI ARGENTINA ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARGU", + "name": "Argus Capital Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARGUU", + "name": "Argus Capital Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARGUW", + "name": "Argus Capital Corp - Warrants (31/08/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARGX", + "name": "Argen X SE", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARHS", + "name": "Arhaus Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARI", + "name": "Apollo Commercial Real Estate Finance Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARIS", + "name": "Aris Water Solutions Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARIZ", + "name": "Arisz Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARIZR", + "name": "Arisz Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARIZU", + "name": "Arisz Acquisition Corp - Units (1 Ord Share & 1Right & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARIZW", + "name": "Arisz Acquisition Corp - Warrants (16/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARKF", + "name": "ARK Fintech Innovation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARKG", + "name": "ARK Genomic Revolution ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARKK", + "name": "ARK Innovation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARKO", + "name": "ARKO Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARKQ", + "name": "ARK Autonomous Technology & Robotics ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARKR", + "name": "Ark Restaurants Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1985-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARKW", + "name": "ARK Next Generation Internet ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARKX", + "name": "ARK Space Exploration & Innovation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARL", + "name": "American Realty Investors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARLO", + "name": "Arlo Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARLP", + "name": "Alliance Resource Partners LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARMK", + "name": "Aramark", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARMP", + "name": "Armata Pharmaceuticals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2011-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARMR", + "name": "Armor US Equity Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARNC", + "name": "Arconic Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AROC", + "name": "Archrock Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AROW", + "name": "Arrow Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARQQ", + "name": "Arqit Quantum Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARQQW", + "name": "Arqit Quantum Inc - Warrants (02/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARQT", + "name": "Arcutis Biotherapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARR", + "name": "ARMOUR Residential REIT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARR-P-B", + "name": "ARMOUR Residential REIT Inc Preferred Series B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARR-P-C", + "name": "ARMOUR Residential REIT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARRW", + "name": "Arrowroot Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARRWU", + "name": "Arrowroot Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARRWW", + "name": "Arrowroot Acquisition Corp - Warrants (02/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARRY", + "name": "Array Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTA", + "name": "Artisan Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTAU", + "name": "Artisan Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTAW", + "name": "Artisan Acquisition Corp - Warrants (09/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTE", + "name": "Artemis Strategic Investment Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTEU", + "name": "Artemis Strategic Investment Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTEW", + "name": "Artemis Strategic Investment Corp - Warrants (30/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTL", + "name": "Artelo Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTLW", + "name": "Artelo Biosciences Inc - Warrants (18/06/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTNA", + "name": "Artesian Resources Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARTW", + "name": "Art`s-way Manufacturing Co. Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARVL", + "name": "Arrival", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARVN", + "name": "Arvinas Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARW", + "name": "Arrow Electronics Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARWR", + "name": "Arrowhead Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARYAW", + "name": "Arya Sciences Acquisition Corp Warrants 10102025", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARYD", + "name": "Arya Sciences Acquisition Corp IV - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ARYE", + "name": "ARYA Sciences Acquisition Corp V - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASA", + "name": "ASA Gold and Precious Metals Ltd", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1978-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASAI", + "name": "Sendas Distribuidora S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASAI-W", + "name": "Sendas Distribuidora S.A. American Depositary Share each representing one When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASAN", + "name": "Asana Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASAQ", + "name": "Atlantic Avenue Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASAQ-U", + "name": "Atlantic Avenue Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASAQ-WS", + "name": "Atlantic Avenue Acquisition Corp - Warrants(01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASAX", + "name": "Astrea Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASAXU", + "name": "Astrea Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASAXW", + "name": "Astrea Acquisition Corp - Warrants (28/01/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASB", + "name": "Associated Banc-Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASB-P-E", + "name": "Associated Banc-Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASB-P-F", + "name": "Associated Banc-Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASC", + "name": "Ardmore Shipping Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASCA", + "name": "ASPAC I Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASCAR", + "name": "ASPAC I Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASCAU", + "name": "ASPAC I Acquisition Corp - Units (1 Ord Share Class A 3/4 War & 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASCAW", + "name": "ASPAC I Acquisition Corp - Warrants (09/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASEA", + "name": "Global X FTSE Southeast Asia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASET", + "name": "FlexShares Real Assets Allocation Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASG", + "name": "Liberty All-Star Growth Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASGI", + "name": "Aberdeen Standard Global Infrastructure Income Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASGN", + "name": "ASGN Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASH", + "name": "Ashland Global Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASHR", + "name": "Xtrackers Harvest CSI 300 China A-Shares ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASHS", + "name": "Xtrackers Harvest CSI 500 China A-Shares Small Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASHX", + "name": "Xtrackers MSCI China A-Inclusion Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASIX", + "name": "AdvanSix Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASLE", + "name": "AerSale Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASLN", + "name": "ASLAN Pharmaceuticals Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASM", + "name": "Avino Silver & Gold Mines Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASMB", + "name": "Assembly Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASML", + "name": "ASML Holding NV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASND", + "name": "Ascendis Pharma A/S", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASO", + "name": "Academy Sports and Outdoors Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPA", + "name": "Abri SPAC I Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPAU", + "name": "Abri SPAC I Inc - Units (1 Ord & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPAW", + "name": "Abri SPAC I Inc - Warrants (18/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPC", + "name": "Alpha Capital Acquisition Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPCU", + "name": "Alpha Capital Acquisition Co - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPCW", + "name": "Alpha Capital Acquisition Co - Warrants (16/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPN", + "name": "Aspen Aerogels Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPS", + "name": "Altisource Portfolio Solutions S.A.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPU", + "name": "Aspen Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASPY", + "name": "ASYMsharesASYMmetric S&P 500 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASR", + "name": "Grupo Aeroportuario Del Sureste S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASRT", + "name": "Assertio Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASRV", + "name": "Ameriserv Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASRVP", + "name": "AmeriServ Financial Inc AmeriServ Financial Trust I", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASTC", + "name": "Astrotech Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASTE", + "name": "Astec Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASTL", + "name": "Algoma Steel Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASTLW", + "name": "Algoma Steel Group Inc - Warrants (19/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASTR", + "name": "Astra Space Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASTS", + "name": "AST SpaceMobile Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASTSW", + "name": "AST SpaceMobile Inc - Warrants (06/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASUR", + "name": "Asure Software Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASX", + "name": "ASE Technology Holding Co.Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASXC", + "name": "Asensus Surgical Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASYS", + "name": "Amtech Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASZ", + "name": "Austerlitz Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASZ-U", + "name": "Austerlitz Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ASZ-WS", + "name": "Austerlitz Acquisition Corp II - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATA", + "name": "Americas Technology Acquisition Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATA-U", + "name": "Americas Technology Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATA-WS", + "name": "Americas Technology Acquisition Corp - Warrants (31/12/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAC-WS", + "name": "Altimar Acquisition Corporation Redeemable Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAI", + "name": "ATAI Life Sciences N.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAK", + "name": "Aurora Technology Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAKR", + "name": "Aurora Technology Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAKU", + "name": "Aurora Technology Acquisition Corp - Units (1 Ord Class A 1 War & 1 Rights)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAKW", + "name": "Aurora Technology Acquisition Corp - Warrants (27/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAQ", + "name": "Altimar Acquisition Corp III - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAQ-U", + "name": "Altimar Acquisition Corp III - Units (1 Ord Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAQ-WS", + "name": "Altimar Acquisition Corp III Warrants each whole warrant exercisable for one Class A Ordinary Share at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATAX", + "name": "America First Multifamily Investors LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATC", + "name": "Atotech Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATCO", + "name": "Atlas Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATCO-P-D", + "name": "Atlas Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATCO-P-E", + "name": "Atlas Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATCO-P-G", + "name": "Atlas Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATCO-P-H", + "name": "Atlas Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATCO-P-I", + "name": "Atlas Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATCOL", + "name": "Atlas Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATCX", + "name": "Atlas Technical Consultants Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEC", + "name": "Alphatec Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEK", + "name": "Athena Technology Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEK-U", + "name": "Athena Technology Acquisition Corp II - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEK-WS", + "name": "Athena Technology Acquisition Corp II - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEN", + "name": "A10 Networks Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATER", + "name": "Aterian Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEST-A", + "name": "ATEST.A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEST-B", + "name": "ATEST.B", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEST-C", + "name": "ATESTC", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEST-G", + "name": "ATESTG", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEST-H", + "name": "ATEST.H", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEST-L", + "name": "ATEST.L", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATEX", + "name": "Anterix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATFV", + "name": "Alger 35 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATGE", + "name": "Adtalem Global Education Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATH-P-A", + "name": "Athene Holding LTD", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATH-P-B", + "name": "Athene Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATH-P-C", + "name": "Athene Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATH-P-D", + "name": "Athene Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATHA", + "name": "Athira Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATHE", + "name": "Alterity Therapeutics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATHM", + "name": "Autohome Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATHN-WS", + "name": "Athena Technology Acquisition Corp Redeemable Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATHX", + "name": "Athersys Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATI", + "name": "Allegheny Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATIF", + "name": "ATIF Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATIP", + "name": "ATI Physical Therapy Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATIP-WS", + "name": "ATI Physical Therapy Inc - Warrants (10/08/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATISW", + "name": "Attis Industries Inc Warrants", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATKR", + "name": "Atkore Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATLC", + "name": "Atlanticus Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATLCL", + "name": "Atlanticus Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATLCP", + "name": "Atlanticus Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATLO", + "name": "Ames National Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATMH", + "name": "All Things Mobile Analytic Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATMP", + "name": "Barclays ETN Select MLP ETN", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATNF", + "name": "180 Life Sciences Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATNFW", + "name": "180 Life Sciences Corp - Warrants (07/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATNI", + "name": "ATN International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATNM", + "name": "Actinium Pharmaceuticals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2012-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATNX", + "name": "Athenex Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATO", + "name": "Atmos Energy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATOM", + "name": "Atomera Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATOS", + "name": "Atossa Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATR", + "name": "Aptargroup Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATRA", + "name": "Atara Biotherapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATRC", + "name": "Atricure Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATRI", + "name": "Atrion Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATRO", + "name": "Astronics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATRS", + "name": "Antares Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATSG", + "name": "Air Transport Services Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATSPT", + "name": "Archimedes Tech SPAC Partners Co - Subunit (1 Ord & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATSPU", + "name": "Archimedes Tech SPAC Partners Co - Units (1 Subunit & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATSPW", + "name": "Archimedes Tech SPAC Partners Co - Warrants (10/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATTO", + "name": "Atento S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATUS", + "name": "Altice USA Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATVC", + "name": "Tribe Capital Growth Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATVCU", + "name": "Tribe Capital Growth Corp I - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATVCW", + "name": "Tribe Capital Growth Corp I - Warrants (24/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATVI", + "name": "Activision Blizzard Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATXI", + "name": "Avenue Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATXS", + "name": "Astria Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ATY", + "name": "AcuityAds Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AU", + "name": "AngloGold Ashanti Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUB", + "name": "Atlantic Union Bankshares Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUBAP", + "name": "Atlantic Union Bankshares Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUBN", + "name": "Auburn National Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUD", + "name": "Audacy Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUDC", + "name": "Audiocodes", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUGX", + "name": "Augmedix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUGZ", + "name": "TRUESHARES STRUCTURED OUTCOME (AUGUST) ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUID", + "name": "Ipsidy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUMN", + "name": "Golden Minerals Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2009-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUPH", + "name": "Aurinia Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUR", + "name": "Aurora Innovation Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AURA", + "name": "Aura Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AURC", + "name": "Aurora Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AURCU", + "name": "Aurora Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AURCW", + "name": "Aurora Acquisition Corp - Warrants (02/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUROW", + "name": "Aurora Innovation Inc - Warrants (03/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUS", + "name": "Austerlitz Acquisition Corp I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUS-U", + "name": "Austerlitz Acquisition Corp I - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUS-WS", + "name": "Austerlitz Acquisition Corp I - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUSF", + "name": "Global X Adaptive U.S. Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUTL", + "name": "Autolus Therapeutics plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUTO", + "name": "AutoWeb Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUUD", + "name": "Auddia Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUUDW", + "name": "Auddia Inc - Warrants - Series A (17/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUVI", + "name": "Applied UV Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUVIP", + "name": "Applied UV Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AUY", + "name": "Yamana Gold Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVA", + "name": "Avista Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVAC", + "name": "Avalon Acquisition Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVACU", + "name": "Avalon Acquisition Inc - Units (1 Ord Share Class A & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVACW", + "name": "Avalon Acquisition Inc - Warrants (18/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVAH", + "name": "Aveanna Healthcare Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVAL", + "name": "Grupo Aval Acciones y Valores S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVAN", + "name": "Avanti Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVAN-U", + "name": "Avanti Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVAN-WS", + "name": "Avanti Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVAV", + "name": "AeroVironment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVB", + "name": "Avalonbay Communities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVCO", + "name": "Avalon GloboCare Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVCT", + "name": "American Virtual Cloud Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVCTW", + "name": "American Virtual Cloud Technologies Inc - Warrants(07/04/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVD", + "name": "American Vanguard Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVDE", + "name": "Avantis International Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVDG", + "name": "AVDR US LargeCap ESG ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVDL", + "name": "Avadel Pharmaceuticals plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVDR", + "name": "AVDR US LargeCap Leading ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVDV", + "name": "Avantis International Small Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVDX", + "name": "AvidXchange Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVEM", + "name": "Avantis Emerging Markets Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVEO", + "name": "AVEO Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVES", + "name": "Avantis Emerging Markets Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVGO", + "name": "Broadcom Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVGOP", + "name": "Broadcom Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVGR", + "name": "Avinger Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVHI", + "name": "Achari Ventures Holdings Corp I", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVHIU", + "name": "Achari Ventures Holdings Corp I - Units (1 Ord Share & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVHIW", + "name": "Achari Ventures Holdings Corp I - Warrants (01/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVID", + "name": "Avid Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVIG", + "name": "Avantis Core Fixed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVIR", + "name": "Atea Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVIV", + "name": "Avantis International Large Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVK", + "name": "Advent Convertible and Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVLR", + "name": "Avalara Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVLV", + "name": "Avantis U.S. Large Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVMU", + "name": "AVANTIS CORE MUNICIPAL FIXED INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVNS", + "name": "Avanos Medical Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVNT", + "name": "Avient Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVNW", + "name": "Aviat Networks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVO", + "name": "Mission Produce Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVPT", + "name": "AvePoint Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVPTW", + "name": "AvePoint Inc - Warrants (18/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVRE", + "name": "Avantis Real E state ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVRO", + "name": "AvroBio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVSC", + "name": "Avantis U.S Small Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVSD", + "name": "Avantis Responsible International Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVSF", + "name": "Avantis Short-Term Fixed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVSU", + "name": "Avantis Responsible U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVT", + "name": "Avnet Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVTE", + "name": "Aerovate Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVTR", + "name": "Avantor Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVTR-P-A", + "name": "Avantor Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVTX", + "name": "Avalo Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVUS", + "name": "Avantis U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVUV", + "name": "Avantis U.S. Small Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVXL", + "name": "Anavex Life Sciences Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVY", + "name": "Avery Dennison Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AVYA", + "name": "Avaya Holdings Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWAY", + "name": "ETFMG Travel Tech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWF", + "name": "AllianceBernstein Global High Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1993-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWH", + "name": "Aspira Women`s Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWI", + "name": "Armstrong World Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWK", + "name": "American Water Works Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWP", + "name": "Aberdeen Global Premier Properties Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWR", + "name": "American States Water Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWRE", + "name": "Aware Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWTM", + "name": "AWARE ULTRA-SHORT DURATION ENHANCED INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWX", + "name": "Avalon Holdings Corp - Class A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1998-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AWYX", + "name": "ETFMG 2X DAILY TRAVEL TECH ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AX", + "name": "Axos Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXAC-U", + "name": "AXIOS Sustainable Growth Acquisition Corp - Units (1 Ord Class A 1 Right & 1 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXDX", + "name": "Accelerate Diagnostics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXGN", + "name": "Axogen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXH", + "name": "Industrial Human Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXH-U", + "name": "Industrial Human Capital Inc - Units (1 Ord Share & 1 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXH-WS", + "name": "Industrial Human Capital Inc - Warrants (27/11/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXL", + "name": "American Axle & Manufacturing Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXLA", + "name": "Axcella Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXNX", + "name": "Axonics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXON", + "name": "Axon Enterprise Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXP", + "name": "American Express Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXR", + "name": "AMREP Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXS", + "name": "Axis Capital Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXS-P-D", + "name": "Axis Capital Holdings Limited Preferred Series D Bermuda", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXS-P-E", + "name": "Axis Capital Holdings Limited Depositary Shares Series E", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXSM", + "name": "Axsome Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXTA", + "name": "Axalta Coating Systems Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXTI", + "name": "AXT Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AXU", + "name": "Alexco Resource Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AY", + "name": "Atlantica Sustainable Infrastructure Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AYI", + "name": "Acuity Brands Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AYLA", + "name": "Ayala Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AYRO", + "name": "AYRO Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AYTU", + "name": "Aytu BioPharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AYX", + "name": "Alteryx Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZ", + "name": "A2Z Smart Technologies Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZAA", + "name": "AllianzIM U.S. Large Cap Buffer10 Apr ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZAJ", + "name": "AllianzIM U.S. Large Cap Buffer10 Jan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZAL", + "name": "AllianzIM U.S. Large Cap Buffer10 Jul ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZAO", + "name": "AllianzIM U.S. Large Cap Buffer10 Oct ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZBA", + "name": "AllianzIM U.S. Large Cap Buffer20 Apr ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZBJ", + "name": "AllianzIM U.S. Large Cap Buffer20 Jan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZBL", + "name": "AllianzIM U.S. Large Cap Buffer20 Jul ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZBO", + "name": "AllianzIM U.S. Large Cap Buffer20 Oct ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZEK", + "name": "AZEK Company Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZN", + "name": "Astrazeneca plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZO", + "name": "Autozone Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZPN", + "name": "Aspen Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZRE", + "name": "Azure Power Global Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZTA", + "name": "Azenta Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZUL", + "name": "Azul S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZYO", + "name": "Aziyo Biologics Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "AZZ", + "name": "AZZ Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "B", + "name": "Barnes Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BA", + "name": "Boeing Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1962-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAB", + "name": "Invesco Taxable Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BABA", + "name": "Alibaba Group Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-B", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-E", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-K", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-L", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-M", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-N", + "name": "Bank Of America Corp. PRF PERPETUAL USD Ser LL DpSh11000th", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-O", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-P", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-Q", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-S", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-Y", + "name": "Bank of America Corporation Depositary Shares Series Y", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAC-P-Y-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BACA", + "name": "Berenson Acquisition Corp I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BACA-U", + "name": "Berenson Acquisition Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BACA-WS", + "name": "Berenson Acquisition Corp I - Warrants (01/08/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAD", + "name": "B.A.D. ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAF", + "name": "BlackRock Municipal Income Investment Quality Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAFN", + "name": "BayFirst Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAH", + "name": "Booz Allen Hamilton Holding Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAK", + "name": "Braskem S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAL", + "name": "iPathA Series B Bloomberg Cotton Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BALT", + "name": "Innovator Defined Wealth Shield ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BALY", + "name": "Ballys Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAM", + "name": "Brookfield Asset Management Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAMH", + "name": "Brookfield Finance Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAMI", + "name": "Brookfield Finance I (UK) plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAMR", + "name": "Brookfield Asset Management Reinsurance Partners Ltd (Exchangeable Shares Sub Voting) - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BANC", + "name": "Banc of California Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAND", + "name": "Bandwidth Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BANF", + "name": "Bancfirst Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BANFP", + "name": "BancFirst Corporation 72 Cumulative Trust Preferred Securities", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BANR", + "name": "Banner Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BANX", + "name": "ArrowMark Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAOS", + "name": "Baosheng Media Group Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAP", + "name": "Credicorp Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAPR", + "name": "Innovator U.S. Equity Buffer ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAR", + "name": "GraniteShares Gold Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BARK", + "name": "BARK Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BARK-WS", + "name": "BARK Inc - Warrants (01/05/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BASE", + "name": "Couchbase Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BATL", + "name": "Battalion Oil Corp (New)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-12-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BATRA", + "name": "Liberty Media Corp (Tracking Stock - Braves) Series A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BATRK", + "name": "Liberty Media Corp (Tracking Stock - Braves) Series C", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BATT", + "name": "Amplify Lithium & Battery Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAUG", + "name": "Innovator U.S. Equity Buffer ETF - August", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BAX", + "name": "Baxter International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BB", + "name": "BlackBerry Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBAI", + "name": "BigBear.ai Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBAI-WS", + "name": "BigBear.ai Inc Redeemable Warrants each exercisable for one share of Common Stock at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBAR", + "name": "BBVA Argentina", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBAX", + "name": "JPMorgan BetaBuilders Developed Asia Pacific ex-Japan ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBBY", + "name": "Bed Bath & Beyond Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBC", + "name": "Virtus LifeSci Biotech Clinical Trials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBCA", + "name": "JPMorgan BetaBuilders Canada ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBCP", + "name": "Concrete Pumping Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBD", + "name": "Banco Bradesco S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBDC", + "name": "Barings BDC Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBDO", + "name": "Banco Bradesco S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBEU", + "name": "JPMorgan BetaBuilders Europe ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBF", + "name": "BlackRock Municipal Income Investment Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBGI", + "name": "Beasley Broadcast Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBH", + "name": "VanEck Biotech ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "1999-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBI", + "name": "Brickell Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBIG", + "name": "Vinco Ventures Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBIN", + "name": "JPMorgan BetaBuilders International Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBIO", + "name": "BridgeBio Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBJP", + "name": "JPMorgan BetaBuilders Japan ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBK", + "name": "BlackRock Municipal Bond Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBLG", + "name": "Bone Biologics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBLGW", + "name": "Bone Biologics Corp - Warrants (13/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBLN", + "name": "Babylon Holdings Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBLN-WS", + "name": "Babylon Holdings Ltd - Warrants (21/10/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBMC", + "name": "JPMorgan BetaBuilders U.S. Mid Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBN", + "name": "BlackRock Taxable Municipal Bond Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBP", + "name": "Virtus LifeSci Biotech Products ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBQ", + "name": "BBQ Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBRE", + "name": "JPMorgan BetaBuilders MSCI U.S. REIT ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBSA", + "name": "JPMORGAN BETABUILDERS 1-5 YEAR U.S. AGGREGATE BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBSC", + "name": "JPMorgan BetaBuilders U.S. Small Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBSI", + "name": "Barrett Business Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBU", + "name": "Brookfield Business Partners L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBUC", + "name": "Brookfield Business Corporation Class A Exchangeable Subordinate", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBUC-W", + "name": "Brookfield Business Corporation Class A Exchangeable Subordinate WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBUS", + "name": "JPMorgan BetaBuilders U.S. Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBVA", + "name": "Banco Bilbao Vizcaya Argentaria.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBW", + "name": "Build A Bear Workshop Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBWI", + "name": "Bath & Body Works Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBWI-W", + "name": "Bath & Body Works Inc Exdistribution WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BBY", + "name": "Best Buy Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BC", + "name": "Brunswick Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BC-P-A", + "name": "Brunswick Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BC-P-B", + "name": "Brunswick Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BC-P-C", + "name": "Brunswick Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCAB", + "name": "BioAtla Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCAC", + "name": "Brookline Capital Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCACU", + "name": "Brookline Capital Acquisition Corp - Units (1 Ord Share & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCACW", + "name": "Brookline Capital Acquisition Corp - Warrants (01/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCAT", + "name": "BlackRock Capital Allocation Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCBP", + "name": "BCB Bancorp Inc (NJ)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCC", + "name": "Boise Cascade Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCD", + "name": "abrdn Bloomberg All Comm Longer Dt Strategy K-1 Free ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCDA", + "name": "BioCardia Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCDAW", + "name": "BioCardia Inc - Warrants (26/07/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCE", + "name": "BCE Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCEL", + "name": "Atreca Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCH", + "name": "Banco de Chile", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCI", + "name": "abrdn Bloomberg All Commodity Strategy K-1 Free ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCIM", + "name": "abrdn Bloomberg Industrial Metals Strategy K-1 Free ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCLI", + "name": "Brainstorm Cell Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCM", + "name": "iPath Pure Beta Broad Commodity ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCML", + "name": "BayCom Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCO", + "name": "Brink`s Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCOR", + "name": "Blucora Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCOV", + "name": "Brightcove Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCOW", + "name": "1895 Bancorp of Wisconsin Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCPC", + "name": "Balchem Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCRX", + "name": "Biocryst Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCS", + "name": "Barclays plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCSA", + "name": "Blockchain Coinvestors Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCSAU", + "name": "Blockchain Coinvestors Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCSAW", + "name": "Blockchain Coinvestors Acquisition Corp I - Warrants (01/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCSF", + "name": "Bain Capital Specialty Finance Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCTX", + "name": "BriaCell Therapeutics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCTXW", + "name": "BriaCell Therapeutics Corp - Warrants (24/02/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCV", + "name": "Bancroft Fund Ltd", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCV-P-A", + "name": "Bancroft Fund Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCX", + "name": "BlackRock Resources & Commodities Strategy Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BCYC", + "name": "Bicycle Therapeutics Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDC", + "name": "Belden Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDCX", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDCZ", + "name": "BDCZ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDEC", + "name": "Innovator U.S. Equity Buffer ETF - December", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDJ", + "name": "BlackRock Enhanced Equity Dividend Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDL", + "name": "Flanigan`s Enterprises Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDN", + "name": "Brandywine Realty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDR", + "name": "Blonder Tongue Laboratories Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDRY", + "name": "Breakwave Dry Bulk Shipping ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDSI", + "name": "Biodelivery Sciences International", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDSX", + "name": "Biodesix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDTX", + "name": "Black Diamond Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDX", + "name": "Becton Dickinson And Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDXA", + "name": "Becton Dickinson and Company Depositary Shares each Representing a 120th Interest in a Share of 6125 Mandatory Convertible Preferred Stock Series A 100 par", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BDXB", + "name": "Becton Dickinson And Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BE", + "name": "Bloom Energy Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEAM", + "name": "Beam Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEAT", + "name": "HeartBeam Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEATW", + "name": "HeartBeam Inc - Warrants (31/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BECN", + "name": "Beacon Roofing Supply Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BECO", + "name": "BlackRock Future Climate and Sustainable Economy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEDU", + "name": "Bright Scholar Education Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEDZ", + "name": "AdvisorShares Hotel ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEEM", + "name": "Beam Global", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEEMW", + "name": "Beam Global - Warrants (30/12/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEKE", + "name": "KE Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BELFA", + "name": "Bel Fuse Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BELFB", + "name": "Bel Fuse Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEN", + "name": "Franklin Resources Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BENE", + "name": "Benessere Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BENER", + "name": "Benessere Capital Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BENEU", + "name": "Benessere Capital Acquisition Corp - Units (1 Ord Class A 1 Rts & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BENEW", + "name": "Benessere Capital Acquisition Corp - Warrants (22/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEP", + "name": "Brookfield Renewable Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEP-P-A", + "name": "Brookfield Renewable Partners LP 525 Class A Preferred Limited Partnership Units Series 17", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEP-W", + "name": "Brookfield Renewable Partners L.P. Limited Partnership Units ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEPC", + "name": "Brookfield Renewable Corporation - Class A - Class A (Sub Voting)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEPCW", + "name": "Brookfield Renewable Corporation Class A Subordinate When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEPH", + "name": "Brookfield BRP Holdings (Canada) Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEPI", + "name": "Brookfield BRP Holdings (Canada) Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEPW", + "name": "Brookfield Renewable Partners L.P. Limited Partnership Units ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BERY", + "name": "Berry Global Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BERZ", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BEST", + "name": "BEST Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BETZ", + "name": "Roundhill Sports Betting & iGaming ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BF-A", + "name": "Brown-Forman Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BF-B", + "name": "Brown-Forman Corp - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFAC", + "name": "Battery Future Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFAC-U", + "name": "Battery Future Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFAC-WS", + "name": "Battery Future Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFAM", + "name": "Bright Horizons Family Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFC", + "name": "Bank First Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFEB", + "name": "Innovator U.S. Equity Buffer ETF - February", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFI", + "name": "BurgerFi International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFIIW", + "name": "BurgerFi International Inc - Warrants (16/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFIN", + "name": "Bankfinancial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFIT", + "name": "Global X Health & Wellness ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFIX", + "name": "Build Bond Innovation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFK", + "name": "BlackRock Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFLY", + "name": "Butterfly Network Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFLY-WS", + "name": "Butterfly Network Inc - Warrants (27/05/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFO", + "name": "BlackRock Florida Municipal 2020 Term Tr", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFOR", + "name": "BARRON'S 400 ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFRI", + "name": "Biofrontera Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFRIW", + "name": "Biofrontera Inc - Warrants (27/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFS", + "name": "Saul Centers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFS-P-D", + "name": "Saul Centers Inc Depositary Shares Series D", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFS-P-E", + "name": "Saul Centers Inc. PRF PERPETUAL USD Ser E Rep 1100th", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFST", + "name": "Business First Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFT-U", + "name": "Foley Trasimene Acquisition Corp II Units each consisting of one share of Class A common stock and onethird of one warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFT-WS", + "name": "Foley Trasimene Acquisition Corp II Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFTR", + "name": "BlackRock Future Innovators ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFY", + "name": "BlackRock New York Municipal Income Trust II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BFZ", + "name": "BlackRock California Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BG", + "name": "Bunge Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGB", + "name": "Blackstone Strategic Credit Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGCP", + "name": "BGC Partners Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGFV", + "name": "Big 5 Sporting Goods Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGH", + "name": "Barings Global Short Duration High Yield Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGI", + "name": "Birks Group Inc - Class A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGIO", + "name": "BlackRock 2022 Global Income Opportunity Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2017-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGLD", + "name": "FT Cboe Vest Gold Strategy Quarterly Buffer ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGNE", + "name": "BeiGene Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGR", + "name": "BlackRock Global Energy Resources Trus", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGRN", + "name": "iShares USD Green Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGRY", + "name": "Berkshire Grey Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGRYW", + "name": "Berkshire Grey Inc - Warrants (21/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGS", + "name": "B&G Foods Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGSF", + "name": "BGSF Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGSX", + "name": "Build Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGSX-U", + "name": "Build Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGSX-WS", + "name": "Build Acquisition Corp Redeemable warrants each whole warrant exercisable for one Class A common stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGT", + "name": "BlackRock Floating Rate Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGX", + "name": "Blackstone Long-Short Credit Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BGY", + "name": "BlackRock Enhanced International Dividend Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BH", + "name": "Biglari Holdings Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BH-A", + "name": "Biglari Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHAC", + "name": "Crixus BH3 Acquisition Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHACU", + "name": "Crixus BH3 Acquisition Co - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHACW", + "name": "Crixus BH3 Acquisition Co - Warrants (04/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHAT", + "name": "Blue Hat Interactive Entertainment Technology", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHB", + "name": "Bar Harbor Bankshares Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1997-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHC", + "name": "Bausch Health Companies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHE", + "name": "Benchmark Electronics Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHF", + "name": "Brighthouse Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHFAL", + "name": "Brighthouse Financial Inc 625 Junior Subordinated Debentures due 2058", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHFAM", + "name": "Brighthouse Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHFAN", + "name": "Brighthouse Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHFAO", + "name": "Brighthouse Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHFAP", + "name": "Brighthouse Financial Inc. Depositary Shares 6.6 NonCumulative Preferred Stock Series A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHG", + "name": "Bright Health Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHIL", + "name": "Benson Hill Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHIL-WS", + "name": "Benson Hill Inc Wt", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHK", + "name": "BlackRock Core Bond Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHLB", + "name": "Berkshire Hills Bancorp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHP", + "name": "BHP Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHR", + "name": "Braemar Hotels & Resorts Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHR-P-B", + "name": "Braemar Hotels & Resorts Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHR-P-D", + "name": "Braemar Hotels & Resorts Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHSE", + "name": "Bull Horn Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHSEU", + "name": "Bull Horn Holdings Corp - Unit (1 Ordinary share & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHSEW", + "name": "Bull Horn Holdings Corp - Warrants (31/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHV", + "name": "BlackRock Virginia Municipal Bond Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BHVN", + "name": "Biohaven Pharmaceutical Holding Company Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIB", + "name": "ProShares Ultra Nasdaq Biotechnology", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIBL", + "name": "Inspire 100 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BICK", + "name": "First Trust BICK Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIDS", + "name": "Amplify Digital & Online Trading ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIDU", + "name": "Baidu Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIF", + "name": "Boulder Growth & Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIG", + "name": "Big Lots Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIGC", + "name": "BigCommerce Holdings Inc Series 1", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIGY", + "name": "DEFIANCE NEXT GEN BIG DATA ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIGZ", + "name": "BlackRock Innovation & Growth Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIIB", + "name": "Biogen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIL", + "name": "SPDR Bloomberg 1-3 Month T-Bill ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BILI", + "name": "Bilibili Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BILL", + "name": "Bill.com Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BILS", + "name": "SPDR Bloomberg 3-12 Month T-Bill ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIMI", + "name": "BIMI International Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIO", + "name": "Bio-Rad Laboratories Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIO-B", + "name": "Bio-Rad Laboratories Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIOC", + "name": "Biocept Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIOL", + "name": "Biolase Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIOS", + "name": "BioPlus Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIOSU", + "name": "BioPlus Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIOSW", + "name": "BioPlus Acquisition Corp - Warrants (02/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIOT", + "name": "Biotech Acquisition Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIOTU", + "name": "Biotech Acquisition Co - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIOTW", + "name": "Biotech Acquisition Co - Warrants (30/11/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIOX", + "name": "Bioceres Crop Solutions Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIP", + "name": "Brookfield Infrastructure Partners L.P", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIP-P-A", + "name": "Brookfield Infrastructure Partners L.P", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIP-P-B", + "name": "Brookfield Infrastructure Partners L.P", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIPC", + "name": "Brookfield Infrastructure Corp - Class A (Subordinate Share)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIPH", + "name": "Brookfield Infrastructure Finance ULC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIPI", + "name": "BIP Bermuda Holdings I Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIRD", + "name": "Allbirds Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIS", + "name": "ProShares UltraShort Nasdaq Biotechnology", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIT", + "name": "BlackRock Multi-Sector Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BITE", + "name": "Bite Acquisition Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BITE-U", + "name": "Bite Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BITE-WS", + "name": "Bite Acquisition Corp - Warrants (12/02/2031)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BITF", + "name": "Bitfarms Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BITO", + "name": "ProShares Bitcoin Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BITQ", + "name": "Bitwise Crypto Industry Innovators ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BITS", + "name": "Global X Blockchain & Bitcoin Strategy ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIV", + "name": "Vanguard Intermediate-Term Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIVI", + "name": "BioVie Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BIZD", + "name": "VanEck BDC Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BJ", + "name": "BJ`s Wholesale Club Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BJAN", + "name": "Innovator U.S. Equity Buffer ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BJDX", + "name": "Bluejay Diagnostics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BJK", + "name": "VanEck Gaming ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BJRI", + "name": "BJ`s Restaurant Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BJUL", + "name": "Innovator U.S. Equity Buffer ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BJUN", + "name": "Innovator U.S. Equity Buffer ETF - June", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BK", + "name": "Bank Of New York Mellon Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKAG", + "name": "BNY Mellon Core Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKCC", + "name": "BlackRock Capital Investment Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKCH", + "name": "Global X Blockchain ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKCI", + "name": "BNY Mellon Concentrated International ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKD", + "name": "Brookdale Senior Living Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKE", + "name": "Buckle Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKEM", + "name": "BNY MELLON EMERGING MARKETS EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKEP", + "name": "Blueknight Energy Partners LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKEPP", + "name": "Blueknight Energy Partners LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKES", + "name": "BNY MELLON SUSTAINABLE GLOBAL EMERGING MARKETS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKF", + "name": "iShares MSCI BIC ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKH", + "name": "Black Hills Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKHY", + "name": "BNY Mellon High Yield Beta ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKI", + "name": "Black Knight Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKIE", + "name": "BNY Mellon International Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKIS", + "name": "BNY MELLON SUSTAINABLE INTERNATIONAL EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKK", + "name": "Blackrock Municipal 2020 Term Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKKT", + "name": "Bakkt Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKKT-WS", + "name": "Bakkt Holdings Inc Warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKLC", + "name": "BNY Mellon US Large Cap Core Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKLN", + "name": "Invesco Senior Loan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKMC", + "name": "BNY MELLON US MID CAP CORE EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKN", + "name": "BlackRock Investment Quality Municipal Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1993-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKNG", + "name": "Booking Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKR", + "name": "Baker Hughes Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKSB", + "name": "BNY MELLON SHORT DURATION CORPORATE BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKSC", + "name": "Bank Of South Carolina Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKSE", + "name": "BNY Mellon US Small Cap Core Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKSY", + "name": "BlackSky Technology Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKSY-WS", + "name": "BlackSky Technology Inc Wt Exp 10302024", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKT", + "name": "BlackRock Income Trust Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKTI", + "name": "BK Technologies Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1990-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKU", + "name": "BankUnited Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKUI", + "name": "BNY MELLON ULTRA SHORT INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKUS", + "name": "BNY MELLON SUSTAINABLE US EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BKYI", + "name": "Bio-Key International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BL", + "name": "BlackLine Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLBD", + "name": "Blue Bird Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLBX", + "name": "Blackboxstocks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLCM", + "name": "Bellicum Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLCN", + "name": "Siren Nasdaq NexGen Economy ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLCT", + "name": "BlueCity Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLD", + "name": "TopBuild Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLDE", + "name": "Blade Air Mobility Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLDEW", + "name": "Blade Air Mobility Inc - Warrants (07/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLDG", + "name": "Cambria Global Real Estate ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLDP", + "name": "Ballard Power Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLDR", + "name": "Builders Firstsource Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLE", + "name": "BlackRock Municipal Income Trust II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLES", + "name": "Inspire Global Hope ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLEU", + "name": "bleuacacia Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLEUR", + "name": "bleuacacia Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLEUU", + "name": "bleuacacia Ltd - Units (1 Ord Share Class A &1Right & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLEUW", + "name": "bleuacacia Ltd - Warrants (30/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLFS", + "name": "Biolife Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLFY", + "name": "Blue Foundry Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLHY", + "name": "VIRTUS NEWFLEET HIGH YIELD BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLI", + "name": "Berkeley Lights Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLIN", + "name": "Bridgeline Digital Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLK", + "name": "Blackrock Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLKB", + "name": "Blackbaud Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLKC", + "name": "INVESCO ALERIAN GALAXY BLOCKCHAIN USERS AND DECENTRALIZED COMMERCE ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLL", + "name": "Ball Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLMN", + "name": "Bloomin Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLND", + "name": "Blend Labs Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLNG", + "name": "Belong Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLNGU", + "name": "Belong Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLNGW", + "name": "Belong Acquisition Corp - Warrants (23/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLNK", + "name": "Blink Charging Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLNKW", + "name": "Blink Charging Co - Warrants (31/01/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLOK", + "name": "Amplify Transformational Data Sharing ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLPH", + "name": "Bellerophon Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLRX", + "name": "Bioline Rx Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLSA", + "name": "BCLS Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLTS", + "name": "Bright Lights Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLTSU", + "name": "Bright Lights Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLTSW", + "name": "Bright Lights Acquisition Corp - Warrants (01/01/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLU", + "name": "Bellus Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLUA", + "name": "BlueRiver Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLUA-U", + "name": "BlueRiver Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLUA-WS", + "name": "BlueRiver Acquisition Corp - Warrants (04/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLUE", + "name": "Bluebird bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLV", + "name": "Vanguard Long-Term Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLW", + "name": "BlackRock Ltd Duration Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLX", + "name": "Banco Latinoamericano De Comercio Exterior SA - Class E", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BLZE", + "name": "Backblaze Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMA", + "name": "Banco Macro S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMAC", + "name": "Black Mountain Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMAC-U", + "name": "Black Mountain Acquisition Corp - Units (1 Ord Class A & 0.75 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMAC-WS", + "name": "Black Mountain Acquisition Corp - Warrants (15/10/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMAQ", + "name": "Blockchain Moon Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMAQR", + "name": "Blockchain Moon Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMAQU", + "name": "Blockchain Moon Acquisition Corp - Units (1 Ord 1 War & 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMAQW", + "name": "Blockchain Moon Acquisition Corp - Warrants (14/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMAR", + "name": "Innovator U.S. Equity Buffer ETF - March", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMAY", + "name": "Innovator U.S. Equity Buffer ETF - May", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMBL", + "name": "Bumble Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BME", + "name": "BlackRock Health Sciences Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMEA", + "name": "Biomea Fusion Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMED", + "name": "BlackRock Future Health ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMEZ", + "name": "BlackRock Health Sciences Trust II", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMI", + "name": "Badger Meter Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BML-P-G", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BML-P-H", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BML-P-J", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BML-P-L", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMO", + "name": "Bank of Montreal", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMRA", + "name": "Biomerica Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMRC", + "name": "Bank of Marin Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMRN", + "name": "Biomarin Pharmaceutical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMTX", + "name": "BM Technologies Inc - Class A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMTX-WS", + "name": "BM Technologies Inc - Warrants (30/09/2025)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMY", + "name": "Bristol-Myers Squibb Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BMYR", + "name": "BristolMyers Squibb Company Contingent Value Rights", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BND", + "name": "Vanguard Total Bond Market ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNDC", + "name": "FlexShares Core Select Bond Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNDD", + "name": "Quadratic Deflation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNDW", + "name": "Vanguard Total World Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNDX", + "name": "Vanguard Total International Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNE", + "name": "BLUE HORIZON BNE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNED", + "name": "Barnes & Noble Education Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNFT", + "name": "Benefitfocus Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNGE", + "name": "First Trust S-Network Streaming and Gaming ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNGO", + "name": "Bionano Genomics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNGOW", + "name": "Bionano Genomics Inc Warrants 21082023", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNIX", + "name": "Bannix Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNIXR", + "name": "Bannix Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNIXW", + "name": "Bannix Acquisition Corp - Warrants (31/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNKD", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNKU", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNL", + "name": "Broadstone Net Lease Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNNR", + "name": "Banner Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNNRU", + "name": "Banner Acquisition Corp - Units (1 Ord ShareClass A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNNRW", + "name": "Banner Acquisition Corp - Warrants (07/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNO", + "name": "United States Brent Crude Oil Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNOV", + "name": "Innovator U.S. Equity Buffer ETF - November", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNOX", + "name": "Bionomics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNR", + "name": "Burning Rock Biotech Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNS", + "name": "Bank Of Nova Scotia", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNSO", + "name": "Bonso Electronics International", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1989-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNTC", + "name": "Benitec Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNTCW", + "name": "Benitec Biopharma Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNTX", + "name": "BioNTech SE", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BNY", + "name": "BlackRock New York Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOAC", + "name": "Bluescape Opportunities Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOAC-U", + "name": "Bluescape Opportunities Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOAC-WS", + "name": "Bluescape Opportunities Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOAS", + "name": "BOA Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOAS-U", + "name": "BOA Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOAS-WS", + "name": "BOA Acquisition Corp - Warrants (22/02/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOAT", + "name": "SonicShares Global Shipping ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOB", + "name": "Merlyn.AI Best-of-Breed Core Momentum ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOC", + "name": "Boston Omaha Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOCN", + "name": "Blue Ocean Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOCNU", + "name": "Blue Ocean Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOCNW", + "name": "Blue Ocean Acquisition Corp - Warrants (02/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOCT", + "name": "Innovator U.S. Equity Buffer ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BODY", + "name": "Beachbody Company Inc (The) - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BODY-WS", + "name": "Beachbody Company Inc (The) - Warrants (31/12/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOE", + "name": "BlackRock Enhanced Global Dividend Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOH", + "name": "Bank of Hawaii Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOH-P-A", + "name": "Bank of Hawaii Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOIL", + "name": "ProShares Ultra Bloomberg Natural Gas", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOKF", + "name": "BOK Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOLT", + "name": "Bolt Biotherapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BON", + "name": "Bon Natural Life Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOND", + "name": "PIMCO Active Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOOM", + "name": "DMC Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1989-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOOT", + "name": "Boot Barn Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BORR", + "name": "Borr Drilling Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOSC", + "name": "B.O.S. Better Online Solutions", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOSS", + "name": "Global X Founder-Run Companies ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOTJ", + "name": "Bank of James Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOTZ", + "name": "Global X Funds Global X Robotics & Artificial Intelligence ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOUT", + "name": "Innovator IBD(R) Breakout Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOWL", + "name": "Bowlero Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOWL-WS", + "name": "Bowlero Corp - Warrants (01/03/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOWXU", + "name": "WeWork Inc - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOX", + "name": "Box Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOXD", + "name": "Boxed Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOXD-WS", + "name": "Boxed Inc Warrants each whole warrant exercisable to purchase one share of Common Stock at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOXDWS", + "name": "Boxed Inc - Warrants (18/12/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BOXL", + "name": "Boxlight Corporation - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BP", + "name": "BP plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1977-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPAC", + "name": "Bullpen Parlay Acquisition Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPACU", + "name": "Bullpen Parlay Acquisition Co - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPACW", + "name": "Bullpen Parlay Acquisition Co - Warrants (03/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPMC", + "name": "Blueprint Medicines Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPMP", + "name": "BP Midstream Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPOP", + "name": "Popular Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPOPM", + "name": "Popular Capital Trust II", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPRN", + "name": "Bank of Princeton", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPT", + "name": "BP Prudhoe Bay Royalty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPTH", + "name": "Bio-Path Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPTS", + "name": "Biophytis", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPYPM", + "name": "Brookfield Property Preferred LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPYPN", + "name": "Brookfield Property Partners L.P.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPYPO", + "name": "Brookfield Property Partners L.P.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BPYPP", + "name": "Brookfield Property Partners L.P.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BQ", + "name": "Boqii Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BQH", + "name": "BlackRock New York Municipal Bond Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BR", + "name": "Broadridge Financial Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRAC", + "name": "Broad Capital Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRACR", + "name": "Broad Capital Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRACU", + "name": "Broad Capital Acquisition Corp - Units (1 Ord & 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRAG", + "name": "Bragg Gaming Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRBR", + "name": "Bellring Brands Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRBR-W", + "name": "BellRing Brands Inc When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRBS", + "name": "Blue Ridge Bankshares Inc (VA)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRC", + "name": "Brady Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRCC", + "name": "BRC Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRCN", + "name": "Burcon Nutrascience Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRD", + "name": "Beard Energy Transition Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRD-U", + "name": "Beard Energy Transition Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRD-WS", + "name": "Beard Energy Transition Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRDG", + "name": "Bridge Investment Group Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRDS", + "name": "Bird Global Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRDS-WS", + "name": "Bird Global Inc - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BREZ", + "name": "Breeze Holdings Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BREZR", + "name": "Breeze Holdings Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BREZW", + "name": "Breeze Holdings Acquisition Corp - Warrants (20/11/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRF", + "name": "VANECK BRAZIL SMALL-CAP ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRFH", + "name": "Barfresh Food Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRFS", + "name": "BRF S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRG", + "name": "Bluerock Residential Growth REIT Inc - Class A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRG-P-C", + "name": "Bluerock Residential Growth REIT Inc 7625 Series C Cumulative Redeemable Preferred Stock", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRG-P-D", + "name": "Bluerock Residential Growth REIT Inc 7125 Series D Cumulative Preferred Stock 001 par value per share", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRID", + "name": "Bridgford Foods Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRIV", + "name": "B Riley Principal 250 Merger Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRIVU", + "name": "B Riley Principal 250 Merger Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRIVW", + "name": "B Riley Principal 250 Merger Corp - Warrants (06/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRK-A", + "name": "Berkshire Hathaway Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRK-B", + "name": "Berkshire Hathaway Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRKH", + "name": "BurTech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRKHU", + "name": "BurTech Acquisition Corp - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRKHW", + "name": "BurTech Acquisition Corp - Warrants (18/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRKL", + "name": "Brookline Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRKR", + "name": "Bruker Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRLI", + "name": "Brilliant Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRLIR", + "name": "Brilliant Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRLIU", + "name": "Brilliant Acquisition Corp - Unit (1 Ordinary share 1 War and 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRLIW", + "name": "Brilliant Acquisition Corp - Warrants (31/03/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRLT", + "name": "Brilliant Earth Group Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRMK", + "name": "Broadmark Realty Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRMK-WS", + "name": "Broadmark Realty Capital Inc - Warrants (15/11/2024)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRN", + "name": "Barnwell Industries Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRO", + "name": "Brown & Brown Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BROG", + "name": "Brooge Energy Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BROGR", + "name": "Twelve Seas Investment Company Rights", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BROS", + "name": "Dutch Bros Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRP", + "name": "BRP Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRPM", + "name": "B. Riley Principal 150 Merger Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRPMU", + "name": "B. Riley Principal 150 Merger Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRPMW", + "name": "B. Riley Principal 150 Merger Corp - Warrants (01/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRQS", + "name": "Borqs Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRSP", + "name": "BrightSpire Capital Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRT", + "name": "BRT Apartments Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRTX", + "name": "BioRestorative Therapies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRX", + "name": "Brixmor Property Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRY", + "name": "Berry Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRZE", + "name": "Braze Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BRZU", + "name": "Direxion Daily MSCI Brazil Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSAC", + "name": "Banco Santander Chile SA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSAQ", + "name": "Black Spade Acquisition Co - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSAQ-U", + "name": "Black Spade Acquisition Co - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSAQ-WS", + "name": "Black Spade Acquisition Co - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSBE", + "name": "Invesco BulletShares 2022 USD Emerging Markets Debt ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSBK", + "name": "Bogota Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSBR", + "name": "Banco Santander (Brasil) S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCE", + "name": "Invesco BulletShares 2023 USD Emerging Markets Debt ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCM", + "name": "Invesco BulletShares 2022 Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCN", + "name": "Invesco BulletShares 2023 Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCO", + "name": "Invesco BulletShares 2024 Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCP", + "name": "Invesco BulletShares 2025 Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCQ", + "name": "Invesco BulletShares 2026 Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCR", + "name": "Invesco BulletShares 2027 Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCS", + "name": "INVESCO BULLETSHARES 2028 CORPORATE BOND ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCT", + "name": "Invesco BulletShares 2029 Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCU", + "name": "INVESCO BULLETSHARES 2030 CORPORATE BOND ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSCV", + "name": "Invesco BulletShares 2031 Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSD", + "name": "BlackRock Strategic Municipal Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1999-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSDE", + "name": "Invesco BulletShares 2024 USD Emerging Markets Debt ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSE", + "name": "BlackRock New York Municipal Income Quality Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSEA", + "name": "ETFMG Breakwave Sea Decarbonization Tech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSEP", + "name": "Innovator U.S. Equity Buffer ETF - September", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSET", + "name": "Bassett Furniture Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSFC", + "name": "Blue Star Foods Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSGA", + "name": "Blue Safari Group Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSGAR", + "name": "Blue Safari Group Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSGAU", + "name": "Blue Safari Group Acquisition Corp - Units (1 Ord Class A & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSGM", + "name": "Biosig Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSIG", + "name": "BrightSphere Investment Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSJM", + "name": "Invesco BulletShares 2022 High Yield Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSJN", + "name": "Invesco BulletShares 2023 High Yield Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSJO", + "name": "Invesco BulletShares 2024 High Yield Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSJP", + "name": "Invesco BulletShares 2025 High Yield Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSJQ", + "name": "Invesco BulletShares 2026 High Yield Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSJR", + "name": "Invesco BulletShares 2027 High Yield Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSJS", + "name": "Invesco BulletShares 2028 High Yield Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSJT", + "name": "Invesco BulletShares 2029 High Yield Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSKY", + "name": "Big Sky Growth Partners Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSKYU", + "name": "Big Sky Growth Partners Inc - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSKYW", + "name": "Big Sky Growth Partners Inc - Warrants (01/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSL", + "name": "Blackstone Senior Floating Rate Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSM", + "name": "Black Stone Minerals L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMM", + "name": "Invesco BulletShares 2022 Municipal Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMN", + "name": "Invesco BulletShares 2023 Municipal Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMO", + "name": "INVESCO BULLETSHARES 2024 MUNICIPAL BOND ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMP", + "name": "Invesco BulletShares 2025 Municipal Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMQ", + "name": "INVESCO BULLETSHARES 2026 MUNICIPAL BOND ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMR", + "name": "INVESCO BULLETSHARES 2027 MUNICIPAL BOND ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMS", + "name": "Invesco BulletShares 2028 Municipal Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMT", + "name": "INVESCO BULLETSHARES 2029 MUNICIPAL BOND ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMU", + "name": "INVESCO BULLETSHARES 2030 MUNICIPAL BOND ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMV", + "name": "Invesco BulletShares 2031 Municipal Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSMX", + "name": "Banco Santander Mexico S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSQR", + "name": "BSquare Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSRR", + "name": "Sierra Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BST", + "name": "BlackRock Science and Technology Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BST-R", + "name": "BlackRock Science and Technology Trust Rights", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BST-R-W", + "name": "BlackRock Science and Technology Trust Rights expiring July 14 2021 When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSTP", + "name": "Innovator Buffer Step-Up Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSTZ", + "name": "BlackRock Science and Technology Trust II", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSV", + "name": "Vanguard Short-Term Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSVN", + "name": "Bank7 Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSX", + "name": "Boston Scientific Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSX-P-A", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BSY", + "name": "Bentley Systems Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTA", + "name": "BlackRock LongTerm Municipal Advantage Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2006-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTAI", + "name": "BioXcel Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTAL", + "name": "AGFiQ U.S. Market Neutral Anti-Beta Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTB", + "name": "Bit Brother Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTBD", + "name": "BT Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTBDW", + "name": "BT Brands Inc - Warrants (12/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTBT", + "name": "Bit Digital Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTCM", + "name": "BIT Mining Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTCR", + "name": "Volt Crypto Industry Revolution and Tech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTCS", + "name": "BTCS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTCY", + "name": "Biotricity Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTEC", + "name": "Principal Healthcare Innovators ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTEK", + "name": "BlackRock Future Tech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTF", + "name": "Valkyrie Bitcoin Strategy ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTG", + "name": "B2gold Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2008-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTHM", + "name": "BlackRock Future U.S. Themes ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTI", + "name": "British American Tobacco Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTN", + "name": "Ballantyne Strong Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2000-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTNB", + "name": "Bridgetown 2 Holdings Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTO", + "name": "John Hancock Financial Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTOG", + "name": "China Xiangtai Food Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTRS", + "name": "BTRS Holdings Inc - Class 1", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTT", + "name": "BlackRock Municipal 2030 Target Term Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTTR", + "name": "Better Choice Company Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTTX", + "name": "Better Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTU", + "name": "Peabody Energy Corp New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTWN", + "name": "Bridgetown Holdings Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTWNU", + "name": "Bridgetown Holdings Ltd - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTWNW", + "name": "Bridgetown Holdings Ltd - Warrants (14/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTX", + "name": "Brooklyn ImmunoTherapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BTZ", + "name": "BlackRock Credit Allocation Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2006-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUD", + "name": "Anheuser-Busch In Bev SA/NV", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUDX", + "name": "Cannabis Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUFB", + "name": "Innovator Laddered Allocation Buffer ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUFD", + "name": "FT Cboe Vest Fund of Deep Buffer ETFs", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUFF", + "name": "Innovator Laddered Allocation Power Buffer ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUFG", + "name": "FT Cboe Vest Buffered Allocation Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUFR", + "name": "FT Cboe Vest Fund of Buffer ETFs", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUFT", + "name": "FT Cboe Vest Buffered Allocation Defensive ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUG", + "name": "Global X Cybersecurity ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUI", + "name": "BlackRock Utility Infrastructure & Power Opportunities Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUL", + "name": "Pacer US Cash Cows Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BULZ", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUR", + "name": "Burford Capital Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BURL", + "name": "Burlington Stores Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUSE", + "name": "First Busey Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUYZ", + "name": "Franklin Disruptive Commerce ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BUZZ", + "name": "VanEck Social Sentiment ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BV", + "name": "BrightView Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BVAL", + "name": "BRAND VALUE ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BVH", + "name": "Bluegreen Vacations Holding Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BVN", + "name": "Compania de Minas Buenaventura S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BVS", + "name": "Bioventus Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BVXV", + "name": "Biondvax Pharmaceuticals Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BW", + "name": "Babcock & Wilcox Enterprises Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BW-P-A", + "name": "Babcock & Wilcox Enterprises Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWA", + "name": "BorgWarner Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWAC", + "name": "Better World Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWACU", + "name": "Better World Acquisition Corp - Units (1 Ord & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWACW", + "name": "Better World Acquisition Corp - Warrants (27/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWAQ", + "name": "Blue World Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWAQR", + "name": "Blue World Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWAQU", + "name": "Blue World Acquisition Corp - Units (1 Ord Class A & 1/2 War & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWAQW", + "name": "Blue World Acquisition Corp - Warrants (10/01/2029)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWAY", + "name": "Brainsway Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWB", + "name": "Bridgewater Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWBBP", + "name": "Bridgewater Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWC", + "name": "Blue Whale Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWCAU", + "name": "Blue Whale Acquisition Corp I - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWCAW", + "name": "Blue Whale Acquisition Corp I - Warrants (30/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWEN", + "name": "Broadwind Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWFG", + "name": "Bankwell Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWG", + "name": "BrandywineGLOBAL - Global Income Opportunities Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWMN", + "name": "Bowman Consulting Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWMX", + "name": "Betterware de Mexico S.A.B. de C.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWNB", + "name": "Babcock & Wilcox Enterprises Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWSN", + "name": "Babcock & Wilcox Enterprises Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWV", + "name": "Blue Water Vaccines Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWX", + "name": "SPDR Bloomberg International Treasury Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWXT", + "name": "BWX Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BWZ", + "name": "SPDR Bloomberg Short Term International Treasury Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BX", + "name": "Blackstone Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BXC", + "name": "Bluelinx Hldgs Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BXMT", + "name": "Blackstone Mortgage Trust Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BXMX", + "name": "Nuveen SP 500 BuyWrite Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BXP", + "name": "Boston Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BXRX", + "name": "Baudax Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BXS-P-A", + "name": "BancorpSouth Bank", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BXSL", + "name": "Blackstone Secured Lending Fund.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BY", + "name": "Byline Bancorp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYD", + "name": "Boyd Gaming Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYFC", + "name": "Broadway Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYLD", + "name": "iShares Yield Optimized Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYM", + "name": "BlackRock Municipal Income Quality Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYN", + "name": "Banyan Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYN-U", + "name": "Banyan Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYN-WS", + "name": "Banyan Acquisition Corp - Warrants (30/09/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYND", + "name": "Beyond Meat Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYNOU", + "name": "byNordic Acquisition Corporation - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYRN", + "name": "Byrna Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYSI", + "name": "BeyondSpring Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYTE", + "name": "ROUNDHILL IO DIGITAL INFRASTRUCTURE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYTS", + "name": "BYTE Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYTSU", + "name": "BYTE Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BYTSW", + "name": "BYTE Acquisition Corp - Warrants (18/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BZ", + "name": "Kanzhun Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BZFD", + "name": "BuzzFeed Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BZFDW", + "name": "BuzzFeed Inc - Warrants (01/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BZH", + "name": "Beazer Homes USA Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BZM", + "name": "BlackRock Maryland Municipal Bond Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BZQ", + "name": "ProShares UltraShort MSCI Brazil Capped ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "BZUN", + "name": "Baozun Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "C", + "name": "Citigroup Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1977-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "C-P-J", + "name": "Citigroup Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "C-P-K", + "name": "Citigroup Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "C-P-N", + "name": "Citigroup Capital VIII 7875 Fixed rate Floating Rate trust Preferred Securities TruPS", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAAP", + "name": "Corporacion America Airports S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAAS", + "name": "China Automotive Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CABA", + "name": "Cabaletta Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CABO", + "name": "Cable One Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAC", + "name": "Camden National Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CACC", + "name": "Credit Acceptance Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CACG", + "name": "ClearBridge All Cap Growth ESG ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CACI", + "name": "Caci International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CADE", + "name": "Cadence Bancorporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CADE-P-A", + "name": "Cadence Bank 5.50 Non Cum Pfd Ser A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CADL", + "name": "Candel Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAE", + "name": "Cae Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAF", + "name": "Morgan Stanley China A Share Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2006-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAG", + "name": "Conagra Brands Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAH", + "name": "Cardinal Health Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAJ", + "name": "Canon Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAKE", + "name": "Cheesecake Factory Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAL", + "name": "Caleres Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CALA", + "name": "Calithera Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CALB", + "name": "California Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CALF", + "name": "Pacer US Small Cap Cash Cows 100 ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CALM", + "name": "Cal-Maine Foods Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CALT", + "name": "Calliditas Therapeutics AB", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CALX", + "name": "Calix Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAMP", + "name": "Calamp Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAMT", + "name": "Camtek Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAN", + "name": "Canaan Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CANE", + "name": "Teucrium Sugar Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CANF", + "name": "Can-Fite Biopharma Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2012-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CANG", + "name": "Cango Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CANO", + "name": "Cano Health Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CANO-WS", + "name": "Cano Health Inc Warrants", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAPD", + "name": "Barclays Bank PLC", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAPL", + "name": "CrossAmerica Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAPR", + "name": "Capricor Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAR", + "name": "Avis Budget Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CARA", + "name": "Cara Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CARE", + "name": "Carter Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CARG", + "name": "CarGurus Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CARR", + "name": "Carrier Global Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CARS", + "name": "Cars.com", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CARV", + "name": "Carver Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CARZ", + "name": "First Trust S-Network Future Vehicles & Technology ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAS", + "name": "Cascade Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAS-U", + "name": "Cascade Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAS-WS", + "name": "Cascade Acquisition Corp Redeemable Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CASA", + "name": "Casa Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CASH", + "name": "Meta Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CASI", + "name": "CASI Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CASS", + "name": "Cass Information Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CASY", + "name": "Casey`s General Stores Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1983-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CAT", + "name": "Caterpillar Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1962-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CATC", + "name": "Cambridge Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CATH", + "name": "Global X S&P 500 Catholic Values ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CATO", + "name": "Cato Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CATY", + "name": "Cathay General Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CB", + "name": "Chubb Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBAN", + "name": "Colony Bankcorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBAT", + "name": "CBAK Energy Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBAY", + "name": "Cymabay Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBD", + "name": "Cia Brasileira De Distr-pao De Acucar ADR ()", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBD-W", + "name": "Companhia Brasileira de Distribuicao American Depositary Shares ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBFV", + "name": "CB Financial Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBH", + "name": "Virtus AllianzGI Convertible & Income 2024 Target Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2017-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBIO", + "name": "Catalyst Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBL", + "name": "CBL& Associates Properties Inc - New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBLS", + "name": "Changebridge Capital Long/Short Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBNK", + "name": "Capital Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBO", + "name": "NYSE LISTED TEST STOCK FOR CTS AND CQS", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBO-P-A", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBOE", + "name": "Cboe Global Markets Inc", + "exchange": "BATS", + "assetType": "Stock", + "ipoDate": "2010-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBON", + "name": "VanEck China Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBRE", + "name": "CBRE Group Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBRG", + "name": "Chain Bridge I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBRGU", + "name": "Chain Bridge I - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBRGW", + "name": "Chain Bridge I - Warrants (10/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBRL", + "name": "Cracker Barrel Old Country Store Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBSE", + "name": "CHANGEBRIDGE CAPITAL SUSTAINABLE EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBSH", + "name": "Commerce Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBT", + "name": "Cabot Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBTX", + "name": "CBTX Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBU", + "name": "Community Bank System Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBX", + "name": "NYSE LISTED TEST", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CBZ", + "name": "Cbiz Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CC", + "name": "Chemours Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCAC-U", + "name": "CITIC Capital Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCAI", + "name": "Cascadia Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCAIU", + "name": "Cascadia Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCAIW", + "name": "Cascadia Acquisition Corp - Warrants (30/09/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCAP", + "name": "Crescent Capital BDC Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCB", + "name": "Coastal Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCBG", + "name": "Capital City Bank Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCC-WS", + "name": "Churchill Capital Corp Wt Exp 2023", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCCC", + "name": "C4 Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCCS", + "name": "CCC Intelligent Solutions Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCCS-WS", + "name": "CCC Intelligent Solutions Holdings Inc Warrants", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCD", + "name": "Calamos Dynamic Convertible and Income Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCEL", + "name": "Cryo-Cell International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCEP", + "name": "Coca-Cola Europacific Partners Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCF", + "name": "Chase Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCI", + "name": "Crown Castle International Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCI-P-A", + "name": "Crown Castle International Corporation 6875 Mandatory Convertible Preferred Stock Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCJ", + "name": "Cameco Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCK", + "name": "Crown Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCL", + "name": "Carnival Corp (Paired Stock)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCLP", + "name": "CSI Compressco LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCM", + "name": "Concord Medical Services", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCMP", + "name": "CMC Materials Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCNC", + "name": "Code Chain New Continent Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCNE", + "name": "CNB Financial Corp (PA)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCNEP", + "name": "CNB Financial Corp (PA)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCO", + "name": "Clear Channel Outdoor Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCOI", + "name": "Cogent Communications Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCOR", + "name": "Core Alternative ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCRD", + "name": "CoreCard Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCRN", + "name": "Cross Country Healthcares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCRV", + "name": "ISHARES COMMODITY CURVE CARRY STRATEGY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCS", + "name": "Century Communities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCSI", + "name": "CHROMATICS COLOR SCIENCES INTERNATIONAL INC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCSIV", + "name": "Consensus Cloud Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCTS", + "name": "Cactus Acquisition Corp 1 Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCTSU", + "name": "Cactus Acquisition Corp 1 Ltd - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCTSW", + "name": "Cactus Acquisition Corp 1 Ltd - Warrants(17/08/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCU", + "name": "Compania Cervecerias Unidas S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCV", + "name": "Churchill Capital Corp V - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCV-U", + "name": "Churchill Capital Corp V - Units (1 Ord Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCV-WS", + "name": "Churchill Capital Corp V - Warrants (29/10/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCVI", + "name": "Churchill Capital Corp VI - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCVI-U", + "name": "Churchill Capital Corp VI - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCVI-WS", + "name": "Churchill Capital Corp VI - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCXI", + "name": "ChemoCentryx Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CCZ", + "name": "Comcast Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CD", + "name": "Chindata Group Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDAK", + "name": "Codiak Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDAQ", + "name": "Compass Digital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDAQU", + "name": "Compass Digital Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDAQW", + "name": "Compass Digital Acquisition Corp - Warrants (29/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDAY", + "name": "Ceridian HCM Holding Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDC", + "name": "VictoryShares US EQ Income Enhanced Volatility Wtd ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDE", + "name": "Coeur Mining Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDEV", + "name": "Centennial Resource Development Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDK", + "name": "CDK Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDL", + "name": "VictoryShares US Large Cap High Div Volatility Wtd ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDLA", + "name": "Candela Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDLX", + "name": "Cardlytics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDMO", + "name": "Avid Bioservices Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDNA", + "name": "Caredx Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDNS", + "name": "Cadence Design Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDR", + "name": "Cedar Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDR-P-B", + "name": "Cedar Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDR-P-C", + "name": "Cedar Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDRE", + "name": "Cadre Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDRO", + "name": "Codere Online Luxembourg S.A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDROW", + "name": "Codere Online Luxembourg S.A - Warrants (23/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDTX", + "name": "Cidara Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDW", + "name": "CDW Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDX", + "name": "Simplify High Yield PLUS Credit Hedge ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDXC", + "name": "Chromadex Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDXS", + "name": "Codexis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDZI", + "name": "Cadiz Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CDZIP", + "name": "Cadiz Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CE", + "name": "Celanese Corp - Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEA", + "name": "China Eastern Airlines Corporation Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEAD", + "name": "CEA Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEADW", + "name": "CEA Industries Inc - Warrants (11/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CECE", + "name": "Ceco Environmental Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEE", + "name": "Central and Eastern Europe Fund Inc (The)", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEF", + "name": "Sprott Physical Gold and Silver Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1990-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEFA", + "name": "Global X S&P Catholic Values Developed ex-U.S. ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEFD", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEFS", + "name": "Saba Closed-End Funds ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEFZ", + "name": "UBS AG London Branch ETRACS Monthly Pay 2X Leveraged Closed End Fd ETN Ser B 12102043", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEG", + "name": "Constellation Energy Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEGVV", + "name": "Constellation Energy Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEI", + "name": "Camber Energy Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEIX", + "name": "Consol Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CELC", + "name": "Celcuity Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CELG-R", + "name": "BristolMyers Squibb Company. Contingent Value Rt 12312030", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CELGR", + "name": "BristolMyers Squibb Company Celegne Contingent Value Rights", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CELH", + "name": "Celsius Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CELP", + "name": "Cypress Environmental Partners L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CELU", + "name": "Celularity Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CELUW", + "name": "Celularity Inc - Warrants (16/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CELZ", + "name": "Creative Medical Technology Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEM", + "name": "ClearBridge MLP and Midstream Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEMB", + "name": "iShares J.P. Morgan EM Corporate Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEMI", + "name": "Chembio Diagnostics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEN", + "name": "Center Coast Brookfield MLP & Energy Infrastructure Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CENH", + "name": "Arqit Quantum Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CENN", + "name": "Cenntro Electric Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CENQ", + "name": "CENAQ Energy Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CENQU", + "name": "CENAQ Energy Corp - Units (1 Ord Class A & 0.75 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CENQW", + "name": "CENAQ Energy Corp - Warrants (04/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CENT", + "name": "Central Garden & Pet Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CENTA", + "name": "Central Garden & Pet Co. - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CENX", + "name": "Century Aluminum Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEPU", + "name": "Central Puerto", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEQP", + "name": "Crestwood Equity Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEQP-P", + "name": "Crestwood Equity Partners LP Preferred Units representing limited partner interests", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CERE", + "name": "Cerevel Therapeutics Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEREW", + "name": "Cerevel Therapeutics Holdings Inc - Warrants (27/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CERN", + "name": "Cerner Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CERS", + "name": "Cerus Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CERT", + "name": "Certara Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CET", + "name": "Central Securities Corp", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CETX", + "name": "Cemtrex Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CETXP", + "name": "Cemtrex Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEV", + "name": "Eaton Vance California Municipal Income Trust", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1999-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEVA", + "name": "Ceva Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEW", + "name": "WisdomTree Emerging Currency Strategy Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CEY", + "name": "VICTORYSHARES EMERGING MARKET HIGH DIV VOLATILITY WTD ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CF", + "name": "CF Industries Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFA", + "name": "VictoryShares US 500 Volatility Wtd ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFB", + "name": "Crossfirst Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFBK", + "name": "CF Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFCV", + "name": "ClearBridge Focus Value ESG ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFFE", + "name": "CF Acquisition Corp VIII - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFFEU", + "name": "CF Acquisition Corp VIII - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFFEW", + "name": "CF Acquisition Corp VIII - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFFI", + "name": "C & F Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFFN", + "name": "Capitol Federal Financial", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFFS", + "name": "CF Acquisition Corp VII - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFFSU", + "name": "CF Acquisition Corp VII - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFFSW", + "name": "CF Acquisition Corp VII - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFG", + "name": "Citizens Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFG-P-D", + "name": "Citizens Financial Group Inc Depositary Shares Series D", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFG-P-E", + "name": "Citizens Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFIV", + "name": "CF Acquisition Corp IV - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFIVU", + "name": "CF Acquisition Corp IV - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFIVW", + "name": "CF Acquisition Corp IV - Warrants (31/12/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFLT", + "name": "Confluent Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFMS", + "name": "Conformis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFO", + "name": "VictoryShares US 500 Enhanced Volatility Wtd ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFR", + "name": "Cullen Frost Bankers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFR-P-A", + "name": "CullenFrost Bankers Inc Perpetual Preferred Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFR-P-A-CL", + "name": "CullenFrost Bankers Inc. Perpetual Preferred Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFR-P-B", + "name": "Cullen Frost Bankers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFRX", + "name": "ContraFect Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFSB", + "name": "CFSB Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFVI", + "name": "CF Acquisition Corp VI - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFVIU", + "name": "CF Acquisition Corp VI - Units (1 Ord Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFVIW", + "name": "CF Acquisition Corp VI - Warrants (17/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CFX", + "name": "Colfax Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CG", + "name": "Carlyle Group Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGA", + "name": "China Green Agriculture Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGABL", + "name": "Carlyle Finance LLC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGAU", + "name": "Centerra Gold Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGBD", + "name": "TCG BDC Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGC", + "name": "Canopy Growth Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGCP", + "name": "Capital Group Core Plus Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGDV", + "name": "Capital Group Dividend Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGEM", + "name": "Cullinan Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGEN", + "name": "Compugen Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGGO", + "name": "Capital Group Global Growth Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGGR", + "name": "Capital Group Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGNT", + "name": "Cognyte Software Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGNX", + "name": "Cognex Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1989-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGO", + "name": "Calamos Global Total Return Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2005-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGRN", + "name": "Capstone Green Energy Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGTX", + "name": "Cognition Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGUS", + "name": "Capital Group Core Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGW", + "name": "Invesco S&P Global Water Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CGXU", + "name": "Capital Group International Focus Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHAA", + "name": "Catcha Investment Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHAA-U", + "name": "Catcha Investment Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHAA-WS", + "name": "Catcha Investment Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHAC-U", + "name": "BiomX Inc - Units (1 Ord & 1 War)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHAD", + "name": "Direxion Daily CSI 300 China A Share Bear 1X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHAU", + "name": "DIREXION DAILY CSI 300 CHINA A SHARE BULL 2X SHARES ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHB", + "name": "GLOBAL X CHINA BIOTECH INNOVATION ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHCI", + "name": "Comstock Holding Co. Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHCO", + "name": "City Holding Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHCT", + "name": "Community Healthcare Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHD", + "name": "Church & Dwight Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHDN", + "name": "Churchill Downs Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHE", + "name": "Chemed Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHEF", + "name": "Chefs` Warehouse Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHEK", + "name": "Check-Cap Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHEKZ", + "name": "CheckCap Ltd Warrants Series C 03052023", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHGG", + "name": "Chegg Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHGX", + "name": "AXS Change Finance ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHH", + "name": "Choice Hotels International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHI", + "name": "Calamos Convertible Opportunities and Income Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2002-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIC", + "name": "GLOBAL X MSCI CHINA COMMUNICATION SERVICES ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIE", + "name": "Global X MSCI China Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIH", + "name": "Global X MSCI China Health Care ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHII", + "name": "Global X MSCI China Industrials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIK", + "name": "Global X MSCI China Information Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIM", + "name": "Global X MSCI China Materials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIQ", + "name": "Global X MSCI China Consumer Discretionary ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIR", + "name": "Global X MSCI China Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIS", + "name": "GLOBAL X MSCI CHINA CONSUMER STAPLES ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIU", + "name": "GLOBAL X MSCI CHINA UTILITIES ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHIX", + "name": "Global X MSCI China Financials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHK", + "name": "Chesapeake Energy Corp - New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHKEL", + "name": "Chesapeake Energy Corp - Warrants - Class C (01/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHKEW", + "name": "Chesapeake Energy Corp - Warrants - Class A (01/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHKEZ", + "name": "Chesapeake Energy Corp - Warrants - Class B (01/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHKP", + "name": "Check Point Software Technolgies", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHMG", + "name": "Chemung Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHMI", + "name": "Cherry Hill Mortgage Investment Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHMI-P-A", + "name": "Cherry Hill Mortgage Investment Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHMI-P-B", + "name": "Cherry Hill Mortgage Investment Corporation 8250 Series B FixedtoFloating Rate Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHN", + "name": "China Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHNA", + "name": "Loncar China BioPharma ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHNG", + "name": "Change Healthcare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHNG 6", + "name": "Change Healthcare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHNGV", + "name": "Change Healthcare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHNR", + "name": "China Natural Resources Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHPM", + "name": "CHP Merger Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHPMU", + "name": "CHP Merger Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHPMW", + "name": "CHP Merger Corp - Warrants (22/11/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHPT", + "name": "ChargePoint Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHRA", + "name": "Charah Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHRB", + "name": "Charah Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHRS", + "name": "Coherus Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHRW", + "name": "C.H. Robinson Worldwide Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHS", + "name": "Chico`s Fas Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHSCL", + "name": "CHS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHSCM", + "name": "CHS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHSCN", + "name": "CHS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHSCO", + "name": "CHS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHSCP", + "name": "CHS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHT", + "name": "Chunghwa Telecom", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHTR", + "name": "Charter Communications Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHUY", + "name": "Chuy`s Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHW", + "name": "Calamos Global Dynamic Income Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHWA", + "name": "CHW Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHWAU", + "name": "CHW Acquisition Corp - Units (1 Ord & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHWAW", + "name": "CHW Acquisition Corp - Warrants (01/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHWY", + "name": "Chewy Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHX", + "name": "ChampionX Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHX-W", + "name": "ChampionX Corporation Additional Shares When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CHY", + "name": "Calamos Convertible Hi Income Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2003-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CI", + "name": "Cigna Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIA", + "name": "Citizens Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIAN", + "name": "Cian Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIB", + "name": "Bancolombia S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIBR", + "name": "First Trust NASDAQ Cybersecurity ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CID", + "name": "VICTORYSHARES INTERNATIONAL HIGH DIV VOLATILITY WTD ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIDM", + "name": "Cinedigm Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIEN", + "name": "CIENA Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIF", + "name": "MFS Intermediate High Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIFR", + "name": "Cipher Mining Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIFRW", + "name": "Cipher Mining Inc - Warrants (26/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIG", + "name": "Cia Energetica De Minas Gerais", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIG-C", + "name": "Cia Energetica De Minas Gerais", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIGI", + "name": "Colliers International Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIH", + "name": "China Index Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CII", + "name": "BlackRock Enhanced Capital and Income Fd", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIIG", + "name": "CIIG Capital Partners II Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIIGU", + "name": "CIIG Capital Partners II Inc - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIIGW", + "name": "CIIG Capital Partners II Inc - Warrants (28/02/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIK", + "name": "Credit Suisse Asset Management Income Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIL", + "name": "VICTORYSHARES INTERNATIONAL VOLATILITY WTD ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIM", + "name": "Chimera Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIM-P-A", + "name": "Chimera Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIM-P-B", + "name": "Chimera Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIM-P-C", + "name": "Chimera Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIM-P-D", + "name": "Chimera Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CINC", + "name": "CinCor Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CINF", + "name": "Cincinnati Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CING", + "name": "Cingulate Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CINGW", + "name": "Cingulate Inc - Warrants (03/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CINT", + "name": "CI&T Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIO", + "name": "City Office REIT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIO-P-A", + "name": "City Office REIT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CION", + "name": "CION Invt Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIR", + "name": "Circor International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CISO", + "name": "Cerberus Cyber Sentinel Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CITE", + "name": "Cartica Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CITEU", + "name": "Cartica Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CITEW", + "name": "Cartica Acquisition Corp - Warrants (30/04/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIVB", + "name": "Civista Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIVBP", + "name": "Civista Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIVI", + "name": "Civitas Resources Inc New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIX", + "name": "Compx International Inc - Class A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1998-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIXX", + "name": "CI Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIZ", + "name": "VICTORYSHARES DEVELOPED ENHANCED VOLATILITY WTD ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CIZN", + "name": "Citizens Holding Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CJJD", + "name": "China Jo-Jo Drugstores Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CKPT", + "name": "Checkpoint Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CKX", + "name": "CKX Lands Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1999-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CL", + "name": "Colgate-Palmolive Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1977-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLA-U", + "name": "Colonnade Acquisition Corp Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAA", + "name": "Colonnade Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAA-U", + "name": "Colonnade Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAA-WS", + "name": "Colonnade Acquisition Corp II - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAQ", + "name": "CleanTech Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAQR", + "name": "CleanTech Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAQU", + "name": "CleanTech Acquisition Corp - Units (1 Ord Share 1 Rts & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAQW", + "name": "CleanTech Acquisition Corp - Warrants (30/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAR", + "name": "Clarus Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAS", + "name": "Class Acceleration Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAS-U", + "name": "Class Acceleration Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAS-WS", + "name": "Class Acceleration Corp - Warrants (31/03/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAY", + "name": "Chavant Capital Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAYU", + "name": "Chavant Capital Acquisition Corp - Units (1 Ord Share & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLAYW", + "name": "Chavant Capital Acquisition Corp - Warrants (16/07/2021)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLB", + "name": "Core Laboratories N.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLBK", + "name": "Columbia Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLBR", + "name": "Colombier Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLBR-U", + "name": "Colombier Acquisition Corp Units each consisting of one share of Class A common stock and onethird of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLBR-WS", + "name": "Colombier Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLBS", + "name": "Caladrius Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLBT", + "name": "Cellebrite DI Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLBTW", + "name": "Cellebrite DI Ltd - Warrants (30/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLDL", + "name": "Direxion Daily Cloud Computing Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLDS", + "name": "Direxion Daily Cloud Computing Bear 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLDT", + "name": "Chatham Lodging Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLDT-P-A", + "name": "Chatham Lodging Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLDX", + "name": "Celldex Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLEU", + "name": "China Liberal Education Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLF", + "name": "Cleveland-Cliffs Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLFD", + "name": "Clearfield Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLGN", + "name": "CollPlant Biotechnologies Ltd New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLH", + "name": "Clean Harbors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLIM", + "name": "Climate Real Impact Solutions II Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLIM-U", + "name": "Climate Real Impact Solutions II Acquisition Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLIM-WS", + "name": "Climate Real Impact Solutions II Acquisition Corp - Warrants (29/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLINU", + "name": "Clean Earth Acquisitions Corp - Units (1 Ord Share Class A 1 Right & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLIR", + "name": "ClearSign Technologies Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLIX", + "name": "ProShares Long Online/Short Stores ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLLS", + "name": "Cellectis", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLM", + "name": "Cornerstone Strategic Value Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2002-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLMA", + "name": "iClima Climate Change Solutions ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLMT", + "name": "Calumet Specialty Products Partners L.P.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNE", + "name": "Clean Energy Fuels Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNN", + "name": "Clene Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNNW", + "name": "Clene Inc - Warrants (30/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNR", + "name": "IQ Cleaner Transport ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNY-P-B", + "name": "Colony Capital Inc 825 Series B cumulative redeemable perpetual preferred stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNY-P-B-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNY-P-E", + "name": "Colony Capital Inc 875 Series E cumulative redeemable perpetual preferred stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNY-P-E-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNY-P-H", + "name": "Colony Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLNY-P-J", + "name": "Colony Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLOE", + "name": "Clover Leaf Capital Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLOER", + "name": "Clover Leaf Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLOEU", + "name": "Clover Leaf Capital Corp - Units (1 Ord Share Class A & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLOU", + "name": "Global X Cloud Computing ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLOV", + "name": "Clover Health Investments Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLOVW", + "name": "Clover Health Investments Corp - Warrants (23/08/2021)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLPR", + "name": "Clipper Realty Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLPS", + "name": "CLPS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLPT", + "name": "ClearPoint Neuro Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLR", + "name": "Continental Resources Inc (OKLA)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLRB", + "name": "Cellectar Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLRG", + "name": "IQ Chaikin U.S. Large Cap ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLRM", + "name": "Clarim Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLRMU", + "name": "Clarim Acquisition Corp - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLRMW", + "name": "Clarim Acquisition Corp - Warrants (05/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLRO", + "name": "ClearOne Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLS", + "name": "Celestica Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLSA", + "name": "Cabana Target Leading Sector Aggressive ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLSC", + "name": "Cabana Target Leading Sector Conservative ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLSD", + "name": "Clearside Biomedical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLSE", + "name": "Convergence Long/Short Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLSK", + "name": "Cleanspark Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLSM", + "name": "Cabana Target Leading Sector Moderate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLSN", + "name": "Celsion Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLST", + "name": "Catalyst Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLTL", + "name": "Invesco Treasury Collateral ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLVR", + "name": "Clever Leaves Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLVRW", + "name": "Clever Leaves Holdings Inc - Warrants (18/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLVS", + "name": "Clovis Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLVT", + "name": "Clarivate Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLVT-P-A", + "name": "Clarivate Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLW", + "name": "Clearwater Paper Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLWT", + "name": "Euro Tech Holdings Co. Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLX", + "name": "Clorox Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CLXT", + "name": "Calyxt Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CM", + "name": "Canadian Imperial Bank Of Commerce", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMA", + "name": "Comerica Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMAX", + "name": "CareMax Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMAXW", + "name": "CareMax Inc - Warrants (08/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMBM", + "name": "Cambium Networks Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMBS", + "name": "iShares CMBS ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMC", + "name": "Commercial Metals Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMCA", + "name": "Capitalworks Emerging Markets Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMCAU", + "name": "Capitalworks Emerging Markets Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMCAW", + "name": "Capitalworks Emerging Markets Acquisition Corp - Warrants (19/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMCL", + "name": "Caledonia Mining Corporation Plc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMCM", + "name": "Cheetah Mobile Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMCO", + "name": "Columbus Mckinnon Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMCSA", + "name": "Comcast Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1988-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMCT", + "name": "Creative Media & Community Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMCTP", + "name": "Creative Media & Community Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMDY", + "name": "iShares Bloomberg Roll Select Commodity Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CME", + "name": "CME Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMF", + "name": "iShares California Muni Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMG", + "name": "Chipotle Mexican Grill", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMI", + "name": "Cummins Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMLS", + "name": "Cumulus Media Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMLT", + "name": "EQRx Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMMB", + "name": "Chemomab Therapeutics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMP", + "name": "Compass Minerals International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMPI", + "name": "Checkmate Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMPO", + "name": "CompoSecure Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMPOW", + "name": "CompoSecure Inc - Warrants (27/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMPR", + "name": "Cimpress plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMPS", + "name": "Compass Pathways Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMPX", + "name": "Compass Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMRE", + "name": "Costamare Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMRE-P-B", + "name": "Costamare Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMRE-P-C", + "name": "Costamare Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMRE-P-D", + "name": "Costamare Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMRE-P-E", + "name": "Costamare Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMRX", + "name": "Chimerix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMS", + "name": "CMS Energy Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMS-P-B", + "name": "Consumers Energy Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMS-P-C", + "name": "CMS Energy Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMSA", + "name": "CMS Energy Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMSC", + "name": "CMS Energy Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMSD", + "name": "CMS Energy Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMT", + "name": "Core Molding Technologies", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1988-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMTG", + "name": "Claros Mortgage Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMTL", + "name": "Comtech Telecommunications Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CMU", + "name": "MFS High Yield Municipal Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CN", + "name": "Xtrackers MSCI All China Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNA", + "name": "CNA Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNBS", + "name": "Amplify Seymour Cannabis ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNC", + "name": "Centene Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNCE", + "name": "Concert Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNCR", + "name": "ETCT Loncar Cancer Immunotherapy ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CND", + "name": "Concord Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CND-U", + "name": "Concord Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CND-WS", + "name": "Concord Acquisition Corp - Warrants (28/11/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNDA", + "name": "Concord Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNDA-U", + "name": "Concord Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNDA-WS", + "name": "Concord Acquisition Corp II - Warrants(01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNDB", + "name": "Concord Acquisition Corp III - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNDB-U", + "name": "Concord Acquisition Corp III - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNDB-WS", + "name": "Concord Acquisition Corp III - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNDT", + "name": "Conduent Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNET", + "name": "ZW Data Action Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNEY", + "name": "CN Energy Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNF", + "name": "CNFinance Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNFR", + "name": "Conifer Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNFRL", + "name": "Conifer Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNGL", + "name": "Canna Global Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNGLU", + "name": "Canna Global Acquisition Corp - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNGLW", + "name": "Canna Global Acquisition Corp - Warrants (30/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNHI", + "name": "CNH Industrial NV", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNI", + "name": "Canadian National Railway Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNK", + "name": "Cinemark Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNM", + "name": "Core & Main Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNMD", + "name": "Conmed Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNNB", + "name": "Cincinnati Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNNE", + "name": "Cannae Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNO", + "name": "CNO Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNO-P-A", + "name": "CNO Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNOB", + "name": "ConnectOne Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNOBP", + "name": "ConnectOne Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNP", + "name": "Centerpoint Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNQ", + "name": "Canadian Natural Resources Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNR", + "name": "Cornerstone Building Brands Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNRG", + "name": "SPDR S&P Kensho Clean Power ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNS", + "name": "Cohen & Steers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNSL", + "name": "Consolidated Communications Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNSP", + "name": "Cns Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNTA", + "name": "Centessa Pharmaceuticals plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNTB", + "name": "Connect Biopharma Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNTG", + "name": "Centogene NV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNTQ", + "name": "Chardan NexTech Acquisition 2 Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNTQU", + "name": "Chardan NexTech Acquisition 2 Corp - Units (1 Ord Share & 3/4War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNTQW", + "name": "Chardan NexTech Acquisition 2 Corp - Warrants (29/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNTX", + "name": "Context Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNTY", + "name": "Century Casinos Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNVY", + "name": "Convey Health Solutions Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNX", + "name": "CNX Resources Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNXC", + "name": "Concentrix Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNXCV", + "name": "Concentrix Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNXN", + "name": "PC Connection Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNXT", + "name": "VanEck ChiNext ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CNYA", + "name": "iShares MSCI China A ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CO", + "name": "Global Cord Blood Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COCO", + "name": "Vita Coco Company Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COCP", + "name": "Cocrystal Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CODA", + "name": "Coda Octopus Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CODI", + "name": "Compass Diversified Holdings", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CODI-P-A", + "name": "Compass Diversified Holdings 7250 Series A Preferred Shares representing beneficial interest in", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CODI-P-B", + "name": "Compass Diversified Holdings 7875 Series B FixedtoFloating Rate Cumulative Preferred Shares representing beneficial interests in", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CODI-P-C", + "name": "Compass Diversified Holdings 7.875 PRF PERPETUAL USD 25 Ser C", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CODX", + "name": "Co-Diagnostics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COE", + "name": "China Online Education Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COF", + "name": "Capital One Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COF-P-I", + "name": "Capital One Financial Corp. PRF PERPETUAL USD 25 Dp Sh Rp 140th Sr I", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COF-P-J", + "name": "Capital One Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COF-P-K", + "name": "Capital One Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COF-P-L", + "name": "Capital One Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COF-P-N", + "name": "Capital One Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COF-P-P", + "name": "Capital One Financial Corp Pfd Ser B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-08-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COF-P-P-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COFS", + "name": "Choiceone Financial Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COGT", + "name": "Cogent Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COHN", + "name": "Cohen & Company Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2004-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COHR", + "name": "Coherent Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COHU", + "name": "Cohu Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COIN", + "name": "Coinbase Global Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COKE", + "name": "Coca-Cola Consolidated Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COLB", + "name": "Columbia Banking System Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COLD", + "name": "Americold Realty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COLI", + "name": "Colicity Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COLIU", + "name": "Colicity Inc - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COLIW", + "name": "Colicity Inc - Warrants (24/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COLL", + "name": "Collegium Pharmaceutical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COLM", + "name": "Columbia Sportswear Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COM", + "name": "Direxion Auspice Broad Commodity Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COMB", + "name": "GraniteShares Bloomberg Commodity Broad Strategy No K-1 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COMM", + "name": "CommScope Holding Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COMP", + "name": "Compass Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COMS", + "name": "ComSovereign Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COMSP", + "name": "ComSovereign Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COMSW", + "name": "ComSovereign Holding Corp - Warrants (18/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COMT", + "name": "iShares GSCI Commodity Dynamic Roll Strategy ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CONE", + "name": "CyrusOne Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CONN", + "name": "Conns Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CONX", + "name": "CONX Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CONXU", + "name": "CONX Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CONXW", + "name": "CONX Corp - Warrants (30/10/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COO", + "name": "Cooper Companies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COOK", + "name": "Traeger Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COOL", + "name": "Corner Growth Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COOLU", + "name": "Corner Growth Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COOLW", + "name": "Corner Growth Acquisition Corp - Warrants (01/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COOP", + "name": "Mr. Cooper Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COP", + "name": "Conoco Phillips", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COPX", + "name": "Global X Copper Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORN", + "name": "Teucrium Corn Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORP", + "name": "PIMCO Investment Grade Corporate Bond Index Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORR", + "name": "CorEnergy Infrastructure Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORR-P-A", + "name": "CorEnergy Infrastructure Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORS", + "name": "Corsair Partnering Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORS-U", + "name": "Corsair Partnering Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORS-WS", + "name": "Corsair Partnering Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORT", + "name": "Corcept Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORZ", + "name": "Core Scientific Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CORZW", + "name": "Core Scientific Inc - Warrants (19/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COSM", + "name": "Cosmos Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COST", + "name": "Costco Wholesale Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COTY", + "name": "Coty Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COUP", + "name": "Coupa Software Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COUR", + "name": "Coursera Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COVA", + "name": "COVA Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COVAU", + "name": "COVA Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COVAW", + "name": "COVA Acquisition Corp - Warrants (05/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COW", + "name": "iPathA Series B Bloomberg Livestock Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COWN", + "name": "Cowen Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COWNL", + "name": "Cowen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "COWZ", + "name": "Pacer US Cash Cows 100 ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-07-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CP", + "name": "Canadian Pacific Railway Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPA", + "name": "Copa Holdings S.A. - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPAA", + "name": "Conyers Park III Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPAAU", + "name": "Conyers Park III Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPAC", + "name": "Cementos Pacasmayo S.A.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPAQU", + "name": "Counter Press Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPAR", + "name": "Catalyst Partners Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPARU", + "name": "Catalyst Partners Acquisition Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPARW", + "name": "Catalyst Partners Acquisition Corp - Warrants (12/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPB", + "name": "Campbell Soup Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPE", + "name": "Callon Petroleum Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPER", + "name": "United States Copper Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPF", + "name": "Central Pacific Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPG", + "name": "Crescent Point Energy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPHC", + "name": "Canterbury Park Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPHI", + "name": "China Pharma Holdings Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2002-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPI", + "name": "IQ Real Return ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPIX", + "name": "Cumberland Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPK", + "name": "Chesapeake Utilities Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPLP", + "name": "Capital Product Partners L P", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPNG", + "name": "Coupang Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPOP", + "name": "Pop Culture Group Co Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPRI", + "name": "Capri Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPRT", + "name": "Copart Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPRX", + "name": "Catalyst Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPS", + "name": "Cooper-Standard Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPSH", + "name": "CPS Technologies Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPSI", + "name": "Computer Programs & Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPSS", + "name": "Consumer Portfolio Service Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPT", + "name": "Camden Property Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPTAG", + "name": "Logan Ridge Finance Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPTAL", + "name": "Capitala Finance Corp 6 Notes Due 2022", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPTK", + "name": "Crown PropTech Acquisitions - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPTK-U", + "name": "Crown PropTech Acquisitions - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPTK-WS", + "name": "Crown PropTech Acquisitions - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPTN", + "name": "Cepton Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPTNW", + "name": "Cepton Inc - Warrants (10/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPUH", + "name": "Compute Health Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPUH-U", + "name": "Compute Health Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPUH-WS", + "name": "Compute Health Acquisition Corp - Warrants (25/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CPZ", + "name": "Calamos Long/Short Equity & Dynamic Income Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CQP", + "name": "Cheniere Energy Partners LP", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CQQQ", + "name": "Invesco China Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CR", + "name": "Crane Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRAI", + "name": "CRA International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRAK", + "name": "VANECK OIL REFINERS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRBN", + "name": "iShares MSCI ACWI Low Carbon Target ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRBP", + "name": "Corbus Pharmaceuticals Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRBU", + "name": "Caribou Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRC", + "name": "California Resources Corporation - New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRCT", + "name": "Cricut Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRD-A", + "name": "Crawford & Co. - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRD-B", + "name": "Crawford & Co. - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRDF", + "name": "Cardiff Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRDL", + "name": "Cardiol Therapeutics Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRDO", + "name": "Credo Technology Group Holding Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CREC", + "name": "Crescera Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRECU", + "name": "Crescera Capital Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRECW", + "name": "Crescera Capital Acquisition Corp - Warrants (18/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CREG", + "name": "Smart Powerr Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRESW", + "name": "Cresud - Warrants (08/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRESY", + "name": "Cresud", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CREX", + "name": "Creative Realities Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CREXW", + "name": "Creative Realities Inc Warrants 09112022", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRF", + "name": "Cornerstone Total Return Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRGY", + "name": "Crescent Energy Company - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRH", + "name": "CRH Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRHC", + "name": "Cohn Robbins Holdings Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRHC-U", + "name": "Cohn Robbins Holdings Corp Units each consisting of one Class A ordinary share and onethird of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRHC-WS", + "name": "Cohn Robbins Holdings Corp - Warrants (28/08/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRI", + "name": "Carters Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRIS", + "name": "Curis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRK", + "name": "Comstock Resources Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRKN", + "name": "Crown ElectroKinetics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRL", + "name": "Charles River Laboratories International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRM", + "name": "Salesforce.Com Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRMD", + "name": "CorMedix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRMT", + "name": "Americas Car Mart Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRNC", + "name": "Cerence Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRNT", + "name": "Ceragon Networks Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRNX", + "name": "Crinetics Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CROC", + "name": "ProShares UltraShort Australian Dollar", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRON", + "name": "Cronos Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CROX", + "name": "Crocs Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRPT", + "name": "First Trust SkyBridge Crypto Industry and Digital Economy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRS", + "name": "Carpenter Technology Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRSP", + "name": "CRISPR Therapeutics AG", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRSR", + "name": "Corsair Gaming Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRT", + "name": "Cross Timbers Royalty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRTD", + "name": "Creatd Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRTDW", + "name": "Creatd Inc - Warrants (01/01/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRTO", + "name": "Criteo S.A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRTX", + "name": "Cortexyme Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRU", + "name": "Crucible Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRU-U", + "name": "Crucible Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRU-WS", + "name": "Crucible Acquisition Corp - Warrants(26/12/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRUS", + "name": "Cirrus Logic Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRUZ", + "name": "Defiance Hotel Airline and Cruise ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRVL", + "name": "Corvel Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRVS", + "name": "Corvus Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRWD", + "name": "Crowdstrike Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRWS", + "name": "Crown Crafts Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRXT", + "name": "Clarus Therapeutics Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRXTW", + "name": "Clarus Therapeutics Holdings Inc - Warrants (09/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRZN", + "name": "Corazon Capital V838 Monoceros Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRZNU", + "name": "Corazon Capital V838 Monoceros Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CRZNW", + "name": "Corazon Capital V838 Monoceros Corp - Warrants (24/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CS", + "name": "Credit Suisse Group AG", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSA", + "name": "VICTORYSHARES US SMALL CAP VOLATILITY WTD ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSAN", + "name": "Cosan S.A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSAN-W", + "name": "Cosan S.A. American Depositary Shares each representing one When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSB", + "name": "VictoryShares US Small Cap High Div Volatility Wtd ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSBR", + "name": "Champions Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSCO", + "name": "Cisco Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSCW", + "name": "Color Star Technology Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSD", + "name": "Invesco S&P Spin-Off ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSF", + "name": "VictoryShares US Discovery Enhanced Volatility Wtd ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSGP", + "name": "Costar Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSGS", + "name": "CSG Systems International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSH", + "name": "Morgan Creek - Exos Active SPAC Arbitrage ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSII", + "name": "Cardiovascular Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSIQ", + "name": "Canadian Solar Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSL", + "name": "Carlisle Companies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSLM", + "name": "Consilium Acquisition Corp I Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSLMR", + "name": "Consilium Acquisition Corp I Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSLMU", + "name": "Consilium Acquisition Corp I Ltd - Units (1 Ord Class A 1 Right & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSLMW", + "name": "Consilium Acquisition Corp I Ltd - Warrants (12/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSM", + "name": "ProShares Large Cap Core Plus", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2009-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSML", + "name": "IQ Chaikin U.S. Small Cap ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSPI", + "name": "CSP Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSQ", + "name": "Calamos Strategic Total Return Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2004-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSR", + "name": "Centerspace", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSR-P-C", + "name": "Centerspace", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSSE", + "name": "Chicken Soup for the Soul Entertainment Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSSEN", + "name": "Chicken Soup for the Soul Entertainment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSSEP", + "name": "Chicken Soup for the Soul Entertainment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSTA", + "name": "Constellation Acquisition Corp I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSTA-U", + "name": "Constellation Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSTA-WS", + "name": "Constellation Acquisition Corp I - Warrants (29/01/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSTE", + "name": "Caesarstone Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSTL", + "name": "Castle Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSTM", + "name": "Constellium SE - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSTR", + "name": "CapStar Financial Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSV", + "name": "Carriage Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSWC", + "name": "Capital Southwest Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSWI", + "name": "CSW Industrials Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CSX", + "name": "CSX Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1980-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTA", + "name": "Simplify Managed Futures Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2022-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTA-P-A", + "name": "EI du Pont de Nemours and Company Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTA-P-B", + "name": "EI du Pont de Nemours and Company Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTAC-U", + "name": "Cerberus Telecom Acquisition Corp Units each consisting of one Class A ordinary share and onethird of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTAC-WS", + "name": "Cerberus Telecom Acquisition Corp Warrants included as part of the Units each whole warrant exercisable for one Class A ordinary share at an exercise price of", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTAQ", + "name": "Carney Technology Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTAQU", + "name": "Carney Technology Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTAQW", + "name": "Carney Technology Acquisition Corp II - Warrants (10/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTAS", + "name": "Cintas Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTBB", + "name": "Qwest Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-08-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTBI", + "name": "Community Trust Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTDD", + "name": "Qwest Corporation 675 Notes due 2057", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTEC", + "name": "Global X CleanTech ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTEK", + "name": "CynergisTek Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTEST", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTEX", + "name": "ProShares S&P Kensho Cleantech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTG", + "name": "Computer Task Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTGO", + "name": "Contango Ore Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2010-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTHR", + "name": "Charles & Colvard Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTIB", + "name": "Yunhong CTI Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTIC", + "name": "CTI BioPharma Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTK", + "name": "CooTek (Cayman) Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTKB", + "name": "Cytek BioSciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTLP", + "name": "Cantaloupe Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTLT", + "name": "Catalent Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTMX", + "name": "CytomX Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTO", + "name": "CTO Realty Growth Inc - New - New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTO-P-A", + "name": "CTO Realty Growth Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTOS", + "name": "Custom Truck One Source Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTOS-WS", + "name": "Custom Truck One Source Inc - Warrants (01/01/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTR", + "name": "ClearBridge MLP and Midstream Total Return Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTRA", + "name": "Coterra Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTRE", + "name": "CareTrust REIT Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTRM", + "name": "Castor Maritime Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTRN", + "name": "Citi Trends Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTRU", + "name": "ARK TRANSPARENCY ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTS", + "name": "CTS Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTSH", + "name": "Cognizant Technology Solutions Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTSO", + "name": "Cytosorbents Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTT", + "name": "CatchMark Timber Trust Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTV", + "name": "Innovid Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTV-WS", + "name": "Innovid Corp - Warrants (17/02/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTVA", + "name": "Corteva Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTXR", + "name": "Citius Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTXRW", + "name": "Citius Pharmaceuticals Inc - Warrants(02/08/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CTXS", + "name": "Citrix Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUBA", + "name": "Herzfeld Caribbean Basin Fund Inc", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "1994-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUBB", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUBE", + "name": "CubeSmart", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUBI", + "name": "Customers Bancorp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUBI-P-E", + "name": "Customers Bancorp Inc FixedtoFloating Rate NonCumulative Perpetual Preferred Stock Series E", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUBI-P-F", + "name": "Customers Bancorp Inc FixedtoFloating Rate NonCumulative Perpetual Preferred Stock Series F", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUBS", + "name": "ASIAN GROWTH CUBS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUE", + "name": "Cue Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUEN", + "name": "Cuentas Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUENW", + "name": "Cuentas Inc - Warrants (01/02/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUK", + "name": "Carnival plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CULL", + "name": "Cullman Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CULP", + "name": "Culp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CURE", + "name": "Direxion Daily Healthcare Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CURI", + "name": "CuriosityStream Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CURIW", + "name": "CuriosityStream Inc - Warrants (14/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CURO", + "name": "CURO Group Holdings Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CURV", + "name": "Torrid Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUT", + "name": "Invesco MSCI Global Timber ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUTR", + "name": "Cutera Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CUZ", + "name": "Cousins Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVAC", + "name": "CureVac N.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVAR", + "name": "Cultivar ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVBF", + "name": "CVB Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVCO", + "name": "Cavco Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVCY", + "name": "Central Valley Community Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVE", + "name": "Cenovus Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVE-WS", + "name": "Cenovus Energy Inc - Warrants (01/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVEO", + "name": "Civeo Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVET", + "name": "Covetrus Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVGI", + "name": "Commercial Vehicle Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVGW", + "name": "Calavo Growers Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVI", + "name": "CVR Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVII", + "name": "Churchill Capital Corp VII - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVII-U", + "name": "Churchill Capital Corp VII - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVII-WS", + "name": "Churchill Capital Corp VII - Warrants (29/02/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVLG", + "name": "Covenant Logistics Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVLT", + "name": "Commvault Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVLY", + "name": "Codorus Valley Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVM", + "name": "Cel-Sci Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1991-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVNA", + "name": "Carvana Co. - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVR", + "name": "Chicago Rivet & Machine Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVRX", + "name": "CVRx Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVS", + "name": "CVS Health Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVT", + "name": "Cvent Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVTI", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVU", + "name": "CPI Aerostructures Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1993-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVV", + "name": "CVD Equipment Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVX", + "name": "Chevron Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CVY", + "name": "Invesco Zacks Multi-Asset Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CW", + "name": "Curtiss-Wright Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWAN", + "name": "Clearwater Analytics Holdings Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWB", + "name": "SPDR Bloomberg Convertible Securities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWBC", + "name": "Community West Bancshares", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWBR", + "name": "CohBar Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWC", + "name": "Clockwise Capital Innovation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWCO", + "name": "Consolidated Water Co. Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWEB", + "name": "Direxion Daily CSI China Internet Index Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWEN", + "name": "Clearway Energy Inc - Class C", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWEN-A", + "name": "Clearway Energy Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWENA", + "name": "Clearway Energy Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWH", + "name": "Camping World Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWI", + "name": "SPDR(R) MSCI ACWI EX-US ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWK", + "name": "Cushman & Wakefield plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWS", + "name": "AdvisorShares Focused Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWST", + "name": "Casella Waste Systems Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CWT", + "name": "California Water Service Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CX", + "name": "Cemex S.A.B. De C.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CXAC", + "name": "C5 Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CXAC-U", + "name": "C5 Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CXAC-WS", + "name": "C5 Acquisition Corp - Warrants (31/12/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CXDO", + "name": "Crexendo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CXE", + "name": "MFS High Income Municipal Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CXH", + "name": "MFS Investment Grade Municipal Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CXM", + "name": "Sprinklr Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CXSE", + "name": "WisdomTree China ex-State-Owned Enterprises Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CXW", + "name": "CoreCivic Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYA", + "name": "Simplify Tail Risk Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYAD", + "name": "Celyad Oncology", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYAN", + "name": "Cyanotech Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYB", + "name": "WisdomTree Chinese Yuan Strategy Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYBE", + "name": "Cyberoptics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYBN", + "name": "Cybin Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYBR", + "name": "CyberArk Software Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYCC", + "name": "Cyclacel Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYCCP", + "name": "Cyclacel Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYCN", + "name": "Cyclerion Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYD", + "name": "China Yuchai International", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYH", + "name": "Community Health Systems Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYN", + "name": "Cyngn Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYRN", + "name": "CYREN Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYRX", + "name": "CryoPort Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYRXW", + "name": "CryoPort Inc Wt Exp 06302020", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYT", + "name": "Cyteir Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYTH", + "name": "Cyclo Therapeutics Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYTHW", + "name": "Cyclo Therapeutics Inc - Warrants (14/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYTK", + "name": "Cytokinetics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYTO", + "name": "Altamira Therapeutics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CYXT", + "name": "Cyxtera Technologies Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CZA", + "name": "Invesco Zacks Mid-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CZNC", + "name": "Citizens & Northern Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CZOO", + "name": "Cazoo Group Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CZOO-WS", + "name": "Cazoo Group Ltd Wt", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CZR", + "name": "Caesars Entertainment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "CZWI", + "name": "Citizens Community Bancorp Inc MD", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "D", + "name": "Dominion Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAC", + "name": "Danaos Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DADA", + "name": "Dada Nexus Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAIO", + "name": "Data io Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAKT", + "name": "Daktronics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAL", + "name": "Delta Air Lines Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DALI", + "name": "First Trust Dorsey Wright DALI 1 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DALN", + "name": "DallasNews Corporation - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DALS", + "name": "DA32 Life Science Tech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DALT", + "name": "Anfield Diversified Alternatives ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAM", + "name": "VanEck Digital Assets Mining ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2022-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAN", + "name": "Dana Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAO", + "name": "Youdao Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAOO", + "name": "Crypto 1 Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAOOU", + "name": "Crypto 1 Acquisition Corp - Units (1 Ord Share Class A & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAOOW", + "name": "Crypto 1 Acquisition Corp - Warrants (30/04/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAPP", + "name": "VanEck Digital Transformation ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAPR", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAR", + "name": "Darling Ingredients Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DARE", + "name": "Dare Bioscience Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DASH", + "name": "DoorDash Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAT", + "name": "ProShares Big Data Refiners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DATS", + "name": "DatChat Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DATSW", + "name": "DatChat Inc - Warrants - Series A (13/08/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAUG", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - August", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAVA", + "name": "Endava plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAVE", + "name": "Dave Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAVEW", + "name": "Dave Inc - Warrants (05/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAWN", + "name": "Day One Biopharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DAX", + "name": "Global X DAX Germany ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DB", + "name": "Deutsche Bank AG", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBA", + "name": "Invesco DB Agriculture Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBAW", + "name": "Xtrackers MSCI All World ex US Hedged Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBB", + "name": "Invesco DB Base Metals Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBC", + "name": "Invesco DB Commodity Index Tracking Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBD", + "name": "Diebold Nixdorf Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBE", + "name": "Invesco DB Energy Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBEF", + "name": "Xtrackers MSCI EAFE Hedged Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBEH", + "name": "IM DBI HEDGE STRATEGY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBEM", + "name": "Xtrackers MSCI Emerging Markets Hedged Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBEU", + "name": "Xtrackers MSCI Europe Hedged Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBEZ", + "name": "Xtrackers MSCI Eurozone Hedged Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBGI", + "name": "Digital Brands Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBGIW", + "name": "Digital Brands Group Inc - Warrants (01/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBGR", + "name": "Xtrackers MSCI Germany Hedged Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBI", + "name": "Designer Brands Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBJA", + "name": "Innovator Double Stacker 9 Buffer ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBJP", + "name": "Xtrackers MSCI Japan Hedged Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBL", + "name": "DoubleLine Opportunistic Credit Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBLV", + "name": "AdvisorShares DoubleLine Value Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBMF", + "name": "IM DBI MANAGED FUTURES STRATEGY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBO", + "name": "Invesco DB Oil Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBOC", + "name": "Innovator Double Stacker 9 Buffer ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBP", + "name": "Invesco DB Precious Metals Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBRG", + "name": "DigitalBridge Group Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBRG-P-G", + "name": "DigitalBridge Group Inc 7.50 Cum Red Perp Pfd Ser G", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBRG-P-H", + "name": "DigitalBridge Group Inc 7.125 Cum Red Perp Pfd Ser H", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBRG-P-I", + "name": "DigitalBridge Group Inc 7.15 Cum Red Perp Pfd Ser I", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBRG-P-J", + "name": "DigitalBridge Group Inc 7.125 Cum Red Perp Pfd Ser J", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBS", + "name": "Invesco DB Silver Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBTX", + "name": "Decibel Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBV", + "name": "Invesco DB G10 Currency Harvest Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBVT", + "name": "DBV Technologies", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DBX", + "name": "Dropbox Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCBO", + "name": "Docebo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCF", + "name": "BNY Mellon Alcentra Global Credit Income 2024 Target Term Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2017-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCFC", + "name": "Tritium DCFC Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCFCW", + "name": "Tritium DCFC Ltd - Warrants (13/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCGO", + "name": "DocGo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCGOW", + "name": "DocGo Inc - Warrants (05/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCI", + "name": "Donaldson Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCO", + "name": "Ducommun Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCOM", + "name": "Dime Community Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCOMP", + "name": "Dime Community Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCP", + "name": "DCP Midstream LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCP-P-B", + "name": "DCP Midstream LP 7875 Series B FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCP-P-C", + "name": "DCP Midstream LP 795 Series C FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCPH", + "name": "Deciphera Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCRD", + "name": "Decarbonization Plus Acquisition Corp IV - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCRDU", + "name": "Decarbonization Plus Acquisition Corp IV - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCRDW", + "name": "Decarbonization Plus Acquisition Corp IV - Warrants (15/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCT", + "name": "Duck Creek Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCTH", + "name": "Delcath Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DCUE", + "name": "Dominion Energy 7.25 06-01-22", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DD", + "name": "DuPont de Nemours Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1962-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DD-WD", + "name": "DuPont de Nemours Inc When Distributed", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDD", + "name": "3D Systems Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDEC", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - December", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDF", + "name": "Delaware Investments Dividend and Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDG", + "name": "ProShares Short Oil & Gas", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDI", + "name": "DoubleDown Interactive Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDIV", + "name": "First Trust Dorsey Wright Momentum & Dividend ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDL", + "name": "Dingdong (Cayman) Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDLS", + "name": "WisdomTree Dynamic Currency Hedged International SmallCap Equity Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDM", + "name": "ProShares Ultra Dow30", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDOG", + "name": "Datadog Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDS", + "name": "Dillard`s Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDT", + "name": "Dillards Capital Trust I", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DDWM", + "name": "WisdomTree Dynamic Currency Hedged International Equity Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DE", + "name": "Deere & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEA", + "name": "Easterly Government Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DECK", + "name": "Deckers Outdoor Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DECZ", + "name": "TrueShares Structured Outcome (December) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEED", + "name": "First Trust Exchange-Traded Fund VIII ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEEF", + "name": "XTRACKERS FTSE DEVELOPED EX US COMPREHENSIVE FACTOR ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEEP", + "name": "Roundhill Acquirers Deep Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEF", + "name": "Invesco Defensive Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEFN", + "name": "Emles Protective Allocation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEI", + "name": "Douglas Emmett Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEIF", + "name": "Sterling Capital Diverse Multi-Manager Active ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DELL", + "name": "Dell Technologies Inc - Class C", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEM", + "name": "WisdomTree Emerging Markets High Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEMZ", + "name": "Democratic Large Cap Core ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEN", + "name": "Denbury Inc - New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DENN", + "name": "Denny`s Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEO", + "name": "Diageo plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DERM", + "name": "Journey Medical Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DES", + "name": "WisdomTree U.S. SmallCap Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DESP", + "name": "Despegar.com Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEUS", + "name": "Xtrackers Russell US Multifactor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEW", + "name": "WisdomTree Global High Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DEX", + "name": "Delaware Enhanced Global Dividend Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFAC", + "name": "Dimensional U.S. Core Equity 2 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFAE", + "name": "Dimensional Emerging Core Equity Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFAI", + "name": "Dimensional International Core Equity Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFAR", + "name": "Dimensional US Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFAS", + "name": "Dimensional U.S. Small Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFAT", + "name": "Dimensional U.S. Targeted Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFAU", + "name": "Dimensional US Core Equity Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFAX", + "name": "Dimensional World ex U.S. Core Equity 2 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFCF", + "name": "Dimensional Core Fixed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFE", + "name": "WISDOMTREE EUROPE SMALLCAP DIVIDEND FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFEB", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - February", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFEN", + "name": "Direxion Daily Aerospace & Defense Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFFN", + "name": "Diffusion Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFH", + "name": "Dream Finders Homes Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFHY", + "name": "Donoghue Forlines Tactical High Yield ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFIC", + "name": "Dimensional International Core Equity 2 ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFIN", + "name": "Donnelley Financial Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFIP", + "name": "Dimensional Inflation-Protected Securities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFIS", + "name": "Dimensional International Small Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFIV", + "name": "Dimensional International Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFJ", + "name": "WisdomTree Japan SmallCap Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFND", + "name": "Siren DIVCON Dividend Defender ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFNL", + "name": "Davis Select Financial ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFNM", + "name": "Dimensional National Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFNV", + "name": "Donoghue Forlines Risk Managed Innovation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFP", + "name": "Flaherty & Crumrine Dynamic Preferred and Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFRA", + "name": "Donoghue Forlines Yield Enhanced Real Asset ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFS", + "name": "Discover Financial Services", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFSD", + "name": "Dimensional Short-Duration Fixed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFSV", + "name": "Dimensional US Small Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DFUS", + "name": "Dimensional U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DG", + "name": "Dollar General Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGAZ", + "name": "VelocityShares 3x Inv Natural Gas ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGHI", + "name": "Digihost Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGICA", + "name": "Donegal Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGICB", + "name": "Donegal Group Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGII", + "name": "Digi International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGIN", + "name": "VanEck Digital India ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGL", + "name": "Invesco DB Gold Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGLD", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGLY", + "name": "Digital Ally Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGNU", + "name": "Dragoneer Growth Opportunities Corp III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGP", + "name": "PowerShares DB Gold Double Long ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGRE", + "name": "WISDOMTREE EMERGING MARKETS QUALITY DIVIDEND GROWTH FUND N/A", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGRO", + "name": "iShares Core Dividend Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGRS", + "name": "WisdomTree U.S. SmallCap Quality Dividend Growth Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGRW", + "name": "WisdomTree U.S. Quality Dividend Growth Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGS", + "name": "WisdomTree Emerging Markets SmallCap Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGT", + "name": "SPDR Global Dow ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGX", + "name": "Quest Diagnostics Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-12-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DGZ", + "name": "Deutsche Bank AG London", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DH", + "name": "Definitive Healthcare Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHAC", + "name": "Digital Health Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHACU", + "name": "Digital Health Acquisition Corp - Unit (1 Ordinary share & 1 Wrt)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHACW", + "name": "Digital Health Acquisition Corp - Warrants(02/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHBC", + "name": "DHB Capital Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHBCU", + "name": "DHB Capital Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHBCW", + "name": "DHB Capital Corp - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHC", + "name": "Diversified Healthcare Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHCA", + "name": "DHC Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHCAU", + "name": "DHC Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHCAW", + "name": "DHC Acquisition Corp - Warrants (25/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHCNI", + "name": "Diversified Healthcare Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHCNL", + "name": "Diversified Healthcare Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHF", + "name": "Dreyfus High Yield Strategies Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHHC", + "name": "DiamondHead Holdings Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHHCU", + "name": "DiamondHead Holdings Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHHCW", + "name": "DiamondHead Holdings Corp - Warrants (21/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHI", + "name": "D.R. Horton Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHIL", + "name": "Diamond Hill Investment Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHR", + "name": "Danaher Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHR-P-A", + "name": "Danaher Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHR-P-B", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHS", + "name": "WisdomTree U.S. High Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHT", + "name": "DHT Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHX", + "name": "DHI Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DHY", + "name": "Credit Suisse High Yield Bond Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1998-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIA", + "name": "SPDR Dow Jones Industrial Average ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIAL", + "name": "Columbia Diversified Fixed Income Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIAX", + "name": "Nuveen Dow 30SM Dynamic Overwrite Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIBS", + "name": "1stdibs.com Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DICE", + "name": "DICE Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIDI", + "name": "DiDi Global Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIG", + "name": "ProShares Ultra Oil & Gas", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIHP", + "name": "Dimensional International High Profitability ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DILA", + "name": "DILA Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DILAU", + "name": "DILA Capital Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DILAW", + "name": "DILA Capital Acquisition Corp - Warrants (09/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIM", + "name": "WISDOMTREE INTERNATIONAL MIDCAP DIVIDEND FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIN", + "name": "Dine Brands Global Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DINO", + "name": "HF Sinclair Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DINT", + "name": "Davis Select International ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIOD", + "name": "Diodes Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIS", + "name": "Walt Disney Co (The)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1962-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DISA", + "name": "Disruptive Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DISAU", + "name": "Disruptive Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DISAW", + "name": "Disruptive Acquisition Corp I - Warrants (06/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DISCA", + "name": "Discovery Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DISCB", + "name": "Discovery Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DISCK", + "name": "Discovery Inc - Series C", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DISH", + "name": "Dish Network Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DISHR", + "name": "DISH Network Corp Rt", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DISV", + "name": "Dimensional International Small Cap Value ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIT", + "name": "Amcon Distributing Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIV", + "name": "Global X SuperDividend U.S. ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIVA", + "name": "AGFiQ Hedged Dividend Income Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIVB", + "name": "iShares U.S. Dividend and Buyback ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIVO", + "name": "Amplify CPW Enhanced Dividend Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIVS", + "name": "SmartETFs Dividend Builder ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DIVZ", + "name": "TrueShares Low Volatility Equity Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DJAN", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DJCB", + "name": "UBS AG London Branch ETRACS Bloomberg Commodity Index Total Return ETN Ser B 10312039", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DJCO", + "name": "Daily Journal Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DJD", + "name": "Invesco Dow Jones Industrial Average Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DJIA", + "name": "Global X Dow 30 Covered Call ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DJP", + "name": "Barclays Bank PLC", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DJUL", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DJUN", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - June", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DK", + "name": "Delek US Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DKDCA", + "name": "Data Knights Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DKDCU", + "name": "Data Knights Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DKDCW", + "name": "Data Knights Acquisition Corp - Warrants (05/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DKL", + "name": "Delek Logistics Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DKNG", + "name": "DraftKings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DKS", + "name": "Dicks Sporting Goods Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DKT", + "name": "Deutsch Bk Contingent Cap Tr V Tr Pfd Secs", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLA", + "name": "Delta Apparel Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2000-07-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLB", + "name": "Dolby Laboratories Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLBR", + "name": "Citigroup Global Markets Holdings Inc VelocityShares Short LIBOR ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLCA", + "name": "Deep Lake Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLCAU", + "name": "Deep Lake Capital Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLCAW", + "name": "Deep Lake Capital Acquisition Corp - Warrants (04/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLHC", + "name": "DLH Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLN", + "name": "WisdomTree U.S. LargeCap Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLNG", + "name": "Dynagas LNG Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLNG-P-A", + "name": "Dynagas LNG Partners LP 900 Series A Cumulative Redeemable Preferred Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLNG-P-B", + "name": "Dynagas LNG Partners LP Pfd Unit Ser B FixedFltg", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLO", + "name": "DLocal Ltd Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLPN", + "name": "Dolphin Entertainment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLR", + "name": "Digital Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLR-P-J", + "name": "Digital Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLR-P-K", + "name": "Digital Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLR-P-L", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLS", + "name": "WISDOMTREE INTERNATIONAL SMALLCAP DIVIDEND FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLTH", + "name": "Duluth Holdings Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLTR", + "name": "Dollar Tree Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLX", + "name": "Deluxe Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DLY", + "name": "DoubleLine Yield Opportunities Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DM", + "name": "Desktop Metal Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DM-WS", + "name": "Desktop Metal Inc Wt Exp 03312026", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMA", + "name": "Destra Multi-Alternative Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMAC", + "name": "DiaMedica Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMAQ", + "name": "Deep Medicine Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMAQR", + "name": "Deep Medicine Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMAR", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - March", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMAT", + "name": "Global X Disruptive Materials ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2022-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMAY", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - May", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMB", + "name": "BNY Mellon Municipal Bond Infrastructure Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMCY", + "name": "Democracy International Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMDV", + "name": "AAM S&P DEVELOPED MARKETS HIGH DIVIDEND VALUE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMF", + "name": "BNY Mellon Municipal Income Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1991-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMLP", + "name": "Dorchester Minerals LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMO", + "name": "Western Asset Mrtg Defined Oppn Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMRC", + "name": "Digimarc Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMRE", + "name": "DeltaShares S&P EM 100 & Managed Risk ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMRI", + "name": "DeltaShares S&P International Managed Risk ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMRL", + "name": "DeltaShares S&P 500 Managed Risk ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMRM", + "name": "DeltaShares S&P 400 Managed Risk ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMRS", + "name": "DeltaShares S&P 600 Managed Risk ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMS", + "name": "Digital Media Solutions Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMS-WS", + "name": "Digital Media Solutions Inc - Warrants (15/07/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMTK", + "name": "DermTech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMXF", + "name": "iShares ESG Advanced MSCI EAFE ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMYD-U", + "name": "dMY Technology Group Inc II Units each consisting of one share of Class A common stock and onethird of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMYS", + "name": "dMY Technology Group Inc VI - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMYS-U", + "name": "dMY Technology Group Inc VI - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMYS-WS", + "name": "dMY Technology Group Inc VI - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DMYT-U", + "name": "Rush Street Interactive Inc - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNA", + "name": "Ginkgo Bioworks Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNA-WS", + "name": "Ginkgo Bioworks Holdings Inc - Warrants (23/02/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNAA", + "name": "Social Capital Suvretta Holdings Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNAB", + "name": "Social Capital Suvretta Holdings Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNAC", + "name": "Social Capital Suvretta Holdings Corp III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNAD", + "name": "Social Capital Suvretta Holdings Corp IV - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNAY", + "name": "Codex DNA Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNB", + "name": "Dun & Bradstreet Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNI", + "name": "Dividend And Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNL", + "name": "WisdomTree Global ex-U.S. Quality Dividend Growth Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNLI", + "name": "Denali Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNMR", + "name": "Danimer Scientific Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNN", + "name": "Denison Mines Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNOV", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - November", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNOW", + "name": "NOW Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNP", + "name": "DNP Select Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNUT", + "name": "Krispy Kreme Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNZ", + "name": "D and Z Media Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNZ-U", + "name": "D and Z Media Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DNZ-WS", + "name": "D and Z Media Acquisition Corp - Warrants (27/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOC", + "name": "Physicians Realty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOCN", + "name": "DigitalOcean Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOCS", + "name": "Doximity Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOCT", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOCU", + "name": "DocuSign Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOG", + "name": "ProShares Short Dow30", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOGZ", + "name": "Dogness (International) Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOL", + "name": "WISDOMTREE INTERNATIONAL LARGECAP DIVIDEND FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOLE", + "name": "Dole plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOMA", + "name": "Doma Holdings Inc - New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOMA-WS", + "name": "Doma Holdings Inc Wt Exp 07282026", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOMO", + "name": "Domo Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DON", + "name": "WisdomTree U.S. MidCap Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOOO", + "name": "BRP Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOOR", + "name": "Masonite International Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DORM", + "name": "Dorman Products Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOUG", + "name": "Douglas Elliman Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOV", + "name": "Dover Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOW", + "name": "Dow Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOX", + "name": "Amdocs Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOYU", + "name": "DouYu International Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DOZR", + "name": "DIREXION DAILY US INFRASTRUCTURE BULL 2X SHARES ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DPCS", + "name": "DP Cap Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DPCSU", + "name": "DP Cap Acquisition Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DPCSW", + "name": "DP Cap Acquisition Corp I - Warrants (08/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DPG", + "name": "Duff & Phelps Utility and Infrastructure Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DPK", + "name": "DIREXION DAILY MSCI DEVELOPED MARKETS BEAR 3X SHARES ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DPRO", + "name": "Draganfly Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DPST", + "name": "Direxion Daily Regional Banks Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DPW", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DPZ", + "name": "Dominos Pizza Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DQ", + "name": "Daqo New Energy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRAY", + "name": "Macondray Capital Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRAYU", + "name": "Macondray Capital Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRAYW", + "name": "Macondray Capital Acquisition Corp I - Warrants (31/05/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRCT", + "name": "Direct Digital Holdings Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRCTW", + "name": "Direct Digital Holdings Inc - Warrants (03/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRD", + "name": "DRDGold Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRE", + "name": "Duke Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRH", + "name": "Diamondrock Hospitality Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRH-P-A", + "name": "Diamondrock Hospitality Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRI", + "name": "Darden Restaurants Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRIO", + "name": "DarioHealth Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRIP", + "name": "Direxion Daily S&P Oil & Gas Exp. & Prod. Bear 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRIV", + "name": "Global X Autonomous & Electric Vehicles ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRMA", + "name": "Dermata Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRMAW", + "name": "Dermata Therapeutics Inc - Warrants (13/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRN", + "name": "Direxion Daily Real Estate Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRQ", + "name": "Dril-Quip Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRRX", + "name": "Durect Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRSK", + "name": "Aptus Defined Risk ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRTS", + "name": "Alpha Tau Medical Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRTSW", + "name": "Alpha Tau Medical Ltd - Warrants (07/03/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRTT", + "name": "DIRTT Environmental Solutions Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRUG", + "name": "Bright Minds Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRV", + "name": "Direxion Daily Real Estate Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRVN", + "name": "Driven Brands Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DRW", + "name": "WISDOMTREE GLOBAL EX-U.S. REAL ESTATE FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DS", + "name": "Drive Shack Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DS-P-B", + "name": "Drive Shack Inc Preferred Series B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DS-P-C", + "name": "Drive Shack Inc Preferred Series C", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DS-P-D", + "name": "Drive Shack Inc Pfd Ser D", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSAC", + "name": "Duddell Street Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSACU", + "name": "Duddell Street Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSACW", + "name": "Duddell Street Acquisition Corp - Warrants (21/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSAQ", + "name": "Direct Selling Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSAQ-U", + "name": "Direct Selling Acquisition Corp Units each consisting of one share of Class A common stock and onehalf of redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSAQ-WS", + "name": "Direct Selling Acquisition Corp - Warrants (30/09/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSCF", + "name": "Discipline Fund ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSE", + "name": "Duff & Phelps Select MLP and Midstream Energy Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSEP", + "name": "FT Cboe Vest U.S. Equity Deep Buffer ETF - September", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSEY", + "name": "Diversey Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSGN", + "name": "Design Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSGX", + "name": "Descartes Systems Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSI", + "name": "iShares MSCI KLD 400 Social Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSJA", + "name": "Innovator Double Stacker ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSKE", + "name": "Daseke Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSL", + "name": "Doubleline Income Solutions Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSLV", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSM", + "name": "BNY Mellon Strategic Municipal Bond Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSOC", + "name": "Innovator Double Stacker ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSP", + "name": "Viant Technology Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSPC", + "name": "The De-SPAC ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSS", + "name": "DSS Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1997-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSTL", + "name": "Distillate U.S. Fundamental Stability & Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSTX", + "name": "Distillate International Fundamental Stability & Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSU", + "name": "BlackRock Debt Strategies Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSWL", + "name": "Deswell Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSX", + "name": "Diana Shipping Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DSX-P-B", + "name": "Diana Shipping Inc Perpetual Preferred Shares Series B Marshall Islands", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DT", + "name": "Dynatrace Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTB", + "name": "DTE Energy Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTC", + "name": "Solo Brands Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTD", + "name": "WisdomTree U.S. Total Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTE", + "name": "DTE Energy Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTE 6.25", + "name": "DTE Energy Company. Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTE-W", + "name": "DTE Energy Company ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTEA", + "name": "Davidstea Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTEC", + "name": "ALPS Disruptive Technologies ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTF", + "name": "DTF Tax-Free Income 2028 Term Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1991-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTG", + "name": "DTE Energy Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTH", + "name": "WisdomTree International High Dividend Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTIL", + "name": "Precision Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTLA-P", + "name": "Brookfield DTLA Inc 7625 Series A Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTM", + "name": "DT Midstream Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTM-W", + "name": "DT Midstream Inc When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTO", + "name": "PowerShares DB Crude Oil Double Short ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTOC", + "name": "Digital Transformation Opportunities Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTOCU", + "name": "Digital Transformation Opportunities Corp - Units (1 Ord Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTOCW", + "name": "Digital Transformation Opportunities Corp - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTOX", + "name": "Amplify Cleaner Living ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTRT", + "name": "DTRT Health Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTRTU", + "name": "DTRT Health Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTRTW", + "name": "DTRT Health Acquisition Corp - Warrants (31/08/2029)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTSS", + "name": "Datasea Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTST", + "name": "Data Storage Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTSTW", + "name": "Data Storage Corp - Warrants (13/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DTW", + "name": "DTE Energy Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUC", + "name": "Duff & Phelps Utility & Corporate Bond Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUDE", + "name": "Merlyn.AI SectorSurfer Momentum ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUET", + "name": "DUET Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUETU", + "name": "DUET Acquisition Corp - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUETW", + "name": "DUET Acquisition Corp - Warrants (18/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUG", + "name": "ProShares UltraShort Oil & Gas", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUHP", + "name": "Dimensional US High Profitability ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUK", + "name": "Duke Energy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUK-P-A", + "name": "Duke Energy Corporation Depositary Shares Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUKB", + "name": "Duke Energy Corporation 5625 Junior Subordinated Debentures due 2078", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUNE", + "name": "Dune Acquisition Corporation - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUNEU", + "name": "Dune Acquisition Corporation - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUNEW", + "name": "Dune Acquisition Corporation - Warrants (17/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUO", + "name": "Fangdd Network Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUOL", + "name": "Duolingo Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUOT", + "name": "Duos Technologies Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DURA", + "name": "VanEck Morningstar Durable Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUSA", + "name": "Davis Select U.S. Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUSL", + "name": "Direxion Daily Industrials Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DUST", + "name": "Direxion Daily Gold Miners Index Bear 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DV", + "name": "DoubleVerify Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DVA", + "name": "DaVita Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DVAX", + "name": "Dynavax Technologies Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DVLU", + "name": "First Trust Dorsey Wright Momentum & Value ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DVN", + "name": "Devon Energy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DVOL", + "name": "First Trust Dorsey Wright Momentum & Low Volatility ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DVY", + "name": "iShares Select Dividend ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2003-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DVYA", + "name": "iShares Asia/Pacific Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DVYE", + "name": "iShares Emerging Markets Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWAC", + "name": "Digital World Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWACU", + "name": "Digital World Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWACW", + "name": "Digital World Acquisition Corp - Warrants (30/06/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWAS", + "name": "Invesco DWA SmallCap Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWAT", + "name": "ARROW DWA TACTICAL: MACRO ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWAW", + "name": "AdvisorShares Dorsey Wright FSM All Cap World ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWCR", + "name": "Arrow DWA Tactical: International ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWEQ", + "name": "AdvisorShares Dorsey Wright Alpha Equal Weight ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWIN", + "name": "Delwinds Insurance Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWIN-U", + "name": "Delwinds Insurance Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWIN-WS", + "name": "Delwinds Insurance Acquisition Corp - Warrants (01/08/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWLD", + "name": "Davis Select Worldwide ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWM", + "name": "WisdomTree International Equity Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWMC", + "name": "AdvisorShares Dorsey Wright Micro-Cap ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWMF", + "name": "WisdomTree International Multifactor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWPP", + "name": "FIRST TRUST DORSEY WRIGHT PEOPLE'S PORTFOLIO ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWSH", + "name": "AdvisorShares Dorsey Wright Short ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWSN", + "name": "Dawson Geophysical Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWT", + "name": "VelocityShares 3x Inverse Crude Oil ETNs linked to the SP GSCI Crude Oil Index ER", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWUS", + "name": "ADVISORSHARES DORSEY WRIGHT FSM US CORE ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DWX", + "name": "SPDR S&P International Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DX", + "name": "Dynex Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DX-P-A", + "name": "Dynex Capital Inc Preferred Stock Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DX-P-A-CL", + "name": "Dynex Capital Inc. Preferred Stock Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DX-P-C", + "name": "Dynex Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXB", + "name": "Deutsche Bk Contingent Cap TR II Tr Pfd Sec", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXB-CL", + "name": "Deutsche Bk Contingent Cap TR II Tr Pfd Sec", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXBCL", + "name": "Deutsche Bk Contingent Cap TR II Tr Pfd Sec", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXC", + "name": "DXC Technology Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXCM", + "name": "Dexcom Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXD", + "name": "ProShares UltraShort Dow30", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXF", + "name": "Dunxin Financial Holdings Ltd.", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXGE", + "name": "WisdomTree Germany Hedged Equity Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXJ", + "name": "WisdomTree Japan Hedged Equity Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXJS", + "name": "WisdomTree Japan Hedged SmallCap Equity Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXLG", + "name": "Destination XL Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXPE", + "name": "DXP Enterprises Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXR", + "name": "Daxor Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DXYN", + "name": "Dixie Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DY", + "name": "Dycom Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DYAI", + "name": "Dyadic International Inc DE", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DYB", + "name": "WISDOMTREE DYNAMIC BEARISH U.S. EQUITY FUND NA", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DYFN", + "name": "Angel Oak Dynamic Financial Strategies Income Term Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DYLD", + "name": "LeaderShares Dynamic Yield ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DYN", + "name": "Dyne Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DYNF", + "name": "BlackRock U.S. Equity Factor Rotation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DYNS", + "name": "Dynamics Special Purpose Corp Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DYNT", + "name": "Dynatronics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DZSI", + "name": "DZS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "DZZ", + "name": "PowerShares DB Gold Double Short ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "E", + "name": "Eni Spa", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EA", + "name": "Electronic Arts Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAC", + "name": "Edify Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EACPU", + "name": "Edify Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EACPW", + "name": "Edify Acquisition Corp - Warrants (25/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAD", + "name": "Allspring Income Opportunities Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2003-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAF", + "name": "GrafTech International Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAFD", + "name": "Simplify Developed Ex-US PLUS Downside Convexity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAGG", + "name": "iShares ESG Aware U.S. Aggregate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAI", + "name": "Entergy Arkansas LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAOA", + "name": "ISHARES ESG AWARE AGGRESSIVE ALLOCATION ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAOK", + "name": "iShares ESG Aware Conservative Allocation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAOM", + "name": "ISHARES ESG AWARE MODERATE ALLOCATION ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAOR", + "name": "iShares ESG Aware Growth Allocation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAPR", + "name": "Innovator Emerging Markets Power Buffer ETF April", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAR", + "name": "Eargo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EARN", + "name": "Ellington Residential Mortgage REIT", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EASG", + "name": "Xtrackers MSCI EAFE ESG Leaders Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAST", + "name": "Eastside Distilling Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EAT", + "name": "Brinker International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EATV", + "name": "VegTech Plant-based Innovation & Climate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EATZ", + "name": "ADVISORSHARES RESTAURANT ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EB", + "name": "Eventbrite Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBAC", + "name": "European Biotech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBACU", + "name": "European Biotech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBACW", + "name": "European Biotech Acquisition Corp - Warrants (06/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBAY", + "name": "EBay Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBC", + "name": "Eastern Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBET", + "name": "Esports Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBF", + "name": "Ennis Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBIX", + "name": "Ebix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBIZ", + "name": "Global X E-commerce ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBLU", + "name": "Ecofin Global Water ESG Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBMT", + "name": "Eagle Bancorp Montana Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBND", + "name": "SPDR Bloomberg Emerging Markets Local Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBON", + "name": "Ebang International Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBR", + "name": "Centrais Eletricas Brasileiras S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBR-B", + "name": "Centrais Eletricas Brasileiras S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBS", + "name": "Emergent Biosolutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EBTC", + "name": "Enterprise Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EC", + "name": "Ecopetrol SA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECAT", + "name": "BlackRock ESG Capital Allocation Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECC", + "name": "Eagle Point Credit Company Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECC-P-D", + "name": "Eagle Point Credit Company Inc 6.75 Series D Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECCA", + "name": "Eagle Point Credit Company Inc 775 Pfd Ser A 2022", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECCA-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECCACL", + "name": "Eagle Point Credit Company Inc. Series A Term Preferred Stock due 2022", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECCC", + "name": "Eagle Point Credit Company Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECCV", + "name": "Eagle Point Credit Company Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECCW", + "name": "Eagle Point Credit Company Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECCX", + "name": "Eagle Point Credit Company Inc 66875 Notes due 2028", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECF", + "name": "Ellsworth Growth and Income Fund Ltd", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1990-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECF-P-A", + "name": "Ellsworth Growth and Income Fund Ltd", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2017-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECH", + "name": "iShares MSCI Chile ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2007-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECL", + "name": "Ecolab Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECL-WD", + "name": "Ecolab Inc. When Distributed", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECLN", + "name": "First Trust EIP Carbon Impact ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECNS", + "name": "iShares MSCI China Small-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECOL", + "name": "US Ecology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECOLW", + "name": "US Ecology Inc - Warrants (17/10/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECOM", + "name": "ChannelAdvisor Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECON", + "name": "Columbia Emerging Markets Consumer ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECOR", + "name": "ElectroCore Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECOW", + "name": "Pacer Emerging Markets Cash Cows 100 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECOZ", + "name": "TrueShares ESG Active Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECPG", + "name": "Encore Capital Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECT", + "name": "Eca Marcellus Trust I", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ECVT", + "name": "Ecovyst Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ED", + "name": "Consolidated Edison Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDAP", + "name": "EDAP TMS S.A.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDC", + "name": "Direxion Daily Emerging Markets Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDD", + "name": "Morgan Stanley Emerging Markets Domestic Debt Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDEN", + "name": "ISHARES MSCI DENMARK ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDF", + "name": "Stone Harbor Emerging Markets Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDI", + "name": "Stone Harbor Emerging Markets Total Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDIT", + "name": "Editas Medicine Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDIV", + "name": "SPDR S&P Emerging Markets Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDN", + "name": "Empresa Distribuidora y Comercial Norte S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDNC", + "name": "Endurance Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDNCU", + "name": "Endurance Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDNCW", + "name": "Endurance Acquisition Corp - Warrants (01/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDOC", + "name": "Global X Telemedicine & Digital Health ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDOG", + "name": "ALPS EMERGING SECTOR DIVIDEND DOGS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDOW", + "name": "First Trust Dow 30 Equal Weight ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDR", + "name": "Endeavor Group Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDRY", + "name": "EuroDry Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDSA", + "name": "Edesa Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDTK", + "name": "Skillful Craftsman Education Technology Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDTX", + "name": "EdtechX Holdings Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDTXU", + "name": "EdtechX Holdings Acquisition Corp II - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDTXW", + "name": "EdtechX Holdings Acquisition Corp II - Warrants (10/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDU", + "name": "New Oriental Education & Technology Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDUC", + "name": "Educational Development Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDUT", + "name": "Global X Education ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDV", + "name": "Vanguard Extended Duration Treasury ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EDZ", + "name": "Direxion Daily MSCI Emerging Markets Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEA", + "name": "European Equity Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEB", + "name": "INVESCO BRIC ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEFT", + "name": "Euronet Worldwide Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEH", + "name": "ELEMENTS Linked to the SPECTRUM Large Cap US Sector Momentum Index ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEIQ", + "name": "Elite Education Group International Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EELV", + "name": "Invesco S&P Emerging Markets Low Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEM", + "name": "ISHARES MSCI EMERGING MARKETS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2003-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEMA", + "name": "iShares MSCI Emerging Markets Asia ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEMD", + "name": "AAM S&P EMERGING MARKETS HIGH DIVIDEND VALUE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEMO", + "name": "INVESCO S&P EMERGING MARKETS MOMENTUM ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEMS", + "name": "ISHARES MSCI EMERGING MARKETS SMALL-CAP ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEMV", + "name": "iShares MSCI Emerging Markets Min Vol Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEMX", + "name": "SPDR MSCI EMERGING MARKETS FOSSIL FUEL RESERVES FREE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EERN", + "name": "DRIVEWEALTH POWER SAVER ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EES", + "name": "WisdomTree U.S. SmallCap Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EET", + "name": "ProShares Ultra MSCI Emerging Markets", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEV", + "name": "ProShares UltraShort MSCI Emerging Markets", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EEX", + "name": "Emerald Holding Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFA", + "name": "iShares MSCI EAFE ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFAD", + "name": "ProShares MSCI EAFE Dividend Growers ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFAS", + "name": "GLOBAL X MSCI SUPERDIVIDEND EAFE ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFAV", + "name": "iShares MSCI EAFE Min Vol Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFAX", + "name": "SPDR MSCI EAFE Fossil Fuel Reserves Free ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFC", + "name": "Ellington Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFC-P-A", + "name": "Ellington Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFC-P-B", + "name": "Ellington Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFF", + "name": "Eaton Vance FloatingRate Income Plus Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFG", + "name": "iShares MSCI EAFE Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2005-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFIV", + "name": "SPDR S&P 500 ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFIX", + "name": "First Trust TCW Emerging Markets Debt ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFL", + "name": "Eaton Vance Floating-Rate 2022 Target Term Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2017-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFNL", + "name": "iShares MSCI Finland ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFO", + "name": "ProShares Ultra MSCI EAFE", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFOI", + "name": "Energy Focus Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFR", + "name": "Eaton Vance Senior FloatingRate Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFSC", + "name": "Enterprise Financial Services Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFSCP", + "name": "Enterprise Financial Services Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFT", + "name": "Eaton Vance Floating-Rate Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFTR", + "name": "eFFECTOR Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFTRW", + "name": "eFFECTOR Therapeutics Inc - Warrants (26/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFU", + "name": "ProShares UltraShort MSCI EAFE", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFV", + "name": "iShares MSCI EAFE Value ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2005-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFX", + "name": "Equifax Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EFZ", + "name": "ProShares Short MSCI EAFE", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGAN", + "name": "eGain Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGBN", + "name": "Eagle Bancorp Inc (MD)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGF", + "name": "BlackRock Enhanced Government Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGGF", + "name": "EG Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGGF-U", + "name": "EG Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGGF-WS", + "name": "EG Acquisition Corp - Warrants (28/05/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGHT", + "name": "8X8 Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGIF", + "name": "Eagle Growth Income Opportunities Fund Com Shs Of Ben Int", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2015-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGIS", + "name": "2ndVote Society Defended ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGLE", + "name": "Eagle Bulk Shipping Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGLX", + "name": "Enthusiast Gaming Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGO", + "name": "Eldorado Gold Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGP", + "name": "Eastgroup Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGPT", + "name": "VANECK EGYPT INDEX ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGRX", + "name": "Eagle Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EGY", + "name": "VAALCO Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EH", + "name": "EHang Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EHC", + "name": "Encompass Health Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EHI", + "name": "Western Asset Global High Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EHT", + "name": "Eaton Vance 2021 Target Term Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2016-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EHTH", + "name": "eHealth Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EIC", + "name": "Eagle Point Income Company Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EICA", + "name": "Eagle Point Income Company Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EIDO", + "name": "iShares MSCI Indonesia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EIG", + "name": "Employers Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EIGR", + "name": "Eiger BioPharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EIM", + "name": "Eaton Vance Municipal Bond Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2002-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EINC", + "name": "VANECK ENERGY INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EIRL", + "name": "iShares MSCI Ireland ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EIS", + "name": "iShares MSCI Israel ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EIX", + "name": "Edison International", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EJAN", + "name": "Innovator Emerging Markets Power Buffer ETF January", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EJFA", + "name": "EJF Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EJFAU", + "name": "EJF Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EJFAW", + "name": "EJF Acquisition Corp - Warrants (10/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EJH", + "name": "E-Home Household Service Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EJUL", + "name": "Innovator Emerging Markets Power Buffer ETF July", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EKAR", + "name": "CAPITAL LINK NEXTGEN VEHICLES & TECHNOLOGY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EKG", + "name": "First Trust Nasdaq Lux Digital Health Solutions ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2022-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EKSO", + "name": "Ekso Bionics Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EL", + "name": "Estee Lauder Cos. Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELA", + "name": "Envela Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELAN", + "name": "Elanco Animal Health Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELAT", + "name": "Elanco Animal Health Inc - Units ( Purchase Contract & Senior Amortizing Note)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELC", + "name": "Entergy Louisiana LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELD", + "name": "WisdomTree Emerging Market Local Debt Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELDN", + "name": "Eledon Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELEV", + "name": "Elevation Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELF", + "name": "e.l.f. Beauty Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELLO", + "name": "Ellomay Capital Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELMD", + "name": "Electromed Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2010-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELMS", + "name": "Electric Last Mile Solutions Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELMSW", + "name": "Electric Last Mile Solutions Inc - Warrants (24/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELOX", + "name": "Eloxx Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELP", + "name": "Cia Paranaense De Energia Copel", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELQD", + "name": "ISHARES ESG ADVANCED INVESTMENT GRADE CORPORATE BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELS", + "name": "Equity Lifestyle Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELSE", + "name": "Electro-Sensors Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELTK", + "name": "Eltek Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELVT", + "name": "Elevate Credit Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELY", + "name": "Callaway Golf Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELYM", + "name": "Eliem Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ELYS", + "name": "Elys Game Technology Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EM", + "name": "Smart Share Global Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMAN", + "name": "EMagin Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2000-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMB", + "name": "iShares J.P. Morgan USD Emerging Markets Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMBCV", + "name": "Embecta Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMBD", + "name": "GLOBAL X EMERGING MARKETS BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMBH", + "name": "ISHARES INTEREST RATE HEDGED EMERGING MARKETS BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMBK", + "name": "Embark Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMBKW", + "name": "Embark Technology Inc Warrant", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMCB", + "name": "WISDOMTREE EMERGING MARKETS CORPORATE BOND FUND N/A", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMCF", + "name": "Emclaire Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMCR", + "name": "EGSHARES EMERGING MARKETS CORE ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMD", + "name": "Wstrn Asst Emrgng Mrkts Incm Fnd Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMDV", + "name": "PROSHARES MSCI EMERGING MARKETS DIVIDEND GROWERS ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EME", + "name": "Emcor Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMF", + "name": "Templeton Emerging Markets Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMFM", + "name": "GLOBAL X MSCI NEXT EMERGING & FRONTIER ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMFQ", + "name": "Amplify Emerging Markets FinTech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMGD", + "name": "Simplify Emerging Markets Equity PLUS Downside Convexity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMGF", + "name": "iShares MSCI Emerging Markets Multifactor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMHC", + "name": "SPDR Bloomberg Emerging Markets USD Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMHY", + "name": "iShares J.P. Morgan EM High Yield Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMIF", + "name": "iShares Emerging Markets Infrastructure ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMKR", + "name": "Emcore Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EML", + "name": "Eastern Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMLC", + "name": "VanEck J.P. Morgan EM Local Currency Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMLD", + "name": "FTAC Emerald Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMLDU", + "name": "FTAC Emerald Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMLDW", + "name": "FTAC Emerald Acquisition Corp - Warrants (19/10/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMLP", + "name": "First Trust North American Energy Infrastructure Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMMF", + "name": "WISDOMTREE EMERGING MARKETS MULTIFACTOR FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMN", + "name": "Eastman Chemical Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMNT", + "name": "PIMCO Enhanced Short Maturity Active ESG Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMO", + "name": "ClearBridge Energy Midstream Opportunity Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMP", + "name": "Entergy Mississippi Inc First Mortgage Bonds 490 Series Due October 1 2066", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMQQ", + "name": "ETCT EMQQ The Emerging Markets Internet and Ecommerce ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMR", + "name": "Emerson Electric Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMSG", + "name": "XTRACKERS MSCI EMERGING MARKETS ESG LEADERS EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMSH", + "name": "PROSHARES SHORT TERM USD EMERGING MARKETS BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMTL", + "name": "SPDR DoubleLine Emerging Markets Fixed Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMTY", + "name": "ProShares Decline of the Retail Store ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMX", + "name": "EMX Royalty Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMXC", + "name": "IShares MSCI Emerging Markets ex China ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EMXF", + "name": "iShares ESG Advanced MSCI EM ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENB", + "name": "Enbridge Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENBA", + "name": "Enbridge Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENCP", + "name": "Energem Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENCPU", + "name": "Energem Corp - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENCPW", + "name": "Energem Corp - Warrants (15/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENDP", + "name": "Endo International plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENER", + "name": "Accretion Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENERR", + "name": "Accretion Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENERU", + "name": "Accretion Acquisition Corp - Units (1 1 Rights & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENERW", + "name": "Accretion Acquisition Corp - Warrants (01/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENFN", + "name": "Enfusion Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENFR", + "name": "Alerian Energy Infrastructure ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENG", + "name": "Englobal Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENIA", + "name": "Enel Americas SA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENIC", + "name": "Enel Chile S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENJ", + "name": "Entergy New Orleans Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENJY", + "name": "Enjoy Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENJYW", + "name": "Enjoy Technology Inc - Warrants (15/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENLC", + "name": "Enlink Midstream LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENLV", + "name": "Enlivex Therapeutics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENO", + "name": "Entergy New Orleans Inc 1st Mtg Bd 550 Ser 04012066", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENOB", + "name": "Enochian Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENOR", + "name": "iShares MSCI Norway ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENPC", + "name": "Executive Network Partnering Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENPC-U", + "name": "Executive Network Partnering Corporation - Units (1 Ord Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENPC-WS", + "name": "Executive Network Partnering Corporation - Warrants(25/09/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENPH", + "name": "Enphase Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENR", + "name": "Energizer Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENS", + "name": "Enersys", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENSC", + "name": "Ensysce Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENSG", + "name": "Ensign Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENSV", + "name": "Enservco Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1997-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENTA", + "name": "Enanta Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENTF", + "name": "Enterprise 4.0 Technology Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENTFU", + "name": "Enterprise 4.0 Technology Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENTFW", + "name": "Enterprise 4.0 Technology Acquisition Corp - Warrants (14/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENTG", + "name": "Entegris Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENTR", + "name": "ERShares Entrepreneurs ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENTX", + "name": "Entera Bio Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENTXW", + "name": "Entera Bio Ltd - Warrants (27/06/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENV", + "name": "Envestnet Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENVA", + "name": "Enova International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENVB", + "name": "Enveric Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENVX", + "name": "Enovix Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENX", + "name": "Eaton Vance New York Municipal Bond Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2002-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENZ", + "name": "Enzo Biochem Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ENZL", + "name": "iShares MSCI New Zealand ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOCT", + "name": "Innovator Emerging Markets Power Buffer ETF - October", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOCW", + "name": "Elliott Opportunity II Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOCW-U", + "name": "Elliott Opportunity II Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOCW-WS", + "name": "Elliott Opportunity II Corp - Warrants (02/03/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOD", + "name": "Allspring Global Dividend Opportunity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOG", + "name": "EOG Resources Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOI", + "name": "Eaton Vance Enhanced Equity Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOLS", + "name": "Evolus Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOPS", + "name": "Emles Alpha Opportunities ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOS", + "name": "Eaton Vance Enhanced Equity Income Fund II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOSE", + "name": "Eos Energy Enterprises Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOSEW", + "name": "Eos Energy Enterprises Inc - Warrants (06/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EOT", + "name": "Eaton Vance National Municipal Opportunities Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EP-P-C", + "name": "El Paso Corporation Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPAC", + "name": "Enerpac Tool Group Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPAM", + "name": "EPAM Systems Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPAY", + "name": "Bottomline Technologies (Delaware) Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPC", + "name": "Edgewell Personal Care Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPD", + "name": "Enterprise Products Partners L P", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPHE", + "name": "iShares MSCI Philippines ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPHY", + "name": "Epiphany Technology Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPHYU", + "name": "Epiphany Technology Acquisition Corp - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPHYW", + "name": "Epiphany Technology Acquisition Corp - Warrants (06/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPI", + "name": "WisdomTree India Earnings Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPIX", + "name": "Essa Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPM", + "name": "Evolution Petroleum Corporation", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1997-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPOL", + "name": "iShares MSCI Poland ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPP", + "name": "iShares MSCI Pacific ex Japan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPR", + "name": "EPR Properties", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPR-P-C", + "name": "EPR Properties 575 Series C Cumulative Convertible Preferred Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPR-P-E", + "name": "EPR Properties", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPR-P-G", + "name": "EPR Properties 5750 Series G Cumulative Redeemable Preferred Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPRE", + "name": "FIRST TRUST TCW ESG PREMIER EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPRF", + "name": "Innovator S&P Investment Grade Preferred ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-07-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPRT", + "name": "Essential Properties Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPS", + "name": "WisdomTree U.S. LargeCap Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPSN", + "name": "Epsilon Energy Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPU", + "name": "iShares MSCI Peru ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPV", + "name": "ProShares UltraShort FTSE Europe", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPWR", + "name": "Empowerment & Inclusion Capital I Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPWR-U", + "name": "Empowerment & Inclusion Capital I Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPWR-WS", + "name": "Empowerment & Inclusion Capital I Corp - Warrants(12/01/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EPZM", + "name": "Epizyme Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQ", + "name": "Equillium Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQAL", + "name": "Invesco Russell 1000 Equal Weight ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQBK", + "name": "Equity Bancshares Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQC", + "name": "Equity Commonwealth", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQC-P-D", + "name": "Equity Commonwealth 650 Pfd Conv Shs Ser D", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQD", + "name": "Equity Distribution Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQD-U", + "name": "Equity Distribution Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQD-WS", + "name": "Equity Distribution Acquisition Corp - Warrants (09/09/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQH", + "name": "Equitable Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQH-P-A", + "name": "Equitable Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQH-P-C", + "name": "Equitable Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQHA", + "name": "EQ Health Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQHA-U", + "name": "EQ Health Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQHA-WS", + "name": "EQ Health Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQIX", + "name": "Equinix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQL", + "name": "ALPS Equal Sector Weight ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQNR", + "name": "Equinor ASA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQOP", + "name": "Natixis U.S. Equity Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQOS", + "name": "Eqonex Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQR", + "name": "Equity Residential Properties Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQRR", + "name": "ProShares Equities for Rising Rates ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQRX", + "name": "EQRx Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQRXW", + "name": "EQRx Inc - Warrants (17/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQS", + "name": "Equus Total Return Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQT", + "name": "EQT Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQUL", + "name": "IQ Engender Equality ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQWL", + "name": "Invesco Russell Top 200 Equal Weight ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EQX", + "name": "Equinox Gold Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERAS", + "name": "Erasca Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERC", + "name": "Allspring Multi-Sector Income Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2003-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERES", + "name": "East Resources Acquisition Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERESU", + "name": "East Resources Acquisition Co - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERESW", + "name": "East Resources Acquisition Co - Warrants (01/07/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERF", + "name": "Enerplus Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERH", + "name": "Allspring Utilities and High Income Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2004-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERIC", + "name": "Telefonaktiebolaget L M Ericsson", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1989-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERIE", + "name": "Erie Indemnity Co. - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERII", + "name": "Energy Recovery Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERJ", + "name": "Embraer S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERM", + "name": "EquityCompass Risk Manager ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERO", + "name": "iPath EURUSD Exchange Rate ETN", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERSX", + "name": "ERSHARES NEXTGEN ENTREPRENEURS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERTH", + "name": "INVESCO MSCI SUSTAINABLE FUTURE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERUS", + "name": "iShares MSCI Russia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERX", + "name": "Direxion Daily Energy Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERY", + "name": "Direxion Daily Energy Bear 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ERYP", + "name": "Erytech Pharma", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ES", + "name": "Eversource Energy", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESAC", + "name": "Esgen Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESACU", + "name": "Esgen Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESACW", + "name": "Esgen Acquisition Corp - Warrants (18/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESBA", + "name": "Empire State Realty OP LP", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2013-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESBK", + "name": "Elmira Savings Bank", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESCA", + "name": "Escalade Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESCR", + "name": "Xtrackers Bloomberg US Investment Grade Corporate ESG ETF.", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESE", + "name": "Esco Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESEA", + "name": "Euroseas Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESEB", + "name": "XTRACKERS J.P. MORGAN ESG EMERGING MARKETS SOVEREIGN ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESG", + "name": "FlexShares STOXX US ESG Select Index Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGA", + "name": "American Century Sustainable Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGB", + "name": "IQ MacKay ESG Core Plus Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGC", + "name": "Eros STX Global Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGD", + "name": "iShares Trust iShares ESG Aware MSCI EAFE ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGE", + "name": "iShare Inc iShares ESG Aware MSCI EM ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGG", + "name": "FlexShares STOXX Global ESG Select Index Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGN", + "name": "COLUMBIA SUSTAINABLE INTERNATIONAL EQUITY INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGR", + "name": "Enstar Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGRO", + "name": "Enstar Group Ltd Depositary Shs Each Repstg 11000 Int Sh Perpetual Non Cumulative Pref Sh", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGRP", + "name": "Enstar Group Limited Depositary Shares Each Representing 11000th of an interest in Preference Shares", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGS", + "name": "Columbia Sustainable U.S. Equity Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGU", + "name": "iShares Trust iShares ESG Aware MSCI USA ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGV", + "name": "Vanguard ESG U.S. Stock ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESGY", + "name": "American Century Sustainable Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESHY", + "name": "XTRACKERS J.P. MORGAN ESG USD HIGH YIELD CORPORATE BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESI", + "name": "Element Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESIX", + "name": "SPDR S&P SmallCap 600 ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESLT", + "name": "Elbit Systems Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESM", + "name": "ESM Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESM-U", + "name": "ESM Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESM-WS", + "name": "ESM Acquisition Corp - Warrants (02/02/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESML", + "name": "iShares ESG Aware MSCI USA Small-Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESMT", + "name": "Engagesmart Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESMV", + "name": "ISHARES ESG MSCI USA MIN VOL FACTOR ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESNT", + "name": "Essent Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESOA", + "name": "Energy Services of America Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESP", + "name": "Espey Manufacturing & Electronics Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESPO", + "name": "VanEck Video Gaming and eSports ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESPR", + "name": "Esperion Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESQ", + "name": "Esquire Financial Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESRT", + "name": "Empire State Realty Trust Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESS", + "name": "Essex Property Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESSA", + "name": "ESSA Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESSC", + "name": "East Stone Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESSCR", + "name": "East Stone Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESSCU", + "name": "East Stone Acquisition Corp - Units (1 Ord 1 Right & 1 Warrant)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESSCW", + "name": "East Stone Acquisition Corp - Warrants (31/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESTA", + "name": "Establishment Labs Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESTC", + "name": "Elastic N.V", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ESTE", + "name": "Earthstone Energy Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ET", + "name": "Energy Transfer LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ET-P-C", + "name": "Energy Transfer LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ET-P-D", + "name": "Energy Transfer LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ET-P-E", + "name": "Energy Transfer LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETAC", + "name": "E.Merge Technology Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETACU", + "name": "E.Merge Technology Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETACW", + "name": "E.Merge Technology Acquisition Corp - Warrants (30/07/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETB", + "name": "Eaton Vance Tax-Managed Buy-Write Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETD", + "name": "Ethan Allen Interiors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETG", + "name": "Eaton Vance TaxAdvantaged Global Dividend Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETHO", + "name": "ETHO CLIMATE LEADERSHIP U.S. ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETI-P", + "name": "Entergy Texas Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETJ", + "name": "Eaton Vance Risk-Managed Diversified Equity Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETN", + "name": "Eaton Corporation plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETNB", + "name": "89bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETO", + "name": "Eaton Vance Tax-Advantaged Global Dividend Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETON", + "name": "Eton Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETR", + "name": "Entergy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETRN", + "name": "Equitrans Midstream Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETSY", + "name": "Etsy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETTX", + "name": "Entasis Therapeutics Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETV", + "name": "Eaton Vance Tax-Managed Buy-Write Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETW", + "name": "Eaton Vance Tax-Managed Global Buy-Write Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETWO", + "name": "E2open Parent Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETWO-WS", + "name": "E2open Parent Holdings Inc - Warrants (04/02/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETX", + "name": "Eaton Vance Municipal Income 2028 Term Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ETY", + "name": "Eaton Vance Tax Managed Diversified Eq", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2006-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUCG", + "name": "Euclid Capital Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUCR", + "name": "Eucrates Biomedical Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUCRU", + "name": "Eucrates Biomedical Acquisition Corp - Units (1 Ord & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUCRW", + "name": "Eucrates Biomedical Acquisition Corp - Warrants (23/10/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUDG", + "name": "WISDOMTREE EUROPE QUALITY DIVIDEND GROWTH FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUDV", + "name": "ProShares MSCI Europe Dividend Growers ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUFN", + "name": "iShares MSCI Europe Financials ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUFX", + "name": "ProShares Short Euro", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUM", + "name": "ProShares Short MSCI Emerging Markets", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUO", + "name": "ProShares UltraShort Euro", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EURL", + "name": "Direxion Daily FTSE Europe Bull 3x Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EURN", + "name": "Euronav NV", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUSA", + "name": "iShares MSCI USA Equal Weighted ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUSB", + "name": "iShares ESG Advanced Total USD Bond Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EUSC", + "name": "WisdomTree Europe Hedged SmallCap Equity Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVA", + "name": "Enviva Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVAX", + "name": "Evaxion Biotech A/S", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVBG", + "name": "Everbridge Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVBN", + "name": "Evans Bancorp Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2001-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVC", + "name": "Entravision Communications Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVCM", + "name": "EverCommerce Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVE", + "name": "EVe Mobility Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVE-U", + "name": "EVe Mobility Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVE-WS", + "name": "EVe Mobility Acquisition Corp - Warrants (31/12/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVEN", + "name": "Direxion Daily S&P 500 Equal Weight Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVER", + "name": "EverQuote Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVF", + "name": "Eaton Vance Senior Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVFM", + "name": "Evofem Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVG", + "name": "Eaton Vance Short Duration Diversified Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVGN", + "name": "Evogene Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVGO", + "name": "EVgo Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVGOW", + "name": "EVgo Inc - Warrants (28/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVGRU", + "name": "Evergreen Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVH", + "name": "Evolent Health Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVI", + "name": "EVI Industries Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVIX", + "name": "VelocityShares 1x Long VSTOXX Futures ETN", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVK", + "name": "Ever-Glory International Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVLO", + "name": "Evelo Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVLV", + "name": "Evolv Technologies Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVLVW", + "name": "Evolv Technologies Holdings Inc - Warrants (16/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVM", + "name": "Eaton Vance California Municipal Bond Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2002-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVN", + "name": "Eaton Vance Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1999-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVNT", + "name": "AltShares Event-Driven ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVO", + "name": "Evotec SE", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVOJ", + "name": "Evo Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVOJU", + "name": "Evo Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVOJW", + "name": "Evo Acquisition Corp - Warrants (04/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVOK", + "name": "Evoke Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVOL", + "name": "Evolving Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVOP", + "name": "EVO Payments Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVR", + "name": "Evercore Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVRG", + "name": "Evergy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVRI", + "name": "Everi Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVT", + "name": "Eaton VTaxAdvantaged Dividend Inc Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVTC", + "name": "Evertec Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVTL", + "name": "Vertical Aerospace Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVTL-WS", + "name": "Vertical Aerospace Ltd Warrants each whole warrant exercisable for one ordinary share at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVV", + "name": "Eaton Vance Ltd Duration Income Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2003-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVX", + "name": "VanEck Environmental Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EVY", + "name": "Eaton Vance New York Muni Incm Trst Fd", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1999-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EW", + "name": "Edwards Lifesciences Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWA", + "name": "iShares MSCI Australia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWBC", + "name": "East West Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWC", + "name": "iShares MSCI Canada ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWCO", + "name": "Invesco S&P 500 Equal Weight Communication Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWCZ", + "name": "European Wax Center Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWD", + "name": "iShares MSCI Sweden ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWEB", + "name": "Global X Emerging Markets Internet & E-commerce ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWG", + "name": "iShares MSCI Germany ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWGS", + "name": "iShares MSCI Germany Small-Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWH", + "name": "iShares MSCI Hong Kong ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWI", + "name": "iShares MSCI Italy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWJ", + "name": "iShares MSCI Japan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWJE", + "name": "ISHARES MSCI JAPAN EQUAL WEIGHTED ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWJV", + "name": "iShares MSCI Japan Value ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWK", + "name": "iShares MSCI Belgium ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWL", + "name": "iShares MSCI Switzerland ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWM", + "name": "iShares MSCI Malaysia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWMC", + "name": "Invesco S&P MidCap 400 Equal Weight ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWN", + "name": "iShares MSCI Netherlands ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWO", + "name": "iShares MSCI Austria ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWP", + "name": "iShares MSCI Spain ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWQ", + "name": "iShares MSCI France ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWRE", + "name": "Invesco S&P 500 Equal Weight Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWS", + "name": "iShares MSCI Singapore ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWSC", + "name": "Invesco S&P SmallCap 600 Equal Weight ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWT", + "name": "iShares MSCI Taiwan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWTX", + "name": "Edgewise Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWU", + "name": "iShares MSCI United Kingdom ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWUS", + "name": "iShares MSCI United Kingdom Small-Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWV", + "name": "PROSHARES ULTRASHORT MSCI JAPAN ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWW", + "name": "iShares MSCI Mexico ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWX", + "name": "SPDR(R) S&P(R) EMERGING MARKETS SMALL CAP ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWY", + "name": "iShares MSCI South Korea ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWZ", + "name": "iShares MSCI Brazil ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EWZS", + "name": "iShares MSCI Brazil Small-Cap ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXAI", + "name": "Exscientia Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXAS", + "name": "Exact Sciences Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXC", + "name": "Exelon Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1980-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXCVV", + "name": "Exelon Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXD", + "name": "Eaton Vance TaxAdv Bnd Optn Strtgs Fd", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXEL", + "name": "Exelixis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXFY", + "name": "Expensify Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXG", + "name": "Eaton Vance TaxManaged Global Dive Eq", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXI", + "name": "iShares Global Industrials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXK", + "name": "Endeavour Silver Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXLS", + "name": "Exlservice Hldgs Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXN", + "name": "Excellon Resources Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXP", + "name": "Eagle Materials Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXPD", + "name": "Expeditors International Of Washington Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXPE", + "name": "Expedia Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXPI", + "name": "eXp World Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXPO", + "name": "Exponent Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXPR", + "name": "Express Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXR", + "name": "Extra Space Storage Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXTN", + "name": "Exterran Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EXTR", + "name": "Extreme Networks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EYE", + "name": "National Vision Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EYEGW", + "name": "Eyegate Pharmaceuticals Inc Wt Exp 2020", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EYEN", + "name": "Eyenovia Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EYES", + "name": "Second Sight Medical Products Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EYESW", + "name": "Second Sight Medical Products Inc - Warrants (14/03/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EYLD", + "name": "Cambria Emerging Shareholder Yield ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EYPT", + "name": "EyePoint Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EZA", + "name": "iShares MSCI South Africa ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2003-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EZFL", + "name": "EzFill Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EZGO", + "name": "EZGO Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EZJ", + "name": "PROSHARES ULTRA MSCI JAPAN ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EZM", + "name": "WISDOMTREE U.S. MIDCAP FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EZPW", + "name": "EZCorp Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "EZU", + "name": "iShares MSCI EMU ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "F", + "name": "Ford Motor Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "F-P-B", + "name": "Ford Motor Company 620 Notes due June 1 2059", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "F-P-C", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FA", + "name": "First Advantage Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAAR", + "name": "First Trust Alternative Absolute Return Strategy ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAB", + "name": "First Trust Multi Cap Value AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FACA", + "name": "Figure Acquisition Corp I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FACA-U", + "name": "Figure Acquisition Corp I - Units (1 Ord Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FACA-WS", + "name": "Figure Acquisition Corp I - Warrants (31/03/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FACT", + "name": "Freedom Acquisition I Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FACT-U", + "name": "Freedom Acquisition I Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FACT-WS", + "name": "Freedom Acquisition I Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAD", + "name": "First Trust Multi Cap Growth AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAF", + "name": "First American Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAIL", + "name": "CAMBRIA GLOBAL TAIL RISK ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FALN", + "name": "iShares Fallen Angels USD Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAM", + "name": "First Trust-Aberdeen Global Opportunity Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAMI", + "name": "Farmmi Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAN", + "name": "First Trust Global Wind Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FANG", + "name": "Diamondback Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FANH", + "name": "Fanhua Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAPR", + "name": "FT Cboe Vest U.S. Equity Buffer ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FARM", + "name": "Farmer Bros. Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FARO", + "name": "Faro Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAS", + "name": "Direxion Daily Financial Bull 3x Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAST", + "name": "Fastenal Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAT", + "name": "FAT Brands Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FATBB", + "name": "FAT Brands Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FATBP", + "name": "FAT Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FATBW", + "name": "FAT Brands Inc - Warrants (16/07/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FATE", + "name": "Fate Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FATH", + "name": "Fathom Digital Manufacturing Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FATH-WS", + "name": "Fathom Digital Manufacturing Corporation - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FATP", + "name": "Fat Projects Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FATPU", + "name": "Fat Projects Acquisition Corp - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FATPW", + "name": "Fat Projects Acquisition Corp - Warrants (31/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAUG", + "name": "FT Cboe Vest U.S. Equity Buffer ETF - August", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAX", + "name": "Aberdeen Asia-Pacific Income Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1988-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FAZ", + "name": "Direxion Daily Financial Bear 3x Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FB", + "name": "Meta Platforms Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBC", + "name": "Flagstar Bancorp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBCG", + "name": "Fidelity Blue Chip Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBCV", + "name": "Fidelity Blue Chip Value ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBGX", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBHS", + "name": "Fortune Brands Home & Security Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBIO", + "name": "Fortress Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBIOP", + "name": "Fortress Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBIZ", + "name": "First Business Financial Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBK", + "name": "FB Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBMS", + "name": "First Bancshares Inc Miss", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBNC", + "name": "First Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBND", + "name": "Fidelity Total Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBP", + "name": "First Bancorp PR", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBRT", + "name": "Franklin BSP Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBRT-P-E", + "name": "Franklin BSP Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBRX", + "name": "Forte Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBT", + "name": "First Trust NYSE Arca Biotechnology Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FBZ", + "name": "First Trust Brazil AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FC", + "name": "Franklin Covey Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCA", + "name": "FIRST TRUST CHINA ALPHADEX FUND ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCAL", + "name": "First Trust California Municipal High Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCAP", + "name": "First Capital Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCAX", + "name": "Fortress Capital Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCAX-U", + "name": "Fortress Capital Acquisition Corp - Units (1 Ord Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCAX-WS", + "name": "Fortress Capital Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCBC", + "name": "First Community Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCCO", + "name": "First Community Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCEF", + "name": "First Trust Income Opportunities ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCEL", + "name": "Fuelcell Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCF", + "name": "First Commonwealth Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCFS", + "name": "FirstCash Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCG", + "name": "First Trust Natural Gas ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCLD", + "name": "Fidelity Cloud Computing ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCN", + "name": "FTI Consulting Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCNCA", + "name": "First Citizens Bancshares Inc (NC) - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCNCO", + "name": "First Citizens Bancshares Inc (NC)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCNCP", + "name": "First Citizens Bancshares Inc (NC)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCO", + "name": "Aberdeen Global Income Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1992-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCOM", + "name": "Fidelity MSCI Communication Services Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCOR", + "name": "Fidelity Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCPI", + "name": "Fidelity Stocks for Inflation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCPT", + "name": "Four Corners Property Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCRD", + "name": "First Eagle Alternative Capital BDC Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCRX", + "name": "First Eagle Alternative Capital BDC Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCSH", + "name": "Federated Hermes Short Duration Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCT", + "name": "First Trust Senior Floting Rate Income Fund II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCTR", + "name": "First Trust Lunt U.S. Factor Rotation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCUV", + "name": "Focus Universal Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCVT", + "name": "First Trust SSI Strategic Convertible Securities ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FCX", + "name": "Freeport-McMoRan Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDBC", + "name": "Fidelity D&D Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDD", + "name": "First Trust STOXX European Select Dividend Income Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDEC", + "name": "FT Cboe Vest U.S. Equity Buffer ETF - December", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDEM", + "name": "Fidelity Emerging Markets Multifactor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDEU", + "name": "First Trust Dynamic Europe Equity Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2015-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDEV", + "name": "Fidelity International Multifactor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDG", + "name": "American Century Focused Dynamic Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDHT", + "name": "Fidelity Digital Health ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDHY", + "name": "Fidelity High Yield Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDIS", + "name": "Fidelity MSCI Consumer Discretionary Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDL", + "name": "First Trust Morningstar Dividend Leaders Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDLO", + "name": "Fidelity Low Volatility Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDM", + "name": "First Trust Dow Jones Select Microcap Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDMO", + "name": "Fidelity Momentum Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDMT", + "name": "4D Molecular Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDN", + "name": "First Trust Dow Jones Internet Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDNI", + "name": "First Trust Dow Jones International Internet ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDP", + "name": "Fresh Del Monte Produce Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDRR", + "name": "Fidelity Dividend ETF for Rising Rates", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDRV", + "name": "Fidelity Electric Vehicles and Future Transportation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDS", + "name": "Factset Research Systems Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDT", + "name": "First Trust Developed Markets ex-US AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDTS", + "name": "FIRST TRUST DEVELOPED MARKETS EX-US SMALL CAP ALPHADEX FUND ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDUS", + "name": "Fidus Investment Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDVV", + "name": "Fidelity High Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDWM", + "name": "Fidelity Women`s Leadership ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FDX", + "name": "Fedex Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1978-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FE", + "name": "Firstenergy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEAM", + "name": "5E Advanced Materials Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEBZ", + "name": "TrueShares Structured Outcome (February) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEDL", + "name": "ETRACS 2x Leveraged IFED Invest with the Fed TR Index ETN", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEDM", + "name": "FlexShares ESG & Climate Developed Markets ex-US Core Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEDU", + "name": "Four Seasons Education (Cayman) Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEDX", + "name": "Emles Federal Contractors ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEHY", + "name": "FLEXSHARES ESG & CLIMATE HIGH YIELD CORPORATE CORE INDEX FUND ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEI", + "name": "First Trust MLP and Energy Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEIG", + "name": "FLEXSHARES ESG & CLIMATE INVESTMENT GRADE CORPORATE CORE INDEX FUND ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEIM", + "name": "Frequency Electronics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1983-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FELE", + "name": "Franklin Electric Co. Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEM", + "name": "First Trust Emerging Markets AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEMB", + "name": "First Trust Emerging Markets Local Currency Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEMS", + "name": "FIRST TRUST EMERGING MARKETS SMALL CAP ALPHADEX FUND ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEMY", + "name": "Femasys Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEN", + "name": "First Trust Energy Income and Growth Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2004-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FENC", + "name": "Fennec Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FENG", + "name": "Phoenix New Media Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FENY", + "name": "Fidelity MSCI Energy Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEO", + "name": "First Trust-Aberdeen Emerging Opportunity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2006-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEP", + "name": "First Trust Europe AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FERG", + "name": "Ferguson Plc.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FET", + "name": "Forum Energy Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEUS", + "name": "FlexShares ESG & Climate US Large Cap Core Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEUZ", + "name": "First Trust Eurozone AlphaDEX ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEVR", + "name": "Inspire Faithward Large Cap Momentum ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEX", + "name": "First Trust Large Cap Core AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEXD", + "name": "Fintech Ecosystem Development Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEXDR", + "name": "Fintech Ecosystem Development Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEXDU", + "name": "Fintech Ecosystem Development Corp - Units (1 Ord Share Class A 1 Right & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEXDW", + "name": "Fintech Ecosystem Development Corp - Warrants (01/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FEZ", + "name": "SPDR EURO Stoxx 50 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2002-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FF", + "name": "Futurefuel Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFA", + "name": "First Trust Enhanced Equity Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFBC", + "name": "First Financial Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFBW", + "name": "FFBW Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFC", + "name": "Flaherty & Crumrine Preferred and Income Securities Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFEB", + "name": "FT Cboe Vest U.S. Equity Buffer ETF - February", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFHG", + "name": "Formula Folios Hedged Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFHL", + "name": "Fuwei Films (Holdings) Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFIC", + "name": "Flushing Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFIE", + "name": "Faraday Future Intelligent Electric Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFIEW", + "name": "Faraday Future Intelligent Electric Inc - Warrants (21/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFIN", + "name": "First Financial Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFIU", + "name": "UVA UNCONSTRAINED MEDIUM-TERM FIXED INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFIV", + "name": "F5 Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFND", + "name": "The Future Fund Active ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFNW", + "name": "First Financial Northwest Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFR", + "name": "First Trust FTSE EPRA/NAREIT Developed Markets Real Estate Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFSG", + "name": "FormulaFolios Smart Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFTG", + "name": "FormulaFolios Tactical Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFTI", + "name": "Formula Folios Tactical Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFTY", + "name": "Innovator IBD 50 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FFWM", + "name": "First Foundation Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FG-WS", + "name": "FGL Holdings Warrants", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGB", + "name": "First Trust Specialty Finance & Financial Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGBI", + "name": "First Guaranty Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGBIP", + "name": "First Guaranty Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGD", + "name": "First Trust Dow Jones Global Select Dividend Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGEN", + "name": "FibroGen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGF", + "name": "FG Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGFPP", + "name": "FG Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGI", + "name": "FGI Industries Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGIWW", + "name": "FGI Industries Ltd - Warrants (21/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGM", + "name": "First Trust Germany AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGMCU", + "name": "FG Merger Corp - Units (1 Ord & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FGRO", + "name": "Fidelity Growth Opportunities ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHB", + "name": "First Hawaiian Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHI", + "name": "Federated Hermes Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHLC", + "name": "Fidelity MSCI Health Care Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHLT", + "name": "Future Health ESG Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHLTU", + "name": "Future Health ESG Corp - Units (1 Ord Share & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHLTW", + "name": "Future Health ESG Corp - Warrants (09/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHN", + "name": "First Horizon Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHN-P-B", + "name": "First Horizon Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHN-P-C", + "name": "First Horizon Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHN-P-D", + "name": "First Horizon Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHN-P-E", + "name": "First Horizon Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHN-P-F", + "name": "First Horizon Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHS", + "name": "First High-School Education Group Co Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHTX", + "name": "Foghorn Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FHYS", + "name": "Federated Hermes Short Duration High Yield ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIAC", + "name": "Focus Impact Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIACU", + "name": "Focus Impact Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIACW", + "name": "Focus Impact Acquisition Corp - Warrants(28/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIBK", + "name": "First Interstate BancSystem Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIBR", + "name": "iShares U.S. Fixed Income Balanced Risk Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FICO", + "name": "Fair Isaac Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FICS", + "name": "First Trust International Developed Capital Strength ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FICV", + "name": "Frontier Investment Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FICVU", + "name": "Frontier Investment Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FICVW", + "name": "Frontier Investment Corp - Warrants (29/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FID", + "name": "First Trust S&P International Dividend Aristocrats ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIDI", + "name": "Fidelity International High Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIDU", + "name": "Fidelity MSCI Industrials Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIEE", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIF", + "name": "First Trust Energy Infrastructure Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIGB", + "name": "Fidelity Investment Grade Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIGS", + "name": "Figs Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIHD", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FILL", + "name": "iShares MSCI Global Energy Producers ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FINM", + "name": "Marlin Technology Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FINMU", + "name": "Marlin Technology Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FINMW", + "name": "Marlin Technology Corp - Warrants (12/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FINS", + "name": "Angel Oak Financial Strategies Income Term Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FINS-R", + "name": "Angel Oak Rights", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FINS-R-W", + "name": "Angel Oak Financial Strategies Income Term Trust Rights expires October 14 2021 When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FINV", + "name": "FinVolution Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FINW", + "name": "FinWise Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FINX", + "name": "Global X Funds Global X FinTech ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIS", + "name": "Fidelity National Information Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FISI", + "name": "Financial Institutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FISK", + "name": "Empire State Realty OP LP", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2013-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FISR", + "name": "SPDR SSGA Fixed Income Sector Rotation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FISV", + "name": "Fiserv Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FITB", + "name": "Fifth Third Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FITBI", + "name": "Fifth Third Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FITBO", + "name": "Fifth Third Bancorp 4.95 PRF PERPETUAL USD 25 Ser K Rp11000th", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FITBP", + "name": "Fifth Third Bancorp 6 PRF PERPETUAL USD 1000 Sr A Rp 140 Dp Cl B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FITE", + "name": "SPDR S&P Kensho Future Security ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIV", + "name": "First Trust Senior Floating Rate 2022 Target Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2016-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIVA", + "name": "Fidelity International Value Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIVE", + "name": "Five Below Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIVG", + "name": "Defiance Next Gen Connectivity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIVN", + "name": "Five9 Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIVR", + "name": "Strategy Shares Nasdaq 5HANDL Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIW", + "name": "First Trust Water ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIX", + "name": "Comfort Systems USA Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIXD", + "name": "First Trust TCW Opportunistic Fixed Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIXX", + "name": "Homology Medicines Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FIZZ", + "name": "National Beverage Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FJAN", + "name": "FT Cboe Vest U.S. Equity Buffer ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FJP", + "name": "FIRST TRUST JAPAN ALPHADEX FUND ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FJUL", + "name": "FT Cboe Vest U.S. Equity Buffer ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FJUN", + "name": "FT Cboe Vest U.S. Equity Buffer ETF - June", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FKU", + "name": "FIRST TRUST UNITED KINGDOM ALPHADEX FUND ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FKWL", + "name": "Franklin Wireless Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FL", + "name": "Foot Locker Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLAC", + "name": "Frazier Lifesciences Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLACU", + "name": "Frazier Lifesciences Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLACW", + "name": "Frazier Lifesciences Acquisition Corp - Warrants (09/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLAG", + "name": "First Light Acquisition Group Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLAG-U", + "name": "First Light Acquisition Group Inc - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLAG-WS", + "name": "First Light Acquisition Group Inc Redeemable Warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50 per s", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLAU", + "name": "FRANKLIN FTSE AUSTRALIA ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLAX", + "name": "Franklin FTSE Asia ex Japan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLBL", + "name": "Franklin Liberty Senior Loan ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLBR", + "name": "Franklin FTSE Brazil ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLC", + "name": "Flaherty & Crumrine Total Return Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLCA", + "name": "Franklin FTSE Canada ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLCB", + "name": "Franklin Liberty U.S. Core Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLCH", + "name": "Franklin FTSE China ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLCO", + "name": "Franklin Liberty Investment Grade Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLDM", + "name": "Fluidigm Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLDR", + "name": "Fidelity Low Duration Bond Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLDZ", + "name": "RiverNorth Volition America Patriot ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLEE", + "name": "Franklin FTSE Europe ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLEH", + "name": "FRANKLIN FTSE EUROPE HEDGED ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLEX", + "name": "Flex Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLFR", + "name": "FRANKLIN FTSE FRANCE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLGB", + "name": "Franklin FTSE United Kingdom ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLGC", + "name": "Flora Growth Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLGR", + "name": "FRANKLIN FTSE GERMANY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLGT", + "name": "Fulgent Genetics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLGV", + "name": "Franklin Liberty U.S. Treasury Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLHK", + "name": "FRANKLIN FTSE HONG KONG ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLHY", + "name": "Franklin Liberty High Yield Corporate ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLIA", + "name": "Franklin Liberty International Aggregate Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLIC", + "name": "First Of Long Island Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLIN", + "name": "Franklin FTSE India ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLIY", + "name": "FRANKLIN FTSE ITALY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLJH", + "name": "FRANKLIN FTSE JAPAN HEDGED ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLJP", + "name": "Franklin FTSE Japan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLKR", + "name": "Franklin FTSE South Korea ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLL", + "name": "Full House Resorts Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLLA", + "name": "Franklin FTSE Latin America ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLLV", + "name": "Franklin Liberty US Low Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLM", + "name": "FIRST TRUST GLOBAL ENGINEERING AND CONSTRUCTION ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLMB", + "name": "Franklin Liberty Federal Tax-Free Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLME", + "name": "Flame Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLME-U", + "name": "Flame Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLME-WS", + "name": "Flame Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLMI", + "name": "Franklin Dynamic Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLMN", + "name": "Falcon Minerals Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLMNW", + "name": "Falcon Minerals Corp - Warrants(21/07/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLMX", + "name": "FRANKLIN FTSE MEXICO ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLN", + "name": "First Trust Latin America AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLNC", + "name": "Fluence Energy Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLNG", + "name": "Flex Lng Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLNT", + "name": "Fluent Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLO", + "name": "Flowers Foods Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLOT", + "name": "iShares Floating Rate Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLOW", + "name": "SPX FLOW Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLQD", + "name": "Franklin LibertyQ Global Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLQE", + "name": "Franklin LibertyQ Emerging Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLQG", + "name": "FRANKLIN LIBERTYQ GLOBAL EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLQH", + "name": "FRANKLIN LIBERTYQ INTERNATIONAL EQUITY HEDGED ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLQL", + "name": "Franklin LibertyQ U.S. Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLQM", + "name": "Franklin LibertyQ U.S. Mid Cap Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLQS", + "name": "FRANKLIN LIBERTYQ U.S. SMALL CAP EQUITY ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLR", + "name": "Fluor Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLRG", + "name": "Fidelity U.S. Multifactor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLRN", + "name": "SPDR Bloomberg Investment Grade Floating Rate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLRT", + "name": "Pacer Pacific Asset Floating Rate High Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLRU", + "name": "Franklin FTSE Russia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLS", + "name": "Flowserve Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLSA", + "name": "FRANKLIN FTSE SAUDI ARABIA ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLSP", + "name": "FRANKLIN LIBERTY SYSTEMATIC STYLE PREMIA ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLSW", + "name": "FRANKLIN FTSE SWITZERLAND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLT", + "name": "Fleetcor Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLTB", + "name": "Fidelity Ltd Term Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLTN", + "name": "Rareview Inflation/Deflation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLTR", + "name": "VanEck Investment Grade Floating Rate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLTW", + "name": "FRANKLIN FTSE TAIWAN ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLUD", + "name": "FRANKLIN LIBERTY ULTRA SHORT BOND ETF LIBERTY ULTRA SHORT BOND ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLUX", + "name": "Flux Power Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLV", + "name": "American Century Focused Large Cap Value ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLWS", + "name": "1-800 Flowers.com Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLXS", + "name": "Flexsteel Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLYA", + "name": "SOAR Technology Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLYA-U", + "name": "SOAR Technology Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLYA-WS", + "name": "SOAR Technology Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLYW", + "name": "Flywire Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FLZA", + "name": "FRANKLIN FTSE SOUTH AFRICA ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FM", + "name": "ISHARES MSCI FRONTIER 100 ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMAC", + "name": "FirstMark Horizon Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMAC-U", + "name": "FirstMark Horizon Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMAC-WS", + "name": "FirstMark Horizon Acquisition Corp - Warrants (26/09/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMAG", + "name": "Fidelity Magellan ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMAO", + "name": "Farmers & Merchants Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMAR", + "name": "FT Cboe Vest U.S. Equity Buffer ETF - March", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMAT", + "name": "Fidelity MSCI Materials Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMAY", + "name": "FT Cboe Vest U.S. Equity Buffer ETF - May", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMB", + "name": "First Trust Managed Municipal ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMBH", + "name": "First Mid Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMC", + "name": "FMC Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMF", + "name": "First Trust Managed Futures Strategy Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMHI", + "name": "First Trust Municipal High Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMIL", + "name": "Fidelity New Millennium ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMIV", + "name": "Forum Merger IV Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMIVU", + "name": "Forum Merger IV Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMIVW", + "name": "Forum Merger IV Corp - Warrants (15/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMN", + "name": "Federated Hermes Premier Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMNB", + "name": "Farmers National Banc Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMNY", + "name": "First Trust New York Municipal High Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMO", + "name": "Fiduciary/Claymore Energy Infrastructure Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMQQ", + "name": "FMQQ The Next Frontier Internet & Ecommerce ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMS", + "name": "Fresenius Medical Care AG & Co. KGaA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMTX", + "name": "Forma Therapeutics Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMX", + "name": "Fomento Economico Mexicano S.A.B. de C.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FMY", + "name": "First TrustFIDAC Mortgage Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FN", + "name": "Fabrinet", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNA", + "name": "Paragon 28 Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNB", + "name": "F.N.B. Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNB-P-E", + "name": "F.N.B. Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNCB", + "name": "FNCB Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNCH", + "name": "Finch Therapeutics Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNCL", + "name": "Fidelity MSCI Financials Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FND", + "name": "Floor & Decor Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNDA", + "name": "Schwab Fundamental U.S. Small Company Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNDB", + "name": "Schwab Fundamental U.S. Broad Market Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNDC", + "name": "Schwab Fundamental International Small Company Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNDE", + "name": "Schwab Fundamental Emerging Markets Large Company Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNDF", + "name": "Schwab Fundamental International Large Company Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNDX", + "name": "Schwab Fundamental U.S. Large Company Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNF", + "name": "Fidelity National Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNGD", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNGG", + "name": "Direxion Daily Select Large Caps & FANGs", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNGO", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNGR", + "name": "FingerMotion Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNGS", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNGU", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNHC", + "name": "FedNat Holding Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNI", + "name": "First Trust Chindia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNK", + "name": "First Trust Mid Cap Value AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNKO", + "name": "Funko Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNLC", + "name": "First Bancorp Inc (ME)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNOV", + "name": "First Trust Cboe Vest U.S. Equity Buffer ETF - November", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNTC", + "name": "Direxion Daily FinTech Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNV", + "name": "Franco-Nevada Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNVT", + "name": "Finnovate Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNVTU", + "name": "Finnovate Acquisition Corp - Units (1 Ord Class A & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNVTW", + "name": "Finnovate Acquisition Corp - Warrants (30/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNWB", + "name": "First Northwest Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNWD", + "name": "Finward Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNX", + "name": "First Trust Mid Cap Core AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FNY", + "name": "First Trust Mid Cap Growth AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOA", + "name": "Finance of America Companies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOA-WS", + "name": "Finance of America Companies Inc - Warrants (08/04/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOCS", + "name": "Focus Financial Partners Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOCT", + "name": "FT Cboe Vest U.S. Equity Buffer ETF -October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOE", + "name": "Ferro Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOF", + "name": "Cohen & Steers Closed-End Opportunity Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2006-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOLD", + "name": "Amicus Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOMO", + "name": "FOMO ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FONR", + "name": "Fonar Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOR", + "name": "Forestar Group Inc New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FORA", + "name": "Forian Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FORD", + "name": "Forward Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FORG", + "name": "ForgeRock Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FORH", + "name": "Formidable ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FORM", + "name": "FormFactor Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FORR", + "name": "Forrester Research Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FORTY", + "name": "Formula Systems (1985) Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOSL", + "name": "Fossil Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOSLL", + "name": "Fossil Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOUN", + "name": "Founder SPAC - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOUNU", + "name": "Founder SPAC - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOUNW", + "name": "Founder SPAC - Warrants (15/07/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOUR", + "name": "Shift4 Payments Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOVL", + "name": "iShares Focused Value Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOX", + "name": "Fox Corporation - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOXA", + "name": "Fox Corporation - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOXF", + "name": "Fox Factory Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOXW", + "name": "FoxWayne Enterprises Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOXWU", + "name": "FoxWayne Enterprises Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FOXWW", + "name": "FoxWayne Enterprises Acquisition Corp - Warrants (12/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPA", + "name": "FIRST TRUST ASIA PACIFIC EX-JAPAN ALPHADEX FUND ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPAC", + "name": "Far Peak Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPAC-WS", + "name": "Far Peak Acquisition Corp - Warrants (07/12/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPAG", + "name": "FPA GLOBAL EQUITY ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPAY", + "name": "FlexShopper Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPE", + "name": "First Trust Preferred Securities and Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPEI", + "name": "First Trust Institutional Preferred Securities and Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPF", + "name": "First Trust Intermediate Duration Preferred & Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPFD", + "name": "Fidelity Preferred Securities & Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPH", + "name": "Five Point Holdings LLC - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPI", + "name": "Farmland Partners Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPI-P-B", + "name": "Farmland Partners Inc Series B Participating Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPL", + "name": "First Trust New Opportunities MLP & Energy Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPRO", + "name": "Fidelity Real Estate Investment ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPX", + "name": "First Trust US Equity Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPXE", + "name": "First Trust IPOX (R) Europe Equity Opportunities ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FPXI", + "name": "First Trust International Equity Opportunities ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FQAL", + "name": "Fidelity Quality Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FR", + "name": "First Industrial Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRA", + "name": "Blackrock Floating Rate Income Strategies Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRAF", + "name": "Franklin Financial Services Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRBA", + "name": "First Bank (NJ)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRBK", + "name": "Republic First Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRBN", + "name": "Forbion European Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRBNU", + "name": "Forbion European Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRBNW", + "name": "Forbion European Acquisition Corp - Warrants (10/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRC", + "name": "First Republic Bank", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRC-P-H", + "name": "First Republic Bank", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRC-P-I", + "name": "First Republic Bank", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRC-P-J", + "name": "First Republic Bank", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRC-P-K", + "name": "First Republic Bank", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRC-P-L", + "name": "First Republic Bank", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRC-P-M", + "name": "First Republic Bank", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRC-P-N", + "name": "First Republic Bank Depositary Shares Series N", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRD", + "name": "Friedman Industries Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRDM", + "name": "Alpha Architect Freedom 100 Emerging Markets ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FREE", + "name": "Whole Earth Brands Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FREEW", + "name": "Whole Earth Brands Inc. Warrant", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FREL", + "name": "Fidelity MSCI Real Estate Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FREQ", + "name": "Frequency Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FREY", + "name": "FREYR Battery", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FREY-WS", + "name": "FREYR Battery - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRG", + "name": "Franchise Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRGAP", + "name": "Franchise Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRGE", + "name": "Forge Global Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRGI", + "name": "Fiesta Restaurant Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRHC", + "name": "Freedom Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRI", + "name": "First Trust S&P REIT Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRLA", + "name": "Fortune Rise Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRLAU", + "name": "Fortune Rise Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRLAW", + "name": "Fortune Rise Acquisition Corp - Warrants (06/12/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRLN", + "name": "Freeline Therapeutics Holdings plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRME", + "name": "First Merchants Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRNW", + "name": "Fidelity Clean Energy ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRO", + "name": "Frontline Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FROG", + "name": "JFrog Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRON", + "name": "Frontier Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRONU", + "name": "Frontier Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRONW", + "name": "Frontier Acquisition Corp - Warrants (01/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRPH", + "name": "FRP Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRPT", + "name": "Freshpet Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRSG", + "name": "First Reserve Sustainable Growth Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRSGU", + "name": "First Reserve Sustainable Growth Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRSGW", + "name": "First Reserve Sustainable Growth Corp - Warrants (05/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRSH", + "name": "Freshworks Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRST", + "name": "Primis Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRSX", + "name": "Foresight Autonomous Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRT", + "name": "Federal Realty Investment Trust.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRT-P-C", + "name": "Federal Realty Investment Trust.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRTA", + "name": "Forterra Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRTY", + "name": "Alger Mid Cap 40 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRW", + "name": "PWP Forward Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRWAU", + "name": "PWP Forward Acquisition Corp I - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRWAW", + "name": "PWP Forward Acquisition Corp I - Warrants (09/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRXB", + "name": "Forest Road Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRXB-U", + "name": "Forest Road Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FRXB-WS", + "name": "Forest Road Acquisition Corp II Redeemable Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSBC", + "name": "Five Star Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSBW", + "name": "FS Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSD", + "name": "First Trust High Income Long Short Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSEA", + "name": "First Seacoast Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSEC", + "name": "Fidelity Investment Grade Securitized ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSEP", + "name": "FT Cboe Vest U.S. Equity Buffer ETF -September", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSFG", + "name": "First Savings Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSI", + "name": "Flexible Solutions International Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1999-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSIG", + "name": "FIRST TRUST LIMITED DURATION INVESTMENT GRADE CORPORATE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSK", + "name": "FS KKR Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSLR", + "name": "First Solar Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSLY", + "name": "Fastly Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSM", + "name": "Fortuna Silver Mines Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSMB", + "name": "First Trust Short Duration Managed Municipal ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSMD", + "name": "Fidelity Small-Mid Multifactor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSMO", + "name": "Fidelity Small-Mid Cap Opportunities ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSNB", + "name": "Fusion Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSNB-U", + "name": "Fusion Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSNB-WS", + "name": "Fusion Acquisition Corp II - Warrants (29/02/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSP", + "name": "Franklin Street Properties Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSR", + "name": "Fisker Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSRD", + "name": "Fast Radius Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSRDW", + "name": "Fast Radius Inc - Warrants (07/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSRX", + "name": "FinServ Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSRXU", + "name": "FinServ Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSRXW", + "name": "FinServ Acquisition Corp II - Warrants (17/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSS", + "name": "Federal Signal Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSSI", + "name": "Fortistar Sustainable Solutions Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSSIU", + "name": "Fortistar Sustainable Solutions Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSSIW", + "name": "Fortistar Sustainable Solutions Corp - Warrants (14/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSST", + "name": "Fidelity Sustainable U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FST", + "name": "FAST Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FST-U", + "name": "FAST Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FST-WS", + "name": "FAST Acquisition Corp - Warrants (25/08/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSTA", + "name": "Fidelity MSCI Consumer Staples Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSTR", + "name": "L.B. Foster Co. - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSTX", + "name": "F-star Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSV", + "name": "FirstService Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSYD", + "name": "Fidelity Sustainable High Yield ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FSZ", + "name": "FIRST TRUST SWITZERLAND ALPHADEX FUND ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FT", + "name": "Franklin Universal Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTA", + "name": "First Trust Large Capital Value AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTAA", + "name": "FTAC Athena Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTAAU", + "name": "FTAC Athena Acquisition Corp - Units (1 Ord Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTAAW", + "name": "FTAC Athena Acquisition Corp - Warrants (01/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTAG", + "name": "First Trust Indxx Global Agriculture ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTAI", + "name": "Fortress Transportation and Infrastructure Investors LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTAI-P-A", + "name": "Fortress Transportation and Infrastructure Investors LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTAI-P-B", + "name": "Fortress Transportation and Infrastructure Investors LLC FXDFR PRF PERPETUAL USD 25 Ser B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTAI-P-C", + "name": "Fortress Transportation and Infrastructure Investors LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTC", + "name": "First Trust Large Capital Growth AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTCH", + "name": "Farfetch Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTCI", + "name": "FTC Solar Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTCS", + "name": "First Trust Capital Strength ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTCV", + "name": "FinTech Acquisition Corp V - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTCVU", + "name": "FinTech Acquisition Corp V - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTCVW", + "name": "FinTech Acquisition Corp V - Warrants (09/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTDR", + "name": "Frontdoor Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTEC", + "name": "Fidelity MSCI Information Technology Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTEK", + "name": "Fuel Tech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTEV", + "name": "FinTech Evolution Acquisition Group - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTEV-U", + "name": "FinTech Evolution Acquisition Group - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTEV-WS", + "name": "FinTech Evolution Acquisition Group Redeemable Warrants each whole warrant exercisable for one Class A Ordinary Share for 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTF", + "name": "Franklin Ltd Duration Income Trust", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2003-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTFT", + "name": "Future FinTech Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTGC", + "name": "First Trust Global Tactical Commodity Strategy Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTHI", + "name": "First Trust BuyWrite Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTHM", + "name": "Fathom Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTHY", + "name": "First Trust High Yield Opportunities 2027 Term Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTI", + "name": "TechnipFMC plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTIIU", + "name": "FutureTech II Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTK", + "name": "Flotek Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTLB", + "name": "First Trust Hedged BuyWrite Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTLS", + "name": "First Trust Long/Short Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTNT", + "name": "Fortinet Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTNW", + "name": "FTE Networks Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTPA", + "name": "FTAC Parnassus Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTPAU", + "name": "FTAC Parnassus Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTPAW", + "name": "FTAC Parnassus Acquisition Corp - Warrants (10/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTRI", + "name": "First Trust Indxx Global Natural Resources Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTRP", + "name": "Field Trip Health Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTS", + "name": "Fortis Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTSD", + "name": "Franklin Liberty Short Duration U.S. Government ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTSL", + "name": "First Trust Senior Loan Fund ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTSM", + "name": "First Trust Enhanced Short Maturity ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTV", + "name": "Fortive Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTVI", + "name": "FinTech Acquisition Corp VI - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTVIU", + "name": "FinTech Acquisition Corp VI - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTVIW", + "name": "FinTech Acquisition Corp VI - Warrants (23/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTXG", + "name": "First Trust Nasdaq Food & Beverage ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTXH", + "name": "FIRST TRUST NASDAQ PHARMACEUTICALS ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTXL", + "name": "First Trust Nasdaq Semiconductor ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTXN", + "name": "First Trust Nasdaq Oil & Gas ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTXO", + "name": "First Trust Nasdaq Bank ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FTXR", + "name": "First Trust Nasdaq Transportation ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUBO", + "name": "fuboTV Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUE", + "name": "AB Svensk Exportkredit", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUL", + "name": "H.B. Fuller Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FULC", + "name": "Fulcrum Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FULT", + "name": "Fulton Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FULTP", + "name": "Fulton Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUMB", + "name": "First Trust Ultra Short Duration Municipal ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUN", + "name": "Cedar Fair L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUNC", + "name": "First United Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUND", + "name": "Sprott Focus Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUNL", + "name": "CornerCap Fundametrics Large-Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FURY", + "name": "Fury Gold Mines Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2011-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUSB", + "name": "First US Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUSN", + "name": "Fusion Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUT", + "name": "PROSHARES MANAGED FUTURES STRATEGY ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUTU", + "name": "Futu Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUTY", + "name": "Fidelity MSCI Utilities Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FUV", + "name": "Arcimoto Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FV", + "name": "First Trust Dorsey Wright Focus 5 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVAC-U", + "name": "MP Materials Corporation - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVAL", + "name": "Fidelity Value Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVAM", + "name": "5:01 Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVC", + "name": "First Trust Dorsey Wright Dynamic Focus 5 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVCB", + "name": "FVCBankcorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVD", + "name": "First Trust Value Line Dividend Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2003-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVIV", + "name": "Fortress Value Acquisition Corp IV - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVIV-U", + "name": "Fortress Value Acquisition Corp IV - Units (1 Ord Share Class A & 1/8 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVIV-WS", + "name": "Fortress Value Acquisition Corp IV - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVRR", + "name": "Fiverr International Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVT", + "name": "Fortress Value Acquisition Corp III - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVT-U", + "name": "Fortress Value Acquisition Corp III - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FVT-WS", + "name": "Fortress Value Acquisition Corp III - Warrants (31/12/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FWAC", + "name": "Fifth Wall Acquisition Corp III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FWBI", + "name": "First Wave BioPharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FWONA", + "name": "Liberty Media Corp (Tracking Stock -Liberty Formula 1) Series A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FWONK", + "name": "Liberty Media Corp (Tracking Stock -Liberty Formula 1) Series C", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FWP", + "name": "Forward Pharma A/S", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FWRD", + "name": "Forward Air Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FWRG", + "name": "First Watch Restaurant Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXA", + "name": "Invesco CurrencyShares Australian Dollar Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXB", + "name": "Invesco CurrencyShares British Pound Sterling Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXC", + "name": "Invesco CurrencyShares Canadian Dollar Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXCO", + "name": "Financial Strategies Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXCOR", + "name": "Financial Strategies Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXCOW", + "name": "Financial Strategies Acquisition Corp - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXD", + "name": "First Trust Consumer Discretionary AlphaDEX Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXE", + "name": "Invesco CurrencyShares Euro Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXF", + "name": "Invesco CurrencyShares Swiss Franc Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXG", + "name": "First Trust Consumer Staples AlphaDEX Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXH", + "name": "First Trust Health Care AlphaDEX Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXI", + "name": "iShares China Large-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXL", + "name": "First Trust Technology AlphaDEX Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXLV", + "name": "F45 Training Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXN", + "name": "First Trust Energy AlphaDEX Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXNC", + "name": "First National Corp (Strasburg VA)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXO", + "name": "First Trust Financials AlphaDEX Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXP", + "name": "ProShares UltraShort FTSE China 50", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXR", + "name": "First Trust Industrials/Producer Durables AlphaDEX Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXU", + "name": "First Trust Utilities AlphaDEX Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXY", + "name": "Invesco CurrencyShares Japanese Yen Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FXZ", + "name": "First Trust Materials AlphaDEX Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FYBR", + "name": "Frontier Communications Parent Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FYC", + "name": "First Trust Small Cap Growth AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FYLD", + "name": "Cambria Foreign Shareholder Yield ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FYT", + "name": "First Trust Small Cap Value AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FYX", + "name": "First Trust Small Cap Core AlphaDEX Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FZT", + "name": "FAST Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FZT-U", + "name": "FAST Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "FZT-WS", + "name": "FAST Acquisition Corp II - Warrants (16/03/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "G", + "name": "Genpact Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAA", + "name": "CAMBRIA GLOBAL ASSET ALLOCATION ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAB", + "name": "Gabelli Equity Trust Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAB-P-D", + "name": "Gabelli Equity Trust Inc The Preferred Stock Series D", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAB-P-G", + "name": "Gabelli Equity Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAB-P-H", + "name": "Gabelli Equity Trust Inc The Pfd Ser H", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAB-P-K", + "name": "Gabelli Equity Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAB-R", + "name": "Gabelli Equity Trust Inc Rights 7142021", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GABC", + "name": "German American Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GACQ", + "name": "Global Consumer Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GACQU", + "name": "Global Consumer Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GACQW", + "name": "Global Consumer Acquisition Corp - Warrants (21/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAIA", + "name": "Gaia Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAIN", + "name": "Gladstone Investment Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAINN", + "name": "Gladstone Investment Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAINZ", + "name": "Gladstone Investment Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAL", + "name": "SPDR SSgA Global Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GALT", + "name": "Galectin Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAM", + "name": "General American Investors Co. Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAM-P-B", + "name": "General American Investors Company Inc Cumulative Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAMB", + "name": "Gambling.com Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAMC", + "name": "Golden Arrow Merger Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAMCU", + "name": "Golden Arrow Merger Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAMCW", + "name": "Golden Arrow Merger Corp - Warrants (31/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAME", + "name": "Engine Gaming and Media Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAMR", + "name": "Wedbush ETFMG Video Game Tech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAN", + "name": "GAN Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GANX", + "name": "Gain Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAPA", + "name": "G&P acquisition corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAPA-U", + "name": "G&P acquisition corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAPA-WS", + "name": "G&P acquisition Corp - Warrants (28/02/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAQ", + "name": "Generation Asia I Acquisition Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAQ-U", + "name": "Generation Asia I Acquisition Ltd - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAQ-WS", + "name": "Generation Asia I Acquisition Ltd - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GASL", + "name": "DIREXION DAILY NATURAL GAS RELATED BULL 3X SHARES ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GASS", + "name": "StealthGas Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAST", + "name": "Gabelli Asset ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GATE", + "name": "Marblegate Acquisition Corp - Series A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GATEU", + "name": "Marblegate Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GATEW", + "name": "Marblegate Acquisition Corp - Warrants (31/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GATO", + "name": "Gatos Silver Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GATX", + "name": "GATX Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAU", + "name": "Galiano Gold Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2008-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GAZ", + "name": "Barclays Bank PLC iPath Series B Bloomberg Natural Gas Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GB", + "name": "Global Blue Group Holding AG", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GB-WS", + "name": "Global Blue Group Holding AG - Warrants (28/08/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBAB", + "name": "Guggenheim Taxbl Muni Bnd & Invtmnt Grd Debt Trst Com Shrs Of benf Int", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBCI", + "name": "Glacier Bancorp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBDC", + "name": "Golub Capital BDC Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBDV", + "name": "Global Beta Smart Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBF", + "name": "ISHARES GOVERNMENT/CREDIT BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBGR", + "name": "GLOBAL BETA MOMENTUM-GROWTH ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBIL", + "name": "Goldman Sachs Access Treasury 0-1 Year ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBIO", + "name": "Generation Bio Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBL", + "name": "Gamco Investors Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBLD", + "name": "Invesco MSCI Green Building ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBLI", + "name": "Global Indemnity Group LLC - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBLO", + "name": "Global Beta Low Beta ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBNH", + "name": "Greenbrook TMS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBNY", + "name": "Generations Bancorp NY Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBOX", + "name": "GreenBox POS", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBR", + "name": "New Concept Energy Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1993-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBRG", + "name": "Goldenbridge Acquisition Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBRGR", + "name": "Goldenbridge Acquisition Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBRGU", + "name": "Goldenbridge Acquisition Ltd - Units (1 Ord shares1 Warr & 1 Rts )", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBRGW", + "name": "Goldenbridge Acquisition Ltd - Warrants (02/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBS", + "name": "GBS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBT", + "name": "Global Blood Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBUG", + "name": "Barclays Bank PLC", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBUY", + "name": "Goldman Sachs Future Consumer Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GBX", + "name": "Greenbrier Cos. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCAC", + "name": "Cepton Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCBC", + "name": "Greene County Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCC", + "name": "WisdomTree EnhancedContinuous Commodity Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCI", + "name": "Gannett Co Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCIG", + "name": "Genuine Investors ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCLN", + "name": "Goldman Sachs Bloomberg Clean Energy Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCMG", + "name": "GCM Grosvenor Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCMGW", + "name": "GCM Grosvenor Inc - Warrants (17/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCO", + "name": "Genesco Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCOR", + "name": "Goldman Sachs Access U.S. Aggregate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCOW", + "name": "Pacer Global Cash Cows Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCP", + "name": "GCP Applied Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCTK", + "name": "GlucoTrack Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GCV", + "name": "Gabelli Convertible Income Securities", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1995-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GD", + "name": "General Dynamics Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1977-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDDY", + "name": "Godaddy Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDE", + "name": "WisdomTree Efficient Gold Plus Equity Strategy Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDEN", + "name": "Golden Entertainment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDEV", + "name": "Nexters Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDEVW", + "name": "Nexters Inc - Warrants (26/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDL", + "name": "GDL Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDL-P-C", + "name": "The GDL Fund Series C Cumulative Puttable and Callable Preferred Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDMA", + "name": "Gadsden Dynamic Multi-Asset ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDMN", + "name": "WisdomTree Efficient Gold Plus Gold Miners Strategy Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDNR", + "name": "Gardiner Healthcare Acquisitions Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDNRU", + "name": "Gardiner Healthcare Acquisitions Corp - Units (1 Ord & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDNRW", + "name": "Gardiner Healthcare Acquisitions Corp - Warrants (30/07/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDO", + "name": "Western Asset Global Corporate Defined Opportunity Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDOC", + "name": "GOLDMAN SACHS FUTURE HEALTH CARE EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDOT", + "name": "Green Dot Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDRX", + "name": "GoodRx Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDS", + "name": "GDS Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDSTU", + "name": "Goldenstone Acquisition Ltd - Units (1 Ord 1 War & 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDV", + "name": "Gabelli Dividend & Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDV-P-D", + "name": "Gabelli Dividend Pfd Series D", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDV-P-H", + "name": "Gabelli Dividend & Income Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDV-P-K", + "name": "Gabelli Dividend & Income Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDX", + "name": "VanEck Gold Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDXD", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2020-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDXJ", + "name": "VanEck Junior Gold Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDXU", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2020-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDYN", + "name": "Grid Dynamics Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GDYNW", + "name": "Grid Dynamics Holdings Inc - Warrants (05/03/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GE", + "name": "General Electric Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1962-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GECC", + "name": "Great Elm Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GECCM", + "name": "Great Elm Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GECCN", + "name": "Great Elm Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GECCO", + "name": "Great Elm Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEEX", + "name": "Games & Esports Experience Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEEXU", + "name": "Games & Esports Experience Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEEXW", + "name": "Games & Esports Experience Acquisition Corp - Warrants (01/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEF", + "name": "Greif Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEF-B", + "name": "Greif Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEG", + "name": "Great Elm Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEL", + "name": "Genesis Energy L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEM", + "name": "Goldman Sachs ActiveBeta Emerging Markets Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEMD", + "name": "Goldman Sachs Access Emerging Markets USD Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GENC", + "name": "Gencor Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GENE", + "name": "Genetic Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GENI", + "name": "Genius Sports Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GENI-WS", + "name": "Genius Sports Ltd - Warrants (20/04/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GENQU", + "name": "Genesis Unicorn Capital Corp - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GENY", + "name": "Principal Millennials ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEO", + "name": "Geo Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEOS", + "name": "Geospace Technologies Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GER", + "name": "Goldman Sachs MLP and Energy Renaissance Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GERM", + "name": "ETFMG Treatments Testing and Advancements ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GERN", + "name": "Geron Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GES", + "name": "Guess Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GET", + "name": "Getnet Adquirencia E Servicos Para Meios De Pagamento S.A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GETVV", + "name": "Getnet Adquirencia e Servicos para Meios de Pagamento S.A. American Depositary Shares WI", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GEVO", + "name": "Gevo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GF", + "name": "New Germany Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFAI", + "name": "Guardforce AI Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFAIW", + "name": "Guardforce AI Co Ltd - Warrants (01/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFED", + "name": "Guaranty Federal Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFF", + "name": "Griffon Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFGD", + "name": "Growth for Good Acquisition Corp (The) - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFGDR", + "name": "Growth for Good Acquisition Corp (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFGDU", + "name": "Growth for Good Acquisition Corp (The) - Units (1 Ord Class A 1 Rts & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFGDW", + "name": "Growth for Good Acquisition Corp (The) - Warrants (12/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFGF", + "name": "Guru Favorite Stocks ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFI", + "name": "Gold Fields Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFL", + "name": "GFL Environmental Inc (Sub Voting)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFLU", + "name": "GFL Environmental Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFOF", + "name": "Grayscale Future of Finance ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFOR", + "name": "Graf Acquisition Corp IV", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFOR-U", + "name": "Graf Acquisition Corp IV - Units (1 Ord & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFOR-WS", + "name": "Graf Acquisition Corp IV - Warrants (31/05/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFS", + "name": "GlobalFoundries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFX", + "name": "Golden Falcon Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFX-U", + "name": "Golden Falcon Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFX-WS", + "name": "Golden Falcon Acquisition Corp - Warrants (04/11/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GFY", + "name": "Western Asset Vrble Rate Strtgc Fnd Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGAA", + "name": "Genesis Growth Tech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGAAU", + "name": "Genesis Growth Tech Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGAAW", + "name": "Genesis Growth Tech Acquisition Corp - Warrants (08/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGAL", + "name": "Grupo Financiero Galicia", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGB", + "name": "Gerdau S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGE", + "name": "Green Giant Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGG", + "name": "Graco Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGGV", + "name": "G3 VRM Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGGVR", + "name": "G3 VRM Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGGVU", + "name": "G3 VRM Acquisition Corp - Units (1 Ord Class A & 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGM", + "name": "Guggenheim Credit Allocation Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGMC", + "name": "Glenfarne Merger Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGMCU", + "name": "Glenfarne Merger Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGMCW", + "name": "Glenfarne Merger Corp - Warrants (17/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGN", + "name": "GAMCO Global Gold Natural Resources & Income Trust", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2005-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGN-P-B", + "name": "GAMCO Global Gold Natural Reources Income Trust 500 Series B Cumulative 2500 Liquidation Preference", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGO", + "name": "Gabelli Go Anywhere Trust", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGPI", + "name": "Gores Guggenheim Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGPIU", + "name": "Gores Guggenheim Inc - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGPIW", + "name": "Gores Guggenheim Inc - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGRW", + "name": "Gabelli Growth Innovators ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGT", + "name": "Gabelli Multimedia Trust Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGT-P-B", + "name": "Gabelli MultiMedia Trust Inc The Preferred Series B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGT-P-E", + "name": "Gabelli Multimedia Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGT-P-G", + "name": "Gabelli Multimedia Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGT-R", + "name": "Gabelli MultiMedia Trust Inc The Rights expiring 8252021", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GGZ", + "name": "Gabelli Global Small and Mid Cap Value Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-07-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GH", + "name": "Guardant Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHAC", + "name": "Gaming & Hospitality Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHACU", + "name": "Gaming & Hospitality Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHACW", + "name": "Gaming & Hospitality Acquisition Corp - Warrants (30/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHC", + "name": "Graham Holdings Co. - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHG", + "name": "GreenTree Hospitality Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHIX", + "name": "Gores Holdings IX Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHIXU", + "name": "Gores Holdings IX Inc - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHIXW", + "name": "Gores Holdings IX Inc - Warrants (31/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHL", + "name": "Greenhill & Co Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHLD", + "name": "Guild Holdings Co - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHM", + "name": "Graham Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHRS", + "name": "GH Research PLC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHSI", + "name": "Guardion Health Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHTA", + "name": "Goose Hollow Tactical Allocation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHY", + "name": "PGIM Global High Yield Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-12-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHYB", + "name": "Goldman Sachs Access High Yield Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GHYG", + "name": "iShares US & Intl High Yield Corp Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIA", + "name": "GigCapital5 Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIA-U", + "name": "GigCapital5 Inc - Units (1 Ord & 1War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIA-WS", + "name": "GigCapital5 Inc - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIAC", + "name": "Gesher I Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIACU", + "name": "Gesher I Acquisition Corp - Units (1 Ord Share & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIACW", + "name": "Gesher I Acquisition Corp - Warrants (16/04/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIB", + "name": "CGI Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIC", + "name": "Global Industrial Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIFI", + "name": "Gulf Island Fabrication Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIGB", + "name": "Goldman Sachs Access Investment Grade Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIGE", + "name": "SOFI GIG ECONOMY ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIGM", + "name": "Gigamedia", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GII", + "name": "SPDR(R) S&P GLOBAL INFRASTRUCTURE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIII", + "name": "G-III Apparel Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIIX", + "name": "Gores Holdings VIII Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIIXU", + "name": "Gores Holdings VIII Inc - Units (1 Ord Share Class A & 1/8 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIIXW", + "name": "Gores Holdings VIII Inc - Warrants (01/02/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIK-WS", + "name": "Lightning eMotors Inc - Warrants (18/05/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIL", + "name": "Gildan Activewear Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GILD", + "name": "Gilead Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GILT", + "name": "Gilat Satellite Networks", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIM", + "name": "Templeton Global Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GINN", + "name": "Goldman Sachs Innovate Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIPR", + "name": "Generation Income Properties Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIPRW", + "name": "Generation Income Properties Inc - Warrants (03/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIS", + "name": "General Mills Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIW", + "name": "GigInternational1 Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIWWU", + "name": "GigInternational1 Inc - Units (1 Ord Share & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIWWW", + "name": "GigInternational1 Inc - Warrants (19/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIX-U", + "name": "Gigcapital2 Inc - Units (1 Ord Share 1 Rts & 1 Wrt)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GIXR", + "name": "GigCapital2 Inc. Rights each exchangeable into onetwentieth of a share of Common Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GJH", + "name": "Synthetic FixedIncome Securities Inc 6375 STRATS Cl A1", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GJO", + "name": "Synthetic FixedIncome Securities Inc Synthetic FixedIncome Securities Inc on behalf of STRATSSM Trust for WalMart Stores Inc Securities Series 2004", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GJP", + "name": "Synthetic FixedIncome Securities Inc Synthetic FixedIncome Securities Inc on behalf of STRATS SM Trust for Dominion Resources Inc Securities Series 2", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GJR", + "name": "Synthetic FixedIncome Securities Inc STRATS Trust for ProcterGamble Securities Series 20061", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GJS", + "name": "Synthetic Fixed-Income Securities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GJT", + "name": "Synthetic FixedIncome Securities Inc Synthetic FixedIncome Securities Inc Floating Rate Structured Repackaged AssetBacked Trust Securities Certificates", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GJV", + "name": "Synthetic FixedIncome Securities Inc 700 Fixed Rate Structured Repackaged AssetBacked Trust Securities STRATS", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GK", + "name": "AdvisorShares Gerber Kawasaki ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GKOS", + "name": "Glaukos Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GL", + "name": "Globe Life Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GL-P-C", + "name": "Torchmark Corporation 6125 Junior Subordinated Debentures due 2056", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GL-P-D", + "name": "Globe Life Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLAD", + "name": "Gladstone Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLAQ", + "name": "Globis Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLAQU", + "name": "Globis Acquisition Corp - Unit (1 Ordinary share & 1 Wrt)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLAQW", + "name": "Globis Acquisition Corp - Warrants (01/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLBE", + "name": "Global E Online Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLBL", + "name": "Cartesian Growth Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLBLU", + "name": "Cartesian Growth Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLBLW", + "name": "Cartesian Growth Corp - Warrants (26/02/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLBS", + "name": "Globus Maritime Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLBZ", + "name": "Glen Burnie Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLCN", + "name": "VanEck China Growth Leaders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLD", + "name": "SPDR Gold Shares ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLDB", + "name": "STRATEGY SHARES GOLD-HEDGED BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLDD", + "name": "Great Lakes Dredge & Dock Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLDG", + "name": "GoldMining Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2011-07-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLDI", + "name": "Credit Suisse AG Nassau Branch", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLDM", + "name": "SPDR Gold MiniShares Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLDX", + "name": "USCF Gold Strategy Plus Income Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLEE", + "name": "Gladstone Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLEEU", + "name": "Gladstone Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLEEW", + "name": "Gladstone Acquisition Corp - Warrants (01/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLEO-U", + "name": "Galileo Acquisition Corp - Units (1 Ordinary share & 1 Warr)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLG", + "name": "TD Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLHA", + "name": "Glass Houses Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLHAU", + "name": "Glass Houses Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLHAW", + "name": "Glass Houses Acquisition Corp - Warrants (01/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLIF", + "name": "AGFIQ GLOBAL INFRASTRUCTURE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLIN", + "name": "VanEck India Growth Leaders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLL", + "name": "ProShares UltraShort Gold", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLLI", + "name": "Globalink Investment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLLIR", + "name": "Globalink Investment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLLIU", + "name": "Globalink Investment Inc - Units (1 Ord 1 Rts & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLLIW", + "name": "Globalink Investment Inc - Warrants(06/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLMD", + "name": "Galmed Pharmaceuticals Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLNG", + "name": "Golar Lng", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLO", + "name": "Clough Global Opportunities Fund.", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2006-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLOB", + "name": "Globant S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLOG-P-A", + "name": "GasLog Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLOP", + "name": "Gaslog Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLOP-P-A", + "name": "Gaslog Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLOP-P-B", + "name": "Gaslog Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLOP-P-C", + "name": "Gaslog Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLOV", + "name": "Goldman Sachs ActiveBeta World Low Vol Plus Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLP", + "name": "Global Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLP-P-A", + "name": "Global Partners LP 975 Series A FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units representing limited partner interests", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLP-P-B", + "name": "Global Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLPG", + "name": "Galapagos NV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLPI", + "name": "Gaming and Leisure Properties Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLQ", + "name": "Clough Global Equity Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2005-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLRE", + "name": "Greenlight Capital Re Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLRY", + "name": "Inspire Faithward Mid Cap Momentum ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLS", + "name": "Gelesis Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLS-WS", + "name": "Gelesis Holdings Inc - Warrants (13/01/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLSI", + "name": "Greenwich LifeSciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLSPT", + "name": "Global SPAC Partners Co - Subunit (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLSPU", + "name": "Global SPAC Partners Co - Units (1 Subunit & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLSPW", + "name": "Global SPAC Partners Co - Warrants (12/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLT", + "name": "Glatfelter Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLTA", + "name": "Galata Acquisition Corp - Class A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLTA-U", + "name": "Galata Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLTA-WS", + "name": "Galata Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLTO", + "name": "Galecto Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLTR", + "name": "Aberdeen Standard Physical Precious Metals Basket Shares ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLU", + "name": "Gabelli Global Utility & Income Trust.", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2004-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLU-P-A", + "name": "Gabelli Global Utility & Income Trust.", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLU-P-B", + "name": "The Gabelli Global Utility and Income Trust Series B Cumulative Puttable and Callable Preferred Shares", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLUE", + "name": "Monte Rosa Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLV", + "name": "Clough Global Allocation Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2004-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLW", + "name": "Corning Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GLYC", + "name": "GlycoMimetics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GM", + "name": "General Motors Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMAB", + "name": "Genmab", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMBL", + "name": "Esports Entertainment Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMBLP", + "name": "Esports Entertainment Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMBLW", + "name": "Esports Entertainment Group Inc - Warrants (31/03/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMBLZ", + "name": "Esports Entertainment Group Inc - Warrants (02/03/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMBT", + "name": "Queens Gambit Growth Capital - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMBTU", + "name": "Queens Gambit Growth Capital - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMBTW", + "name": "Queens Gambit Growth Capital - Warrants (19/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMDA", + "name": "Gamida Cell Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GME", + "name": "Gamestop Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMED", + "name": "Globus Medical Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMET", + "name": "VanEck Green Metals ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMF", + "name": "SPDR S&P Emerging Asia Pacific ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMFI", + "name": "Aetherium Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMFIU", + "name": "Aetherium Acquisition Corp - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMFIW", + "name": "Aetherium Acquisition Corp - Warrants (21/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMGI", + "name": "Golden Matrix Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMGT", + "name": "Gaming Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMII", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMOM", + "name": "Cambria Global Momentum ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMRE", + "name": "Global Medical REIT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMRE-P-A", + "name": "Global Medical REIT Inc Series A Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMS", + "name": "GMS Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMTX", + "name": "Gemini Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMVD", + "name": "G Medical Innovations Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMVDW", + "name": "G Medical Innovations Holdings Ltd - Warrants (30/06/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GMZ", + "name": "Goldman Sachs MLP Income Opportunities Fund Com Shs", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNAC", + "name": "Group Nine Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNACU", + "name": "Group Nine Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNACW", + "name": "Group Nine Acquisition Corp - Warrants (15/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNCA", + "name": "Genocea Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNE", + "name": "Genie Energy Ltd - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNE-P-A", + "name": "Genie Energy Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNFT", + "name": "Genfit", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNK", + "name": "Genco Shipping & Trading Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNL", + "name": "Global Net Lease Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNL-P-A", + "name": "Global Net Lease Inc 725 Series A Cumulative Redeemable Preferred Stock 001 par value per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNL-P-B", + "name": "Global Net Lease Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNLN", + "name": "Greenlane Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNMA", + "name": "iShares GNMA Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNOG", + "name": "Golden Nugget Online Gaming Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNOM", + "name": "Global X Genomics & Biotechnology ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNPK-WS", + "name": "Genesis Park Acquisition Corp Redeemable Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNPX", + "name": "Genprex Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNR", + "name": "SPDR S&P Global Natural Resources ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNRC", + "name": "Generac Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNSS", + "name": "Genasys Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNT", + "name": "GAMCO Natural Resources Gold & Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNT-P-A", + "name": "GAMCO Natural Resources Gold Income Tust 520 Series A Cumulative Preferred Shares Liquidation Preference 2500 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNTA", + "name": "Genenta Science SpA", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNTX", + "name": "Gentex Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNTY", + "name": "Guaranty Bancshares Inc (TX)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNUS", + "name": "Genius Brands International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GNW", + "name": "Genworth Financial Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GO", + "name": "Grocery Outlet Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOAC", + "name": "GO Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOAC-U", + "name": "GO Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOAC-WS", + "name": "GO Acquisition Corp - Warrants (31/08/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOAU", + "name": "U.S. Global GO GOLD and Precious Metal Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOBI", + "name": "Gobi Acquisition Corp Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOCO", + "name": "GoHealth Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOED", + "name": "1847 Goedeker Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOED-WS", + "name": "1847 Goedeker Inc - Warrants (01/01/9999)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOEV", + "name": "Canoo Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOEVW", + "name": "Canoo Inc - Warrants (05/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOEX", + "name": "Global X Gold Explorers ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOF", + "name": "Guggenheim Strategic Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOGL", + "name": "Golden Ocean Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOGN", + "name": "GoGreen Investments Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOGN-U", + "name": "GoGreen Investments Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOGN-WS", + "name": "GoGreen Investments Corp - Warrants (31/05/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOGO", + "name": "Gogo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOL", + "name": "Gol Linhas Aereas Inteligentes S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOLD", + "name": "Barrick Gold Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOLF", + "name": "Acushnet Holdings Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOOD", + "name": "Gladstone Commercial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOODN", + "name": "Gladstone Commercial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOODO", + "name": "Gladstone Commercial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOOG", + "name": "Alphabet Inc - Class C", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOOGL", + "name": "Alphabet Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOOS", + "name": "Canada Goose Holdings Inc (Subord Vot Shs)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GORO", + "name": "Gold Resource Corporation", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOSS", + "name": "Gossamer Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOTU", + "name": "Gaotu Techedu Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOVT", + "name": "iShares U.S. Treasury Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOVX", + "name": "Geovax Labs Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOVXW", + "name": "Geovax Labs Inc - Warrants (01/01/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GOVZ", + "name": "iShares 25+ Year Treasury STRIPS Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GP", + "name": "GreenPower Motor Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPAC", + "name": "Global Partner Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPACU", + "name": "Global Partner Acquisition Corp II - Units (1 Ord Class A 1/6 War & 1 CVR )", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPACW", + "name": "Global Partner Acquisition Corp II - Warrants (06/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPAL", + "name": "Goldman Sachs ActiveBeta Paris-Aligned Climate US Large Cap Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPAQW", + "name": "Gordon Pointe Acquisition Corp Warrant", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPC", + "name": "Genuine Parts Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPCO", + "name": "Golden Path Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPCOR", + "name": "Golden Path Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPCOU", + "name": "Golden Path Acquisition Corp - Units (1 Ord 1 Right & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPCOW", + "name": "Golden Path Acquisition Corp - Warrants (31/01/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPI", + "name": "Group 1 Automotive Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPJA", + "name": "Georgia Power Company Series 2017A 500 Junior Subordinated Notes due October 1 2077", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPK", + "name": "Graphic Packaging Holding Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPL", + "name": "Great Panther Mining Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPM", + "name": "Guggenheim Enhanced Equity Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPMT", + "name": "Granite Point Mortgage Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPMT-P-A", + "name": "Granite Point Mortgage Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPN", + "name": "Global Payments Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPOR", + "name": "Gulfport Energy Corp (New)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPP", + "name": "Green Plains Partners LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPRE", + "name": "Green Plains Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPRK", + "name": "Geopark Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPRO", + "name": "GoPro Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GPS", + "name": "Gap Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GQRE", + "name": "FlexShares Global Quality FlexShares Global Quality", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRAB", + "name": "Grab Holdings Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRABW", + "name": "Grab Holdings Ltd - Warrants (01/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRAY", + "name": "Graybug Vision Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRBK", + "name": "Green Brick Partners Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRBK-P-A", + "name": "Green Brick Partners Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRC", + "name": "Gorman-Rupp Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRCL", + "name": "Gracell Biotechnologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRCY", + "name": "Greencity Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRCYU", + "name": "Greencity Acquisition Corp - Units (1 Ord Share & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRCYW", + "name": "Greencity Acquisition Corp - Warrants (28/04/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GREE", + "name": "Greenidge Generation Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GREEL", + "name": "Greenidge Generation Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GREI", + "name": "GOLDMAN SACHS FUTURE REAL ESTATE AND INFRASTRUCTURE EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GREK", + "name": "Global X MSCI Greece ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRES", + "name": "IQ Global Resources ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRF", + "name": "Eagle Capital Growth Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2004-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRFS", + "name": "Grifols SA", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRID", + "name": "First Trust NASDAQ Clean Edge Smart Grid Infrastructure Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRIL", + "name": "Muscle Maker Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRIN", + "name": "Grindrod Shipping Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRMN", + "name": "Garmin Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRN", + "name": "iPath Series B Carbon ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRNA", + "name": "GreenLight Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRNAW", + "name": "GreenLight Biosciences Inc - Warrants (30/09/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRNB", + "name": "VANECK VECTORS GREEN BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRNQ", + "name": "Greenpro Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GROM", + "name": "Grom Social Enterprises Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GROMW", + "name": "Grom Social Enterprises Inc - Warrants (17/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GROW", + "name": "U.S. Global Investors Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GROY", + "name": "Gold Royalty Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GROY-WS", + "name": "Gold Royalty Corp - Warrants (01/01/9999)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRP-U", + "name": "Granite Real Estate Investment Trust - Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRPH", + "name": "Graphite Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRPN", + "name": "Groupon Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRSHU", + "name": "Gores Holdings Inc Unit 1 Com 1 Wt Exp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRTS", + "name": "Gritstone Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRTX", + "name": "Galera Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRU", + "name": "ELEMENTS Linked to the MLCX Grains Index ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRVI", + "name": "Grove Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRVY", + "name": "Gravity Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRWG", + "name": "GrowGeneration Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRX", + "name": "Gabelli Healthcare & WellnessRx Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRX-P-A", + "name": "Gabelli Healthcare PFD SER A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRX-P-A-CL", + "name": "Gabelli Healthcare PFD SER A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GRZZ", + "name": "Grizzle Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GS", + "name": "Goldman Sachs Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GS-P-A", + "name": "Goldman Sachs Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GS-P-C", + "name": "Goldman Sachs Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GS-P-D", + "name": "Goldman Sachs Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GS-P-J", + "name": "Goldman Sachs Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GS-P-K", + "name": "Goldman Sachs Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSAH", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSAQ", + "name": "Global Synergy Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSAQU", + "name": "Global Synergy Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSAQW", + "name": "Global Synergy Acquisition Corp - Warrants (01/01/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSAT", + "name": "Globalstar Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSBC", + "name": "Great Southern Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSBD", + "name": "Goldman Sachs BDC Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSEE", + "name": "GOLDMAN SACHS MARKETBETA EMERGING MARKETS EQUITY ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSEU", + "name": "GOLDMAN SACHS ACTIVEBETA(R) EUROPE EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSEV", + "name": "Gores Holdings VII Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSEVU", + "name": "Gores Holdings VII Inc - Units (1 Ord Share Class A & 1/8 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSEVW", + "name": "Gores Holdings VII Inc - Warrants (04/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSEW", + "name": "Goldman Sachs Equal Weight U.S. Large Cap Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSFP", + "name": "Goldman Sachs Future Planet Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSG", + "name": "iShares S&P GSCI Commodity-Indexed Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSHD", + "name": "Goosehead Insurance Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSID", + "name": "Goldman Sachs MarketBeta International Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSIE", + "name": "Goldman Sachs ActiveBeta International Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSIG", + "name": "GOLDMAN SACHS ACCESS INVESTMENT GRADE CORPORATE 1-5 YEAR BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSIT", + "name": "GSI Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSJY", + "name": "GOLDMAN SACHS ACTIVEBETA(R) JAPAN EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSK", + "name": "Glaxosmithkline plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSKY", + "name": "GreenSky Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSL", + "name": "Global Ship Lease Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSL-P-B", + "name": "Global Ship Lease Inc Depository Shares Series B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSLC", + "name": "Goldman Sachs ActiveBeta U.S. Large Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSLD", + "name": "Global Ship Lease Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSM", + "name": "Ferroglobe Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSMG", + "name": "Glory Star New Media Group Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSMGW", + "name": "Glory Star New Media Group Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSP", + "name": "Barclays Bank PLC", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSPY", + "name": "GOTHAM ENHANCED 500 ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSQB", + "name": "G Squared Ascend II Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSQB-U", + "name": "G Squared Ascend II Inc - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSQB-WS", + "name": "G Squared Ascend II Inc - Warrants (31/12/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSQD", + "name": "G Squared Ascend I Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSQD-U", + "name": "G Squared Ascend I Inc - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSQD-WS", + "name": "G Squared Ascend I Inc - Warrants (01/02/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSRMU", + "name": "GSR II Meteora Acquisition Corp - Units (1 Ord Class A 1/16 Rights & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSSC", + "name": "Goldman Sachs ActiveBeta U.S. Small Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSST", + "name": "Goldman Sachs Access Ultra Short Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSUS", + "name": "Goldman Sachs MarketBeta U.S. Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSV", + "name": "Gold Standard Ventures Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2012-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GSY", + "name": "Invesco Ultra Short Duration ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GT", + "name": "Goodyear Tire & Rubber Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTAC", + "name": "Global Technology Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTACU", + "name": "Global Technology Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTACW", + "name": "Global Technology Acquisition Corp I - Warrants (19/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTBP", + "name": "GT Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTE", + "name": "Gran Tierra Energy Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTEC", + "name": "Greenland Technologies Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTEK", + "name": "Goldman Sachs Future Tech Leaders Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTES", + "name": "Gates Industrial Corporation plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTH", + "name": "Genetron Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTHX", + "name": "G1 Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTIM", + "name": "Good Times Restaurants Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTIP", + "name": "Goldman Sachs Access Inflation Protected USD Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTLB", + "name": "Gitlab Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTLS", + "name": "Chart Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTN", + "name": "Gray Television Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTN-A", + "name": "Gray Television Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTO", + "name": "Invesco Total Return Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTPA", + "name": "Gores Technology Partners Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTPAU", + "name": "Gores Technology Partners Inc - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTPAW", + "name": "Gores Technology Partners Inc - Warrants (28/02/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTPB", + "name": "Gores Technology Partners II Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTPBU", + "name": "Gores Technology Partners II Inc - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTPBW", + "name": "Gores Technology Partners II Inc - Warrants (28/02/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTR", + "name": "WisdomTree Target Range Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTX", + "name": "Garrett Motion Inc - New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTXAP", + "name": "Garrett Motion Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTY", + "name": "Getty Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GTYH", + "name": "GTY Technology Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GUG", + "name": "Guggenheim Active Allocation Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GULF", + "name": "WISDOMTREE MIDDLE EAST DIVIDEND FUND NA", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GUNR", + "name": "FlexShares Global Upstream Natural Resources Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GURE", + "name": "Gulf Resources Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GURU", + "name": "Global X Guru Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GUSH", + "name": "Direxion Daily S&P Oil & Gas Exp. & Prod. Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GUT", + "name": "Gabelli Utility Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1999-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GUT-P-C", + "name": "Gabelli Utility Trust The 5375 Series C Cumulative Preferred Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GUT-R", + "name": "Gabelli Utility Trust The Rights expiring April 14 2021", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GUT-R-W", + "name": "Gabelli Utility Trust The Rights expiring April 14 2021 When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GVA", + "name": "Granite Construction Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GVAL", + "name": "Cambria Global Value ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GVCI", + "name": "Green Visor Financial Technology Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GVCIU", + "name": "Green Visor Financial Technology Acquisition Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GVCIW", + "name": "Green Visor Financial Technology Acquisition Corp I - Warrants (27/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GVI", + "name": "iShares Intermediate Government/Credit Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2007-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GVIP", + "name": "Goldman Sachs Hedge IND VIP ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GVP", + "name": "GSE Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWAV", + "name": "Greenwave Technology Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWGH", + "name": "GWG Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWH", + "name": "ESS Tech Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWH-WS", + "name": "ESS Tech Inc Warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWII", + "name": "Good Works II Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWIIW", + "name": "Good Works II Acquisition Corp - Warrants (01/02/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWRE", + "name": "Guidewire Software Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWRS", + "name": "Global Water Resources Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWW", + "name": "W.W. Grainger Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GWX", + "name": "SPDR S&P International Small Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GXC", + "name": "SPDR S&P China ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GXG", + "name": "Global X MSCI Colombia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GXII", + "name": "GX Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GXIIU", + "name": "GX Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GXIIW", + "name": "GX Acquisition Corp II - Warrants (17/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GXO", + "name": "GXO Logistics Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GXO-W", + "name": "GXO Logistics Inc WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GXTG", + "name": "Global X Thematic Growth ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GYB", + "name": "CABCO Series 2004101 Trust Goldman Sachs Capital I Floating Rate Callable Certificates", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GYLD", + "name": "Arrow Dow Jones Global Yield ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "GYRO", + "name": "Gyrodyne LLC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "H", + "name": "Hyatt Hotels Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HA", + "name": "Hawaiian Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAAC", + "name": "Health Assurance Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAACU", + "name": "Health Assurance Acquisition Corp - Units (1 Ord Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAACW", + "name": "Health Assurance Acquisition Corp - Warrants(12/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HACK", + "name": "ETFMG Prime Cyber Security ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAE", + "name": "Haemonetics Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAFC", + "name": "Hanmi Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAIA", + "name": "Healthcare AI Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAIAU", + "name": "Healthcare AI Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAIAW", + "name": "Healthcare AI Acquisition Corp - Warrants (07/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAIL", + "name": "SPDR S&P Kensho Smart Mobility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAIN", + "name": "Hain Celestial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAL", + "name": "Halliburton Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HALL", + "name": "Hallmark Financial Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HALO", + "name": "Halozyme Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAO", + "name": "INVESCO CHINA SMALL CAP ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAP", + "name": "VanEck Natural Resources ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAPP", + "name": "Happiness Development Group Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAPY", + "name": "Harbor Corporate Culture Leaders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HARP", + "name": "Harpoon Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HART", + "name": "IQ Healthy Hearts ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAS", + "name": "Hasbro Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HASI", + "name": "Hannon Armstrong Sustainable Infrastructure capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAUS", + "name": "Home Appreciation U.S. REIT ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAUZ", + "name": "Xtrackers International Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAWX", + "name": "iShares Currency Hedged MSCI ACWI ex U.S. ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAYN", + "name": "Haynes International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HAYW", + "name": "Hayward Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBAN", + "name": "Huntington Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBANM", + "name": "Huntington Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBANP", + "name": "Huntington Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBB", + "name": "Hamilton Beach Brands Holding Co - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBCP", + "name": "Home Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBI", + "name": "Hanesbrands Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBIO", + "name": "Harvard Bioscience Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBM", + "name": "Hudbay Minerals Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBNC", + "name": "Horizon Bancorp Inc (IN)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBP", + "name": "Huttig Building Products Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HBT", + "name": "HBT Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCA", + "name": "HCA Healthcare Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCAR", + "name": "Healthcare Services Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCARU", + "name": "Healthcare Services Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCARW", + "name": "Healthcare Services Acquisition Corp - Warrants (18/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCAT", + "name": "Health Catalyst Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCC", + "name": "Warrior Met Coal Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCCI", + "name": "Heritage-Crystal Clean Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCDI", + "name": "Harbor Custom Development Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCDIP", + "name": "Harbor Custom Development Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCDIW", + "name": "Harbor Custom Development Inc - Warrants (09/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCDIZ", + "name": "Harbor Custom Development Inc - Warrants (07/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCI", + "name": "HCI Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCIC", + "name": "Hennessy Capital Investment Corp V - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCICU", + "name": "Hennessy Capital Investment Corp V - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCICW", + "name": "Hennessy Capital Investment Corp V - Warrants (15/01/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCII", + "name": "Hudson Executive Investment Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCIIU", + "name": "Hudson Executive Investment Corp II - Units (1 Ord Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCIIW", + "name": "Hudson Executive Investment Corp II - Warrants (31/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCKT", + "name": "Hackett Group Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCM", + "name": "HUTCHMED (China) Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCMA", + "name": "Hcm Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCMAU", + "name": "Hcm Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCMAW", + "name": "Hcm Acquisition Corp - Warrants (20/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCNE", + "name": "Jaws Hurricane Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCNEU", + "name": "Jaws Hurricane Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCNEW", + "name": "Jaws Hurricane Acquisition Corp - Warrants (26/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCOM", + "name": "Hartford Schroders Commodity Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCP", + "name": "HashiCorp Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCRB", + "name": "Hartford Core Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-02-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCSG", + "name": "Healthcare Services Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCTI", + "name": "Healthcare Triangle Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCVI", + "name": "Hennessy Capital Investment Corp VI - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCVIU", + "name": "Hennessy Capital Investment Corp VI - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCVIW", + "name": "Hennessy Capital Investment Corp VI - Warrants (10/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCWB", + "name": "HCW Biologics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HCXY", + "name": "Hercules Capital Inc 625 Notes due 2033", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HD", + "name": "Home Depot Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDAW", + "name": "XTRACKERS MSCI ALL WORLD EX US HIGH DIVIDEND YIELD EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDB", + "name": "HDFC Bank Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDEF", + "name": "Xtrackers MSCI EAFE High Dividend Yield Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDG", + "name": "ProShares Hedge Replication ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDGE", + "name": "Ranger Equity Bear ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDIV", + "name": "QRAFT AI-ENHANCED U.S. HIGH DIVIDEND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDLB", + "name": "UBS AG London Branch ETRACS Monthly Pay 2X Leveraged US High Divid Low Volatility ETN Ser B 09302044", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDMV", + "name": "FIRST TRUST HORIZON MANAGED VOLATILITY DEVELOPED INTERNATIONAL ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDRO", + "name": "Defiance Next Gen H2 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDSN", + "name": "Hudson Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HDV", + "name": "iShares Core High Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HE", + "name": "Hawaiian Electric Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEAR", + "name": "Turtle Beach Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEDJ", + "name": "WisdomTree Europe Hedged Equity Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEEM", + "name": "iShares Currency Hedged MSCI Emerging Markets ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEES", + "name": "H&E Equipment Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEET", + "name": "Hartford Schroders ESG US Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEFA", + "name": "iShares Currency Hedged MSCI EAFE ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEGD", + "name": "Swan Hedged Equity US Large Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEI", + "name": "Heico Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEI-A", + "name": "Heico Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HELE", + "name": "Helen of Troy Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HELX", + "name": "Franklin Genomic Advancements ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEP", + "name": "Holly Energy Partners L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEPA", + "name": "Hepion Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEPS", + "name": "D-MARKET Electronic Services & Trading", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEQ", + "name": "John Hancock Hedged equity & Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEQT", + "name": "Simplify Hedged Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HERA", + "name": "FTAC Hera Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HERAU", + "name": "FTAC Hera Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HERAW", + "name": "FTAC Hera Acquisition Corp - Warrants (28/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HERD", + "name": "Pacer Cash Cows Fund of Funds ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HERO", + "name": "Global X Video Games & Esports ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HES", + "name": "Hess Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HESM", + "name": "Hess Midstream LP - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEWC", + "name": "iShares Currency Hedged MSCI Canada ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEWG", + "name": "iShares Currency Hedged MSCI Germany ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEWJ", + "name": "iShares Currency Hedged MSCI Japan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEWU", + "name": "iShares Currency Hedged MSCI United Kingdom ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEXO", + "name": "HEXO Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HEZU", + "name": "iShares Currency Hedged MSCI EMU ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HFBL", + "name": "Home Federal Bancorp Inc (Louisiana)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HFFG", + "name": "HF Foods Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HFGO", + "name": "Hartford Large Cap Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HFRO", + "name": "Highland Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HFRO-P-A", + "name": "Highland Income Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HFWA", + "name": "Heritage Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HFXI", + "name": "IQ 50 Percent Hedged FTSE International ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HGBL", + "name": "Heritage Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HGEN", + "name": "Humanigen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HGER", + "name": "Harbor All-Weather Inflation Focus ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HGH", + "name": "Hartford Financial Services Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HGLB", + "name": "Highland Global Allocation Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HGTY", + "name": "Hagerty Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HGTY-WS", + "name": "Hagerty Inc - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HGV", + "name": "Hilton Grand Vacations Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHC", + "name": "Howard Hughes Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHGC", + "name": "HHG Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHGCR", + "name": "HHG Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHGCU", + "name": "HHG Capital Corp - Units (1 Ord 1 War & 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHGCW", + "name": "HHG Capital Corp - Warrants (25/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHH", + "name": "ETFMG REAL ESTATE TECH ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHLA", + "name": "HH&L Acquisition Co - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHLA-U", + "name": "HH&L Acquisition Co - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHLA-WS", + "name": "HH&L Acquisition Co - Warrants (02/04/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHR", + "name": "HeadHunter Group PLC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HHS", + "name": "Harte-Hanks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HI", + "name": "Hillenbrand Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIBB", + "name": "Hibbett Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIBL", + "name": "Direxion Daily S&P 500 High Beta Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIBS", + "name": "Direxion Daily S&P 500 High Beta Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIE", + "name": "Miller/Howard High Income Equity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIFS", + "name": "Hingham Institution For Savings", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIG", + "name": "Hartford Financial Services Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIG-P-G", + "name": "Hartford Financial Services Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIGA", + "name": "H.I.G. Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIGA-U", + "name": "H.I.G. Acquisition Corp Units each consisting of one Class A ordinary share 0.0001 par value and onethird of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIGA-WS", + "name": "H.I.G. Acquisition Corp Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIHO", + "name": "Highway Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HII", + "name": "Huntington Ingalls Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIII", + "name": "Hudson Executive Investment Corp III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIIIU", + "name": "Hudson Executive Investment Corp III - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIIIW", + "name": "Hudson Executive Investment Corp III - Warrants (22/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIL", + "name": "Hill International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HILS", + "name": "Hillstream BioPharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIMS", + "name": "Hims & Hers Health Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIMX", + "name": "Himax Technologies", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIO", + "name": "Western Asset High Income Opportunity Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIPO", + "name": "Hippo Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIPO-WS", + "name": "Hippo Holdings Inc - Warrants (16/09/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIPS", + "name": "GraniteShares HIPS US High Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HISF", + "name": "First Trust High Income Strategic Focus ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HITI", + "name": "High Tide Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIVE", + "name": "HIVE Blockchain Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIW", + "name": "Highwoods Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HIX", + "name": "Western Asset High Income Fund II Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HJEN", + "name": "Direxion Hydrogen ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HJPX", + "name": "ISHARES CURRENCY HEDGED JPX-NIKKEI 400 ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HJV", + "name": "MS Structured Asset Corp SATURNS JC Penney Company Inc DebBkd Series 20071 70", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HKND", + "name": "Humankind US Stock ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HL", + "name": "Hecla Mining Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HL-P-B", + "name": "Hecla Mining Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLAH", + "name": "Hamilton Lane Alliance Holdings I Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLAHU", + "name": "Hamilton Lane Alliance Holdings I Inc - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLAHW", + "name": "Hamilton Lane Alliance Holdings I Inc - Warrants (12/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLAL", + "name": "Wahed FTSE USA Shariah ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLBZ", + "name": "Helbiz Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLBZW", + "name": "Helbiz Inc - Warrants (28/10/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLF", + "name": "Herbalife Nutrition Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLG", + "name": "Hailiang Education Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLGE", + "name": "HARTFORD LONGEVITY ECONOMY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLGN", + "name": "Heliogen Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLGN-WS", + "name": "Heliogen Inc Wt", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLI", + "name": "Houlihan Lokey Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLIO", + "name": "Helios Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLIT", + "name": "Harmonic Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLLY", + "name": "Holley Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLLY-WS", + "name": "Holley Inc - Warrants (30/11/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLM-P", + "name": "Hillman Group Capital Trust Preferred Stock", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLMN", + "name": "Hillman Solutions Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLNE", + "name": "Hamilton Lane Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLT", + "name": "Hilton Worldwide Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLTH", + "name": "Cue Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLX", + "name": "Helix Energy Solutions Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HLXA", + "name": "Helix Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMA", + "name": "Heartland Media Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMA-U", + "name": "Heartland Media Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMA-WS", + "name": "Heartland Media Acquisition Corp - Warrants(01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMC", + "name": "Honda Motor", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMCO", + "name": "HumanCo Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMCOU", + "name": "HumanCo Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMCOW", + "name": "HumanCo Acquisition Corp - Warrants (08/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMHC", + "name": "Houghton Mifflin Harcourt Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMLP", + "name": "Hoegh LNG Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMLP-P-A", + "name": "Hoegh LNG Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMN", + "name": "Horace Mann Educators Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMNF", + "name": "HMN Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMOP", + "name": "Hartford Municipal Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMPT", + "name": "Home Point Capital Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMST", + "name": "HomeStreet Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMTV", + "name": "Hemisphere Media Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HMY", + "name": "Harmony Gold Mining Co Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNDL", + "name": "Nasdaq 7HANDL Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNGR", + "name": "Hanger Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNI", + "name": "HNI Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNNA", + "name": "Hennessy Advisors Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNNAZ", + "name": "Hennessy Advisors Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNP", + "name": "Huaneng Power International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNRA-U", + "name": "HNR Acquisition Corp - Units (1 Ord & 1 War)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNRG", + "name": "Hallador Energy Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNST", + "name": "Honest Company Inc (The )", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HNW", + "name": "Pioneer Diversified High Income Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2007-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOFT", + "name": "Hooker Furnishings Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOFV", + "name": "Hall of Fame Resort & Entertainment Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOFVW", + "name": "Hall of Fame Resort & Entertainment Company - Warrants (24/01/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOG", + "name": "Harley-Davidson Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOLD", + "name": "AdvisorShares North Square McKee Core Reserves ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOLI", + "name": "Hollysys Automation Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOLX", + "name": "Hologic Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOM", + "name": "LifeGoal Home Down Payment Investment ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOMB", + "name": "Home Bancshares Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOMZ", + "name": "Hoya Capital Housing ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HON", + "name": "Honeywell International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HONE", + "name": "HarborOne Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOOD", + "name": "Robinhood Markets Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOOK", + "name": "Hookipa Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOPE", + "name": "Hope Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HORI", + "name": "Emerging Markets Horizon Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HORIU", + "name": "Emerging Markets Horizon Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HORIW", + "name": "Emerging Markets Horizon Corp - Warrants (16/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOTH", + "name": "Hoth Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOTL", + "name": "Kelly Hotel & Lodging Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOUR", + "name": "Hour Loop Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOV", + "name": "Hovnanian Enterprises Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOVNP", + "name": "Hovnanian Enterprises Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HOWL", + "name": "Werewolf Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HP", + "name": "Helmerich & Payne Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPE", + "name": "Hewlett Packard Enterprise Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPF", + "name": "John Hancock Preferred Income Fund II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPI", + "name": "John Hancock Preferred Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPK", + "name": "HighPeak Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPKEW", + "name": "HighPeak Energy Inc - Warrants (21/08/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPLT", + "name": "Home Plate Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPLTU", + "name": "Home Plate Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPLTW", + "name": "Home Plate Acquisition Corp - Warrants (30/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPP", + "name": "Hudson Pacific Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPP-P-C", + "name": "Hudson Pacific Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPQ", + "name": "HP Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1962-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPS", + "name": "John Hancock Preferred Income Fund III", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPX", + "name": "HPX Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPX-U", + "name": "HPX Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HPX-WS", + "name": "HPX Corp - Warrants (14/07/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HQH", + "name": "Tekla Healthcare Investors", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HQI", + "name": "HireQuest Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HQL", + "name": "Tekla Life Sciences Investors", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HQY", + "name": "Healthequity Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HR", + "name": "Healthcare Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HRB", + "name": "H&R Block Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HRI", + "name": "Herc Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HRL", + "name": "Hormel Foods Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HRMY", + "name": "Harmony Biosciences Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HROW", + "name": "Harrow Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HROWL", + "name": "Harrow Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HRT", + "name": "HireRight Holdings Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HRTG", + "name": "Heritage Insurance Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HRTX", + "name": "Heron Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1987-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HRZN", + "name": "Horizon Technology Finance Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSAC", + "name": "Health Sciences Acquisitions Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSAQ", + "name": "Health Sciences Acquisitions Corp 2", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSBC", + "name": "HSBC Holdings plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSC", + "name": "Harsco Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSCZ", + "name": "iShares Currency Hedged MSCI EAFE Small-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSDT", + "name": "Helius Medical Technologies Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSIC", + "name": "Henry Schein Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSII", + "name": "Heidrick & Struggles International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSKA", + "name": "Heska Corp (Restricted Voting)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSMV", + "name": "First Trust Horizon Managed Volatility Small/Mid ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSON", + "name": "Hudson Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSRT", + "name": "Hartford Short Duration ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HST", + "name": "Host Hotels & Resorts Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSTM", + "name": "Healthstream Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSTO", + "name": "Histogen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSUN", + "name": "Hartford Sustainable Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HSY", + "name": "Hershey Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HT", + "name": "Hersha Hospitality Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HT-P-C", + "name": "Hersha Hospitality Trust 6875 Series C Cumulative Redeemable Preferred Shares of Beneficial Interest", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HT-P-D", + "name": "Hersha Hospitality Trust 650 Series D Cumulative Redeemable Preferred Shares of Beneficial Interest 001 par value per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HT-P-E", + "name": "Hersha Hospitality Trust 650 Series E Cumulative Redeemable Preferred Shares of Beneficial Interest", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTA", + "name": "Healthcare Trust of America Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTAB", + "name": "Hartford Schroders Tax Aware Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTAQ", + "name": "Hunt Companies Acquisition Corp I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTAQ-U", + "name": "Hunt Companies Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTAQ-WS", + "name": "Hunt Companies Acquisition Corp I - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTBI", + "name": "HomeTrust Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTBK", + "name": "Heritage Commerce Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTBX", + "name": "Heat Biologics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTCR", + "name": "HeartCore Enterprises Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTD", + "name": "John Hancock Tax- Advantaged Dividend Income", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTEC", + "name": "ROBO Global Healthcare Technology and Innovation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTFB", + "name": "Horizon Technology Finance Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTGC", + "name": "Hercules Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTGM", + "name": "HTG Molecular Diagnostics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTH", + "name": "Hilltop Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTHT", + "name": "Huazhu Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTIA", + "name": "Healthcare Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTIBP", + "name": "Healthcare Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTLD", + "name": "Heartland Express Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTLF", + "name": "Heartland Financial USA Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTLFP", + "name": "Heartland Financial USA Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTOO", + "name": "Fusion Fuel Green Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTOOW", + "name": "Fusion Fuel Green Ltd - Warrants (01/01/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTPA", + "name": "Highland Transcend Partners I Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTPA-U", + "name": "Highland Transcend Partners I Corp Units each consisting of one Class A ordinary share and onethird of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTPA-WS", + "name": "Highland Transcend Partners I Corp - Warrants (02/12/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTRB", + "name": "Hartford Total Return Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTUS", + "name": "HULL TACTICAL US ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTY", + "name": "John Hancock TaxAdvantaged Global Shareholder Yield Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTZ", + "name": "Hertz Global Holdings Inc (New)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HTZWW", + "name": "Hertz Global Holdings Inc - Warrants (30/06/2051)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUBB", + "name": "Hubbell Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-12-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUBG", + "name": "Hub Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUBS", + "name": "HubSpot Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUDI", + "name": "Huadi International Group Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUGE", + "name": "FSD Pharma Inc - Class B - Class B (Sub Voting)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUGS", + "name": "USHG Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUGS-U", + "name": "USHG Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUGS-WS", + "name": "USHG Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUIZ", + "name": "Huize Holding Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUM", + "name": "Humana Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUMA", + "name": "Humacyte Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUMAW", + "name": "Humacyte Inc - Warrants (27/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUN", + "name": "Huntsman Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HURC", + "name": "Hurco Companies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1989-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HURN", + "name": "Huron Consulting Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUSA", + "name": "Houston American Energy Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2002-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUSN", + "name": "Hudson Capital Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUSV", + "name": "First Trust Horizon Managed Volatility Domestic ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUT", + "name": "Hut 8 Mining Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HUYA", + "name": "HUYA Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HVAL", + "name": "ALPS Hillman Active Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HVBC", + "name": "HV Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HVT", + "name": "Haverty Furniture Cos. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HVT-A", + "name": "Haverty Furniture Cos. Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWBK", + "name": "Hawthorn Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWC", + "name": "Hancock Whitney Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWCPZ", + "name": "Hancock Whitney Corporation 6.25 Subordinated Notes due 2060", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWEL", + "name": "Healthwell Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWELU", + "name": "Healthwell Acquisition Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWELW", + "name": "Healthwell Acquisition Corp I - Warrants (01/04/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWKN", + "name": "Hawkins Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWKZ", + "name": "Hawks Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWKZ-U", + "name": "Hawks Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWKZ-WS", + "name": "Hawks Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HWM", + "name": "Howmet Aerospace Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1962-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HXL", + "name": "Hexcel Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HY", + "name": "Hyster-Yale Materials Handling Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYAC", + "name": "Haymaker Acquisition Corp III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYACU", + "name": "Haymaker Acquisition Corp III - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYACW", + "name": "Haymaker Acquisition Corp III - Warrants (01/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYB", + "name": "New America High Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYBB", + "name": "iShares BB Rated Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYBL", + "name": "SPDR Blackstone High Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYD", + "name": "VanEck High Yield Muni ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2009-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYDB", + "name": "iShares High Yield Bond Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYDR", + "name": "Global X Hydrogen ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYDW", + "name": "Xtrackers Low Beta High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYEM", + "name": "VanEck Emerging Markets High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYFM", + "name": "Hydrofarm Holdings Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYG", + "name": "iShares iBoxx USD High Yield Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYGH", + "name": "iShares Interest Rate Hedged High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYGV", + "name": "FlexShares High Yield Value Scored Bond Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYHG", + "name": "ProShares High Yield-Interest Rate Hedged ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYI", + "name": "Western Asset High Yield Defined Opportunity Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYIN", + "name": "WisdomTree Alternative Income Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYLB", + "name": "Xtrackers USD High Yield Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYLD", + "name": "High Yield ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYLN", + "name": "Hyliion Holdings Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYLN-WS", + "name": "Hyliion Holdings Corp Wt Exp 10012025", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYLS", + "name": "First Trust Tactical High Yield ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYLV", + "name": "IQ S&P High Yield Low Volatility Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYMB", + "name": "SPDR Nuveen Bloomberg High Yield Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYMC", + "name": "Hycroft Mining Holding Corporation - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYMCL", + "name": "Hycroft Mining Holding Corporation - Warrants (01/01/9999)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYMCW", + "name": "Hycroft Mining Holding Corporation - Warrants(12/02/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYMCZ", + "name": "Hycroft Mining Holding Corporation - Warrants(22/10/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYMU", + "name": "BlackRock High Yield Muni Income Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYND", + "name": "WISDOMTREE NEGATIVE DURATION HIGH YIELD BOND FUND NA", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYPR", + "name": "Hyperfine Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYRE", + "name": "HyreCar Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYRM", + "name": "Xtrackers Risk Managed USD High Yield Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYS", + "name": "PIMCO 0-5 Year High Yield Corporate Bond Index Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYT", + "name": "BlackRock Corporate High Yield Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYTR", + "name": "CP High Yield Trend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYUP", + "name": "Xtrackers High Beta High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYW", + "name": "Hywin Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYXF", + "name": "iShares ESG Advanced High Yield Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYXU", + "name": "iShares International High Yield Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYZD", + "name": "WisdomTree Interest Rate Hedged High Yield Bond Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYZN", + "name": "Hyzon Motors Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HYZNW", + "name": "Hyzon Motors Inc - Warrants (02/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HZAC-U", + "name": "Horizon Acquisition Corporation Units each consisting of one Class A and onethird of one Redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HZAC-WS", + "name": "Vivid Seats Inc - Warrants (18/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HZN", + "name": "Horizon Global Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HZNP", + "name": "Horizon Therapeutics Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HZO", + "name": "Marinemax Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HZON", + "name": "Horizon Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HZON-U", + "name": "Horizon Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "HZON-WS", + "name": "Horizon Acquisition Corporation II Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAA", + "name": "IAA Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAC", + "name": "IAC InterActiveCorp. - New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IACA-WS", + "name": "Taboola.com Ltd - Warrants (29/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IACC", + "name": "ION Acquisition Corp 3 Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAE", + "name": "ING Asia Pacific High Divid Eq Inco Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAF", + "name": "Aberdeen Australia Equity Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1988-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAG", + "name": "Iamgold Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAGG", + "name": "iShares International Aggregate Bond Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAI", + "name": "iShares U.S. Broker-Dealers ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAK", + "name": "iShares U.S. Insurance ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAPR", + "name": "Innovator International Developed Power Buffer ETF April", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IART", + "name": "Integra Lifesciences Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAS", + "name": "Integral Ad Science Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAT", + "name": "iShares U.S. Regional Banks ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAU", + "name": "iShares Gold Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAUF", + "name": "ISHARES GOLD STRATEGY ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IAUM", + "name": "iShares Gold Trust Micro", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBA", + "name": "Industrias Bachoco S.A.B. DE C.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBB", + "name": "iShares Biotechnology ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2001-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBBQ", + "name": "Invesco Nasdaq Biotechnology ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBCE", + "name": "ISHARES IBONDS MAR 2023 TERM CORPORATE EX-FINANCIALS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBCP", + "name": "Independent Bank Corporation (Ionia MI)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBD", + "name": "Inspire Corporate Bond Impact ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDD", + "name": "iShares iBonds Mar 2023 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDN", + "name": "iShares iBonds Dec 2022 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDO", + "name": "iShares iBonds Dec 2023 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDP", + "name": "iShares iBonds Dec 2024 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDQ", + "name": "iShares iBonds Dec 2025 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDR", + "name": "iShares iBonds Dec 2026 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDS", + "name": "iShares iBonds Dec 2027 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDT", + "name": "ISHARES IBONDS DEC 2028 TERM CORPORATE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDU", + "name": "iShares iBonds Dec 2029 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDV", + "name": "iShares iBonds Dec 2030 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBDW", + "name": "iShares iBonds Dec 2031 Term Corporate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBER", + "name": "Ibere Pharmaceuticals - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBER-U", + "name": "Ibere Pharmaceuticals - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBER-WS", + "name": "Ibere Pharmaceuticals - Warrants (01/03/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBET", + "name": "IBET SPORTS BETTING & GAMING ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBEX", + "name": "IBEX Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBHB", + "name": "ISHARES IBONDS 2022 TERM HIGH YIELD AND INCOME ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBHC", + "name": "ISHARES IBONDS 2023 TERM HIGH YIELD AND INCOME ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBHD", + "name": "iShares iBonds 2024 Term High Yield and Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBHE", + "name": "ISHARES IBONDS 2025 TERM HIGH YIELD AND INCOME ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBHF", + "name": "ISHARES IBONDS 2026 TERM HIGH YIELD AND INCOME ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBHG", + "name": "ISHARES IBONDS 2027 TERM HIGH YIELD AND INCOME ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBHH", + "name": "iShares iBonds 2028 Term High Yield and Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBHI", + "name": "iShares iBonds 2029 Term High Yield and Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBIO", + "name": "iBio Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2008-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBKCN", + "name": "IBERIABANK Corp Dep Shs Repstg 1400th Int FxdFltg Non Cum Perp Pfd Ser D", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBKCO", + "name": "IBKCO", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBKCP", + "name": "IBKCP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBKR", + "name": "Interactive Brokers Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBM", + "name": "International Business Machines Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1962-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBM-W", + "name": "International Business Machines Corporation ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBMK", + "name": "iShares iBonds Dec 2022 Term Muni Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBML", + "name": "iShares iBonds Dec 2023 Term Muni Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBMM", + "name": "iShares iBonds Dec 2024 Term Muni Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBMN", + "name": "iShares iBonds Dec 2025 Term Muni Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBMO", + "name": "iShares iBonds Dec 2026 Term Muni Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBMP", + "name": "iShares iBonds Dec 2027 Term Muni Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBMQ", + "name": "ISHARES IBONDS DEC 2028 TERM MUNI BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBN", + "name": "ICICI Bank Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBND", + "name": "SPDR(R) BLOOMBERG BARCLAYS INTERNATIONAL CORPORATE BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBOC", + "name": "International Bancshares Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBP", + "name": "Installed Building Products Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBRX", + "name": "ImmunityBio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTB", + "name": "iShares iBonds Dec 2022 Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTD", + "name": "iShares iBonds Dec 2023 Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTE", + "name": "iShares iBonds Dec 2024 Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTF", + "name": "iShares iBonds Dec 2025 Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTG", + "name": "iShares iBonds Dec 2026 Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTH", + "name": "ISHARES IBONDS DEC 2027 TERM TREASURY ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTI", + "name": "ISHARES IBONDS DEC 2028 TERM TREASURY ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTJ", + "name": "ISHARES IBONDS DEC 2029 TERM TREASURY ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTK", + "name": "iShares iBonds Dec 2030 Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTL", + "name": "iShares iBonds Dec 2031 Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBTX", + "name": "Independent Bank Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IBUY", + "name": "Amplify Online Retail ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICAD", + "name": "Icad Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICAP", + "name": "InfraCap Equity Income Fund ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICCC", + "name": "Immucell Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICCH", + "name": "ICC Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICCM", + "name": "IceCure Medical Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICD", + "name": "Independence Contract Drilling Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICE", + "name": "Intercontinental Exchange Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICF", + "name": "iShares Cohen & Steers REIT ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2001-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICFI", + "name": "ICF International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICHR", + "name": "Ichor Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICL", + "name": "ICL Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICLK", + "name": "iClick Interactive Asia Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICLN", + "name": "iShares Global Clean Energy ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICLR", + "name": "Icon Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICMB", + "name": "Investcorp Credit Management BDC Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICNC", + "name": "Iconic Sports Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICNC-U", + "name": "Iconic Sports Acquisition Corp Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICNC-WS", + "name": "Iconic Sports Acquisition Corp - Warrants (12/10/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICOL", + "name": "iShares MSCI Colombia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICOW", + "name": "Pacer Developed Markets International Cash Cows 100 ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICPT", + "name": "Intercept Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICR-P-A", + "name": "InPoint Commercial Real Estate Income Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICSH", + "name": "BlackRock Ultra Short-Term Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICUI", + "name": "ICU Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICVT", + "name": "iShares Convertible Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ICVX", + "name": "Icosavax Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ID", + "name": "L1 IDENTITY SOLUTIONS INC.", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDA", + "name": "Idacorp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDAI", + "name": "T Stamp Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDAT", + "name": "ISHARES CLOUD 5G AND TECH ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDBA", + "name": "IDEX Biometrics ASA", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDCC", + "name": "Interdigital Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDE", + "name": "Voya Infrastructure Industrials and Materials Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDEV", + "name": "iShares Core MSCI International Developed Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDEX", + "name": "Ideanomics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDHD", + "name": "Invesco S&P International Developed High Dividend Low Volatility ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDHQ", + "name": "Invesco S&P International Developed Quality ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDIV", + "name": "U.S. Equity Cumulative Dividends Fund Series 2027", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDLB", + "name": "INVESCO FTSE INTERNATIONAL LOW BETA EQUAL WEIGHT ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDLV", + "name": "Invesco S&P International Developed Low Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDME", + "name": "International Drawdown Managed Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDMO", + "name": "Invesco S&P International Developed Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDN", + "name": "Intellicheck Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDNA", + "name": "iShares Genomics Immunology and Healthcare ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDOG", + "name": "ALPS International Sector Dividend Dogs ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDR", + "name": "Idaho Strategic Resources Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2011-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDRA", + "name": "Idera Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDRV", + "name": "ISHARES SELF-DRIVING EV AND TECH ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDT", + "name": "IDT Corp - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDU", + "name": "iShares U.S. Utilities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDV", + "name": "iShares International Select Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2007-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDW", + "name": "IDW Media Holdings Inc - Class B", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDX", + "name": "VanEck Indonesia Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDXX", + "name": "Idexx Laboratories Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IDYA", + "name": "Ideaya Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEA", + "name": "Infrastructure and Energy Alternatives Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEAWW", + "name": "Infrastructure and Energy Alternatives Inc - Warrants (20/05/2021)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IECS", + "name": "ISHARES EVOLVED U.S. CONSUMER STAPLES ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEDI", + "name": "iShares Evolved U.S. Discretionary Spending ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEF", + "name": "iShares 7-10 Year Treasury Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2002-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEFA", + "name": "iShares Core MSCI EAFE ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEFN", + "name": "ISHARES EVOLVED U.S. FINANCIALS ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEHS", + "name": "ISHARES EVOLVED U.S. HEALTHCARE STAPLES ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEI", + "name": "iShares 3-7 Year Treasury Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEIH", + "name": "iShares Evolved U.S. Innovative Healthcare ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEME", + "name": "ISHARES EVOLVED U.S. MEDIA AND ENTERTAINMENT ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEMG", + "name": "iShares Core MSCI Emerging Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEO", + "name": "iShares U.S. Oil & Gas Exploration & Production ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEP", + "name": "Icahn Enterprises L P", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1987-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IESC", + "name": "IES Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IETC", + "name": "iShares Evolved U.S. Technology ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEUR", + "name": "iShares Core MSCI Europe ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEUS", + "name": "iShares MSCI Europe Small-Cap ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEV", + "name": "iShares Europe ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEX", + "name": "Idex Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IEZ", + "name": "iShares U.S. Oil Equipment & Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFBD", + "name": "Infobird Co. Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFED", + "name": "ETRACS IFED Invest with the Fed TR Index ETN", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFF", + "name": "International Flavors & Fragrances Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFF-W", + "name": "International Flavors & Fragrances Inc Additional Shares When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFGL", + "name": "iShares International Developed Real Estate ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFIN", + "name": "InFinT Acquisition Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFIN-U", + "name": "InFinT Acquisition Corporation - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFIN-WS", + "name": "InFinT Acquisition Corporation - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFN", + "name": "The India Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFRA", + "name": "iShares U.S. Infrastructure ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFRX", + "name": "InflaRx N.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFS", + "name": "Intercorp Financial Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IFV", + "name": "First Trust Dorsey Wright International Focus 5 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IG", + "name": "PRINCIPAL INVESTMENT GRADE CORPORATE ACTIVE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGA", + "name": "Voya Global Advantage and Premium Opportunity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGAC", + "name": "IG Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGACU", + "name": "IG Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGACW", + "name": "IG Acquisition Corp - Warrants (21/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGBH", + "name": "iShares Interest Rate Hedged Long-Term Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGC", + "name": "India Globalization Capital Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGD", + "name": "Voya Global Equity Dividend and Premium Opportunity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGE", + "name": "iShares North American Natural Resources ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2001-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGEB", + "name": "ISHARES EDGE INVESTMENT GRADE ENHANCED BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGF", + "name": "iShares Global Infrastructure ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGHG", + "name": "ProShares Investment Grade-Interest Rate Hedged", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGI", + "name": "Western Asset Investment Grade Defined Opportunity Trust Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGIB", + "name": "iShares Trust iShares 5-10 Year Investment Grade Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGIC", + "name": "International General Insurance Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGICW", + "name": "International General Insurance Holdings Ltd - Warrants (17/03/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGLB", + "name": "iShares 10 Year Investment Grade Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGLD", + "name": "FT Cboe Vest Gold Strategy Target Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGM", + "name": "iShares Expanded Tech Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGMS", + "name": "IGM Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGN", + "name": "iShares North American Tech-Multimedia Networking ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGNY", + "name": "Ignyte Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGNYU", + "name": "Ignyte Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGNYW", + "name": "Ignyte Acquisition Corp - Warrants (05/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGOV", + "name": "iShares International Treasury Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGR", + "name": "CBRE Global Real Estate Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGRO", + "name": "iShares International Dividend Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-07-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGSB", + "name": "iShares Trust iShares 1-5 Year Investment Grade Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGT", + "name": "International Game Technology PLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGTA", + "name": "Inception Growth Acquisition Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGTAR", + "name": "Inception Growth Acquisition Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGTAU", + "name": "Inception Growth Acquisition Ltd - Units (1 Ord 1/2 War & 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGTAW", + "name": "Inception Growth Acquisition Ltd - Warrants(15/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGV", + "name": "iShares Expanded Tech-Software Sector ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2001-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IGZ", + "name": "NYSE ARCA LISTED TEST STOCK FOR CTS CQS", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2013-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IH", + "name": "iHuman Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHAK", + "name": "iShares Cybersecurity and Tech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHD", + "name": "Voya Emerging Markets High Dividend Equity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHDG", + "name": "WisdomTree International Hedged Quality Dividend Growth Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHE", + "name": "iShares U.S. Pharmaceuticals ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHF", + "name": "iShares U.S. Healthcare Providers ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHG", + "name": "Intercontinental Hotels Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHI", + "name": "iShares U.S. Medical Devices ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHIT", + "name": "Invesco High Income 2023 Target Term Fund of Beneficial Interest", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2016-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHRT", + "name": "iHeartMedia Inc - Class A New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHS", + "name": "IHS Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHT", + "name": "Innsuites Hospitality Trust", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHTA", + "name": "Invesco High Income 2024 Target Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2017-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHY", + "name": "VanEck International High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IHYF", + "name": "Invesco High Yield Bond Factor ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IID", + "name": "ING International High Dividend Equity", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIF", + "name": "Morgan Stanley India Investment Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1995-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIGD", + "name": "Invesco Investment Grade Defensive ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIGV", + "name": "INVESCO INVESTMENT GRADE VALUE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "III", + "name": "Information Services Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIII", + "name": "INSU Acquisition Corp III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIIIU", + "name": "INSU Acquisition Corp III - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIIIW", + "name": "INSU Acquisition Corp III - Warrants (31/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIIN", + "name": "Insteel Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIIV", + "name": "i3 Verticals Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIM", + "name": "Invesco Value Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIN", + "name": "IntriCon Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1980-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IINN", + "name": "Inspira Technologies Oxy B.H.N. Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IINNW", + "name": "Inspira Technologies Oxy B.H.N. Ltd - Warrants (30/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIPR", + "name": "Innovative Industrial Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIPR-P-A", + "name": "Innovative Industrial Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIVI", + "name": "Ii-Vi Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IIVIP", + "name": "Ii-Vi Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IJAN", + "name": "Innovator International Developed Power Buffer ETF January", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IJH", + "name": "iShares Core S&P Mid-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IJJ", + "name": "iShares S&P Mid-Cap 400 Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IJK", + "name": "iShares S&P Mid-Cap 400 Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IJR", + "name": "iShares Core S&P Small-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IJS", + "name": "iShares S&P Small-Cap 600 Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IJT", + "name": "iShares S&P Small-Cap 600 Growth ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IJUL", + "name": "Innovator International Developed Power Buffer ETF July", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IKNA", + "name": "Ikena Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IKT", + "name": "Inhibikase Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ILCB", + "name": "iShares Morningstar U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ILCG", + "name": "iShares Morningstar Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ILCV", + "name": "iShares Morningstar Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ILDR", + "name": "FIRST TRUST INNOVATION LEADERS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ILF", + "name": "iShares Latin America 40 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ILMN", + "name": "Illumina Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ILPT", + "name": "Industrial Logistics Properties Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ILTB", + "name": "ISHARES CORE 10+ YEAR USD BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMAB", + "name": "I-Mab", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMAC", + "name": "IMAC Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMACW", + "name": "IMAC Holdings Inc - Warrants (13/12/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMAQ", + "name": "International Media Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMAQR", + "name": "International Media Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMAQU", + "name": "International Media Acquisition Corp - Units (1 Ord 1 Rts & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMAQW", + "name": "International Media Acquisition Corp - Warrants (21/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMAX", + "name": "Imax Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMBI", + "name": "iMedia Brands Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMBIL", + "name": "iMedia Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMCB", + "name": "iShares Morningstar Mid-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMCC", + "name": "IM Cannabis Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMCG", + "name": "iShares Morningstar Mid-Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMCR", + "name": "Immunocore Holdings plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMCV", + "name": "iShares Morningstar Mid-Cap Value ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2004-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMFL", + "name": "Invesco International Developed Dynamic Multifactor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMGN", + "name": "Immunogen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMGO", + "name": "Imago BioSciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMKTA", + "name": "Ingles Markets Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMLP", + "name": "iPath SP MLP ETN", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMMP", + "name": "Immutep Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMMR", + "name": "Immersion Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMMX", + "name": "Immix Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMNM", + "name": "Immunome Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMO", + "name": "Imperial Oil Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1986-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMOM", + "name": "Alpha Architect International Quantitative Momentum ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMOS", + "name": "Chipmos Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMPL", + "name": "Impel NeuroPharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMPP", + "name": "Imperial Petroleum Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMPPP", + "name": "Imperial Petroleum Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMPX", + "name": "AEA-Bridges Impact Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMPX-U", + "name": "AEA-Bridges Impact Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMPX-WS", + "name": "AEA-Bridges Impact Corp - Warrants (19/09/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMRA", + "name": "Imara Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMRN", + "name": "Immuron Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMRNW", + "name": "Immuron Ltd - Warrants (12/05/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMRX", + "name": "Immuneering Corp Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMTB", + "name": "iShares Core 5-10 Year USD Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMTE", + "name": "Integrated Media Technology Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMTM", + "name": "iShares MSCI Intl Momentum Factor ET", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMTX", + "name": "Immatics N.V", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMTXW", + "name": "Immatics N.V - Warrants (01/07/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMUX", + "name": "Immunic Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMV", + "name": "IMV Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMVT", + "name": "Immunovant Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IMXI", + "name": "International Money Express Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INAB", + "name": "IN8bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INAQ", + "name": "Insight Acquisition Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INAQ-U", + "name": "Insight Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INAQ-WS", + "name": "Insight Acquisition Corp - Warrants(26/08/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INB", + "name": "Cohen Steers Global Income Builder Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INBK", + "name": "First Internet Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INBKZ", + "name": "First Internet Bancorp FXDFR NT REDEEM 30062029 USD 25", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INBX", + "name": "Inhibrx Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INCO", + "name": "Columbia India Consumer ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INCR", + "name": "INC Research Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INCY", + "name": "Incyte Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDA", + "name": "iShares MSCI India ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDB", + "name": "Independent Bank Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDF", + "name": "NIFTY INDIA FINANCIALS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDI", + "name": "Indie Semiconductor Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDIW", + "name": "Indie Semiconductor Inc - Warrants (10/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDL", + "name": "Direxion Daily MSCI India Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDO", + "name": "Indonesia Energy Corp Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDP", + "name": "Indaptus Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDS", + "name": "Pacer Benchmark Industrial Real Estate SCTR ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDT", + "name": "INDUS Realty Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INDY", + "name": "iShares India 50 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INF", + "name": "Brookfield Glbl Lstd Infrstr Incm Fd Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INFA", + "name": "Informatica Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INFI", + "name": "Infinity Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INFL", + "name": "Horizon Kinetics Inflation Beneficiaries ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INFN", + "name": "Infinera Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INFU", + "name": "InfuSystem Holdings Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INFY", + "name": "Infosys Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ING", + "name": "ING Groep N.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INGN", + "name": "Inogen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INGR", + "name": "Ingredion Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INKA", + "name": "KludeIn I Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INKAU", + "name": "KludeIn I Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INKAW", + "name": "KludeIn I Acquisition Corp - Warrants (06/01/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INKM", + "name": "SPDR SSgA Income Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INKT", + "name": "MiNK Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INM", + "name": "InMed Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INMB", + "name": "INmune Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INMD", + "name": "Inmode Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INMU", + "name": "BlackRock Intermediate Muni Income Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INN", + "name": "Summit Hotel Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INN-P-E", + "name": "Summit Hotel Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INN-P-F", + "name": "Summit Hotel Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INNO", + "name": "Harbor Disruptive Innovation ETF", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INNV", + "name": "InnovAge Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INO", + "name": "Inovio Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INOD", + "name": "Innodata Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INPX", + "name": "Inpixon", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INSE", + "name": "Inspired Entertainment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INSG", + "name": "Inseego Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INSI", + "name": "Insight Select Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INSM", + "name": "Insmed Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INSP", + "name": "Inspire Medical Systems Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INST", + "name": "Instructure Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INSW", + "name": "International Seaways Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INSW-P-A", + "name": "International Seaways Inc 850 Senior Notes due June 30 2023", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INT", + "name": "World Fuel Services Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTA", + "name": "Intapp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTC", + "name": "Intel Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1980-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTE", + "name": "Integral Acquisition Corp 1 - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTEU", + "name": "Integral Acquisition Corp 1 - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTEW", + "name": "Integral Acquisition Corp 1 - Warrants (31/05/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTF", + "name": "iShares MSCI Intl Multifactor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTG", + "name": "Intergroup Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTL", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTT", + "name": "Intest Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1997-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTU", + "name": "Intuit Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INTZ", + "name": "Intrusion Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INUV", + "name": "Inuvo Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1998-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INVA", + "name": "Innoviva Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INVE", + "name": "Identiv Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INVH", + "name": "Invitation Homes Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INVO", + "name": "INVO Bioscience Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INVZ", + "name": "Innoviz Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INVZW", + "name": "Innoviz Technologies Ltd - Warrants (05/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "INZY", + "name": "Inozyme Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IO", + "name": "ION Geophysical Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOAC", + "name": "Innovative International Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOACU", + "name": "Innovative International Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOACW", + "name": "Innovative International Acquisition Corp - Warrants (26/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOBT", + "name": "IO Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOCT", + "name": "Innovator International Developed Power Buffer ETF - October", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IONM", + "name": "Assure Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IONQ", + "name": "IonQ Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IONQ-WS", + "name": "IonQ Inc - Warrants(01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IONS", + "name": "Ionis Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOO", + "name": "iShares Global 100 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOR", + "name": "Income Opportunity Realty Investors Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOSP", + "name": "Innospec Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOT", + "name": "Samsara Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IOVA", + "name": "Iovance Biotherapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IP", + "name": "International Paper Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPA", + "name": "ImmunoPrecise Antibodies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPAC", + "name": "iShares Core MSCI Pacific ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPAR", + "name": "Inter Parfums Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPAX", + "name": "Inflection Point Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPAXU", + "name": "Inflection Point Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPAXW", + "name": "Inflection Point Acquisition Corp - Warrants (21/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPAY", + "name": "ETFMG Prime Mobile Payments ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPB", + "name": "Merrill Lynch Company Inc 60518 Index Plus Trust Certificates Series 20031", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2004-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPDN", + "name": "Professional Diversity Network Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPDP", + "name": "Dividend Performers ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPG", + "name": "Interpublic Group Of Cos. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPGP", + "name": "IPG Photonics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPHA", + "name": "Innate Pharma", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPI", + "name": "Intrepid Potash Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPKW", + "name": "Invesco International BuyBack Achievers TM ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPO", + "name": "Renaissance IPO ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOB-U", + "name": "Social Capital Hedosophia Holdings Corp II Unit 1 Cl A & 14 Wt", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOC-U", + "name": "Social Capital Hedosophia Holdings Corp III Unit 1 Com & 14 Wt", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOD", + "name": "Social Capital Hedosophia Holdings Corp IV - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOD-U", + "name": "Social Capital Hedosophia Holdings Corp IV - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOD-WS", + "name": "Social Capital Hedosophia Holdings Corp IV - Warrants (26/09/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOE-WS", + "name": "Social Capital Hedosophia Holdings Corp V Redeemable Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOF", + "name": "Social Capital Hedosophia Holdings Corp VI - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOF-U", + "name": "Social Capital Hedosophia Holdings Corp VI - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOF-WS", + "name": "Social Capital Hedosophia Holdings Corp VI Redeemable warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPOS", + "name": "RENAISSANCE INTERNATIONAL IPO ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPPP", + "name": "Preferred-Plus ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPSC", + "name": "Century Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPVA", + "name": "InterPrivate II Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPVA-U", + "name": "InterPrivate II Acquisition Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPVA-WS", + "name": "InterPrivate II Acquisition Corp Warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPVF", + "name": "InterPrivate III Financial Partners Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPVF-U", + "name": "InterPrivate III Financial Partners Inc - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPVF-WS", + "name": "InterPrivate III Financial Partners Inc - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPVI", + "name": "InterPrivate IV InfraTech Partners Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPVIU", + "name": "InterPrivate IV InfraTech Partners Inc - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPVIW", + "name": "InterPrivate IV InfraTech Partners Inc - Warrants (05/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPW", + "name": "iPower Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IPWR", + "name": "Ideal Power Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQ", + "name": "iQIYI Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQDE", + "name": "FLEXSHARES INTERNATIONAL QUALITY DIVIDEND DEFENSIVE INDEX FUND ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQDF", + "name": "FlexShares International Quality Dividend Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQDG", + "name": "WisdomTree International Quality Dividend Growth Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-07-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQDY", + "name": "FlexShares International Quality Dividend Dynamic Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQI", + "name": "Invesco Quality Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQIN", + "name": "IQ 500 International ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQLT", + "name": "iShares MSCI Intl Quality Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQM", + "name": "FRANKLIN INTELLIGENT MACHINES ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQMD", + "name": "Intelligent Medicine Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQMDU", + "name": "Intelligent Medicine Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQMDW", + "name": "Intelligent Medicine Acquisition Corp - Warrants - (05/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQSI", + "name": "IQ Candriam ESG International Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQSU", + "name": "IQ Candriam ESG US Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IQV", + "name": "IQVIA Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IR", + "name": "Ingersoll-Rand Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRBA", + "name": "iMGP RBA Responsible Global Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRBO", + "name": "iShares Robotics and Artificial Intelligence Multisector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRBT", + "name": "Irobot Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRCP", + "name": "Irsa Propiedades Comerciales S.A.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRDM", + "name": "Iridium Communications Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IREN", + "name": "Iris Energy Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRIX", + "name": "IRIDEX Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRL", + "name": "New Ireland Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRM", + "name": "Iron Mountain Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRMD", + "name": "Iradimed Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRNT", + "name": "IronNet Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRNT-WS", + "name": "IronNet Inc - Warrants (26/08/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IROQ", + "name": "IF Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRR", + "name": "Voya Natural Resources Equity Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2006-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRRX", + "name": "Integrated Rail and Resources Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRRX-U", + "name": "Integrated Rail and Resources Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRRX-WS", + "name": "Integrated Rail and Resources Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRS", + "name": "IRSA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRS-WS", + "name": "Irsa Inversiones Y Representaciones S.A. - Warrants (13/05/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRT", + "name": "Independence Realty Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRTC", + "name": "iRhythm Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IRWD", + "name": "Ironwood Pharmaceuticals Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IS", + "name": "ironSource Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISAA", + "name": "Iron Spark I Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISBC", + "name": "Investors Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISCB", + "name": "ISHARES MORNINGSTAR SMALL-CAP ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISCF", + "name": "iShares MSCI Intl Small-Cap Multifac", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISCG", + "name": "iShares Morningstar Small-Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISCV", + "name": "iShares Morningstar Small-Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISD", + "name": "PGIM High Yield Bond Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISDR", + "name": "Issuer Direct Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISDX", + "name": "Invesco RAFI Strategic Developed ex-US ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISEE", + "name": "IVERIC bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISEM", + "name": "INVESCO RAFI(TM) STRATEGIC EMERGING MARKETS ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISG", + "name": "ING Group NV Perpetual Dent Secs 6125", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISG-CL", + "name": "ING Group N.V. Perpetual Dent Secs 6.125", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISHG", + "name": "iShares -3 Year International Treasury Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISHP", + "name": "First Trust S-Network E-Commerce ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISIG", + "name": "Insignia Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISLE", + "name": "Isleworth Healthcare Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISLEW", + "name": "Isleworth Healthcare Acquisition Corp - Warrants (02/08/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISMD", + "name": "Inspire Small/Mid Cap Impact ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISO", + "name": "IsoPlexis Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISOS-WS", + "name": "Isos Acquisition Corporation Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISPC", + "name": "iSpecimen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISPO", + "name": "Inspirato Incorporated - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISPOW", + "name": "Inspirato Incorporated - Warrants (11/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISR", + "name": "Isoray Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISRA", + "name": "VANECK ISRAEL ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISRG", + "name": "Intuitive Surgical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISSC", + "name": "Innovative Solutions And Support Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISTB", + "name": "iShares Core 1-5 Year USD Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISTR", + "name": "Investar Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISUN", + "name": "iSun Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISVL", + "name": "iShares International Developed Small Cap Value Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISWN", + "name": "Amplify BlackSwan ISWN ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ISZE", + "name": "ISHARES EDGE MSCI INTL SIZE FACTOR ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IT", + "name": "Gartner Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITA", + "name": "iShares U.S. Aerospace & Defense ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITAN", + "name": "Sparkline Intangible Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITAQ", + "name": "Industrial Tech Acquisitions II Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITAQU", + "name": "Industrial Tech Acquisitions II Inc - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITAQW", + "name": "Industrial Tech Acquisitions II Inc - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITB", + "name": "iShares U.S. Home Construction ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2006-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITCB", + "name": "Itau Corpbanca", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITCB-R", + "name": "Itau CorpBanca Rights expires October 26 2021", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITCI", + "name": "Intra-Cellular Therapies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITEQ", + "name": "BlueStar Israel Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITGR", + "name": "Integer Holdings Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITHX", + "name": "ITHAX Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITHXU", + "name": "ITHAX Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITHXW", + "name": "ITHAX Acquisition Corp - Warrants (31/12/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITI", + "name": "Iteris Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITIC", + "name": "Investors Title Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITM", + "name": "VanEck Intermediate Muni ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2007-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITOS", + "name": "ITeos Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITOT", + "name": "iShares Core S&P Total U.S. Stock Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITP", + "name": "IT Tech Packaging Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITQ", + "name": "Itiquira Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITQRU", + "name": "Itiquira Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITQRW", + "name": "Itiquira Acquisition Corp - Warrants (03/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITRG", + "name": "Integra Resources Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITRI", + "name": "Itron Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITRM", + "name": "Iterum Therapeutics Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITRN", + "name": "Ituran Location And Control Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITT", + "name": "ITT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITUB", + "name": "Itau Unibanco Holding S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ITW", + "name": "Illinois Tool Works Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IUS", + "name": "Invesco RAFI Strategic US ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IUSA", + "name": "Amberwave Invest USA JSG Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IUSB", + "name": "iShares Core Total USD Bond Market ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IUSG", + "name": "iShares Core S&P U.S.Growth ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IUSS", + "name": "Invesco RAFI Strategic US Small Company ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IUSV", + "name": "iShares Core S&P U.S.Value ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2000-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVA", + "name": "Inventiva", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVAC", + "name": "Intevac Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVAL", + "name": "Alpha Architect International Quantitative Value ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVC", + "name": "Invacare Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVCB", + "name": "Investcorp Europe Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVCBU", + "name": "Investcorp Europe Acquisition Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVCBW", + "name": "Investcorp Europe Acquisition Corp I - Warrants (15/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVCP", + "name": "Swiftmerge Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVCPU", + "name": "Swiftmerge Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVCPW", + "name": "Swiftmerge Acquisition Corp - Warrants (13/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVDG", + "name": "Invesco Focused Discovery Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVE", + "name": "iShares S&P 500 Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVES", + "name": "Wedbush ETFMG Global Cloud Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVH", + "name": "Delaware Ivy High Income Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVLC", + "name": "Invesco US Large Cap Core ESG ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVLU", + "name": "iShares MSCI Intl Value Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVOG", + "name": "Vanguard S&P Mid-Cap 400 Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVOL", + "name": "Quadratic Interest Rate Volatility And Inflation Hedge ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVOO", + "name": "Vanguard S&P Mid-Cap 400 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVOV", + "name": "Vanguard S&P Mid-Cap 400 Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVR", + "name": "Invesco Mortgage Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVR-P-B", + "name": "Invesco Mortgage Capital Inc Preferred Series B Cum Fxd to Fltg", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVR-P-C", + "name": "Invesco Mortgage Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVRA", + "name": "Invesco Real Assets ESG ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVSG", + "name": "Invesco Select Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVT", + "name": "InvenTrust Properties Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVV", + "name": "iShares Core S&P 500 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVW", + "name": "iShares S&P 500 Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IVZ", + "name": "Invesco Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWB", + "name": "iShares Russell 1000 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWC", + "name": "iShares Micro-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWD", + "name": "iShares Russell 1000 Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWDL", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWF", + "name": "iShares Russell 1000 Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWFH", + "name": "ISHARES VIRTUAL WORK AND LIFE MULTISECTOR ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWFL", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWIN", + "name": "Amplify Inflation Fighter ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWL", + "name": "iShares Russell Top 200 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWM", + "name": "iShares Russell 2000 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWML", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWN", + "name": "iShares Russell 2000 Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWO", + "name": "iShares Russell 2000 Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWP", + "name": "iShares Russell Mid-Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWR", + "name": "iShares Russell Mid-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWS", + "name": "iShares Russell Mid-Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWV", + "name": "iShares Russell 3000 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWX", + "name": "iShares Russell Top 200 Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IWY", + "name": "iShares Russell Top 200 Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IX", + "name": "Orix Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXAQ", + "name": "IX Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXAQU", + "name": "IX Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXAQW", + "name": "IX Acquisition Corp - Warrants (31/07/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXC", + "name": "iShares Global Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXG", + "name": "iShares Global Financials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXHL", + "name": "Incannex Healthcare Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXJ", + "name": "iShares Global Healthcare ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXN", + "name": "iShares Global Tech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXP", + "name": "iShares Global Comm Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXSE", + "name": "WISDOMTREE INDIA EX-STATE-OWNED ENTERPRISES FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IXUS", + "name": "iShares Core MSCI Total International Stock ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYC", + "name": "iShares U.S. Consumer Discretionary ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYE", + "name": "iShares U.S. Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYF", + "name": "iShares U.S. Financials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYG", + "name": "iShares U.S. Financial Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYH", + "name": "iShares U.S. Healthcare ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYJ", + "name": "iShares U.S. Industrials ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2000-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYK", + "name": "iShares U.S. Consumer Staples ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYLD", + "name": "iShares Morningstar Multi-Asset Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYM", + "name": "iShares U.S. Basic Materials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYR", + "name": "iShares U.S. Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYT", + "name": "iShares U.S. Transportation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2003-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYW", + "name": "iShares U.S. Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYY", + "name": "iShares Dow Jones U.S. ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IYZ", + "name": "iShares U.S. Telecommunications ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2000-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IZEA", + "name": "IZEA Worldwide Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "IZRL", + "name": "ARK Israel Innovative Technology ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "J", + "name": "Jacobs Engineering Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAAA", + "name": "Janus Henderson AAA CLO ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JACK", + "name": "Jack In The Box Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAGG", + "name": "JPMorgan U.S. Aggregate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAGX", + "name": "Jaguar Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAKK", + "name": "Jakks Pacific Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAMF", + "name": "Jamf Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAN", + "name": "JanOne Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JANX", + "name": "Janux Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JANZ", + "name": "TRUESHARES STRUCTURED OUTCOME (JANUARY) ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAQC", + "name": "Jupiter Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAQCU", + "name": "Jupiter Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAQCW", + "name": "Jupiter Acquisition Corp - Warrants (04/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JATT", + "name": "JATT Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JATT-U", + "name": "JATT Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JATT-WS", + "name": "JATT Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAVA", + "name": "JPMorgan Active Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JAZZ", + "name": "Jazz Pharmaceuticals plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBBB", + "name": "Janus Henderson B-BBB CLO ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBGS", + "name": "JBG SMITH Properties", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBHT", + "name": "J.B. Hunt Transport Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBI", + "name": "Janus International Group Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBI-WS", + "name": "Janus International Group Inc Warrants each exercisable for one share of Common Stock at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBK", + "name": "Lehman ABS 350 350 Adjustable Corp Backed Tr Certs GS Cap I", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBL", + "name": "Jabil Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBLU", + "name": "Jetblue Airways Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBN", + "name": "Select Asset Inc Select Asset Inc on behalf of Corporate Backed Callable Trust Certificates JC Penney Debenture Backed Series 20071 Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBR", + "name": "Select Asset Inc Corporate Backed Callable Trust Certificates JC Penney DebentureBacked Series 20061 Class A1", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBSS", + "name": "Sanfilippo (John B.) & Son Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JBT", + "name": "John Bean Technologies Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCAP-P-B", + "name": "Jernigan Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCE", + "name": "Nuveen Core Equity Alpha Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCI", + "name": "Johnson Controls International plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCIC", + "name": "Jack Creek Investment Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCICU", + "name": "Jack Creek Investment Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCICW", + "name": "Jack Creek Investment Corp - Warrants (01/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCO", + "name": "Nuveen Credit Opportunities 2022 Target Term Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCPB", + "name": "JPMorgan Core Plus Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCS", + "name": "Communications Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCTCF", + "name": "Jewett-Cameron Trading Co. Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JCTR", + "name": "JPMorgan Carbon Transition U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JD", + "name": "JD.com Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JDD", + "name": "Nuveen Diversified Dividend and Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JDIV", + "name": "JPMorgan U.S. Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JDST", + "name": "Direxion Daily Junior Gold Miners Index Bear 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JEF", + "name": "Jefferies Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JELD", + "name": "JELD-WEN Holding Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JEMA", + "name": "JPMorgan ActiveBuilders Emerging Markets Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JEMD", + "name": "Nuveen Emerging Markets Debt 2022 Target Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2017-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JEPI", + "name": "JPMorgan Equity Premium Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JEQ", + "name": "Aberdeen Japan Equity Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JETS", + "name": "ESS U.S.Global Jets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JFIN", + "name": "Jiayin Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JFR", + "name": "Nuveen Floating Rate Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JFU", + "name": "9F Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JFWD", + "name": "Jacob Forward ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JG", + "name": "Aurora Mobile Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JGGCU", + "name": "Jaguar Global Growth Corp I - Units (1 Ord Class A 1 Right & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JGH", + "name": "Nuveen Global High Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JGLD", + "name": "Amplify Pure Junior Gold Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHAA", + "name": "Nuveen Corporate Income 2023 Target Term Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHB", + "name": "Nuveen Corporate Income November 2021 Target Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2016-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHCB", + "name": "John Hancock Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHCS", + "name": "John Hancock Multifactor Media and Communications ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHEM", + "name": "John Hancock Multifactor Emerging Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHG", + "name": "Janus Henderson Group plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHI", + "name": "John Hancock Investors Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMA", + "name": "JOHN HANCOCK MULTIFACTOR MATERIALS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMB", + "name": "John Hancock Mortgage-Backed Securities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMC", + "name": "John Hancock Multifactor Consumer Discretionary ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMD", + "name": "John Hancock Multifactor Developed International ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHME", + "name": "John Hancock Multifactor Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMF", + "name": "John Hancock Multifactor Financials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMH", + "name": "JOHN HANCOCK MULTIFACTOR HEALTHCARE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMI", + "name": "John Hancock Multifactor Industrials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHML", + "name": "John Hancock Multifactor Large Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMM", + "name": "John Hancock Multifactor Mid Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMS", + "name": "John Hancock Multifactor Consumer Staples ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMT", + "name": "John Hancock Multifactor Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHMU", + "name": "John Hancock Multifactor Utilities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHPI", + "name": "JOHN HANCOCK PREFERRED INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHS", + "name": "John Hancock Income Securities Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHSC", + "name": "John Hancock Multifactor Small Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHX", + "name": "James Hardie Industries plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JHY", + "name": "Nuveen High Income 2020 Target Term Fund Com", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2015-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JIB", + "name": "Janus Henderson Sustainable & Impact Core Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JIDA", + "name": "JPMORGAN ACTIVEBUILDERS INTERNATIONAL EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JIG", + "name": "JPMorgan International Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JIGB", + "name": "JPMORGAN CORPORATE BOND RESEARCH ENHANCED ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JILL", + "name": "J.Jill Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJA", + "name": "Barclays Bank PLC", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJC", + "name": "Barclays Bank PLC", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJE", + "name": "iPathA Series B Bloomberg Energy Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJG", + "name": "iPathA Series B Bloomberg Grains Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJM", + "name": "iPathA Series B Bloomberg Industrial Metals Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJN", + "name": "Barclays Bank PLC", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJP", + "name": "iPathA Series B Bloomberg Precious Metals Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJS", + "name": "iPathA Series B Bloomberg Softs Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJSF", + "name": "J&J Snack Foods Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJT", + "name": "iPathA Series B Bloomberg Tin Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JJU", + "name": "iPathA Series B Bloomberg Aluminum Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JKHY", + "name": "Jack Henry & Associates Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JKS", + "name": "JinkoSolar Holding Co. Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JLL", + "name": "Jones Lang Lasalle Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JLS", + "name": "Nuveen Mortgage Opportunity Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMAC", + "name": "Maxpro Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMACU", + "name": "Maxpro Capital Acquisition Corp - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMACW", + "name": "Maxpro Capital Acquisition Corp - Warrants (27/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMBS", + "name": "Janus Henderson Mortgage-Backed Securities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMIA", + "name": "Jumia Technologies Ag", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMIN", + "name": "JPMorgan U.S. Minimum Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMM", + "name": "Nuveen Multi-Market Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMOM", + "name": "JPMorgan U.S. Momentum Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMST", + "name": "JPMorgan Ultra-Short Municipal Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JMUB", + "name": "JPMorgan Municipal ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JNCE", + "name": "Jounce Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JNJ", + "name": "Johnson & Johnson", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JNK", + "name": "SPDR Bloomberg High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JNPR", + "name": "Juniper Networks Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JNUG", + "name": "Direxion Daily Junior Gold Miners Index Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JO", + "name": "iPathA Series B Bloomberg Coffee Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOAN", + "name": "JOANN Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOB", + "name": "GEE Group Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOBS", + "name": "51Job Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOBY", + "name": "Joby Aviation Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOBY-WS", + "name": "Joby Aviation Inc - Warrants (16/09/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOE", + "name": "St. Joe Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOET", + "name": "Virtus Terranova U.S. Quality Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOF", + "name": "Japan Smaller Capitalization Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOFF", + "name": "Joff Fintech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOFFU", + "name": "Joff Fintech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOFFW", + "name": "Joff Fintech Acquisition Corp - Warrants (25/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOJO", + "name": "ATAC Credit Rotation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOUT", + "name": "Johnson Outdoors Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JOYY", + "name": "Infusive Compounding Global Equities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JP", + "name": "Jupai Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPC", + "name": "Nuveen Preferred & Income Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPEM", + "name": "JPMORGAN DIVERSIFIED RETURN EMERGING MARKETS EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPHY", + "name": "JPMorgan High Yield Research Enhanced ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPI", + "name": "Nuveen Preferred and Income Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPIB", + "name": "JPMorgan International Bond Opportunities ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-07-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPIE", + "name": "JPMorgan Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPIN", + "name": "JPMorgan Diversified Return International Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM", + "name": "JPMorgan Chase & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM-P-C", + "name": "JPMorgan Chase & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM-P-D", + "name": "JPMorgan Chase & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM-P-F", + "name": "J P Morgan Chase Company Depositary Shares Series Y", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM-P-F-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM-P-G", + "name": "JPMorgan Chase & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM-P-J", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM-P-K", + "name": "JPMorgan Chase & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM-P-L", + "name": "JPMorgan Chase & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPM-P-M", + "name": "J P Morgan Chase & Co Depositary Shares Series M", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPMB", + "name": "JPMORGAN USD EMERGING MARKETS SOVEREIGN BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPME", + "name": "JPMorgan Diversified Return U.S. Mid Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPS", + "name": "Nuveen Preferred & Income Securities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPSE", + "name": "JPMorgan Diversified Return U.S. Small Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPST", + "name": "JPMorgan Ultra-Short Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPT", + "name": "Nuveen Preferred and Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2017-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPUS", + "name": "JPMorgan Diversified Return U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JPXN", + "name": "ISHARES JPX-NIKKEI 400 ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JQC", + "name": "Nuveen Credit Strategies Incom", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JQUA", + "name": "JPMorgan U.S. Quality Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JRE", + "name": "JANUS HENDERSON U.S. REAL ESTATE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JRI", + "name": "Nuveen Real Asset Income and Growth Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JRNY", + "name": "ALPS Global Travel Beneficiaries ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JRO", + "name": "Nuveen Floating Rate Income Opportunity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JRS", + "name": "Nuveen Real Estate Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JRSH", + "name": "Jerash holdings (US) Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JRVR", + "name": "James River Group Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JSCP", + "name": "JPMorgan Short Duration Core Plus ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JSD", + "name": "Nuveen Short Duration Credit Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JSM", + "name": "Navient Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JSMD", + "name": "Janus Henderson Small/Mid Cap Growth Alpha ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JSML", + "name": "Janus Henderson Small Cap Growth Alpha ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JSPR", + "name": "Jasper Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JSPRW", + "name": "Jasper Therapeutics Inc - Warrants (24/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JSTC", + "name": "ADASINA SOCIAL JUSTICE ALL CAP GLOBAL ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JT", + "name": "Jianpu Technology Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JTA", + "name": "Nuveen TaxAdvantaged Ttl Rtrn Strtgy Fd", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JTD", + "name": "Nuveen Tax-Advantaged Dividend Growth Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUGG", + "name": "Jaws Juggernaut Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUGGU", + "name": "Jaws Juggernaut Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUGGW", + "name": "Jaws Juggernaut Acquisition Corp - Warrants (17/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JULZ", + "name": "TRUESHARES STRUCTURED OUTCOME (JULY) ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUN", + "name": "Juniper II Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUN-U", + "name": "Juniper II Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUN-WS", + "name": "Juniper II Corp - Warrants(01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUNZ", + "name": "TrueShares Structured Outcome (June) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUPW", + "name": "Jupiter Wellness Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUPWW", + "name": "Jupiter Wellness Inc - Warrants (01/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUSA", + "name": "JPMORGAN ACTIVEBUILDERS U.S. LARGE CAP EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JUST", + "name": "Goldman Sachs Just Us Large Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JVA", + "name": "Coffee Holding Co Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JVAL", + "name": "JPMorgan U.S. Value Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JW-A", + "name": "John Wiley & Sons Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JW-B", + "name": "John Wiley & Sons Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JWAC", + "name": "Jupiter Wellness Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JWACR", + "name": "Jupiter Wellness Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JWEL", + "name": "Jowell Global Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JWN", + "name": "Nordstrom Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JWS-U", + "name": "Jaws Acquisition Corp - Units (1 Ord Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JWSM", + "name": "Jaws Mustang Acquisition Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JWSM-U", + "name": "Jaws Mustang Acquisition Corporation - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JWSM-WS", + "name": "Jaws Mustang Acquisition Corporation - Warrants (30/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JXI", + "name": "iShares Global Utilities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JXN", + "name": "Jackson Financial Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JXN-W", + "name": "Jackson Financial Inc Class A Whenissued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JYAC", + "name": "Jiya Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JYNT", + "name": "Joint Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JZRO", + "name": "Janus Henderson Net Zero Transition Resources ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "JZXN", + "name": "Jiuzi Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "K", + "name": "Kellogg Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KACL", + "name": "Kairous Acquisition Corp Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KACLR", + "name": "Kairous Acquisition Corp Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KACLU", + "name": "Kairous Acquisition Corp Ltd - Units (1 Ord Share & 1/2 War & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KACLW", + "name": "Kairous Acquisition Corp Ltd - Warrants (15/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAHC", + "name": "KKR Acquisition Holdings I Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAHC-U", + "name": "KKR Acquisition Holdings I Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAHC-WS", + "name": "KKR Acquisition Holdings I Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAI", + "name": "Kadant Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAII", + "name": "Kismet Acquisition Two Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAIIU", + "name": "Kismet Acquisition Two Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAIIW", + "name": "Kismet Acquisition Two Corp - Warrants (10/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAIR", + "name": "Kairos Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAIRU", + "name": "Kairos Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAIRW", + "name": "Kairos Acquisition Corp - Warrants (07/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KALA", + "name": "Kala Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KALL", + "name": "KraneShares MSCI China All Shares Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KALU", + "name": "Kaiser Aluminum Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KALV", + "name": "KalVista Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAMN", + "name": "Kaman Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAPR", + "name": "Innovator U.S. Small Cap Power Buffer ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAR", + "name": "KAR Auction Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KARO", + "name": "Karooooo Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KARS", + "name": "KraneShares Electric Vehicles and Future Mobility Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KAVL", + "name": "Kaival Brands Innovations Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KB", + "name": "KB Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBA", + "name": "KraneSharesBosera MSCI China A 50 Connect Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBAL", + "name": "Kimball International Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBE", + "name": "SPDR S&P Bank ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBH", + "name": "KB Home", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBND", + "name": "KRANESHARES BLOOMBERG BARCLAYS CHINA BOND INCLUSION INDEX ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBNT", + "name": "Kubient Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBNTW", + "name": "Kubient Inc - Warrants (09/07/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBR", + "name": "KBR Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBUY", + "name": "KraneShares CICC China Consumer Leaders Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBWB", + "name": "Invesco KBW Bank ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBWD", + "name": "Invesco KBW High Dividend Yield Financial ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBWP", + "name": "Invesco KBW Property & Casualty Insurance ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBWR", + "name": "Invesco KBW Regional Banking ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KBWY", + "name": "Invesco KBW Premium Yield Equity REIT ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KC", + "name": "Kingsoft Cloud Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KCAC", + "name": "Kensington Capital Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KCAC-U", + "name": "Kensington Capital Acquisition Corp IV - Units (1 Ord Class A & One Class 1 War & One Class 2 war)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KCAC-WS", + "name": "Kensington Capital Acquisition Corp II - Warrants (23/02/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KCCA", + "name": "Kraneshares California Carbon Allowance Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KCE", + "name": "SPDR S&P Capital Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KCGI", + "name": "Kensington Capital Acquisition Corp V - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KCGI-U", + "name": "Kensington Capital Acquisition Corp V - Units (1 Ord Share Class A & 3/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KCGI-WS", + "name": "Kensington Capital Acquisition Corp V Redeemable warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KD", + "name": "Kyndryl Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KD-W", + "name": "Kyndryl Holdings Inc WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KDNY", + "name": "Chinook Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KDP", + "name": "Keurig Dr Pepper Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KDRN", + "name": "KINGSBARN TACTICAL BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KE", + "name": "Kimball Electronics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEJI", + "name": "GLOBAL X CHINA DISRUPTION ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KELYA", + "name": "Kelly Services Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KELYB", + "name": "Kelly Services Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEMQ", + "name": "KraneShares Emerging Markets Consumer Technology Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEMX", + "name": "KraneShares MSCI Emerging Markets ex China Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEN", + "name": "Kenon Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEP", + "name": "Korea Electric Power", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEQU", + "name": "Kewaunee Scientific Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KERN", + "name": "Akerna Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KERNW", + "name": "Akerna Corp - Warrants (30/01/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KESG", + "name": "KraneShares MSCI China ESG Leaders Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEUA", + "name": "KraneShares European Carbon Allowance Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEX", + "name": "Kirby Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEY", + "name": "Keycorp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEY-P-I", + "name": "Keycorp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEY-P-J", + "name": "Keycorp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEY-P-K", + "name": "Keycorp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KEYS", + "name": "Keysight Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KF", + "name": "Korea Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KFFB", + "name": "Kentucky First Federal Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KFRC", + "name": "Kforce Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KFS", + "name": "Kingsway Financial Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KFVG", + "name": "KraneShares CICC China 5G and Semiconductor Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KFY", + "name": "Korn Ferry", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KFYP", + "name": "KraneShares CICC China Leaders 100 Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KGC", + "name": "Kinross Gold Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KGHG", + "name": "KraneShares Global Carbon Transformation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KGRN", + "name": "KraneShares MSCI China Clean Technology Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KGRO", + "name": "KraneShares China Innovation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KHC", + "name": "Kraft Heinz Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KHYB", + "name": "KraneShares Asia Pacific High Income Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIDS", + "name": "OrthoPediatrics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIE", + "name": "SPDR S&P Insurance ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIII", + "name": "Kismet Acquisition Three Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIIIU", + "name": "Kismet Acquisition Three Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIIIW", + "name": "Kismet Acquisition Three Corp - Warrants (30/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIM", + "name": "Kimco Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIM-P-J", + "name": "Kimco Realty Corporation Depositary Sh Repstg 11000th Pfd CL J", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIM-P-L", + "name": "Kimco Realty Corporation Class L Depositary Shares each of which represents a oneone thousandth fractional interest in a share of 5125 Class L Cumulative Red", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIM-P-M", + "name": "Kimco Realty Corporation Class M Depositary Shares each of which represents a oneone thousandth fractional interest in a share of 525 Class M Cumulative Rede", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIND", + "name": "Nextdoor Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KINS", + "name": "Kingstone Cos. Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KINZ", + "name": "KINS Technology Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KINZU", + "name": "KINS Technology Group Inc - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KINZW", + "name": "KINS Technology Group Inc - Warrants (14/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIO", + "name": "KKR Income Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIQ", + "name": "Kelso Technologies Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1996-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KIRK", + "name": "Kirkland`s Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KJAN", + "name": "Innovator U.S. Small Cap Power Buffer ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KJUL", + "name": "Innovator U.S. Small Cap Power Buffer ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KKR", + "name": "KKR & Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KKR-P-C", + "name": "KKR & Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KKRS", + "name": "KKR Group Finance Co. IX LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLAC", + "name": "KLA Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLAQ", + "name": "KL Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLAQU", + "name": "KL Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLAQW", + "name": "KL Acquisition Corp - Warrants (06/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLCD", + "name": "KFA LARGE CAP QUALITY DIVIDEND INDEX ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLDO", + "name": "Kaleido Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLDW", + "name": "KNOWLEDGE LEADERS DEVELOPED WORLD ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLIC", + "name": "Kulicke & Soffa Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLNE", + "name": "Direxion Daily Global Clean Energy Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLR", + "name": "Kaleyra Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLR-WS", + "name": "Kaleyra Inc - Warrants (06/03/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLTR", + "name": "Kaltura Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KLXE", + "name": "KLX Energy Services Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMB", + "name": "Kimberly-Clark Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMDA", + "name": "Kamada Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMED", + "name": "KRANESHARES EMERGING MARKETS HEALTHCARE INDEX ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMF", + "name": "Kayne Anderson NextGen Energy & Infrastructure Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMI", + "name": "Kinder Morgan Inc - Class P", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMLM", + "name": "KFA Mount Lucas Index Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMPB", + "name": "Kemper Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMPH", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMPR", + "name": "Kemper Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMT", + "name": "Kennametal Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KMX", + "name": "Carmax Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KN", + "name": "Knowles Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNBE", + "name": "KnowBe4 Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNDI", + "name": "Kandi Technologies Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNG", + "name": "FT Cboe Vest S&P 500 Dividend Aristocrats Target Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNGS", + "name": "UPHOLDINGS Compound Kings ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNOP", + "name": "KNOT Offshore Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNSA", + "name": "Kiniksa Pharmaceuticals Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNSL", + "name": "Kinsale Capital Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNSW", + "name": "KnightSwan Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNSW-U", + "name": "KnightSwan Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNSW-WS", + "name": "KnightSwan Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNTE", + "name": "Kinnate Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNTK", + "name": "Kinetik Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KNX", + "name": "Knight-Swift Transportation Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KO", + "name": "Coca-Cola Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1962-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOCG", + "name": "FIS Knights of Columbus Global Belief ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOCT", + "name": "Innovator U.S. Small Cap Power Buffer ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOD", + "name": "Kodiak Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KODK", + "name": "Eastman Kodak Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOF", + "name": "Coca-Cola Femsa S.A.B. DE C.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOIN", + "name": "Capital Link Global Fintech Leaders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOKU", + "name": "Xtrackers MSCI Kokusai Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOLD", + "name": "ProShares UltraShort Bloomberg Natural Gas", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOMP", + "name": "SPDR S&P Kensho New Economies Composite ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KONG", + "name": "Formidable Fortress ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOP", + "name": "Koppers Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOPN", + "name": "Kopin Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KORE", + "name": "Kore Group Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KORE-WS", + "name": "Kore Group Holdings Inc - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KORP", + "name": "American Century Diversified Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KORU", + "name": "Direxion Daily South Korea Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOS", + "name": "Kosmos Energy Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KOSS", + "name": "Koss Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KPLT", + "name": "Katapult Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KPLTW", + "name": "Katapult Holdings Inc - Warrants (09/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KPRX", + "name": "Kiora Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KPTI", + "name": "Karyopharm Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KR", + "name": "Kroger Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1977-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRBN", + "name": "KraneShares Global Carbon Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRBP", + "name": "Kiromic BioPharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRC", + "name": "Kilroy Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRE", + "name": "SPDR S&P Regional Banking ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KREF", + "name": "KKR Real Estate Finance Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KREF-P-A", + "name": "KKR Real Estate Finance Trust Inc 6.50 Series A Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRG", + "name": "Kite Realty Group Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRKR", + "name": "36Kr Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRMA", + "name": "Global X Conscious Companies ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRMD", + "name": "Repro-Med Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRNL", + "name": "Kernel Group Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRNLU", + "name": "Kernel Group Holdings Inc - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRNLW", + "name": "Kernel Group Holdings Inc - Warrants (02/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRNT", + "name": "Kornit Digital Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRNY", + "name": "Kearny Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRO", + "name": "Kronos Worldwide Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRON", + "name": "Kronos Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KROP", + "name": "Global X AgTech & Food Innovation ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KROS", + "name": "Keros Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRP", + "name": "Kimbell Royalty Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRT", + "name": "Karat Packaging Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRTX", + "name": "Karuna Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRUS", + "name": "Kura Sushi USA Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KRYS", + "name": "Krystal Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSA", + "name": "iShares MSCI Saudi Arabia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSCD", + "name": "KFA SMALL CAP QUALITY DIVIDEND INDEX ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSCP", + "name": "Knightscope Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSI", + "name": "Kadem Sustainable Impact Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSICU", + "name": "Kadem Sustainable Impact Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSICW", + "name": "Kadem Sustainable Impact Corp - Warrants (17/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSM", + "name": "DWS Strategic Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSPN", + "name": "Kaspien Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSS", + "name": "Kohl`s Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KSTR", + "name": "KraneShares SSE STAR Market 50 Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KT", + "name": "KT Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTB", + "name": "Kontoor Brands Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTCC", + "name": "Key Tronic Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTEC", + "name": "KraneShares Hang Seng TECH Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTF", + "name": "DWS Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTH", + "name": "Structures Products Cp 8 CorTS Issued by Peco Energy Cap Tr II Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTN", + "name": "Structured Products Corp 8205 CorTS 8205 Corporate Backed Trust Securities CorTS", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTOS", + "name": "Kratos Defense & Security Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTP", + "name": "Corts 7625 Pfd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTRA", + "name": "Kintara Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTTA", + "name": "Pasithea Therapeutics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KTTAW", + "name": "Pasithea Therapeutics Corp - Warrants (11/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KUKE", + "name": "Kuke Music Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KULR", + "name": "KULR Technology Group Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KURA", + "name": "Kura Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KURE", + "name": "KraneShares MSCI All China Health Care Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KVHI", + "name": "KVH Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KVLE", + "name": "KFA Value Line Dynamic Core Equity Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KVSA", + "name": "Khosla Ventures Acquisition Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KVSC", + "name": "Khosla Ventures Acquisition Co III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KW", + "name": "Kennedy-Wilson Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KWAC", + "name": "Kingswood Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KWAC-U", + "name": "Kingswood Acquisition Corp - Units (1 Ord Share Class A & 3/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KWAC-WS", + "name": "Kingswood Acquisition Corp - Warrants (01/05/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KWEB", + "name": "KraneShares CSI China Internet ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KWR", + "name": "Quaker Houghton", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KWT", + "name": "iShares MSCI Kuwait ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KXI", + "name": "iShares Global Consumer Staples ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KXIN", + "name": "Kaixin Auto Holdings", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KYCH", + "name": "Keyarch Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KYCHR", + "name": "Keyarch Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KYCHU", + "name": "Keyarch Acquisition Corp - Units (1 Ord Class A1Rights & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KYCHW", + "name": "Keyarch Acquisition Corp - Warrants (24/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KYMR", + "name": "Kymera Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KYN", + "name": "Kayne Anderson Energy Infrastructure Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KYN-P-F", + "name": "Kayne Anderson MLP Investment Company 350 Series F Mandatory Redeemable Preferred Shares 2500 Liquidation Preference per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KYN-P-F-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KZIA", + "name": "Kazia Therapeutics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "KZR", + "name": "Kezar Life Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "L", + "name": "Loews Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAAA", + "name": "Lakeshore Acquisition I Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAAAU", + "name": "Lakeshore Acquisition I Corp - Units (1 Ord Share & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAAAW", + "name": "Lakeshore Acquisition I Corp - Warrants (04/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LABD", + "name": "Direxion Daily S&P Biotech Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LABP", + "name": "Landos Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LABU", + "name": "Direxion Daily S&P Biotech Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAC", + "name": "Lithium Americas Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAD", + "name": "Lithia Motors Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LADR", + "name": "Ladder Capital Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAIX", + "name": "LAIX Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAKE", + "name": "Lakeland Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAMR", + "name": "Lamar Advertising Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LANC", + "name": "Lancaster Colony Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAND", + "name": "Gladstone Land Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LANDM", + "name": "Gladstone Land Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LANDO", + "name": "Gladstone Land Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LARK", + "name": "Landmark Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LASR", + "name": "nLIGHT Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LATG", + "name": "LatAmGrowth SPAC - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LATGU", + "name": "LatAmGrowth SPAC - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LATGW", + "name": "LatAmGrowth SPAC - Warrants (20/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAUR", + "name": "Laureate Education Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAW", + "name": "CS Disco Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAWS", + "name": "Lawson Products Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAX", + "name": "8i Acquisition 2 Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAXXR", + "name": "8i Acquisition 2 Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAXXU", + "name": "8i Acquisition 2 Corp - Unit (1 Ordinary share & 1 Wrt & 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAXXW", + "name": "8i Acquisition 2 Corp - Warrants (24/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAZ", + "name": "Lazard Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAZR", + "name": "Luminar Technologies Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LAZY", + "name": "Lazydays Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBAI", + "name": "Lakeland Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBAY", + "name": "Leatherback Long/Short Alternative Yield ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBBBU", + "name": "Lakeshore Acquisition II Corp - Units (1 Ord 1/2 War & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBC", + "name": "Luther Burbank Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBPH", + "name": "Longboard Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBPS", + "name": "4d Pharma Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBPSW", + "name": "4d Pharma Plc - Warrants (22/02/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBRDA", + "name": "Liberty Broadband Corp - Series A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBRDK", + "name": "Liberty Broadband Corp - Series C", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBRDP", + "name": "Liberty Broadband Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBRT", + "name": "Liberty Oilfield Services Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBTYA", + "name": "Liberty Global plc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBTYB", + "name": "Liberty Global plc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LBTYK", + "name": "Liberty Global plc - Class C", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LC", + "name": "LendingClub Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCA", + "name": "Landcadia Holdings IV Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCAA", + "name": "L Catterton Asia Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCAAU", + "name": "L Catterton Asia Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCAAW", + "name": "L Catterton Asia Acquisition Corp - Warrants (08/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCAHU", + "name": "Landcadia Holdings IV Inc - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCAHW", + "name": "Landcadia Holdings IV Inc - Warrants (19/03/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCAP", + "name": "Lionheart Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCAPU", + "name": "Lionheart Acquisition Corp II - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCAPW", + "name": "Lionheart Acquisition Corp II - Warrants (13/08/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCG", + "name": "STERLING CAPITAL FOCUS EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCI", + "name": "Lannett Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCID", + "name": "Lucid Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCII", + "name": "LCI Industries", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCNB", + "name": "LCNB Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCR", + "name": "Leuthold Core ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCTD", + "name": "BlackRock World ex U.S. Carbon Transition Readiness ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCTU", + "name": "BlackRock U.S. Carbon Transition Readiness ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCTX", + "name": "Lineage Cell Therapeutics Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCUT", + "name": "Lifetime Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCW", + "name": "Learn CW Investment Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCW-U", + "name": "Learn CW Investment Corporation Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LCW-WS", + "name": "Learn CW Investment Corp - Warrants (08/10/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LD", + "name": "Barclays Bank PLC", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LDEM", + "name": "ISHARES ESG MSCI EM LEADERS ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LDHA", + "name": "LDH Growth Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LDHAU", + "name": "LDH Growth Corp I - Units (1 Ord Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LDHAW", + "name": "LDH Growth Corp I - Warrants (17/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LDI", + "name": "LoanDepot Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LDOS", + "name": "Leidos Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LDP", + "name": "Cohen & Steers Ltd Duration Preferred and Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LDSF", + "name": "First Trust Low Duration Strategic Focus ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LDUR", + "name": "PIMCO Enhanced Low Duration Active Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LE", + "name": "Lands` End Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEA", + "name": "Lear Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEAD", + "name": "Siren DIVCON Leaders Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEAP", + "name": "Ribbit LEAP Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEAP-U", + "name": "Ribbit LEAP Ltd - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEAP-WS", + "name": "Ribbit LEAP Ltd - Warrants (09/09/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LECO", + "name": "Lincoln Electric Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEDS", + "name": "Semileds Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEE", + "name": "Lee Enterprises Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEG", + "name": "Leggett & Platt Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEGA", + "name": "Lead Edge Growth Opportunities Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEGAU", + "name": "Lead Edge Growth Opportunities Ltd - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEGAW", + "name": "Lead Edge Growth Opportunities Ltd - Warrants (01/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEGH", + "name": "Legacy Housing Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEGN", + "name": "Legend Biotech Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEGO", + "name": "Legato Merger Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEGOU", + "name": "Legato Merger Corp - Units (1 Ord & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEGOW", + "name": "Legato Merger Corp - Warrants (31/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEGR", + "name": "First Trust Indxx Innovative Transaction & Process ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEJU", + "name": "Leju Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEMB", + "name": "iShares J.P. Morgan EM Local Currency Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEN", + "name": "Lennar Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEN-B", + "name": "Lennar Corp - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEO", + "name": "BNY Mellon Strategic Municipals Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LESL", + "name": "Leslies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LETB", + "name": "AdvisorShares Let Bob AI Powered Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEU", + "name": "Centrus Energy Corp - Class A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1998-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEV", + "name": "Lion Electric Co (The)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEV-WS", + "name": "Lion Electric Co (The) - Warrants (06/05/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEVI", + "name": "Levi Strauss & Co. Cls A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEVL", + "name": "Level One Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEVLP", + "name": "Level One Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEXI", + "name": "Alexis Practical Tactical ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEXX", + "name": "Lexaria Bioscience Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LEXXW", + "name": "Lexaria Bioscience Corp - Warrants (11/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFAC", + "name": "LF Capital Acquisition Corp II", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFACU", + "name": "LF Capital Acquisition Corp II - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFACW", + "name": "LF Capital Acquisition Corp II - Warrants(15/05/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFC", + "name": "China Life Insurance Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFEQ", + "name": "VanEck Long/Flat Trend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFG", + "name": "Archaea Energy Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFG-WS", + "name": "Archaea Energy Inc Wt Exp 10262027", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFLY", + "name": "Leafly Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFLYW", + "name": "Leafly Holdings Inc - Warrants (07/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFMD", + "name": "LifeMD Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFMDP", + "name": "LifeMD Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFST", + "name": "LifeStance Health Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFT", + "name": "Lument Finance Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFT-P-A", + "name": "Lument Finance Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFT-R", + "name": "Lument Finance Trust Inc Rights Expiring February 11 2022 Rights", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFT-R-W", + "name": "Lument Finance Trust Inc Rights Expiring February 11 2022 Rights when issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFTR", + "name": "Lefteris Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFTRU", + "name": "Lefteris Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFTRW", + "name": "Lefteris Acquisition Corp - Warrants (01/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFUS", + "name": "Littelfuse Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LFVN", + "name": "Lifevantage Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGAC", + "name": "Lazard Growth Acquisition Corp I", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGACU", + "name": "Lazard Growth Acquisition Corp I - Units (1 Ord Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGACW", + "name": "Lazard Growth Acquisition Corp I - Warrants (10/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGBT", + "name": "LGBTQ + ESG100 ETF ", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGC-U", + "name": "PARTS iD Inc - Units (1 Class A & 1 Warrant)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGF-A", + "name": "Lions Gate Entertainment Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGF-B", + "name": "Lions Gate Entertainment Corp - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGH", + "name": "HCM Defender 500 Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGHL", + "name": "Lion Group Holding Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGHLW", + "name": "Lion Group Holding Ltd - Warrants (17/06/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGI", + "name": "Lazard Global Total Return and Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGIH", + "name": "LGI Homes Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGL", + "name": "LGL Group Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGL-WS", + "name": "LGL Group Inc - Warrants (16/11/2025)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGLV", + "name": "SPDR SSGA US Large Cap Low Volatility Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGMK", + "name": "LogicMark Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGND", + "name": "Ligand Pharmaceuticals Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGO", + "name": "Largo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGOV", + "name": "FIRST TRUST LONG DURATION OPPORTUNITIES ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGST", + "name": "Semper Paratus Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGSTU", + "name": "Semper Paratus Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGSTW", + "name": "Semper Paratus Acquisition Corp - Warrants (04/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGTO", + "name": "Legato Merger Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGTOU", + "name": "Legato Merger Corp II - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGTOW", + "name": "Legato Merger Corp II - Warrants (01/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGV", + "name": "Longview Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGV-U", + "name": "Longview Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGV-WS", + "name": "Longview Acquisition Corp II - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGVC", + "name": "LAMF Global Ventures Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGVCU", + "name": "LAMF Global Ventures Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGVCW", + "name": "LAMF Global Ventures Corp I - Warrants (05/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LGVN", + "name": "Longeveron Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LH", + "name": "Laboratory Corp Of America Holdings", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LHAA", + "name": "Lerer Hippeau Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LHC", + "name": "Leo Holdings Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LHC-U", + "name": "Leo Holdings Corp II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LHC-WS", + "name": "Leo Holdings Corp II - Warrants (07/01/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LHCG", + "name": "LHC Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LHDX", + "name": "Lucira Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LHX", + "name": "L3Harris Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LI", + "name": "Li Auto Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIAN", + "name": "LianBio", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIBY", + "name": "Liberty Resources Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIBYU", + "name": "Liberty Resources Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIBYW", + "name": "Liberty Resources Acquisition Corp - Warrants - (31/10/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LICY", + "name": "Li-Cycle Holdings Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LICY-WS", + "name": "LiCycle Holdings Corp Redeemable Warrants each whole warrant exercisable for one Common Share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIDR", + "name": "AEye Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIDRW", + "name": "AEye Inc - Warrants (16/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIFE", + "name": "Atyr Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LII", + "name": "Lennox International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LILA", + "name": "Liberty Latin America Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LILAK", + "name": "Liberty Latin America Ltd - Class C", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LILM", + "name": "Lilium N.V - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LILMW", + "name": "Lilium N.V - Warrants (14/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LILRV", + "name": "Liberty Latin America Ltd Subscription Rights When Issued", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIN", + "name": "Linde Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LINC", + "name": "Lincoln Educational Services Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIND", + "name": "Lindblad Expeditions Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LINK", + "name": "Interlink Electronics", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LION", + "name": "Lionheart III Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIONU", + "name": "Lionheart III Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIONW", + "name": "Lionheart III Corp - Warrants (09/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIQT", + "name": "LiqTech International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIT", + "name": "Global X Lithium & Battery Tech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LITB", + "name": "LightInTheBox Holding Co Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LITE", + "name": "Lumentum Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LITM", + "name": "Snow Lake Resources Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LITT", + "name": "Logistics Innovation Technologies Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LITTU", + "name": "Logistics Innovation Technologies Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LITTW", + "name": "Logistics Innovation Technologies Corp - Warrants (10/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIV", + "name": "EMLES @HOME ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIVB", + "name": "LIV Capital Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIVBU", + "name": "LIV Capital Acquisition Corp II - Units (1 Ord Share Class A & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIVBW", + "name": "LIV Capital Acquisition Corp II - Warrants (07/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIVE", + "name": "Live Ventures Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIVN", + "name": "LivaNova PLC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIXT", + "name": "Lixte Biotechnology Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIXTW", + "name": "Lixte Biotechnology Holdings Inc - Warrants (01/01/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LIZI", + "name": "Lizhi Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LJAQ", + "name": "Lightjump Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LJAQU", + "name": "Lightjump Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LJAQW", + "name": "Lightjump Acquisition Corp - Warrants (06/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LJPC", + "name": "La Jolla Pharmaceutical Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LKCO", + "name": "Luokung Technology Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LKFN", + "name": "Lakeland Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LKOR", + "name": "FLEXSHARES CREDIT-SCORED US LONG CORPORATE BOND INDEX FUND ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LKQ", + "name": "LKQ Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LL", + "name": "LL Flooring Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LLL", + "name": "JX Luxventure Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LLNW", + "name": "Limelight Networks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LLY", + "name": "Lilly(Eli) & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMACA", + "name": "Liberty Media Acquisition Corp - Series A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMACU", + "name": "Liberty Media Acquisition Corp - Units (1 Ord Share Ser A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMACW", + "name": "Liberty Media Acquisition Corp - Warrants (22/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMAO", + "name": "LMF Acquisition Opportunities Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMAOU", + "name": "LMF Acquisition Opportunities Inc - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMAOW", + "name": "LMF Acquisition Opportunities Inc - Warrants (26/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMAT", + "name": "Lemaitre Vascular Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMB", + "name": "Limbach Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMBS", + "name": "First Trust Low Duration Opportunities ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMDX", + "name": "LumiraDx Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMDXW", + "name": "LumiraDx Ltd - Warrants (28/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMFA", + "name": "LM Funding America Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMND", + "name": "Lemonade Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMNL", + "name": "Liminal Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMNR", + "name": "Limoneira Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMPX", + "name": "Lmp Automotive Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMST", + "name": "Limestone Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LMT", + "name": "Lockheed Martin Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1977-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNC", + "name": "Lincoln National Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LND", + "name": "Brasilagro Companhia Brasileira De Propriedade Agricola", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNDC", + "name": "Landec Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNFA", + "name": "L&F Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNFA-U", + "name": "L&F Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNFA-WS", + "name": "L&F Acquisition Corp - Warrants (23/05/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNG", + "name": "Cheniere Energy Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1994-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNN", + "name": "Lindsay Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNSR", + "name": "LENSAR Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNT", + "name": "Alliant Energy Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LNTH", + "name": "Lantheus Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOAK-U", + "name": "Danimer Scientific Inc - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOAN", + "name": "Manhattan Bridge Capital Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOB", + "name": "Live Oak Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOCC", + "name": "Live Oak Crestview Climate Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOCC-U", + "name": "Live Oak Crestview Climate Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOCC-WS", + "name": "Live Oak Crestview Climate Acquisition Corp - Warrants (27/09/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOCL", + "name": "Local Bounti Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOCL-WS", + "name": "Local Bounti Corp - Warrants (02/03/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOCO", + "name": "El Pollo Loco Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LODE", + "name": "Comstock Mining Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2003-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOGC", + "name": "LogicBio Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOGI", + "name": "Logitech International S.A.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOKM", + "name": "Live Oak Mobility Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOKM-U", + "name": "Live Oak Mobility Acquisition Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOKM-WS", + "name": "Live Oak Mobility Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOMA", + "name": "Loma Negra Compania Industrial Argentina Sociedad Anonima", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOOP", + "name": "Loop Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOPE", + "name": "Grand Canyon Education Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOPP", + "name": "Gabelli Love Our Planet & People ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOPX", + "name": "DIREXION LOW PRICED STOCK ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOR", + "name": "Lazard World Dividend Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOTZ", + "name": "CarLotz Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOTZW", + "name": "CarLotz Inc - Warrants (26/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOUP", + "name": "Innovator Loup Frontier Tech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOV", + "name": "Spark Networks SE", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOVE", + "name": "Lovesac Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LOW", + "name": "Lowe`s Cos. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPCN", + "name": "Lipocine Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPG", + "name": "Dorian LPG Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPI", + "name": "Laredo Petroleum Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPL", + "name": "LG Display Co Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPLA", + "name": "LPL Financial Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPRO", + "name": "Open Lending Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPSN", + "name": "Liveperson Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPTH", + "name": "Lightpath Technologies Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPTX", + "name": "Leap Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LPX", + "name": "Louisiana-Pacific Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LQD", + "name": "iShares iBoxx USD Investment Grade Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2002-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LQDA", + "name": "Liquidia Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LQDB", + "name": "ISHARES BBB RATED CORPORATE BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LQDH", + "name": "iShares Interest Rate Hedged Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LQDI", + "name": "iShares Inflation Hedged Corporate Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LQDT", + "name": "Liquidity Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LRCX", + "name": "Lam Research Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LRFC", + "name": "Logan Ridge Finance Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LRGE", + "name": "ClearBridge Large Cap Growth ESG ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LRGF", + "name": "iShares MSCI USA Multifactor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LRMR", + "name": "Larimar Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LRN", + "name": "Stride Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LRND", + "name": "IQ U.S. Large Cap R&D Leaders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LRNZ", + "name": "TrueShares Technology AI & Deep Learning ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSAF", + "name": "LeaderShares AlphaFactor US Core Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSAT", + "name": "LeaderShares AlphaFactor Tactical Focused ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSBK", + "name": "Lake Shore Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSCC", + "name": "Lattice Semiconductor Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSEA", + "name": "Landsea Homes Corporation - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSF", + "name": "Laird Superfood Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSI", + "name": "Life Storage Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSPD", + "name": "Lightspeed Commerce Inc (Sub Voting)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSPR", + "name": "Larkspur Health Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSPRU", + "name": "Larkspur Health Acquisition Corp - Units (1 Ord Share Class A & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSPRW", + "name": "Larkspur Health Acquisition Corp - Warrants (20/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSST", + "name": "Natixis Loomis Sayles Short Duration Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSTR", + "name": "Landstar System Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSXMA", + "name": "Liberty Media Corp (Tracking Stock - SiriusXM) Series A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSXMB", + "name": "Liberty Media Corp (Tracking Stock - SiriusXM) Series B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LSXMK", + "name": "Liberty Media Corp (Tracking Stock - SiriusXM) Series C", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTBR", + "name": "Lightbridge Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTC", + "name": "LTC Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTCH", + "name": "Latch Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTCHW", + "name": "Latch Inc - Warrants (04/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTH", + "name": "Life Time Group Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTHM", + "name": "Livent Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTL", + "name": "PROSHARES ULTRA TELECOMMUNICATIONS ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTPZ", + "name": "PIMCO 15+ Year U.S. TIPS Index Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTRN", + "name": "Lantern Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTRPA", + "name": "Liberty TripAdvisor Holdings Inc - Series A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTRPB", + "name": "Liberty TripAdvisor Holdings Inc - Series B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTRX", + "name": "Lantronix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTRY", + "name": "MDI ENTERTAINMENT INC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTRYW", + "name": "Lottery.com Inc - Warrants (29/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LTS-P-A", + "name": "Ladenburg Thalmann Financial Services Inc 800 Series A Cumulative Redeemable Preferred Stock Liquidation Preference 2500 per share", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LU", + "name": "Lufax Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUB", + "name": "Luby`s Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUCD", + "name": "Lucid Diagnostics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LULU", + "name": "Lululemon Athletica Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUMN", + "name": "Lumen Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUMO", + "name": "Lumos Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUNA", + "name": "Luna Innovations Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUNG", + "name": "Pulmonx Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUV", + "name": "Southwest Airlines Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUXA", + "name": "Lux Health Tech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUXAU", + "name": "Lux Health Tech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUXAW", + "name": "Lux Health Tech Acquisition Corp - Warrants(30/11/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LUXE", + "name": "Emles Luxury Goods ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVAC", + "name": "Lava Medtech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVACU", + "name": "Lava Medtech Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVACW", + "name": "Lava Medtech Acquisition Corp - Warrants (21/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVHD", + "name": "Legg Mason Low Volatility High Dividend ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVHI", + "name": "Legg Mason International Low Volatility High Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVLU", + "name": "Lulus Fashion Lounge Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVO", + "name": "LiveOne Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVOL", + "name": "American Century Low Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVOX", + "name": "LiveVox Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVOXU", + "name": "LiveVox Holdings Inc - Unit (1 Ordinary share Cls A & 1/2 Wrt)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVOXW", + "name": "LiveVox Holdings Inc - Warrants (18/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVRA", + "name": "Levere Holdings Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVRAU", + "name": "Levere Holdings Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVRAW", + "name": "Levere Holdings Corp - Warrants (09/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVS", + "name": "Las Vegas Sands Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LVTX", + "name": "LAVA Therapeutics NV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LW", + "name": "Lamb Weston Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LWAY", + "name": "Lifeway Foods Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LWLG", + "name": "Lightwave Logic Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LX", + "name": "LexinFintech Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LXEH", + "name": "Lixiang Education Holding Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LXFR", + "name": "Luxfer Holdings PLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LXP", + "name": "LXP Industrial Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LXP-P-C", + "name": "LXP Industrial Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LXRX", + "name": "Lexicon Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LXU", + "name": "LSB Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYB", + "name": "LyondellBasell Industries NV - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYEL", + "name": "Lyell Immunopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYFE", + "name": "2NDVOTE LIFE NEUTRAL PLUS ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYFT", + "name": "Lyft Inc Cls A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYG", + "name": "Lloyds Banking Group plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYL", + "name": "Dragon Victory International Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYLT", + "name": "Loyalty Ventures Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYLTV", + "name": "Loyalty Ventures Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYRA", + "name": "Lyra Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYTS", + "name": "LSI Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LYV", + "name": "Live Nation Entertainment Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LZ", + "name": "LegalZoom.com Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "LZB", + "name": "La-Z-Boy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "M", + "name": "Macy`s Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MA", + "name": "Mastercard Incorporated - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAA", + "name": "Mid-America Apartment Communities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAA-P-I", + "name": "Mid-America Apartment Communities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAAQ", + "name": "Mana Capital Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAAQR", + "name": "Mana Capital Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAAQU", + "name": "Mana Capital Acquisition Corp - Units (1 Ord Share & 1/2 War & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAAQW", + "name": "Mana Capital Acquisition Corp - Warrants (11/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAAX", + "name": "VANECK VECTORS MUNI ALLOCATION ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAC", + "name": "Macerich Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACA", + "name": "Moringa Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACAU", + "name": "Moringa Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACAW", + "name": "Moringa Acquisition Corp - Warrants (19/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACC", + "name": "Mission Advancement Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACC-U", + "name": "Mission Advancement Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACC-WS", + "name": "Mission Advancement Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACK", + "name": "Merrimack Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACU", + "name": "Mallard Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACUU", + "name": "Mallard Acquisition Corp - Units (1 Ord & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MACUW", + "name": "Mallard Acquisition Corp - Warrants (08/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAG", + "name": "MAG Silver Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAGA", + "name": "POINT BRIDGE GOP STOCK TRACKER ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAIN", + "name": "Main Street Capital Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAKX", + "name": "ProShares S&P Kensho Smart Factories ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAMB", + "name": "Monarch Ambassador Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAN", + "name": "ManpowerGroup", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MANH", + "name": "Manhattan Associates Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MANT", + "name": "Mantech International Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MANU", + "name": "Manchester United Plc. - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAPS", + "name": "WM Technology Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAPSW", + "name": "WM Technology Inc - Warrants (16/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAQC", + "name": "Maquia Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAQCU", + "name": "Maquia Capital Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAQCW", + "name": "Maquia Capital Acquisition Corp - Warrants (05/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAR", + "name": "Marriott International Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MARA", + "name": "Marathon Digital Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MARB", + "name": "First Trust Merger Arbitrage ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MARK", + "name": "Remark Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MARPS", + "name": "Marine Petroleum Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MARZ", + "name": "TrueShares Structured Outcome (March) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAS", + "name": "Masco Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MASI", + "name": "Masimo Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MASS", + "name": "908 Devices Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAT", + "name": "Mattel Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1982-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MATW", + "name": "Matthews International Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MATX", + "name": "Matson Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAV", + "name": "Pioneer Municipal High Income Advantage Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAX", + "name": "MediaAlpha Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAXN", + "name": "Maxeon Solar Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAXR", + "name": "Maxar Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAYS", + "name": "J.W. Mays Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MAYZ", + "name": "TrueShares Structured Outcome (May) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBAC", + "name": "M3 Brigade Acquisition II Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBAC-U", + "name": "M3 Brigade Acquisition II Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBAC-WS", + "name": "M3 Brigade Acquisition II Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBB", + "name": "iShares MBS ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBBB", + "name": "VANECK VECTORS MOODY'S ANALYTICS BBB CORPORATE BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBCC", + "name": "Monarch Blue Chips Core ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBCN", + "name": "Middlefield Banc Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBI", + "name": "MBIA Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBII", + "name": "Marrone Bio Innovations Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBIN", + "name": "Merchants Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBINN", + "name": "Merchants Bancorp Depositary Shares 6.00 Fixed Rate Series C NonCumulative Perpetual Preferred Stock", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBINO", + "name": "Merchants Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBINP", + "name": "Merchants Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBIO", + "name": "Mustang Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBND", + "name": "SPDR NUVEEN MUNICIPAL BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBNKP", + "name": "Medallion Bank", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBOT", + "name": "Microbot Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBOX", + "name": "Freedom Day Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBRX", + "name": "Moleculin Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBSC", + "name": "M3 Brigade Acquisition III Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBSC-U", + "name": "M3 Brigade Acquisition III Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBSC-WS", + "name": "M3 Brigade Acquisition III Corp - Warrants (31/07/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBSD", + "name": "FlexShares Disciplined Duration MBS Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBT", + "name": "Mobile Telesystems PJSC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBTC", + "name": "Nocturne Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBTCR", + "name": "Nocturne Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBTCU", + "name": "Nocturne Acquisition Corp - Units (1 & 1 Rights)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBUU", + "name": "Malibu Boats Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MBWM", + "name": "Mercantile Bank Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MC", + "name": "Moelis & Co - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCA", + "name": "BlackRock MuniYield CA Quality Common", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAA", + "name": "Mountain & Co I Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAAU", + "name": "Mountain & Co I Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAAW", + "name": "Mountain & Co I Acquisition Corp - Warrants - (04/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAE", + "name": "Mountain Crest Acquisition Corp III", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAER", + "name": "Mountain Crest Acquisition Corp III", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAEU", + "name": "Mountain Crest Acquisition Corp III - Units (1 Ord Share & 1 Right )", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAF", + "name": "Mountain Crest Acquisition Corp IV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAFR", + "name": "Mountain Crest Acquisition Corp IV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAFU", + "name": "Mountain Crest Acquisition Corp IV - Units (1 & 1 Rights)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAG", + "name": "Mountain Crest Acquisition Corp V", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAGR", + "name": "Mountain Crest Acquisition Corp V", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCAGU", + "name": "Mountain Crest Acquisition Corp V - Units (1 1 Rights)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCB", + "name": "Metropolitan Bank Holding Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCBC", + "name": "Macatawa Bank Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCBS", + "name": "MetroCity Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCD", + "name": "McDonald`s Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCEF", + "name": "First Trust Municipal CEF Income Opportunity ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCFT", + "name": "MasterCraft Boat Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCG", + "name": "Membership Collective Group Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCHI", + "name": "iShares MSCI China ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCHP", + "name": "Microchip Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCHX", + "name": "Marchex Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCI", + "name": "Barings Corporate Investors", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCK", + "name": "Mckesson Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCK-WD", + "name": "McKesson Corporation When Distributed", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCLD", + "name": "mCloud Technologies Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCLDW", + "name": "mCloud Technologies Corp - Warrants (29/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCN", + "name": "Madison Covered Call & Equity Strategy Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCO", + "name": "Moody`s Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCR", + "name": "MFS Charter Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCRB", + "name": "Seres Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCRI", + "name": "Monarch Casino & Resort Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCRO", + "name": "IQ HEDGE MACRO TRACKER ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCS", + "name": "Marcus Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCW", + "name": "Mister Car Wash Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MCY", + "name": "Mercury General Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MD", + "name": "MEDNAX Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDB", + "name": "MongoDB Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDC", + "name": "M.D.C. Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDCP", + "name": "VictoryShares THB Mid Cap ESG ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDEV", + "name": "First Trust Indxx Medical Devices ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDGL", + "name": "Madrigal Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDGS", + "name": "Medigus Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDGSW", + "name": "Medigus Ltd Warrants Series C 23072023", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDH", + "name": "MDH Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDH-U", + "name": "MDH Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDH-WS", + "name": "MDH Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDIA", + "name": "MediaCo Holding Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDIV", + "name": "First Trust ETF VI Multi-Asset Diversified Income Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDJH", + "name": "MDJM Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDLZ", + "name": "Mondelez International Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDNA", + "name": "Medicenna Therapeutics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDRR", + "name": "Medalist Diversified REIT Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDRRP", + "name": "Medalist Diversified REIT Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDRX", + "name": "Allscripts Healthcare Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDT", + "name": "Medtronic Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDU", + "name": "MDU Resources Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDV", + "name": "Modiv Inc - Class C", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDV-P-A", + "name": "Modiv Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDVL", + "name": "MedAvail Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDWD", + "name": "MediWound Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDWT", + "name": "Midwest Hldg Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDXG", + "name": "Mimedx Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDXH", + "name": "MDxHealth SA", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDY", + "name": "S&P MidCap 400 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1995-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDYG", + "name": "SPDR S&P 400 Mid Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MDYV", + "name": "SPDR S&P 400 Mid Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ME", + "name": "23andMe Holding Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEAC", + "name": "Mercury Ecommerce Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEACU", + "name": "Mercury Ecommerce Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEACW", + "name": "Mercury Ecommerce Acquisition Corp - Warrants (27/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEAR", + "name": "BlackRock Short Maturity Municipal Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEC", + "name": "Mayville Engineering Company Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MED", + "name": "Medifast Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEDP", + "name": "Medpace Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEDS", + "name": "Trxade Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEG", + "name": "Montrose Environmental Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEGI", + "name": "MainStay CBRE Global Infrastructure Megatrends Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEI", + "name": "Methode Electronics Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEIP", + "name": "MEI Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEKA", + "name": "MELI Kaszek Pioneer Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MELI", + "name": "MercadoLibre Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEME", + "name": "ROUNDHILL MEME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEN", + "name": "BlackRock Munienhanced Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MENV", + "name": "AdvisorShares North Square McKee ESG Core Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEOA", + "name": "Minority Equality Opportunities Acquisition Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEOAU", + "name": "Minority Equality Opportunities Acquisition Inc - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEOAW", + "name": "Minority Equality Opportunities Acquisition Inc - Warrants (26/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEOH", + "name": "Methanex Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MER-P-K", + "name": "Bank Of America Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MERC", + "name": "Mercer International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MESA", + "name": "Mesa Air Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MESO", + "name": "Mesoblast Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MET", + "name": "Metlife Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MET-P-A", + "name": "Metlife Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MET-P-E", + "name": "Metlife Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MET-P-F", + "name": "Metlife Inc 4.75 PRF PERPETUAL USD 25 11000th int Ser F", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "METC", + "name": "Ramaco Resources Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "METCL", + "name": "Ramaco Resources Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "METV", + "name": "Roundhill Ball Metaverse ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "METX", + "name": "Meten Holding Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "METXW", + "name": "Meten Holding Group Ltd - Warrants (31/03/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MEXX", + "name": "DIREXION DAILY MSCI MEXICO BULL 3X SHARES ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MF", + "name": "Missfresh Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFA", + "name": "MFA Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFA-P-B", + "name": "MFA Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFA-P-C", + "name": "MFA Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFC", + "name": "Manulife Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFD", + "name": "MacquarieFirst Trust Global Infrstrctre", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFDX", + "name": "PIMCO RAFI DYNAMIC MULTI-FACTOR INTERNATIONAL EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFEM", + "name": "PIMCO RAFI Dynamic Multi-Factor Emerging Markets Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFG", + "name": "Mizuho Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFGP", + "name": "Micro Focus International Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFH", + "name": "Mercurity Fintech Holding Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFIN", + "name": "Medallion Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFL", + "name": "BlackRock MuniHoldings Investment Quality Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1997-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFM", + "name": "MFS Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFT", + "name": "BlackRock MuniYield Investment Quality Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFUL", + "name": "Mindful Conservative ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFUS", + "name": "PIMCO RAFI Dynamic Multi-Factor U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MFV", + "name": "MFS Special Value Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MG", + "name": "Mistras Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGA", + "name": "Magna International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGC", + "name": "Vanguard Mega Cap 300 Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGEE", + "name": "MGE Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGF", + "name": "MFS Government Markets Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGI", + "name": "Moneygram International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGIC", + "name": "Magic Software Enterprises Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGK", + "name": "Vanguard Mega Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGLD", + "name": "Marygold Companies Inc (The)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2002-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGM", + "name": "MGM Resorts International", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGMT", + "name": "Ballast Small/Mid Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGNI", + "name": "Magnite Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGNX", + "name": "Macrogenics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGP", + "name": "MGM Growth Properties LLC - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGPI", + "name": "MGP Ingredients Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGR", + "name": "Affiliated Managers Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGRB", + "name": "Affiliated Managers Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGRC", + "name": "McGrath Rentcorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGRD", + "name": "Affiliated Managers Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGTA", + "name": "Magenta Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGTX", + "name": "MeiraGTx Holdings plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGU", + "name": "Macquarie Global Infrastructure Total Return Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGV", + "name": "Vanguard Mega Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGY", + "name": "Magnolia Oil & Gas Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MGYR", + "name": "Magyar Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MH-P-A", + "name": "Maiden Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MH-P-C", + "name": "Maiden Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MH-P-D", + "name": "Maiden Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHD", + "name": "BlackRock MuniHoldings Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1997-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHE", + "name": "BLACKROCK MASSACHUSETTS TAX EXEMPT TRUST", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHF", + "name": "Western Asset Municipal High Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHH", + "name": "Mastech Digital Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2008-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHI", + "name": "Pioneer Municipal High Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHK", + "name": "Mohawk Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHLA", + "name": "Maiden Holdings Ltd 6625 Notes due 2046", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHLD", + "name": "Maiden Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHN", + "name": "BlackRock MuniHoldings New York Quality Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1997-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHNC", + "name": "Maiden Holdings North American Ltd 775 Nts 12012043", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHO", + "name": "MI Homes Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MHUA", + "name": "Meihua International Medical Technologies Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIC", + "name": "Macquarie Infrastructure Holdings LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MICT", + "name": "MICT Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MID", + "name": "American Century Mid Cap Growth Impact ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIDD", + "name": "Middleby Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIDE", + "name": "XTRACKERS S&P MIDCAP 400 ESG ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIDF", + "name": "iShares MSCI USA Mid-Cap Multifactor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIDU", + "name": "Direxion Daily Mid Cap Bull 3x Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIDZ", + "name": "DIREXION DAILY MID CAP BEAR 3X SHARES ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIE", + "name": "Cohen & Steers MLP Income and Energy Opportunity Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIG", + "name": "VanEck Moody`s Analytics IG Corporate Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIGI", + "name": "Mawson Infrastructure Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MILE", + "name": "Metromile Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MILEW", + "name": "Metromile Inc - Warrants (09/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MILN", + "name": "Global X Millennial Consumer ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIME", + "name": "Mimecast Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIMO", + "name": "Airspan Networks Holdings Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIMO-WS", + "name": "Airspan Networks Holdings Inc - Warrants (01/11/2026)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIN", + "name": "MFS Intermediate Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MINC", + "name": "ADVISORSHARES NEWFLEET MULTI-SECTOR INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIND", + "name": "MIND Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MINDP", + "name": "MIND Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MINM", + "name": "Minim Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MINN", + "name": "Mairs & Power Minnesota Municipal Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MINO", + "name": "PIMCO MUNICIPAL INCOME OPPORTUNITIES ACTIVE EXCHANGE-TRADED FUND ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MINT", + "name": "PIMCO Enhanced Short Maturity Active Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIO", + "name": "Pioneer Municipal High Income Opportunities Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIR", + "name": "Mirion Technologies Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIR-WS", + "name": "Mirion Technologies Inc - Warrants (30/06/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIRM", + "name": "Mirum Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIRO", + "name": "Miromatrix Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIST", + "name": "Milestone Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIT", + "name": "Mason Industrial Technology Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIT-U", + "name": "Mason Industrial Technology Inc - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIT-WS", + "name": "Mason Industrial Technology Inc - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITA", + "name": "Coliseum Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITAU", + "name": "Coliseum Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITAW", + "name": "Coliseum Acquisition Corp - Warrants (02/04/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITC", + "name": "Meat-Tech 3D Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITK", + "name": "Mitek Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITO", + "name": "Stealth BioTherapeutics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITQ", + "name": "Moving iMage Technologies Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITT", + "name": "AG Mortgage Investment Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITT-P-A", + "name": "AG Mortgage Investment Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITT-P-B", + "name": "AG Mortgage Investment Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MITT-P-C", + "name": "AG Mortgage Investment Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIXT", + "name": "MiX Telematics Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MIY", + "name": "BlackRock MuniYield Michigan Quality Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MJ", + "name": "ETFMG Alternative Harvest ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MJIN", + "name": "ETFMG 2X Daily Inverse Alternative Harvest ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MJUS", + "name": "ETFMG U.S. Alternative Harvest ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MJXL", + "name": "ETFMG 2X Daily Alternative Harvest ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKC", + "name": "McCormick & Co. Inc (Non Voting)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKC-V", + "name": "McCormick & Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKD", + "name": "Molecular Data Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKFG", + "name": "Markforged Holding Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKFG-WS", + "name": "Markforged Holding Corporation - Warrants (17/08/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKL", + "name": "Markel Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKSI", + "name": "MKS Instruments Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKTW", + "name": "Marketwise Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKTWW", + "name": "Marketwise Inc - Warrants (19/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MKTX", + "name": "MarketAxess Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ML", + "name": "MoneyLion Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ML-WS", + "name": "MoneyLion Inc - Warrants (01/06/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLAB", + "name": "Mesa Laboratories Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLAC", + "name": "Malacca Straits Acquisition Co Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLACU", + "name": "Malacca Straits Acquisition Co Ltd - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLACW", + "name": "Malacca Straits Acquisition Co Ltd - Warrants (30/06/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLAI", + "name": "McLaren Technology Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLAIU", + "name": "McLaren Technology Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLAIW", + "name": "McLaren Technology Acquisition Corp - Warrants (01/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLCO", + "name": "Melco Resorts & Entertainment Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLI", + "name": "Mueller Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLKN", + "name": "MillerKnoll Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLM", + "name": "Martin Marietta Materials Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLN", + "name": "VanEck Long Muni ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2008-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLNK", + "name": "MeridianLink Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLP", + "name": "Maui Land & Pineapple Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLPA", + "name": "Global X MLP ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLPB", + "name": "MLPB", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLPO", + "name": "Credit Suisse AG Nassau Branch", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLPR", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLPX", + "name": "Global X MLP & Energy Infrastructure ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLR", + "name": "Miller Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLSS", + "name": "Milestone Scientific Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MLVF", + "name": "Malvern Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMAT", + "name": "Meta Materials Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMC", + "name": "Marsh & McLennan Cos. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMCA", + "name": "IQ MacKay California Municipal Intermediate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMD", + "name": "Mainstay Definedterm Municipal Opptys Fd", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMI", + "name": "Marcus & Millichap Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMIN", + "name": "IQ MacKay Municipal Insured ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMIT", + "name": "IQ MacKay Municipal Intermediate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMLG", + "name": "First Trust Multi-Manager Large Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMLP", + "name": "Martin Midstream Partners LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMM", + "name": "3M Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMMB", + "name": "MamaMancini`s Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMP", + "name": "Magellan Midstream Partners L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMS", + "name": "Maximus Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMSC", + "name": "FIRST TRUST MULTI-MANAGER SMALL CAP OPPORTUNITIES ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMSI", + "name": "Merit Medical Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMT", + "name": "MFS Multimarket Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMTM", + "name": "SPDR S&P 1500 MOMENTUM TILT ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMU", + "name": "Western Asset Managed Municipals Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMX", + "name": "Maverix Metals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MMYT", + "name": "MakeMyTrip Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MN", + "name": "Manning & Napier Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNA", + "name": "IQ Merger Arbitrage ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNDO", + "name": "Mind C.T.I Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNDT", + "name": "Mandiant Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNDY", + "name": "Monday.Com Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNE", + "name": "BlackRock Muni New York Intermediate Duration Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNKD", + "name": "Mannkind Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNM", + "name": "Direxion Daily Metal Miners Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNMD", + "name": "Mind Medicine Inc (Sub Voting)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNOV", + "name": "Medicinova Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNP", + "name": "Western Asset Municipal Partners Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1993-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNPR", + "name": "Monopar Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNRL", + "name": "Brigham Minerals Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNRO", + "name": "Monro Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNSB", + "name": "MainStreet Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNSBP", + "name": "MainStreet Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNSO", + "name": "MINISO Group Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNST", + "name": "Monster Beverage Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNTK", + "name": "Montauk Renewables Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNTN", + "name": "Everest Consolidator Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNTN-U", + "name": "Everest Consolidator Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNTN-WS", + "name": "Everest Consolidator Acquisition Corporation Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNTS", + "name": "Momentus Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNTSW", + "name": "Momentus Inc - Warrants (12/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNTV", + "name": "Momentive Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MNTX", + "name": "Manitex International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MO", + "name": "Altria Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOAT", + "name": "VanEck Morningstar Wide Moat ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOBQ", + "name": "Mobiquity Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOBQW", + "name": "Mobiquity Technologies Inc - Warrants (30/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOD", + "name": "Modine Manufacturing Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MODD", + "name": "Modular Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MODN", + "name": "Model N Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MODV", + "name": "ModivCare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOFG", + "name": "MidWestOne Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOG-A", + "name": "Moog Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOG-B", + "name": "Moog Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOGO", + "name": "Mogo Inc (Sub Voting)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOGU", + "name": "MOGU Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOH", + "name": "Molina Healthcare Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOHO", + "name": "ECMOHO Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOHR", + "name": "Mohr Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOLN", + "name": "Molecular Partners AG", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOMO", + "name": "Hello Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MON", + "name": "Monument Circle Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MONCU", + "name": "Monument Circle Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MONCW", + "name": "Monument Circle Acquisition Corp - Warrants (14/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOO", + "name": "VanEck Agribusiness ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOON", + "name": "Direxion Moonshot Innovators ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOR", + "name": "Morphosys AG", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MORF", + "name": "Morphic Holding Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MORN", + "name": "Morningstar Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MORT", + "name": "VanEck Mortgage REIT Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOS", + "name": "Mosaic Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOSC", + "name": "Mosaic Acquisition Corp. Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOSC-U", + "name": "Mosaic Acquisition Corp Units each consisting of one Class A Ordinary Share and onethird of one Warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOSC-WS", + "name": "Mosaic Acquisition Corp Warrants each exercisable for one Class A Ordinary Share at an exercise price of 1150 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOTE", + "name": "VANECK MORNINGSTAR ESG MOAT ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOTG", + "name": "VanEck Morningstar Global Wide Moat ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOTI", + "name": "VanEck Morningstar International Moat ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOTO", + "name": "SmartETFs Smart Transportation & Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOTS", + "name": "Motus GI Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOTV-U", + "name": "Motive Capital Corp Units each consisting of one Class A ordinary share and onethird of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOTV-WS", + "name": "Forge Global Holdings Inc - Warrants (31/12/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOV", + "name": "Movado Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOVE", + "name": "Movano Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MOXC", + "name": "Moxian (BVI) Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MP", + "name": "MP Materials Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPA", + "name": "BlackRock MuniYield Pennsylvania Quality Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPAA", + "name": "Motorcar Parts of America Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPAC", + "name": "Model Performance Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPACR", + "name": "Model Performance Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPACU", + "name": "Model Performance Acquisition Corp - Units (1 Ord Class A 1/2 War 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPACW", + "name": "Model Performance Acquisition Corp - Warrants (29/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPB", + "name": "Mid Penn Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPC", + "name": "Marathon Petroleum Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPLN", + "name": "MultiPlan Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPLN-WS", + "name": "MultiPlan Corp - Warrants (01/03/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPLX", + "name": "MPLX LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPRA", + "name": "Mercato Partners Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPRAU", + "name": "Mercato Partners Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPRAW", + "name": "Mercato Partners Acquisition Corp - Warrants - (29/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPRO", + "name": "Monarch ProCap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPV", + "name": "Barings Participation Investors", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPW", + "name": "Medical Properties Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPWR", + "name": "Monolithic Power System Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MPX", + "name": "Marine Products Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MQ", + "name": "Marqeta Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MQT", + "name": "BlackRock MuniYield Quality Fund II Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MQY", + "name": "BlackRock MuniYield Quality Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRAD", + "name": "SmartETFs Advertising & Marketing Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRAI", + "name": "Marpai Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRAM", + "name": "Everspin Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRBK", + "name": "Meridian Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRC", + "name": "MRC Global Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRCC", + "name": "Monroe Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRCY", + "name": "Mercury Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MREO", + "name": "Mereo Biopharma Group Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRGR", + "name": "ProShares Merger ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRIN", + "name": "Marin Software Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRK", + "name": "Merck & Co Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRK-W", + "name": "Merck & Company Inc ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRKR", + "name": "Marker Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRM", + "name": "MEDIROM Healthcare Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRNA", + "name": "Moderna Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRND", + "name": "IQ U.S. Mid Cap R&D Leaders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRNS", + "name": "Marinus Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRO", + "name": "Marathon Oil Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRSK", + "name": "Toews Agility Shares Managed Risk ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRSN", + "name": "Mersana Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRTN", + "name": "Marten Transport Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRTX", + "name": "Mirati Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRUS", + "name": "Merus N.V", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRVI", + "name": "Maravai LifeSciences Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MRVL", + "name": "Marvell Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MS", + "name": "Morgan Stanley", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MS-P-A", + "name": "Morgan Stanley", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MS-P-E", + "name": "Morgan Stanley", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MS-P-F", + "name": "Morgan Stanley", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MS-P-G", + "name": "Morgan Stanley Depositary Shares Series G", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MS-P-G-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MS-P-I", + "name": "Morgan Stanley", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MS-P-K", + "name": "Morgan Stanley", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MS-P-L", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSA", + "name": "MSA Safety Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSAC", + "name": "Medicus Sciences Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSACW", + "name": "Medicus Sciences Acquisition Corp - Warrants (12/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSB", + "name": "Mesabi Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSBI", + "name": "Midland States Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSC", + "name": "Studio City International Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSCI", + "name": "MSCI Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSD", + "name": "Morgan Stanley Emerging Markets Debt Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSDA", + "name": "MSD Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSDAU", + "name": "MSD Acquisition Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSDAW", + "name": "MSD Acquisition Corp - Warrants (25/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSEX", + "name": "Middlesex Water Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSFT", + "name": "Microsoft Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSGE", + "name": "Madison Square Garden Entertainment Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSGM", + "name": "Motorsport Games Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSGR", + "name": "Direxion mRNA ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSGS", + "name": "Madison Square Garden Sports Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSI", + "name": "Motorola Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1977-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSM", + "name": "MSC Industrial Direct Co. Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSMR", + "name": "McElhenny Sheffield Managed Risk ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSN", + "name": "Emerson Radio Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1994-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSON", + "name": "Misonix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSOS", + "name": "AdvisorShares Pure US Cannabis ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSP", + "name": "Datto Holding Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSTB", + "name": "LHA Market State Tactical Beta ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSTQ", + "name": "LHA Market State Tactical Q ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSTR", + "name": "Microstrategy Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSVB", + "name": "Mid-Southern Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MSVX", + "name": "LHA MARKET STATE ALPHA SEEKER ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MT", + "name": "ArcelorMittal", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTA", + "name": "Metalla Royalty and Streaming Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTAC", + "name": "MedTech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTACU", + "name": "MedTech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTACW", + "name": "MedTech Acquisition Corp - Warrants (18/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTAL", + "name": "Metals Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTAL-U", + "name": "Metals Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTAL-WS", + "name": "Metals Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTB", + "name": "M & T Bank Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTBC", + "name": "CareCloud Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTBCO", + "name": "CareCloud Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTBCP", + "name": "CareCloud Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTC", + "name": "Mmtec Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTCH", + "name": "Match Group Inc - New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTCN", + "name": "ArcelorMittal", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTCR", + "name": "Metacrine Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTD", + "name": "Mettler-Toledo International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTDR", + "name": "Matador Resources Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTEK", + "name": "Maris Tech Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTEKW", + "name": "Maris Tech Ltd - Warrant (06/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTEM", + "name": "Molecular Templates Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTEST", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTEX", + "name": "Mannatech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTFBW", + "name": "Motif Bio plc Warrant", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTG", + "name": "MGIC Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTGP", + "name": "WISDOMTREE MORTGAGE PLUS BOND FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTH", + "name": "Meritage Homes Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTL", + "name": "Mechel PJSC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTL-P", + "name": "Mechel PJSC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTLS", + "name": "Materialise Nv", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTN", + "name": "Vail Resorts Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTNB", + "name": "Matinas Biopharma Holdings Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTOR", + "name": "Meritor Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTP", + "name": "Midatech Pharma Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTR", + "name": "Mesa Royalty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTRN", + "name": "Materion Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTRX", + "name": "Matrix Service Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTRY", + "name": "Monterey Bio Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTRYU", + "name": "Monterey Bio Acquisition Corp - Units (1 Ord Share & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTRYW", + "name": "Monterey Bio Acquisition Corp - Warrants (30/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTSI", + "name": "MACOM Technology Solutions Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTT", + "name": "Western Asset Municipal Defined Opportunity Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTTR", + "name": "Matterport Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTUL", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTUM", + "name": "iShares MSCI USA Momentum Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTVC", + "name": "Motive Capital Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTVC-U", + "name": "Motive Capital Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTVC-WS", + "name": "Motive Capital Corp II - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTVR", + "name": "Fount Metaverse ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTW", + "name": "Manitowoc Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTX", + "name": "Minerals Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MTZ", + "name": "Mastec Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MU", + "name": "Micron Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1989-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUA", + "name": "BlackRock Muniassets Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUB", + "name": "iShares National Muni Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUC", + "name": "BlackRock MuniHoldings California Quality Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUDS", + "name": "Mudrick Capital Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUDSU", + "name": "Mudrick Capital Acquisition Corp II - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUE", + "name": "BlackRock MuniHoldings Quality Fund II Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1999-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUFG", + "name": "Mitsubishi UFJ Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUH", + "name": "BlackRock MuniHoldings Fund II Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUI", + "name": "BlackRock Municipal Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUJ", + "name": "BlackRock MuniHoldings New Jersey Quality Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MULG", + "name": "Muliang Viagoo Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MULN", + "name": "Mullen Automotive Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUNI", + "name": "PIMCO Intermediate Municipal Bond Active Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUR", + "name": "Murphy Oil Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MURFU", + "name": "Murphy Canyon Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUS", + "name": "BlackRock MuniHoldings Quality Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUSA", + "name": "Murphy USA Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUSI", + "name": "American Century Multisector Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUST", + "name": "Columbia Multi-Sector Municipal Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MUX", + "name": "McEwen Mining Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVBF", + "name": "MVB Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVF", + "name": "BlackRock MuniVest Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVIS", + "name": "Microvision Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVO", + "name": "MV Oil Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVP", + "name": "Roundhill Pro Sports Media & Apparel ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVPS", + "name": "Amplify Thematic All-Stars ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVRL", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVST", + "name": "Microvast Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVSTW", + "name": "Microvast Holdings Inc - Warrants (23/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVT", + "name": "BlackRock Munivest Fund II Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MVV", + "name": "ProShares Ultra MidCap400", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MWA", + "name": "Mueller Water Products Inc - Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MX", + "name": "MagnaChip Semiconductor Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MXC", + "name": "Mexco Energy Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1997-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MXCT", + "name": "MaxCyte Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MXDU", + "name": "Nationwide Maximum Diversification U.S. Core Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MXE", + "name": "Mexico Equity And Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1990-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MXF", + "name": "Mexico Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MXI", + "name": "iShares Global Materials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MXL", + "name": "MaxLinear Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYC", + "name": "BlackRock MuniYield California Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYD", + "name": "BlackRock MuniYield Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1991-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYE", + "name": "Myers Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYF", + "name": "BlackRock MuniYield Investment Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYFW", + "name": "First Western Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYGN", + "name": "Myriad Genetics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYI", + "name": "BlackRock MuniYield Quality Fund III Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYJ", + "name": "BlackRock MuniYield New Jersey Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYMD", + "name": "MyMD Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYN", + "name": "BlackRock MuniYield New York Quality Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYNA", + "name": "Mynaric AG", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYNZ", + "name": "Mainz Biomed B.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYO", + "name": "Myomo Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYOV", + "name": "Myovant Sciences Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYPS", + "name": "PLAYSTUDIOS Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYPSW", + "name": "PLAYSTUDIOS Inc - Warrants (17/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYRG", + "name": "MYR Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYSZ", + "name": "My Size Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYTE", + "name": "MYT Netherlands Parent BV", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MYY", + "name": "ProShares Short Midcap400", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MZA", + "name": "Blackrock MuniYield Arizona Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "MZZ", + "name": "ProShares UltraShort MidCap400", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAAC", + "name": "North Atlantic Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAACU", + "name": "North Atlantic Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAACW", + "name": "North Atlantic Acquisition Corp - Warrants (20/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NABL", + "name": "N-able Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NABL-W", + "name": "Nable Inc When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAC", + "name": "Nuveen California Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1999-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NACP", + "name": "Impact Shares NAACP Minority Empowerment ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAD", + "name": "Nuveen Dividend Advantage Municipal Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1999-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAII", + "name": "Natural Alternatives International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAIL", + "name": "Direxion Daily Homebuilders & Supplies Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAK", + "name": "Northern Dynasty Minerals Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2003-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAN", + "name": "Nuveen New York Dividend Advantage Municipal Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1999-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NANR", + "name": "SPDR S&P North American Natural Resources ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAOV", + "name": "NanoVibronix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAPA", + "name": "Duckhorn Portfolio Inc (The)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAPR", + "name": "Innovator Growth-100 Power Buffer ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NARI", + "name": "Inari Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAT", + "name": "Nordic American Tankers Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NATH", + "name": "Nathan`s Famous Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NATI", + "name": "National Instruments Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NATR", + "name": "Nature`s Sunshine Products Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAUT", + "name": "Nautilus Biotechnology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAV-P-D", + "name": "Navistar International Corporation Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAVB", + "name": "Navidea Biopharmaceuticals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1992-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAVI", + "name": "Navient Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NAZ", + "name": "Nuveen Arizona Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBB", + "name": "Nuveen Build America Bond Fund Common Shares of Beneficial Interest", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBEV", + "name": "NewAge Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBH", + "name": "Neuberger Berman Municipal Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2002-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBHC", + "name": "National Bank Holdings Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBIX", + "name": "Neurocrine Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBN", + "name": "Northeast Bank", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1987-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBO", + "name": "Neuberger Berman New York Municipal Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2002-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBR", + "name": "Nabors Industries Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBRV", + "name": "Nabriva Therapeutics Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBSE", + "name": "NeuBase Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBST", + "name": "Newbury Street Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBSTU", + "name": "Newbury Street Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBSTW", + "name": "Newbury Street Acquisition Corp - Warrants (30/04/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBTB", + "name": "NBT Bancorp. Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBTX", + "name": "Nanobiotix", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBW", + "name": "Neuberger Ber CA Intermediate Muni Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2002-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBXG", + "name": "Neuberger Berman Next Generation Connectivity Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NBY", + "name": "Novabay Pharmaceuticals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NC", + "name": "Nacco Industries Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1977-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCA", + "name": "Nuveen California Municipal Value Fund.", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCAC", + "name": "Newcourt Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCACU", + "name": "Newcourt Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCACW", + "name": "Newcourt Acquisition Corp - Warrants (13/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCB", + "name": "Nuveen California Municipal Value Fund 2 Common Shares of Beneficial Interest", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCBS", + "name": "Nicolet Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCLH", + "name": "Norwegian Cruise Line Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCMI", + "name": "National Cinemedia Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCNA", + "name": "NuCana plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCNO", + "name": "Ncino Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCR", + "name": "NCR Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCSM", + "name": "NCS Multistage Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCTY", + "name": "The9 Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCV", + "name": "Virtus AllianzGI Convertible & Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCV-P-A", + "name": "Virtus AllianzGI Convertible & Income Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCZ", + "name": "Virtus AllianzGI Convertible & Income Fund II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NCZ-P-A", + "name": "Virtus AllianzGI Convertible & Income Fund II", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDAC", + "name": "NightDragon Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDACU", + "name": "NightDragon Acquisition Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDACW", + "name": "NightDragon Acquisition Corp - Warrants (26/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDAQ", + "name": "Nasdaq Inc - 144A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDJI", + "name": "Nationwide Dow Jones Risk-Managed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDLS", + "name": "Noodles & Company - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDMO", + "name": "Nuveen Dynamic Municipal Opportunities Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDP", + "name": "Tortoise Energy Independence Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDRA", + "name": "ENDRA Life Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDRAW", + "name": "ENDRA Life Sciences Inc - Warrants (12/05/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDSN", + "name": "Nordson Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NDVG", + "name": "Nuveen Dividend Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NE", + "name": "Noble Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEA", + "name": "Nuveen AMT-Free Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEAR", + "name": "BlackRock Short Maturity Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEBUU", + "name": "Nebula Acquisition Corp Units 1 Cls A Ord 13 War", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEBUW", + "name": "Nebula Acquisition Corporation Warrant", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NECB", + "name": "NorthEast Community Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEE", + "name": "NextEra Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEE 6.219", + "name": "NextEra Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEE-P-N", + "name": "NextEra Energy Inc Series N Junior Subordinated Debentures due March 1 2079", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEE-P-P", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEE-P-Q", + "name": "NextEra Energy Inc. Corporate Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEGG", + "name": "Newegg Commerce Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEM", + "name": "Newmont Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEN", + "name": "New England Realty Associates LP", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEO", + "name": "Neogenomics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEOG", + "name": "Neogen Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEON", + "name": "Neonode Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEP", + "name": "NextEra Energy Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEPH", + "name": "Nephros Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEPT", + "name": "Neptune Wellness Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NERD", + "name": "Roundhill BITKRAFT Esports & Digital Entertainment ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NERV", + "name": "Minerva Neurosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NESR", + "name": "National Energy Services Reunited Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NESRW", + "name": "National Energy Services Reunited Corp - Warrants(05/05/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NET", + "name": "Cloudflare Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NETC", + "name": "Nabors Energy Transition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NETC-U", + "name": "Nabors Energy Transition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NETC-WS", + "name": "Nabors Energy Transition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NETI", + "name": "Eneti Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NETL", + "name": "NETLease Corporate Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NETZ", + "name": "Engine No. 1 Transform Climate ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEU", + "name": "NewMarket Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEV", + "name": "Nuveen Enhanced Municipal Value Fund Common Shares of Beneficial Interest", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEW", + "name": "Puxin Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEWP", + "name": "New Pacific Metals Corp - New", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEWR", + "name": "New Relic Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEWT", + "name": "Newtek Business Services Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEWTL", + "name": "Newtek Business Services Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEWTZ", + "name": "Newtek Business Services Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEX", + "name": "NexTier Oilfield Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEXA", + "name": "Nexa Resources S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEXI", + "name": "Neximmune Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NEXT", + "name": "NextDecade Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFBK", + "name": "Northfield Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFC", + "name": "New Frontier Corporation Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFC-U", + "name": "New Frontier Corporation Units each consisting of one Class A Ordinary Share and one half of one Warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFC-WS", + "name": "New Frontier Corporation Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 1150 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFE", + "name": "New Fortress Energy Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFG", + "name": "National Fuel Gas Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFGC", + "name": "New Found Gold Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFJ", + "name": "Virtus AllianzGI Dividend Interest & Premium Strategy Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFLT", + "name": "Virtus Newfleet Multi-Sector Unconstrained Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFLX", + "name": "NetFlix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFNT", + "name": "Infinite Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFNT-U", + "name": "Infinite Acquisition Corp Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFNT-WS", + "name": "Infinite Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFRA", + "name": "FlexShares STOXX Global Broad Infrastructure Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFTY", + "name": "FIRST TRUST INDIA NIFTY 50 EQUAL WEIGHT ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFTZ", + "name": "DEFIANCE DIGITAL REVOLUTION ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFYS", + "name": "Enphys Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFYS-U", + "name": "Enphys Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NFYS-WS", + "name": "Enphys Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NG", + "name": "Novagold Resources Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2003-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGC", + "name": "Northern Genesis Acquisition Corp III", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGC-U", + "name": "Northern Genesis Acquisition Corp III - Units (1 Ord Share & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGC-WS", + "name": "Northern Genesis Acquisition Corp III - Warrants (31/12/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGD", + "name": "New Gold Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2004-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGE", + "name": "Global X MSCI Nigeria ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGG", + "name": "National Grid Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGL", + "name": "NGL Energy Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGL-P-B", + "name": "NGL ENERGY PARTNERS LP 900 Class B FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units representing limited partnership interests", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGL-P-C", + "name": "NGL ENERGY PARTNERS LP 9625 Class C FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units representing limited partner interests", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGM", + "name": "Ngm Biopharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGMS", + "name": "NeoGames SA", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGS", + "name": "Natural Gas Services Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGVC", + "name": "Natural Grocers by Vitamin Cottage Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NGVT", + "name": "Ingevity Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NH", + "name": "NantHealth Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NHA", + "name": "Nuveen Municipal 2021 Target Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2016-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NHC", + "name": "National Healthcare Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1987-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NHF", + "name": "NexPoint Strategic Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2006-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NHI", + "name": "National Health Investors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NHIC", + "name": "NEWHOLD INVESTMENT CORP II - CLASS A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NHICU", + "name": "NewHold Investment Corp II - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NHS", + "name": "Neuberger Berman High Yield Strategies Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2003-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NHTC", + "name": "Natural Health Trends Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NI", + "name": "Nisource Inc (Holding Co.)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NI-P-B", + "name": "Nisource Inc (Holding Co.)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NIB", + "name": "iPath Dow JonesUBS Cocoa Subindex Total ReturnSM ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NICE", + "name": "NICE Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NICK", + "name": "Nicholas Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NID", + "name": "Nuveen Intermediate Duration Municipal Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NIE", + "name": "Virtus AllianzGI Equity & Convertible Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NIFE", + "name": "DIREXION FALLEN KNIVES ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NILE", + "name": "BitNile Holdings Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1997-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NIM", + "name": "Nuveen Select Maturities Municipal Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NIMC", + "name": "Nisource Inc (Holding Co.)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NINE", + "name": "Nine Energy Service Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NIO", + "name": "NIO Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NIQ", + "name": "Nuveen Intermediate Duration Quality Municipal Term Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NISN", + "name": "NiSun International Enterprise Development Group Co Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NIU", + "name": "Niu Technologies", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NJAN", + "name": "Innovator Growth-100 Power Buffer ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NJR", + "name": "New Jersey Resources Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NJUL", + "name": "Innovator Growth-100 Power Buffer ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NJV", + "name": "Nuveen New Jersey Municipal Value Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NKE", + "name": "Nike Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NKG", + "name": "Nuveen Georgia Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NKLA", + "name": "Nikola Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NKSH", + "name": "National Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NKTR", + "name": "Nektar Therapeutics", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NKTX", + "name": "Nkarta Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NKX", + "name": "Nuveen California AMT-Free Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NL", + "name": "NL Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLIT", + "name": "Northern Lights Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLITU", + "name": "Northern Lights Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLITW", + "name": "Northern Lights Acquisition Corp - Warrants (01/11/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLOK", + "name": "NortonLifeLock Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLR", + "name": "VanEck Uranium Nuclear Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLS", + "name": "Nautilus Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLSN", + "name": "Nielsen Holdings plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLSP", + "name": "NLS Pharmaceutics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLSPW", + "name": "NLS Pharmaceutics Ltd - Warrants (25/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLTX", + "name": "Neoleukin Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLY", + "name": "Annaly Capital Management Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLY-P-F", + "name": "Annaly Capital Management Inc 695 Series F", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLY-P-G", + "name": "Annaly Capital Management Inc 650 Series G FixedtoFloating Rate Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NLY-P-I", + "name": "Annaly Capital Management Inc FXDFR PRF PERPETUAL USD 25 Ser I", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NM", + "name": "Navios Maritime Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMAI", + "name": "Nuveen Multi-Asset Income Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMCO", + "name": "Nuveen Municipal Credit Opportunities Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMFC", + "name": "New Mountain Finance Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMG", + "name": "Nouveau Monde Graphite Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMI", + "name": "Nuveen Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMIH", + "name": "NMI Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMK-P-B", + "name": "Niagara Mohawk Holdings Inc Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMK-P-C", + "name": "Niagara Mohawk Holdings Inc Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NML", + "name": "Neuberger Berman MLP Income Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2013-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMM", + "name": "Navios Maritime Partners L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMMC", + "name": "North Mountain Merger Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMMCU", + "name": "North Mountain Merger Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMMCW", + "name": "North Mountain Merger Corp - Warrants (16/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMPRG", + "name": "Navios Maritime Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMPRH", + "name": "Navios Maritime Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMR", + "name": "Nomura Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMRD", + "name": "Nemaura Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMRK", + "name": "Newmark Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMS", + "name": "Nuveen Minnesota Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMT", + "name": "Nuveen Massachusetts Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMTC", + "name": "NeuroOne Medical Technologies Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMTR", + "name": "9 Meters Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMY", + "name": "Nuveen Maryland Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NMZ", + "name": "Nuveen Municipal High Income Opportunity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NN", + "name": "NextNav Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NNAVW", + "name": "NextNav Inc - Warrants (28/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NNBR", + "name": "NN Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NNDM", + "name": "Nano Dimension Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NNI", + "name": "Nelnet Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NNN", + "name": "National Retail Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NNOX", + "name": "Nano X Imaging Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NNVC", + "name": "NanoViricides Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NNY", + "name": "Nuveen New York Municipal Value Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOA", + "name": "North American Construction Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOAC", + "name": "Natural Order Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOACU", + "name": "Natural Order Acquisition Corp - Units (1 Ord & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOACW", + "name": "Natural Order Acquisition Corp - Warrants (15/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOAH", + "name": "Noah Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOBL", + "name": "ProShares S&P 500 Dividend Aristocrats ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOC", + "name": "Northrop Grumman Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOCT", + "name": "Innovator Growth-100 Power Buffer ETF- October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NODK", + "name": "NI Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOG", + "name": "Northern Oil and Gas Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOK", + "name": "Nokia Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOM", + "name": "Nuveen Missouri Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOMD", + "name": "Nomad Foods Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NORW", + "name": "Global X MSCI Norway ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOTV", + "name": "Inotiv Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOV", + "name": "NOV Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOVA", + "name": "Sunnova Energy International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOVN", + "name": "Novan Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOVT", + "name": "Novanta Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOVV", + "name": "Nova Vision Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOVVR", + "name": "Nova Vision Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOVVU", + "name": "Nova Vision Acquisition Corp - Unit (1 Ordinary share 1 Wrt & 1 Rts)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOVVW", + "name": "Nova Vision Acquisition Corp - Warrants (31/12/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOVZ", + "name": "TrueShares Structured Outcome (November) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NOW", + "name": "ServiceNow Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NP", + "name": "Neenah Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPAB", + "name": "New Providence Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPABU", + "name": "New Providence Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPABW", + "name": "New Providence Acquisition Corp II - Warrants - (04/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPCE", + "name": "NeuroPace Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPCT", + "name": "Nuveen Core Plus Impact Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPFD", + "name": "Nuveen Variable Rate Preferred & Income Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPK", + "name": "National Presto Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPN", + "name": "Nuveen Pennsylvania Municipal Value Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPO", + "name": "EnPro Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPTN", + "name": "NeoPhotonics Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NPV", + "name": "Nuveen Virginia Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NQP", + "name": "Nuveen Pennsylvania Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1991-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NR", + "name": "Newpark Resources Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRAC", + "name": "Noble Rock Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRACU", + "name": "Noble Rock Acquisition Corp - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRACW", + "name": "Noble Rock Acquisition Corp - Warrants (31/01/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRBO", + "name": "NeuroBo Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRC", + "name": "National Research Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRDS", + "name": "Nerdwallet Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRDY", + "name": "Nerdy Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRDY-WS", + "name": "Nerdy Inc Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NREF", + "name": "NexPoint Real Estate Finance Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NREF-P-A", + "name": "NexPoint Real Estate Finance Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRG", + "name": "NRG Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRGD", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRGU", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRGV", + "name": "Energy Vault Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRGV-WS", + "name": "Energy Vault Holdings Inc Wt Exp 01112027", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRGX", + "name": "PIMCO Energy and Tactical Credit Opportunities Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRIM", + "name": "Northrim Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRIX", + "name": "Nurix Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRK", + "name": "Nuveen New York AMT-Free Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRO", + "name": "Neuberger Berman Real Estate Securities Income Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2003-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRP", + "name": "Natural Resource Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRSN", + "name": "NeuroSense Therapeutics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRSNW", + "name": "NeuroSense Therapeutics Ltd - Warrants (09/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRT", + "name": "North European Oil Royalty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRUC", + "name": "National Rural Utilities Cooperative Finance Corporation 5500 Subordinated Notes due 2064 Subordinated Deferrable Interest Notes", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRXP", + "name": "NRX Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRXPW", + "name": "NRX Pharmaceuticals Inc - Warrants (24/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRZ", + "name": "New Residential Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRZ-P-A", + "name": "New Residential Investment Corp FXDFR PRF PERPETUAL USD 25 Ser A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRZ-P-B", + "name": "New Residential Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRZ-P-C", + "name": "New Residential Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NRZ-P-D", + "name": "New Residential Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NS", + "name": "Nustar Energy L P", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NS-P-A", + "name": "Nustar Energy LP 850 Series A FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NS-P-B", + "name": "Nustar Energy LP 7625 Series B FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units representing limited partner interests", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NS-P-C", + "name": "Nustar Energy LP 900 Series C FixedtoFloating Rate Cumulative Redeemable Perpetual Preferred Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSA", + "name": "National Storage Affiliates Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSA-P-A", + "name": "National Storage Affiliates Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSC", + "name": "Norfolk Southern Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSCS", + "name": "NUVEEN SMALL CAP SELECT ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSEC", + "name": "National Security Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSIT", + "name": "Insight Enterprises Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSL", + "name": "Nuveen Senior Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1999-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSP", + "name": "Insperity Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSPI", + "name": "Nationwide S&P 500 Risk-Managed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSPR", + "name": "InspireMD Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSPR-WSB", + "name": "InspireMD Inc - Warrants - Class B (14/03/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSR", + "name": "Nomad Royalty Company Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSS", + "name": "NuStar Logistics LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSSC", + "name": "NAPCO Security Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTB", + "name": "Northern Star Investment Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTB-U", + "name": "Northern Star Investment Corp II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTB-WS", + "name": "Northern Star Investment Corp II - Warrants (31/01/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTC", + "name": "Northern Star Investment Corp III - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTC-U", + "name": "Northern Star Investment Corp III - Units (1 Ord Share Class A & 1/6 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTC-WS", + "name": "Northern Star Investment Corp III - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTD", + "name": "Northern Star Investment Corp IV - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTD-U", + "name": "Northern Star Investment Corp IV - Units (1 Ord Share Class A & 1/6 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTD-WS", + "name": "Northern Star Investment Corp IV - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTG", + "name": "Nanostring Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSTS", + "name": "NSTS Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NSYS", + "name": "Nortech Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTAP", + "name": "Netapp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTB", + "name": "Bank of N T Butterfield & Son Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTCO", + "name": "Natura &Co Holding S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTCT", + "name": "Netscout Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTES", + "name": "NetEase Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST", + "name": "NTEST", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-A", + "name": "NTESTA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-B", + "name": "NTESTB", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-C", + "name": "NTESTC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-G", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-H", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-I", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-J", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-K", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-L", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-M", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-N", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-O", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-P", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-Q", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-Y", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTEST-Z", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTG", + "name": "Tortoise Midstream Energy Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTGR", + "name": "Netgear Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTIC", + "name": "Northern Technologies International Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTIP", + "name": "Network-1 Technologies Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2013-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTKI", + "name": "NATIONWIDE RUSSELL 2000 RISK-MANAGED INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTLA", + "name": "Intellia Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTNX", + "name": "Nutanix Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTP", + "name": "Nam Tai Property Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTR", + "name": "Nutrien Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTRA", + "name": "Natera Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTRB", + "name": "Nutriband Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTRBW", + "name": "Nutriband Inc - Warrants (30/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTRS", + "name": "Northern Trust Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTRSO", + "name": "Northern Trust Corp. PRF PERPETUAL USD DpSh Rp11000th Sr E", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTRSP", + "name": "Northern Trust Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTSE", + "name": "WisdomTree Emerging Markets Efficient Core Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTSI", + "name": "WisdomTree International Efficient Core Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTST", + "name": "Netstreit Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTSX", + "name": "WisdomTree U.S. Efficient Core Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTUS", + "name": "Natus Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTWK", + "name": "Netsol Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTX", + "name": "Nuveen Texas Quality Income Municipal Fd", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1991-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTZ", + "name": "Natuzzi S.P.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NTZO", + "name": "Impact Shares MSCI Global Climate Select ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NU", + "name": "Nu Holdings Ltd Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUAG", + "name": "NuShares Enhanced Yield U.S. Aggregate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUBD", + "name": "NuShares ESG U.S. Aggregate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUBIU", + "name": "Nubia Brand International Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUDM", + "name": "Nuveen ESG International Developed Markets Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUDV", + "name": "Nuveen ESG Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUE", + "name": "Nucor Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUEM", + "name": "Nuveen ESG Emerging Markets Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUGO", + "name": "Nuveen Growth Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUGT", + "name": "Direxion Daily Gold Miners Index Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUHY", + "name": "NUVEEN ESG HIGH YIELD CORPORATE BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NULC", + "name": "NUVEEN ESG LARGE-CAP ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NULG", + "name": "Nuveen ESG Large-Cap Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NULV", + "name": "Nuveen ESG Large-Cap Value ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUM", + "name": "Nuveen Michigan Qlity Incom Municipal Fd", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1991-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUMG", + "name": "Nuveen ESG Mid-Cap Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUMV", + "name": "Nuveen ESG Mid-Cap Value ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUO", + "name": "Nuveen Ohio Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1991-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NURE", + "name": "Nuveen Short-Term REIT ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NURO", + "name": "Neurometrix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUS", + "name": "Nu Skin Enterprises Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUSA", + "name": "NUVEEN ENHANCED YIELD 1-5 YEAR U.S. AGGREGATE BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUSC", + "name": "Nuveen ESG Small-Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUSI", + "name": "Nationwide Nasdaq-100 Risk-Managed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUV", + "name": "Nuveen Municipal Value Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUVA", + "name": "Nuvasive Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUVB", + "name": "Nuvation Bio Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUVB-WS", + "name": "Nuvation Bio Inc - Warrants (07/07/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUVL", + "name": "Nuvalent Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUW", + "name": "Nuveen AMT-Free Municipal Value Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUWE", + "name": "Nuwellis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NUZE", + "name": "Nuzee Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVAC", + "name": "NorthView Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVACR", + "name": "NorthView Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVACW", + "name": "NorthView Acquisition Corp - Warrants (02/08/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVAX", + "name": "Novavax Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVCN", + "name": "Neovasc Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVCR", + "name": "NovoCure Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVCT", + "name": "Nuvectis Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVDA", + "name": "NVIDIA Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVEC", + "name": "NVE Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVEE", + "name": "NV5 Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVEI", + "name": "Nuvei Corporation (Sub Voting)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVFY", + "name": "Nova Lifestyle Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVG", + "name": "Nuveen AMT-Free Municipal Credit Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVGS", + "name": "Navigator Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVIV", + "name": "InVivo Therapeutics Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVMI", + "name": "Nova Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVNO", + "name": "enVVeno Medical Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVNOW", + "name": "enVVeno Medical Corporation - Warrants (30/05/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVO", + "name": "Novo Nordisk", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVOS", + "name": "Novo Integrated Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVQ", + "name": "QRAFT AI-Enhanced U.S. Next Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVR", + "name": "NVR Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVRO", + "name": "Nevro Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVS", + "name": "Novartis AG", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVSA", + "name": "New Vista Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVSAU", + "name": "New Vista Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVSAW", + "name": "New Vista Acquisition Corp - Warrants (01/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVST", + "name": "Envista Holdings Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVT", + "name": "nVent Electric plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVTA", + "name": "Invitae Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVTS", + "name": "Navitas Semiconductor Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVVE", + "name": "Nuvve Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVVEW", + "name": "Nuvve Holding Corp - Warrants (19/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NVX", + "name": "Novonix Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWBI", + "name": "Northwest Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWE", + "name": "Northwestern Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWFL", + "name": "Norwood Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWG", + "name": "NatWest Group Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWL", + "name": "Newell Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWLG", + "name": "Nuveen Winslow Large-Cap Growth ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWLI", + "name": "National Western Life Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWN", + "name": "Northwest Natural Holding Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWPX", + "name": "Northwest Pipe Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWS", + "name": "News Corp - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NWSA", + "name": "News Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NX", + "name": "Quanex Building Products Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXC", + "name": "Nuveen California Select Tax-Free Income Portfolio", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXDT", + "name": "NexPoint Diversified Real Estate Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXDT-P-A", + "name": "NexPoint Diversified Real Estate Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXE", + "name": "NexGen Energy Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXGL", + "name": "Nexgel Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXGLW", + "name": "Nexgel Inc - Warrants (17/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXGN", + "name": "NextGen Healthcare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXJ", + "name": "Nuveen New Jersey Quality Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXMD", + "name": "Nexeon MedSystems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXN", + "name": "Nuveen New York Select Tax-Free Income Portfolio", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXP", + "name": "Nuveen Select Tax-Free Income Portfolio", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXPI", + "name": "NXP Semiconductors NV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXPL", + "name": "NextPlat Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXPLW", + "name": "NextPlat Corp - Warrants (29/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXQ", + "name": "Nuveen Select Tax-Free Income Portfolio 2", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXR", + "name": "Nuveen Select Tax-Free Income Portfolio 3", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXRT", + "name": "NexPoint Residential Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXST", + "name": "Nexstar Media Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXTC", + "name": "Nextcure Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXTG", + "name": "First Trust Indxx NextG ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NXTP", + "name": "NextPlay Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYC", + "name": "New York City REIT Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYCB", + "name": "New York Community Bancorp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYCB-P-A", + "name": "New York Community Bancorp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYCB-P-U", + "name": "New York Community Bancorp Inc Capital Tr V BONUSES", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYF", + "name": "iShares New York Muni Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYMT", + "name": "New York Mortgage Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYMTL", + "name": "New York Mortgage Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYMTM", + "name": "New York Mortgage Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYMTN", + "name": "New York Mortgage Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYMTZ", + "name": "New York Mortgage Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYMX", + "name": "Nymox Pharmaceutical Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYT", + "name": "New York Times Co. - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYV", + "name": "Nuveen New York Municipal Value Fund 2", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NYXH", + "name": "Nyxoah SA", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NZAC", + "name": "SPDR MSCI ACWI Low Carbon Target ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NZF", + "name": "Nuveen Municipal Credit Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "NZRO", + "name": "Strategy Shares Halt Climate Change ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2022-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "O", + "name": "Realty Income Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OAC-U", + "name": "Oaktree Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OACB", + "name": "Oaktree Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OACB-U", + "name": "Oaktree Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OACB-WS", + "name": "Oaktree Acquisition Corp II - Warrants (15/09/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OAK-P-A", + "name": "Oaktree Capital Group LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OAK-P-B", + "name": "Oaktree Capital Group LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OALC", + "name": "OneAscent Large Cap Core ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OAS", + "name": "Oasis Petroleum Inc - New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OB", + "name": "Outbrain Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OBAS", + "name": "Optibase", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OBCI", + "name": "Ocean Bio-Chem Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OBE", + "name": "Obsidian Energy Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OBLG", + "name": "Oblong Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OBND", + "name": "SPDR LOOMIS SAYLES OPPORTUNISTIC BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OBNK", + "name": "Origin Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OBOR", + "name": "KRANESHARES MSCI ONE BELT ONE ROAD INDEX ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OBSV", + "name": "ObsEva SA.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OBT", + "name": "Orange County Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OC", + "name": "Owens Corning", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCA", + "name": "Omnichannel Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCA-U", + "name": "Omnichannel Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCA-WS", + "name": "Omnichannel Acquisition Corp - Warrants (30/12/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCAX", + "name": "OCA Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCAXU", + "name": "OCA Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCAXW", + "name": "OCA Acquisition Corp - Warrants (14/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCC", + "name": "Optical Cable Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCCI", + "name": "OFS Credit Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCCIN", + "name": "OFS Credit Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCCIO", + "name": "OFS Credit Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCDX", + "name": "Ortho Clinical Diagnostics Holdings plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCEN", + "name": "IQ Clean Oceans ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCFC", + "name": "OceanFirst Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-07-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCFCP", + "name": "OceanFirst Financial Corp. FXDFR PRF PERPETUAL USD 25 Ser A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCFT", + "name": "Oneconnect Financial Technology Co Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCG", + "name": "Oriental Culture Holding Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCGN", + "name": "Ocugen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCIO", + "name": "ClearShares OCIO ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCN", + "name": "Ocwen Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCSL", + "name": "Oaktree Specialty Lending Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCSLL", + "name": "Oaktree Specialty Lending Corporation 6125 senior notes due 2028", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCTZ", + "name": "TrueShares Structured Outcome (October) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCUL", + "name": "Ocular Therapeutix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCUP", + "name": "Ocuphire Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OCX", + "name": "Oncocyte Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ODC", + "name": "Oil-Dri Corp Of America", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ODFL", + "name": "Old Dominion Freight Line Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ODP", + "name": "ODP Corporation (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OEC", + "name": "Orion Engineered Carbons S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OEF", + "name": "iShares S&P 100 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OEG", + "name": "Orbital Energy Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OEPW", + "name": "One Equity Partners Open Water I Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OEPWU", + "name": "One Equity Partners Open Water I Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OEPWW", + "name": "One Equity Partners Open Water I Corp - Warrants (14/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OESX", + "name": "Orion Energy Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OEUR", + "name": "OShares Europe Quality Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OFC", + "name": "Corporate Office Properties Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OFED", + "name": "Oconee Federal Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OFG", + "name": "OFG Bancorp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OFIX", + "name": "Orthofix Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OFLX", + "name": "Omega Flex Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OFS", + "name": "OFS Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OFSSH", + "name": "OFS Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OG", + "name": "Onion Global Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OGCP", + "name": "Empire State Realty OP LP", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2013-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OGE", + "name": "Oge Energy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OGEN", + "name": "Oragenics Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2004-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OGI", + "name": "OrganiGram Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OGIG", + "name": "O`Shares Global Internet Giants ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OGN", + "name": "Organon & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OGN-W", + "name": "Organon & Co. When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OGS", + "name": "ONE Gas Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OHAA", + "name": "OPY Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OHAAU", + "name": "OPY Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OHAAW", + "name": "OPY Acquisition Corp I - Warrants (22/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OHI", + "name": "Omega Healthcare Investors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OHPA", + "name": "Orion Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OHPAU", + "name": "Orion Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OHPAW", + "name": "Orion Acquisition Corp - Warrants (19/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OI", + "name": "O-I Glass Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OIA", + "name": "Invesco Municipal Income Opportunities Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OIH", + "name": "VanEck Oil Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OII", + "name": "Oceaneering International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OIIM", + "name": "O2 Micro International", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OIL", + "name": "iPath Pure Beta Crude Oil ETN", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2011-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OILD", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OILK", + "name": "ProShares K-1 Free Crude Oil Strategy ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OILU", + "name": "Bank of Montreal", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OILX", + "name": "UBS AG London Branch ETRACS SP GSCI Crude Oil Total Return Index ETN Index Ser B 02222046", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OIS", + "name": "Oil States International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OKE", + "name": "Oneok Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OKTA", + "name": "Okta Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLB", + "name": "OLB Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLED", + "name": "Universal Display Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLIT", + "name": "OmniLit Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLITU", + "name": "OmniLit Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLITW", + "name": "OmniLit Acquisition Corp - Warrants (08/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLK", + "name": "Olink Holding AB (publ)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLLI", + "name": "Ollies Bargain Outlet Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLMA", + "name": "Olema Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLN", + "name": "Olin Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLO", + "name": "Olo Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLP", + "name": "One Liberty Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OLPX", + "name": "Olaplex Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OM", + "name": "Outset Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMAB", + "name": "Grupo Aeroportuario del Centro Norte S.A.B de C.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMC", + "name": "Omnicom Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMCL", + "name": "Omnicell Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMEG", + "name": "Omega Alpha SPAC - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMER", + "name": "Omeros Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMEX", + "name": "Odyssey Marine Exploration Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMF", + "name": "OneMain Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMFL", + "name": "Invesco Russell 1000 Dynamic Multifactor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMFS", + "name": "Invesco Russell 2000 Dynamic Multifactor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMGA", + "name": "Omega Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMI", + "name": "Owens & Minor Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMIC", + "name": "Singular Genomics Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OMQS", + "name": "OMNIQ Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ON", + "name": "ON Semiconductor Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONB", + "name": "Old National Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONBPO", + "name": "Old National Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONBPP", + "name": "Old National Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONCR", + "name": "Oncorus Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONCS", + "name": "OncoSec Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONCT", + "name": "Oncternal Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONCY", + "name": "Oncolytics Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OND", + "name": "ProShares On-Demand ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONDS", + "name": "Ondas Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONE", + "name": "OneSmart International Education Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONEM", + "name": "1life Healthcare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONEO", + "name": "SPDR Russell 1000 Momentum Focus ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONEQ", + "name": "Fidelity Nasdaq Composite Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2003-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONEV", + "name": "SPDR Russell 1000 Low Volatility Focus ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONEW", + "name": "Onewater Marine Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONEY", + "name": "SPDR Russell 1000 Yield Focus ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONG", + "name": "Direxion Daily Oil Services Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONL", + "name": "Orion Office REIT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONL-W", + "name": "Orion Office REIT Inc WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONLN", + "name": "ProShares Online Retail ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONOF", + "name": "Global X Adaptive U.S. Risk Management ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONON", + "name": "On Holding AG Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONTF", + "name": "ON24 Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONTO", + "name": "Onto Innovation Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONTX", + "name": "Onconova Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONVO", + "name": "Organovo Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONYX", + "name": "Onyx Acquisition Co I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONYXU", + "name": "Onyx Acquisition Co I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ONYXW", + "name": "Onyx Acquisition Co I - Warrants (30/11/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OOMA", + "name": "Ooma Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OOTO", + "name": "Direxion Daily Travel & Vacation Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OP", + "name": "OceanPal Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPA", + "name": "Magnum Opus Acquisition Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPA-U", + "name": "Magnum Opus Acquisition Ltd - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPA-WS", + "name": "Magnum Opus Acquisition Ltd - Warrants (06/03/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPAD", + "name": "Offerpad Solutions Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPAD-WS", + "name": "Offerpad Solutions Inc - Warrants (16/10/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPBK", + "name": "OP Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPCH", + "name": "Option Care Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPEN", + "name": "Opendoor Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPER", + "name": "ClearShares Ultra-Short Maturity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPFI", + "name": "OppFi Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPFI-WS", + "name": "OppFi Inc - Warrants (20/07/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPGN", + "name": "Opgen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPHC", + "name": "Optimumbank Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPI", + "name": "Office Properties Income Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPINL", + "name": "Office Properties Income Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPK", + "name": "Opko Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPNT", + "name": "Opiant Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPOF", + "name": "Old Point Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPP", + "name": "RiverNorth/DoubleLine Strategic opportunity fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2016-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPP-P-A", + "name": "RiverNorth/DoubleLine Strategic opportunity fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPP-P-B", + "name": "RiverNorth/DoubleLine Strategic opportunity fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPP-R-W", + "name": "RiverNorthDoubleLine Strategic Opportunity Fund Inc Rights expiring October 1 2020", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPPX", + "name": "Corbett Road Tactical Opportunity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPRA", + "name": "Opera Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPRT", + "name": "Oportun Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPRX", + "name": "OptimizeRx Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPT", + "name": "Opthea Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPTN", + "name": "OptiNose Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPTT", + "name": "Ocean Power Technologies - Reg S", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OPY", + "name": "Oppenheimer Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OR", + "name": "Osisko Gold Royalties Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORA", + "name": "Ormat Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORAN", + "name": "Orange.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORC", + "name": "Orchid Island Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORCC", + "name": "Owl Rock Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORCL", + "name": "Oracle Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORGN", + "name": "Origin Materials Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORGNW", + "name": "Origin Materials Inc - Warrants (23/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORGO", + "name": "Organogenesis Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORGS", + "name": "Orgenesis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORI", + "name": "Old Republic International Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORIA", + "name": "Orion Biotech Opportunities Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORIAU", + "name": "Orion Biotech Opportunities Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORIAW", + "name": "Orion Biotech Opportunities Corp - Warrants (15/04/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORIC", + "name": "ORIC Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORLA", + "name": "Orla Mining Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORLY", + "name": "O`Reilly Automotive Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORMP", + "name": "Oramed Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORN", + "name": "Orion Group Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORPH", + "name": "Orphazyme A/S", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORRF", + "name": "Orrstown Financial Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ORTX", + "name": "Orchard Therapeutics plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSBC", + "name": "Old Second Bancorporation Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSCR", + "name": "Oscar Health Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSCV", + "name": "Opus Small Cap Value Plus ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSG", + "name": "Overseas Shipholding Group Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSH", + "name": "Oak Street Health Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSI", + "name": "Osiris Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSI-U", + "name": "Osiris Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSI-WS", + "name": "Osiris Acquisition Corp - Warrants (01/05/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSIS", + "name": "OSI Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSK", + "name": "Oshkosh Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSLE", + "name": "Oaktree Specialty Lending Corporation 5875 Senior Notes due 2024", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSLE-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSPN", + "name": "OneSpan Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSS", + "name": "One Stop Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSTK", + "name": "Overstock.com Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSTR", + "name": "Oyster Enterprises Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSTRU", + "name": "Oyster Enterprises Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSTRW", + "name": "Oyster Enterprises Acquisition Corp - Warrants (20/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSUR", + "name": "Orasure Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OSW", + "name": "OneSpaWorld Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTEC", + "name": "OceanTech Acquisitions I Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTECU", + "name": "OceanTech Acquisitions I Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTECW", + "name": "OceanTech Acquisitions I Corp - Warrants (12/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTEX", + "name": "Open Text Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTIC", + "name": "Otonomy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTIS", + "name": "Otis Worldwide Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTLK", + "name": "Outlook Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTLY", + "name": "Oatly Group AB", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTMO", + "name": "Otonomo Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTMOW", + "name": "Otonomo Technologies Ltd - Warrants (13/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTRA", + "name": "OTR Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTRAU", + "name": "OTR Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTRAW", + "name": "OTR Acquisition Corp - Warrants (01/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTRK", + "name": "Ontrak Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTRKP", + "name": "Ontrak Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OTTR", + "name": "Otter Tail Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OUNZ", + "name": "VanEck Merk Gold Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OUSA", + "name": "OwShares U.S. Quality Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OUSM", + "name": "OShares U.S. Small-Cap Quality Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OUST", + "name": "Ouster Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OUST-WS", + "name": "Ouster Inc - Warrants (31/08/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OUT", + "name": "Outfront Media Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVB", + "name": "Overlay Shares Core Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVBC", + "name": "Ohio Valley Banc Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVF", + "name": "Overlay Shares Foreign Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVID", + "name": "Ovid Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVL", + "name": "Overlay Shares Large Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVLH", + "name": "OVERLAY SHARES HEDGED LARGE CAP EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVLY", + "name": "Oak Valley Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVM", + "name": "OVERLAY SHARES MUNICIPAL BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVS", + "name": "OVERLAY SHARES SMALL CAP EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVT", + "name": "Overlay Shares Short Term Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OVV", + "name": "Ovintiv Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OWL", + "name": "Blue Owl Capital Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OWL-WS", + "name": "Blue Owl Capital Inc Redeemable Warrants", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OWLT", + "name": "Owlet Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OWLT-WS", + "name": "Owlet Inc - Warrants(14/09/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OWNS", + "name": "Impact Shares Affordable Housing MBS ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXAC", + "name": "Oxbridge Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXACU", + "name": "Oxbridge Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXACW", + "name": "Oxbridge Acquisition Corp - Warrants (04/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXBR", + "name": "Oxbridge Re Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXBRW", + "name": "Oxbridge Re Holdings Ltd - Warrants (26/03/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXLC", + "name": "Oxford Lane Capital Corp", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXLCL", + "name": "Oxford Lane Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXLCM", + "name": "Oxford Lane Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXLCO", + "name": "Oxford Lane Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXLCP", + "name": "Oxford Lane Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXLCZ", + "name": "Oxford Lane Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXM", + "name": "Oxford Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXSQ", + "name": "Oxford Square Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXSQG", + "name": "Oxford Square Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXSQL", + "name": "Oxford Square Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXSQZ", + "name": "Oxford Square Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXUS", + "name": "Oxus Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXUSU", + "name": "Oxus Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXUSW", + "name": "Oxus Acquisition Corp - Warrants (26/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXY", + "name": "Occidental Petroleum Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXY-WS", + "name": "Occidental Petroleum Corp - Warrants (03/08/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXY-WS-W", + "name": "Occidental Petroleum Corporation Warrants When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OXY-WSW", + "name": "Occidental Petroleum Corporation Warrants When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OYST", + "name": "Oyster Point Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OZ", + "name": "Belpointe REIT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OZK", + "name": "Bank OZK", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OZKAP", + "name": "Bank OZK", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "OZON", + "name": "Ozon Holdings PLC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAA", + "name": "Plains All American Pipeline LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAACR", + "name": "Pacific Special Acquisition Corp Rt", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAACW", + "name": "PAACW", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAAS", + "name": "Pan American Silver Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAB", + "name": "PGIM Active Aggregate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PABU", + "name": "iShares Paris-Aligned Climate MSCI USA ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAC", + "name": "Grupo Aeroportuario Del Pacifico SAB de CV", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PACB", + "name": "Pacific Biosciences of California Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PACI", + "name": "PROOF Acquisition Corp I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PACI-U", + "name": "PROOF Acquisition Corp I Units each consisting of one share of Class A common stock 0.0001 par value and onehalf of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PACI-WS", + "name": "PROOF Acquisition Corp I - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PACK", + "name": "Ranpak Holdings Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PACW", + "name": "Pacwest Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PACX", + "name": "Pioneer Merger Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PACXU", + "name": "Pioneer Merger Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PACXW", + "name": "Pioneer Merger Corp - Warrants(07/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAFO", + "name": "Pacifico Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAFOR", + "name": "Pacifico Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAFOU", + "name": "Pacifico Acquisition Corp - Units (1 Ord Share & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAG", + "name": "Penske Automotive Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAGP", + "name": "Plains GP Holdings LP - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAGS", + "name": "PagSeguro Digital Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAHC", + "name": "Phibro Animal Health Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAI", + "name": "Western Asset Investment Grade Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAK", + "name": "Global X MSCI Pakistan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PALC", + "name": "Pacer Lunt Large Cap Multi-Factor Alternator ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PALI", + "name": "Palisade Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PALL", + "name": "Aberdeen Standard Physical Palladium Shares ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PALT", + "name": "Paltalk Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAM", + "name": "Pampa Energia SA", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAMC", + "name": "Pacer Lunt MidCap Multi-Factor Alternator ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PANA", + "name": "Panacea Acquisition Corp II", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PANL", + "name": "Pangaea Logistics Solutions Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PANW", + "name": "Palo Alto Networks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAPR", + "name": "Innovator U.S. Equity Power Buffer ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAQC", + "name": "Provident Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAQCU", + "name": "Provident Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAQCW", + "name": "Provident Acquisition Corp - Warrants (08/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAR", + "name": "Par Technology Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PARA", + "name": "Paramount Global - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PARAA", + "name": "Paramount Global - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PARAP", + "name": "Paramount Global Conv Pfd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PARR", + "name": "Par Pacific Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PASG", + "name": "Passage Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PATH", + "name": "UiPath Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PATI", + "name": "Patriot Transportation Holding Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PATK", + "name": "Patrick Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAUG", + "name": "Innovator U.S. Equity Power Buffer ETF - August", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAVE", + "name": "Global X U.S. Infrastructure Development ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAVM", + "name": "PAVmed Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAVMZ", + "name": "PAVmed Inc - Warrants - Series Z (30/04/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAWZ", + "name": "ProShares Pet Care ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAX", + "name": "Patria Investments Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAXS", + "name": "PIMCO Access Income Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAY", + "name": "Paymentus Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAYA", + "name": "Paya Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAYC", + "name": "Paycom Software Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAYO", + "name": "Payoneer Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAYOW", + "name": "Payoneer Global Inc - Warrants (25/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAYS", + "name": "PaySign Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PAYX", + "name": "Paychex Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PB", + "name": "Prosperity Bancshares Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBA", + "name": "Pembina Pipeline Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBAX", + "name": "Phoenix Biotech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBAXU", + "name": "Phoenix Biotech Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBAXW", + "name": "Phoenix Biotech Acquisition Corp - Warrants (01/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBBK", + "name": "PB Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBCT", + "name": "People`s United Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBCTP", + "name": "People`s United Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBD", + "name": "Invesco Global Clean Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBDM", + "name": "INVESCO PUREBETA FTSE DEVELOPED EX-NORTH AMERICA ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBE", + "name": "Invesco Dynamic Biotechnology & Genome ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBEE", + "name": "INVESCO PUREBETA FTSE EMERGING MARKETS ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBF", + "name": "PBF Energy Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBFS", + "name": "Pioneer Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBFX", + "name": "Pbf Logistics Lp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBH", + "name": "Prestige Consumer Healthcare Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBHC", + "name": "Pathfinder Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBI", + "name": "Pitney Bowes Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBI-P-B", + "name": "Pitney Bowes Inc 670 Notes Due 2043", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBIP", + "name": "Prudential Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBJ", + "name": "Invesco Dynamic Food & Beverage ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBLA", + "name": "Panbela Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBND", + "name": "INVESCO PUREBETA US AGGREGATE BOND ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBP", + "name": "Invesco S&P 500 BuyWrite ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBPB", + "name": "Potbelly Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBR", + "name": "Petroleo Brasileiro S.A. Petrobras", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBR-A", + "name": "Petroleo Brasileiro S.A. Petrobras", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBS", + "name": "Invesco Dynamic Media ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBSM", + "name": "Invesco PureBeta SM MSCI USA Small Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBT", + "name": "Permian Basin Royalty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBTP", + "name": "Invesco PureBeta SM 0-5 Yr US TIPS ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBTS", + "name": "Powerbridge Technologies Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBUG", + "name": "Barclays Bank PLC", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBUS", + "name": "Invesco PureBeta SM MSCI USA ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBW", + "name": "Invesco WilderHill Clean Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PBYI", + "name": "Puma Biotechnology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCAR", + "name": "Paccar Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCB", + "name": "PCB Bancorp.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCCT", + "name": "Perception Capital Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCCTU", + "name": "Perception Capital Corp II - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCCTW", + "name": "Perception Capital Corp II - Warrants (25/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCEF", + "name": "Invesco CEF Income Composite ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCF", + "name": "High Income Securities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCG", + "name": "PG&E Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCG-P-A", + "name": "Pacific Gas Electric Company 6 Preferred Stock", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCG-P-B", + "name": "Pacific Gas & Electric Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCG-P-C", + "name": "Pacific Gas & Electric Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCG-P-D", + "name": "Pacific Gas & Electric Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCG-P-E", + "name": "Pacific Gas & Electric Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCG-P-G", + "name": "Pacific Gas & Electric Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCG-P-H", + "name": "Pacific Gas & Electric Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCG-P-I", + "name": "Pacific Gas & Electric Company", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCGU", + "name": "PG&E Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCH", + "name": "PotlatchDeltic Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1985-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCI", + "name": "PIMCO Dynamic Credit and Mortgage Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCK", + "name": "Pimco California Municipal Income Fund II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCM", + "name": "PCM Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1993-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCN", + "name": "PIMCO Corporate & Income Strategy Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCOM", + "name": "Points.com Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCOR", + "name": "Procore Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCPC", + "name": "Periphas Capital Partnering Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCPC-U", + "name": "Periphas Capital Partnering Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCPC-WS", + "name": "Periphas Capital Partnering Corp - Warrants (10/12/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCPL-U", + "name": "E2open Parent Holdings Inc - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCQ", + "name": "Pimco California Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCRX", + "name": "Pacira BioSciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCSA", + "name": "Processa Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCSB", + "name": "PCSB Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCT", + "name": "PureCycle Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCTI", + "name": "PCTEL Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCTTU", + "name": "PureCycle Technologies Inc - Units (1 Ord Class A & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCTTW", + "name": "PureCycle Technologies Inc - Warrants (17/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCTY", + "name": "Paylocity Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCVX", + "name": "Vaxcyte Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCX", + "name": "Parsec Capital Acquisitions Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCXCU", + "name": "Parsec Capital Acquisitions Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCXCW", + "name": "Parsec Capital Acquisitions Corp - Warrants (05/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCY", + "name": "Invesco Emerging Markets Sovereign Debt ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCYG", + "name": "Park City Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PCYO", + "name": "Pure Cycle Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PD", + "name": "Pagerduty Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDBC", + "name": "Invesco Optimum Yield Diversified Commodity Strategy No K-1 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDCE", + "name": "PDC Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDCO", + "name": "Patterson Companies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDD", + "name": "Pinduoduo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDEC", + "name": "Innovator U.S. Equity Power Buffer ETF - December", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDEX", + "name": "Pro-Dex Inc (co)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDFS", + "name": "PDF Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDI", + "name": "PIMCO Dynamic Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDLB", + "name": "Ponce Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDM", + "name": "Piedmont Office Realty Trust Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDN", + "name": "Invesco FTSE RAFI Developed Markets ex-U.S. Small-Mid ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDO", + "name": "PIMCO Dynamic Income Opportunities Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDOT", + "name": "Peridot Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDOT-U", + "name": "Peridot Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDOT-WS", + "name": "Peridot Acquisition Corp II - Warrants (30/04/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDP", + "name": "Invesco DWA Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDS", + "name": "Precision Drilling Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDSB", + "name": "PDS Biotechnology Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PDT", + "name": "John Hancock Premium Dividend Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEAK", + "name": "Healthpeak Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEAR", + "name": "Pear Therapeutics Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEARW", + "name": "Pear Therapeutics Inc - Warrants (01/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEB", + "name": "Pebblebrook Hotel Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEB-P-E", + "name": "Pebblebrook Hotel Trust 6375 PRF PERPETUAL USD Ser E", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEB-P-F", + "name": "Pebblebrook Hotel Trust 630 PRF PERPETUAL USD Ser F", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEB-P-G", + "name": "Pebblebrook Hotel Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEB-P-H", + "name": "Pebblebrook Hotel Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEBK", + "name": "Peoples Bancorp Of North Carolina Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEBO", + "name": "Peoples Bancorp Inc (Marietta OH)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PECO", + "name": "Phillips Edison & Company Inc - New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PED", + "name": "PEDEVCO Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2003-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEG", + "name": "Public Service Enterprise Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEGA", + "name": "Pegasystems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEGR", + "name": "Project Energy Reimagined Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEGRU", + "name": "Project Energy Reimagined Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEGRW", + "name": "Project Energy Reimagined Acquisition Corp - Warrants (28/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEI", + "name": "Pennsylvania Real Estate Investment Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEI-P-B", + "name": "Pennsylvania Real Estate Investment Trust Cumulative Redeemable Perpetual Preferred Shares Series B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEI-P-C", + "name": "Pennsylvania Real Estate Investment Trust 720 Series C Cumulative Redeemable Perpetual Preferred Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEI-P-D", + "name": "Pennsylvania Real Estate Investment Trust 6875 Series D Cumulative Redeemable Perpetual Preferred Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEJ", + "name": "Invesco Dynamic Leisure and Entertainment ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEN", + "name": "Penumbra Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PENN", + "name": "Penn National Gaming Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEO", + "name": "Adams Natural Resources Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEP", + "name": "PepsiCo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEPL", + "name": "PepperLime Health Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEPLU", + "name": "PepperLime Health Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEPLW", + "name": "PepperLime Health Acquisition Corp - Warrants (01/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PERI", + "name": "Perion Network Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PESI", + "name": "Perma-Fix Environmental Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PETQ", + "name": "PetIQ Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PETS", + "name": "Petmed Express Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PETV", + "name": "PetVivo Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PETVW", + "name": "PetVivo Holdings Inc - Warrants (15/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PETZ", + "name": "TDH Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEX", + "name": "ProShares Global Listed Private Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEXL", + "name": "PACER US EXPORT LEADERS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEY", + "name": "Invesco High Yield Equity Dividend Achievers ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2004-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PEZ", + "name": "Invesco DWA Consumer Cyclicals Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFBC", + "name": "Preferred Bank", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFC", + "name": "Premier Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFD", + "name": "Flaherty & Crumrine Preferred and Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1991-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFDR", + "name": "Pathfinder Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFDRU", + "name": "Pathfinder Acquisition Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFDRW", + "name": "Pathfinder Acquisition Corp - Warrants (17/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFE", + "name": "Pfizer Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFE-W", + "name": "Pfizer Inc ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFEB", + "name": "Innovator U.S. Equity Power Buffer ETF - February", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFF", + "name": "iShares Trust iShares Preferred and Income Securities ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFFA", + "name": "Virtus InfraCap U.S. Preferred Stock ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFFD", + "name": "Global X U.S. Preferred ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFFL", + "name": "ETRACS 2xMonthly Pay Leveraged Preferred Stock Index ETN due September 25 2048", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFFR", + "name": "InfraCap REIT Preferred ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFFV", + "name": "Global X Variable Rate Preferred ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFG", + "name": "Principal Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFGC", + "name": "Performance Food Group Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFH", + "name": "Prudential Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFHD", + "name": "Professional Holding Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFI", + "name": "Invesco DWA Financial Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFIE", + "name": "Profire Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFIG", + "name": "Invesco Fundamental Investment Grade Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFIN", + "name": "P & F Industries Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFIS", + "name": "Peoples Financial Services Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFIX", + "name": "Simplify Interest Rate Hedge ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFL", + "name": "Pimco Income Strategy Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFLD", + "name": "AAM Low Duration Preferred and Income Securities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFLT", + "name": "PennantPark Floating Rate Capital Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFM", + "name": "Invesco Dividend Achievers ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2005-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFMT", + "name": "Performant Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFN", + "name": "Pimco Income Strategy Fund II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFO", + "name": "Flaherty & Crumrine Preferred and Income Opportunity Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFS", + "name": "Provident Financial Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFSI", + "name": "PennyMac Financial Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFSW", + "name": "PFSWEB Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFTA", + "name": "Portage Fintech Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFTAU", + "name": "Portage Fintech Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFTAW", + "name": "Portage Fintech Acquisition Corp - Warrants (08/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFUT", + "name": "Putnam Sustainable Future ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFX", + "name": "PhenixFIN Corp", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFXF", + "name": "VanEck Preferred Securities ex Financials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFXNL", + "name": "PhenixFIN Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PFXNZ", + "name": "PhenixFIN Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PG", + "name": "Procter & Gamble Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGAL", + "name": "GLOBAL X MSCI PORTUGAL ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGC", + "name": "Peapack-Gladstone Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGEN", + "name": "Precigen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGF", + "name": "Invesco Financial Preferred ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGHY", + "name": "Invesco Global Short Term High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGJ", + "name": "Invesco Golden Dragon China ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2004-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGM", + "name": "iPathA Series B Bloomberg Platinum Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGNY", + "name": "Progyny Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGP", + "name": "PIMCO Global StocksPLUS Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGR", + "name": "Progressive Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGRE", + "name": "Paramount Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGRO", + "name": "Putnam Focused Large Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGRU", + "name": "PropertyGuru Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGRW", + "name": "Progress Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGRWU", + "name": "Progress Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGRWW", + "name": "Progress Acquisition Corp - Warrants (11/11/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGSS", + "name": "Pegasus Digital Mobility Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGSS-U", + "name": "Pegasus Digital Mobility Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGSS-WS", + "name": "Pegasus Digital Mobility Acquisition Corp - Warrants(01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGTI", + "name": "PGT Innovations Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGX", + "name": "Invesco Preferred ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PGZ", + "name": "Principal Real Estate Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PH", + "name": "Parker-Hannifin Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHAR", + "name": "Pharming Group N.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHAS", + "name": "PhaseBio Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHAT", + "name": "Phathom Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHB", + "name": "Invesco Fundamental High Yield Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHCF", + "name": "Puhui Wealth Investment Management Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHD", + "name": "Pioneer Floating Rate Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHDG", + "name": "Invesco S&P 500 Downside Hedged ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHG", + "name": "Koninklijke Philips N.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHGE", + "name": "BiomX Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHGE-WS", + "name": "BiomX Inc - Warrants (13/12/2023)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHI", + "name": "PLDT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHIC", + "name": "Population Health Investment Co Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHICU", + "name": "Population Health Investment Co Inc - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHICW", + "name": "Population Health Investment Co Inc - Warrants (01/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHIO", + "name": "Phio Pharmaceuticals Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHK", + "name": "Pimco High Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHM", + "name": "PulteGroup Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHO", + "name": "Invesco Water Resources ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2005-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHR", + "name": "Phreesia Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHT", + "name": "Pioneer High Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHUN", + "name": "Phunware Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHUNW", + "name": "Phunware Inc - Warrants (11/08/2021)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHVS", + "name": "Pharvaris NV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHX", + "name": "PHX Minerals Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHYL", + "name": "PGIM Active High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHYS", + "name": "Sprott Physical Gold Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHYT", + "name": "Pyrophyte Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHYT-U", + "name": "Pyrophyte Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PHYT-WS", + "name": "Pyrophyte Acquisition Corp - Warrants(01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PI", + "name": "Impinj Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIAI", + "name": "Prime Impact Acquisition I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIAI-U", + "name": "Prime Impact Acquisition I - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIAI-WS", + "name": "Prime Impact Acquisition I - Warrants (01/10/2030)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIC-U", + "name": "XL Fleet Corporation - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PICB", + "name": "INVESCO INTERNATIONAL CORPORATE BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PICC", + "name": "Pivotal Investment Corp III - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PICC-U", + "name": "Pivotal Investment Corp III - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PICC-WS", + "name": "Pivotal Investment Corp III - Warrants (28/01/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PICK", + "name": "iShares MSCI Global Metals & Mining Producers ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PID", + "name": "Invesco International Dividend Achievers ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2005-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIE", + "name": "Invesco DWA Emerging Markets Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIFI", + "name": "ClearShares Piton Intermediate Fixed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PII", + "name": "Polaris Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIII", + "name": "P3 Health Partners Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIIIW", + "name": "P3 Health Partners Inc - Warrants (19/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIK", + "name": "Kidpik Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PILL", + "name": "Direxion Daily Pharmaceutical & Medical Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIM", + "name": "Putnam Master Intermediate Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIN", + "name": "Invesco India ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PINC", + "name": "Premier Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PINE", + "name": "Alpine Income Property Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PING", + "name": "Ping Identity Holding Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PINK", + "name": "Simplify Health Care ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PINS", + "name": "Pinterest Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIO", + "name": "Invesco Global Water ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIPP", + "name": "Pine Island Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIPP-U", + "name": "Pine Island Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIPP-WS", + "name": "Pine Island Acquisition Corp Redeemable warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIPR", + "name": "Piper Sandler Co`s", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIRS", + "name": "Pieris Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIXY", + "name": "ShiftPixy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIY", + "name": "Preferred Plus Trust Ser CZN Preferred Plus Trust Ser CZN1 Tr Ctf 8375 Maturity 10012046", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PIZ", + "name": "Invesco DWA Developed Markets Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PJAN", + "name": "Innovator U.S. Equity Power Buffer ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PJP", + "name": "Invesco Dynamic Pharmaceuticals ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PJT", + "name": "PJT Partners Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PJUL", + "name": "Innovator U.S. Equity Power Buffer ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PJUN", + "name": "Innovator U.S. Equity Power Buffer ETF - June", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PK", + "name": "Park Hotels & Resorts Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKB", + "name": "Invesco Dynamic Building & Construction ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKBK", + "name": "Parke Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKD", + "name": "Parker Drilling Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKE", + "name": "Park Aerospace Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKG", + "name": "Packaging Corp Of America", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKI", + "name": "Perkinelmer Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKO", + "name": "Pimco Income Opportunity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKOH", + "name": "Park-Ohio Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKW", + "name": "Invesco BuyBack Achievers ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PKX", + "name": "POSCO Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PL", + "name": "Protective Life Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PL-WS", + "name": "Planet Labs PBC - Warrants (06/12/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLAB", + "name": "Photronics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLAG", + "name": "Planet Green Holdings Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2008-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLAN", + "name": "Anaplan Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLAOU", + "name": "Patria Latin American Opportunity Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLAT", + "name": "WISDOMTREE GROWTH LEADERS FUND N/A", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLAY", + "name": "Dave & Buster`s Entertainment Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLBC", + "name": "Plumas Bancorp.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLBY", + "name": "PLBY Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLCE", + "name": "Childrens Place Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLD", + "name": "Prologis Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLDR", + "name": "Putnam Sustainable Leaders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLG", + "name": "Platinum Group Metals Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2002-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLL", + "name": "Piedmont Lithium Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLM", + "name": "Polymet Mining Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2000-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLMI", + "name": "Plum Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLMIU", + "name": "Plum Acquisition Corp I - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLMIW", + "name": "Plum Acquisition Corp I - Warrants (15/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLMR", + "name": "Palomar Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLNT", + "name": "Planet Fitness Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLOW", + "name": "Douglas Dynamics Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLPC", + "name": "Preformed Line Products Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLRG", + "name": "Principal U.S. Large-Cap Adaptive Multi-Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLRX", + "name": "Pliant Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLSE", + "name": "Pulse Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLTK", + "name": "Playtika Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLTL", + "name": "PRINCIPAL U.S. SMALL-CAP ADAPTIVE MULTI-FACTOR ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLTM", + "name": "GraniteShares Platinum Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLTR", + "name": "Palantir Technologies Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLUG", + "name": "Plug Power Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLUS", + "name": "ePlus Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLW", + "name": "Invesco 1-30 Laddered Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLX", + "name": "Protalix BioTherapeutics Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1998-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLXP", + "name": "PLx Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLXS", + "name": "Plexus Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLYA", + "name": "Playa Hotels & Resorts N.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLYM", + "name": "Plymouth Industrial Reit Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PLYM-P-A", + "name": "Plymouth Industrial REIT Inc 750 Series A Cumulative Redeemable Preferred Stock", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PM", + "name": "Philip Morris International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMAR", + "name": "Innovator U.S. Equity Power Buffer ETF - March", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMAY", + "name": "Innovator U.S. Equity Power Buffer ETF - May", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMCB", + "name": "PharmaCyte Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMD", + "name": "Psychemedics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PME", + "name": "Pingtan Marine Enterprise Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMF", + "name": "Pimco Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMGM", + "name": "Priveterra Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMGMU", + "name": "Priveterra Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMGMW", + "name": "Priveterra Acquisition Corp - Warrants (28/02/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PML", + "name": "Pimco Municipal Income Fund II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMM", + "name": "Putnam Managed Municipal Income Trust.", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMO", + "name": "Putnam Municipal Opportunities Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMT", + "name": "Pennymac Mortgage Investment Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMT-P-A", + "name": "Pennymac Mortgage Investment Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMT-P-B", + "name": "Pennymac Mortgage Investment Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMT-P-C", + "name": "Pennymac Mortgage Investment Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMTS", + "name": "CPI Card Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMVC", + "name": "PMV Consumer Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMVC-U", + "name": "PMV Consumer Acquisition Corp - Units (1 Ord share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMVC-WS", + "name": "PMV Consumer Acquisition Corp - Warrants (31/08/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMVP", + "name": "PMV Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PMX", + "name": "Pimco Municipal Income Fund III", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNBK", + "name": "Patriot National Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNC", + "name": "PNC Financial Services Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNC-P-P", + "name": "PNC Financial Services Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNF", + "name": "Pimco New York Municipal Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2001-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNFP", + "name": "Pinnacle Financial Partners Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNFPP", + "name": "Pinnacle Financial Partners Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNI", + "name": "Pimco New York Municipal Income Fund II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNM", + "name": "PNM Resources Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNNT", + "name": "PennantPark Investment Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNOV", + "name": "Innovator U.S. Equity Power Buffer ETF - November", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNQI", + "name": "Invesco NASDAQ Internet ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNR", + "name": "Pentair plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNRG", + "name": "PrimeEnergy Resources Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNT", + "name": "POINT Biopharma Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNTG", + "name": "Pennant Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNTM", + "name": "Pontem Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNTM-U", + "name": "Pontem Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNTM-WS", + "name": "Pontem Corp - Warrants (05/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PNW", + "name": "Pinnacle West Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POAI", + "name": "Predictive Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POCT", + "name": "Innovator U.S. Equity Power Buffer ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PODD", + "name": "Insulet Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POET", + "name": "POET Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POLA", + "name": "Polar Power Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POLY", + "name": "Plantronics Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POND", + "name": "Angel Pond Holdings Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POND-U", + "name": "Angel Pond Holdings Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POND-WS", + "name": "Angel Pond Holdings Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PONO", + "name": "PONO Capital Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PONOU", + "name": "PONO Capital Corp - Units (1 Ord Share Class A & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PONOW", + "name": "PONO Capital Corp - Warrants(11/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POOL", + "name": "Pool Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POPM", + "name": "PopmailCom Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POR", + "name": "Portland General Electric Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PORT", + "name": "Southport Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PORT-U", + "name": "Southport Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PORT-WS", + "name": "Southport Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POSH", + "name": "Poshmark Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POST", + "name": "Post Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POST-W", + "name": "Post Holdings Inc WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POTX", + "name": "Global X Cannabis ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POW", + "name": "Powered Brands - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POWI", + "name": "Power Integrations Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POWL", + "name": "Powell Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POWRU", + "name": "Powered Brands - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POWRW", + "name": "Powered Brands - Warrants (07/01/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POWW", + "name": "AMMO Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "POWWP", + "name": "AMMO Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPA", + "name": "Invesco Aerospace & Defense ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPBI", + "name": "Pacific Premier Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPBT", + "name": "Purple Biotech Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPC", + "name": "Pilgrim`s Pride Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPD", + "name": "PPD Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPG", + "name": "PPG Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPGH", + "name": "Poema Global Holdings Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPGHU", + "name": "Poema Global Holdings Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPGHW", + "name": "Poema Global Holdings Corp - Warrants (08/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPH", + "name": "VanEck Pharmaceutical ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2000-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPHP", + "name": "PHP Ventures Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPHPR", + "name": "PHP Ventures Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPHPU", + "name": "PHP Ventures Acquisition Corp - Units (1 Ord Class A & 1/2 War & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPHPW", + "name": "PHP Ventures Acquisition Corp - Warrants (01/01/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPI", + "name": "AXS Astoria Inflation Sensitive ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPIH", + "name": "Perma-Pipe International Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPL", + "name": "PPL Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPLT", + "name": "Aberdeen Standard Physical Platinum Shares ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPR", + "name": "Voya Prime Rate Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPSI", + "name": "Pioneer Power Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPT", + "name": "Putnam Premier Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPTA", + "name": "Perpetua Resources Corp Com", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPTY", + "name": "U.S. Diversified Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPYA", + "name": "Papaya Growth Opportunity Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPYAU", + "name": "Papaya Growth Opportunity Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PPYAW", + "name": "Papaya Growth Opportunity Corp I - Warrants (31/12/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PQDI", + "name": "PRINCIPAL SPECTRUM TAX-ADVANTAGED DIVIDEND ACTIVE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PQIN", + "name": "PGIM QMA STRATEGIC ALPHA INTERNATIONAL EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PQLC", + "name": "PGIM QMA STRATEGIC ALPHA LARGE-CAP CORE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PQSG", + "name": "PGIM QMA STRATEGIC ALPHA SMALL-CAP GROWTH ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PQSV", + "name": "PGIM QMA STRATEGIC ALPHA SMALL-CAP VALUE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRA", + "name": "Proassurance Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRAA", + "name": "PRA Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRAX", + "name": "Praxis Precision Medicines Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRAY", + "name": "FIS Biblically Responsible Risk Managed ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRBM", + "name": "Parabellum Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRBM-U", + "name": "Parabellum Acquisition Corp - Units (1 Ord Share Class A & 3/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRBM-WS", + "name": "Parabellum Acquisition Corp - Warrants(01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRCH", + "name": "Porch Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRCT", + "name": "Procept BioRobotics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRDO", + "name": "Perdoceo Education Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRDS", + "name": "Pardes Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRE-P-J", + "name": "PartnerRe Ltd 4.875 Fixed Rate NonCumulative Redeemable Preferred Shares Series J", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PREF", + "name": "Principal Spectrum Preferred Securities Active ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRF", + "name": "Invesco FTSE RAFI US 1000 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRFT", + "name": "Perficient Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRFX", + "name": "PainReform Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRFZ", + "name": "Invesco FTSE RAFI US 1500 Small-Mid ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRG", + "name": "PROG Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRG-W", + "name": "PROG Holdings Inc ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRGO", + "name": "Perrigo Company plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRGS", + "name": "Progress Software Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRI", + "name": "Primerica Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIF-P-A", + "name": "Priority Income Fund Inc 6375 Series A Term Preferred Stock due 2025", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIF-P-D", + "name": "Priority Income Fund Inc 700 Series D Term Preferred Stock due 2029", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIF-P-F", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIF-P-G", + "name": "Priority Income Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIF-P-H", + "name": "Priority Income Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIF-P-I", + "name": "Priority Income Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIF-P-J", + "name": "Priority Income Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIF-P-K", + "name": "Priority Income Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIF-P-L", + "name": "Priority Income Fund Inc 6.375 Series L Term Preferred Stock Due 2029", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRIM", + "name": "Primoris Services Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRK", + "name": "Park National Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1991-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRLB", + "name": "Proto Labs Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRLD", + "name": "Prelude Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRLH", + "name": "Pearl Holdings Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRLHU", + "name": "Pearl Holdings Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRLHW", + "name": "Pearl Holdings Acquisition Corp - Warrants (15/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRM", + "name": "Perimeter Solutions SA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRMW", + "name": "Primo Water Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRN", + "name": "Invesco DWA Industrials Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRNT", + "name": "ARK 3D Printing ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRO", + "name": "Pros Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PROC", + "name": "Procaps Group S.A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PROCW", + "name": "Procaps Group S.A - Warrants (29/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PROF", + "name": "Profound Medical Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PROG", + "name": "Progenity Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PROV", + "name": "Provident Financial Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRPB", + "name": "CC Neuberger Principal Holdings II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRPB-U", + "name": "CC Neuberger Principal Holdings II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRPB-WS", + "name": "CC Neuberger Principal Holdings II - Warrants (29/07/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRPC", + "name": "CC Neuberger Principal Holdings III - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRPC-U", + "name": "CC Neuberger Principal Holdings III - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRPC-WS", + "name": "CC Neuberger Principal Holdings III - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRPH", + "name": "ProPhase Labs Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRPL", + "name": "Purple Innovation Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRPO", + "name": "Precipio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRQR", + "name": "ProQR Therapeutics N.V", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRS", + "name": "Prudential Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRSO", + "name": "Peraso Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRSR", + "name": "Prospector Capital Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRSRU", + "name": "Prospector Capital Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRSRW", + "name": "Prospector Capital Corp - Warrants (01/01/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRT", + "name": "PermRock Royalty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRTA", + "name": "Prothena Corporation plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRTC", + "name": "PureTech Health Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRTG", + "name": "Portage Biotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRTH", + "name": "Priority Technology Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRTK", + "name": "Paratek Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRTS", + "name": "CarParts.com Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRTY", + "name": "Party City Holdco Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRU", + "name": "Prudential Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRVA", + "name": "Privia Health Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PRVB", + "name": "Provention Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-A", + "name": "Public Storage Depositary Shares Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-F", + "name": "Public Storage Depositary Shares Series F", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-G", + "name": "Public Storage Depositary Shares Series G", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-H", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-I", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-J", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-K", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-L", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-M", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-N", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-O", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-P", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-Q", + "name": "Public Storage Depositary Shares Series Q", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-R", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-S", + "name": "Public Storage", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-V", + "name": "Public Storage Dep Shs Repstg 11000th Pfd Sh Ben Int Ser V", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSA-P-V-CL", + "name": "Public Storage Dep Shs Repstg 11000th Pfd Sh Ben Int Ser V", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSAG", + "name": "Property Solutions Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSAGU", + "name": "Property Solutions Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSAGW", + "name": "Property Solutions Acquisition Corp II - Warrants (01/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSB", + "name": "PS Business Parks Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSB-P-U", + "name": "PS Business Parks Inc Dep Shs Repstg 11000 Pfd Ser U", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSB-P-V", + "name": "PS Business Parks Inc Depositary Shares Series V", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSB-P-X", + "name": "PS Business Parks Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSB-P-Y", + "name": "PS Business Parks Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSB-P-Z", + "name": "PS Business Parks Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSC", + "name": "Principal U.S. Small-Cap Multi-Factor ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCC", + "name": "Invesco S&P SmallCap Consumer Staples ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCD", + "name": "Invesco S&P SmallCap Consumer Discretionary ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCE", + "name": "Invesco S&P SmallCap Energy ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCF", + "name": "Invesco S&P SmallCap Financials ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCH", + "name": "Invesco S&P SmallCap Health Care ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCI", + "name": "Invesco S&P SmallCap Industrials ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCJ", + "name": "Pacer Swan SOS Conservative (July) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCM", + "name": "Invesco S&P SmallCap Materials ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCQ", + "name": "PACER SWAN SOS CONSERVATIVE (OCTOBER) ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCT", + "name": "Invesco S&P SmallCap Information Technology ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCU", + "name": "Invesco S&P SmallCap Utilities & Communication Services ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCW", + "name": "Pacer Swan SOS Conservative (April) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSCX", + "name": "Pacer Swan SOS Conservative (January) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSDN", + "name": "AdvisorShares Poseidon Dynamic Cannabis ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSEC", + "name": "Prospect Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSEC-P-A", + "name": "Prospect Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSEP", + "name": "Innovator U.S. Equity Power Buffer ETF - September", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSET", + "name": "Principal Quality ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSF", + "name": "Cohen & Steers Select Preferred and Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2010-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSFD", + "name": "Pacer Swan SOS Flex (January) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSFE", + "name": "Paysafe Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSFE-WS", + "name": "Paysafe Ltd - Warrants (11/08/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSFF", + "name": "Pacer Swan SOS Fund of Funds ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSFJ", + "name": "Pacer Swan SOS Flex (July) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSFM", + "name": "Pacer Swan SOS Flex (April) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSFO", + "name": "Pacer Swan SOS Flex (October) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSHG", + "name": "Performance Shipping Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSI", + "name": "Invesco Dynamic Semiconductors ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSIL", + "name": "AdvisorShares Psychedelics ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSJ", + "name": "Invesco Dynamic Software ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSK", + "name": "SPDR ICE Preferred Securities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSL", + "name": "Invesco DWA Consumer Staples Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSLV", + "name": "Sprott Physical Silver Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSMB", + "name": "Invesco Balanced Multi-Asset Allocation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSMC", + "name": "Invesco Conservative Multi-Asset Allocation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSMD", + "name": "Pacer Swan SOS Moderate (January) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSMG", + "name": "Invesco Growth Multi-Asset Allocation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSMJ", + "name": "Pacer Swan SOS Moderate (July) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSMM", + "name": "Invesco Moderately Conservative Multi-Asset Allocation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSMO", + "name": "Pacer Swan SOS Moderate (October) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSMR", + "name": "Pacer Swan SOS Moderate (April) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSMT", + "name": "Pricesmart Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSN", + "name": "Parsons Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSNL", + "name": "Personalis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSO", + "name": "Pearson plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSP", + "name": "Invesco Global Listed Private Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSPC", + "name": "Post Holdings Partnering Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSPC-U", + "name": "Post Holdings Partnering Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSPC-WS", + "name": "Post Holdings Partnering Corp - Warrants (12/04/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSQ", + "name": "ProShares Short QQQ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSR", + "name": "Invesco Active U.S. Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PST", + "name": "PowerShares UltraShort Lehman 7-10 + Year Treasury ProShares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSTG", + "name": "Pure Storage Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSTH", + "name": "Pershing Square Tontine Holdings Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSTH-WS", + "name": "Pershing Square Tontine Holdings Ltd - Warrants (24/07/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSTI", + "name": "Pluristem Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSTL", + "name": "Postal Realty Trust Inc Cls A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSTP", + "name": "Innovator Power Buffer Step-Up Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSTV", + "name": "Plus Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSTX", + "name": "Poseida Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSX", + "name": "Phillips 66", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSY", + "name": "DEFIANCE NEXT GEN ALTERED EXPERIENCE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PSYK", + "name": "PSYK ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PT", + "name": "Pintec Technology Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTA", + "name": "Cohen & Steers Tax-Advantaged Preferred Securities & Income Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTBD", + "name": "Pacer Trendpilot US Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTC", + "name": "PTC Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTCT", + "name": "PTC Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTE", + "name": "PolarityTE Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTEN", + "name": "Patterson-UTI Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTEST", + "name": "PTEST", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2017-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTEST-A", + "name": "", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTEST-W", + "name": "", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2018-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTEST-X", + "name": "", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTEST-Y", + "name": "", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTEU", + "name": "PACER TRENDPILOT EUROPEAN INDEX ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTF", + "name": "Invesco DWA Technology Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTGX", + "name": "Protagonist Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTH", + "name": "Invesco DWA Healthcare Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTIC", + "name": "PropTech Investment Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTICU", + "name": "PropTech Investment Corp II - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTICW", + "name": "PropTech Investment Corp II - Warrants (08/12/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTIN", + "name": "Pacer Trendpilot International ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTIX", + "name": "Protagenic Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTIXW", + "name": "Protagenic Therapeutics Inc - Warrants (13/04/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTLC", + "name": "Pacer Trendpilot US Large Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTLO", + "name": "Portillos Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTMC", + "name": "Pacer Trendpilot US Mid Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTMN", + "name": "Portman Ridge Finance Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTN", + "name": "Palatin Technologies Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1997-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTNQ", + "name": "Pacer Trendpilot 100 ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTNR", + "name": "Partner Communications Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTOC", + "name": "Pine Technology Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTOCU", + "name": "Pine Technology Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTOCW", + "name": "Pine Technology Acquisition Corp - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTON", + "name": "Peloton Interactive Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTPI", + "name": "Petros Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTR", + "name": "PetroChina Co. Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTRA", + "name": "Proterra Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTRB", + "name": "PGIM Total Return Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTRS", + "name": "Partners Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTSI", + "name": "P.A.M. Transportation Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTVE", + "name": "Pactiv Evergreen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PTY", + "name": "PIMCO Corporate & Income Opportunity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-12-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUBM", + "name": "PubMatic Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUCK", + "name": "Goal Acquisitions Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUCKU", + "name": "Goal Acquisitions Corp - Units (1 Ord & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUCKW", + "name": "Goal Acquisitions Corp - Warrants (11/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUI", + "name": "Invesco DWA Utilities Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2005-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUK", + "name": "Prudential plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUK-P", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUK-W", + "name": "Prudential Public Ltd Company American Depositary Shares Exdistribution Whenissued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PULM", + "name": "Pulmatrix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PULS", + "name": "PGIM Ultra Short Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUMP", + "name": "ProPetro Holding Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUNK", + "name": "Subversive Metaverse ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUTW", + "name": "WisdomTree CBOE S&P 500 PutWrite Strategy Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PUYI", + "name": "Puyi Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PV", + "name": "Primavera Capital Acquisition Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PV-U", + "name": "Primavera Capital Acquisition Corporation - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PV-WS", + "name": "Primavera Capital Acquisition Corporation - Warrants (19/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PVAL", + "name": "Putnam Focused Large Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PVBC", + "name": "Provident Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PVH", + "name": "PVH Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PVI", + "name": "Invesco VRDO Tax-Free ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PVL", + "name": "Permianville Royalty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PVT", + "name": "PROVIDENT COMPANIES INC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PVT-U", + "name": "Pivotal Acquisition Corp Units each consisting of one share of Class A Common Stock and one redeemable Warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PVT-WS", + "name": "Pivotal Acquisition Corp Redeemable Warrants exercisable for shares of Class A Common Stock at an exercise price of 1150 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PW", + "name": "Power REIT", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1980-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PW-P-A", + "name": "Power REIT 775 Series A Cumulative Perpetual Preferred Stock", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWB", + "name": "Invesco Dynamic Large Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWC", + "name": "Invesco Dynamic Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2003-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWFL", + "name": "PowerFleet Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWOD", + "name": "Penns Woods Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWP", + "name": "Perella Weinberg Partners - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWPPW", + "name": "Perella Weinberg Partners - Warrants (23/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWR", + "name": "Quanta Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWS", + "name": "Pacer WealthShield ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWSC", + "name": "PowerSchool Holdings Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWUPU", + "name": "PowerUp Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWV", + "name": "Invesco Dynamic Large Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PWZ", + "name": "Invesco California AMT-Free Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PX", + "name": "P10 Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXD", + "name": "Pioneer Natural Resources Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXE", + "name": "Invesco Dynamic Energy Exploration & Production ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXF", + "name": "Invesco FTSE RAFI Developed Markets ex-U.S. ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXH", + "name": "Invesco FTSE RAFI Emerging Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXI", + "name": "Invesco DWA Energy Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXJ", + "name": "Invesco Dynamic Oil & Gas Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXLW", + "name": "Pixelworks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXQ", + "name": "INVESCO DYNAMIC NETWORKING ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXS", + "name": "Pyxis Tankers Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXSAP", + "name": "Pyxis Tankers Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXSAW", + "name": "Pyxis Tankers Inc - Warrants (19/08/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PXUS", + "name": "Principal International Adaptive Multi-Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PY", + "name": "Principal Value ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYCR", + "name": "Paycor HCM Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYN", + "name": "Pimco New York Municipal Income Fund III", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYPD", + "name": "Polypid Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYPE", + "name": "ETRACS NYSE Pickens Core Midstream Index ETN due August 20 2048", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYPL", + "name": "PayPal Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYR", + "name": "PyroGenesis Canada Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYS", + "name": "Pplus Trust Series RRD-1", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYT", + "name": "PPLUS Trust Series GSC-2", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYXS", + "name": "Pyxis Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PYZ", + "name": "Invesco DWA Basic Materials Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PZA", + "name": "Invesco National AMT-Free Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PZC", + "name": "Pimco California Municipal Income Fund III", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PZG", + "name": "Paramount Gold Nevada Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PZN", + "name": "Pzena Investment Management Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PZT", + "name": "Invesco New York AMT-Free Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "PZZA", + "name": "Papa John`s International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QABA", + "name": "First Trust NASDAQ ABA Community Bank Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QAI", + "name": "IQ Hedge Multi-Strategy Tracker ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QARP", + "name": "Xtrackers Russell 1000 US Quality at a Reasonable Price ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QAT", + "name": "iShares MSCI Qatar ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QCLN", + "name": "First Trust Nasdaq Clean Edge Green Energy Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QCLR", + "name": "GLOBAL X NASDAQ 100 COLLAR 95-110 ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QCOM", + "name": "Qualcomm Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QCON", + "name": "AMERICAN CENTURY QUALITY CONVERTIBLE SECURITIES ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QCRH", + "name": "QCR Holding Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QD", + "name": "Qudian Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QDEC", + "name": "FT Cboe Vest Nasdaq-100 Buffer ETF - December", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QDEF", + "name": "FlexShares Quality Dividend Defensive Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QDEL", + "name": "Quidel Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QDF", + "name": "FlexShares Quality Dividend Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QDIV", + "name": "Global X S&P 500 Quality Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QDPL", + "name": "Pacer Metaurus US Large Cap Dividend Multiplier 400 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QDYN", + "name": "FLEXSHARES QUALITY DIVIDEND DYNAMIC INDEX FUND ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QED", + "name": "IQ Hedge Event-Driven Tracker ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QEFA", + "name": "SPDR MSCI EAFE StrategicFactors SM ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QEMM", + "name": "SPDR MSCI Emerging Markets StrategicFactors SM ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QFIN", + "name": "360 DigiTech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QFTA", + "name": "Quantum Fintech Acquisition Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QFTA-U", + "name": "Quantum Fintech Acquisition Corp - Unit (1 Ordinary share & 1 Wrt)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QFTA-WS", + "name": "Quantum Fintech Acquisition Corp - Warrants (30/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QGEN", + "name": "Qiagen NV", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QGRO", + "name": "American Century STOXX U.S.Quality Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QH", + "name": "Quhuo Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QID", + "name": "ProShares UltraShort QQQ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QINT", + "name": "American Century Quality Diversified International ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QIPT", + "name": "Quipt Home Medical Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QIWI", + "name": "QIWI plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QJUN", + "name": "FT Cboe Vest Nasdaq-100 Buffer ETF - June", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QK", + "name": "Q&K International Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLC", + "name": "FlexShares US Quality Large Cap Index Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLD", + "name": "ProShares Ultra QQQ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLGN", + "name": "Qualigen Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLI", + "name": "Qilian International Holding Group ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLS", + "name": "IQ Hedge Long/Short Tracker ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLTA", + "name": "iShares Aaa - A Rated Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLV", + "name": "FlexShares US Quality Low Volatility Index Fund", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLVD", + "name": "FLEXSHARES DEVELOPED MARKETS EX-US QUALITY LOW VOLATILITY INDEX FUND ", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLVE", + "name": "FLEXSHARES EMERGING MARKETS QUALITY LOW VOLATILITY INDEX FUND ", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QLYS", + "name": "Qualys Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QMAR", + "name": "FT Cboe Vest Nasdaq-100 Buffer ETF - March", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QMCO", + "name": "Quantum Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QMN", + "name": "IQ Hedge Market Neutral Tracker ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QMOM", + "name": "Alpha Architect U.S. Quantitative Momentum ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QNGY", + "name": "Quanergy Systems Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QNGY-WS", + "name": "Quanergy Systems Inc - Warrants (17/01/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QNRX", + "name": "Quoin Pharmaceuticals Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QNST", + "name": "QuinStreet Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QPFF", + "name": "American Century Quality Preferred ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QPT", + "name": "AdvisorShares Q Portfolio Blended Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QPX", + "name": "AdvisorShares Q Dynamic Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQC", + "name": "Simplify Nasdaq 100 PLUS Convexity ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQD", + "name": "Simplify Nasdaq 100 PLUS Downside Convexity ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQEW", + "name": "First Trust NASDAQ-100 Equal Weighted Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQH", + "name": "HCM Defender 100 Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQJG", + "name": "Invesco ESG NASDAQ Next Gen 100 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQMG", + "name": "Invesco ESG NASDAQ 100 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQQ", + "name": "Invesco QQQ Trust Series 1", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "1999-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQQA", + "name": "ProShares Nasdaq-100 Dorsey Wright Momentum ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQQE", + "name": "Direxion NASDAQ-100 Equal Weighted Index Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQQJ", + "name": "Invesco NASDAQ Next Gen 100 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQQM", + "name": "Invesco NASDAQ 100 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQQN", + "name": "VictoryShares Nasdaq Next 50 ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQQX", + "name": "Nuveen NASDAQ 100 Dynamic Overwrite Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QQXT", + "name": "FIRST TRUST NASDAQ-100 EX-TECHNOLOGY SECTOR INDEX FUND ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QRFT", + "name": "QRAFT AI Enhanced U.S. Large Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QRHC", + "name": "Quest Resource Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QRMI", + "name": "Global X NASDAQ 100 Risk Managed Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QRTAV", + "name": "Qurate Retail Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QRTEA", + "name": "Qurate Retail Inc - Series A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QRTEB", + "name": "Qurate Retail Inc - Series B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QRTEP", + "name": "Qurate Retail Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QRTEV", + "name": "Qurate Retail Inc 8.0 Fixed Rate Cumulative Redeemable Preferred Stock When Issued", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QRVO", + "name": "Qorvo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QS", + "name": "QuantumScape Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QS-WS", + "name": "QuantumScape Corp Wt Exp 2025", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QSI", + "name": "Quantum-Si Incorporated - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QSIAW", + "name": "Quantum-Si Incorporated - Warrants (10/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QSPT", + "name": "FT Cboe Vest Nasdaq-100 Buffer ETF - September", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QSR", + "name": "Restaurant Brands International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QSWN", + "name": "Amplify BlackSwan Tech & Treasury ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTAP", + "name": "Innovator Growth Accelerated Plus ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTEC", + "name": "First Trust NASDAQ-100 Technology Sector Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2006-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTEK", + "name": "QualTek Services Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTEKW", + "name": "QualTek Services Inc - Warrants (14/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTJA", + "name": "Innovator Growth Accelerated Plus ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTJL", + "name": "Innovator Growth Accelerated Plus ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTNT", + "name": "Quotient Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTOC", + "name": "Innovator Growth Accelerated Plus ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTR", + "name": "GLOBAL X NASDAQ 100 TAIL RISK ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTRX", + "name": "Quanterix Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTT", + "name": "Qutoutiao Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTUM", + "name": "Defiance Quantum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QTWO", + "name": "Q2 Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QUAD", + "name": "Quad/Graphics Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QUAL", + "name": "iShares MSCI USA Quality Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QUBT", + "name": "Quantum Computing Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QUIK", + "name": "Quicklogic Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QULL", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QUMU", + "name": "Qumu Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QUOT", + "name": "Quotient Technology Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QURE", + "name": "uniQure N.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QUS", + "name": "SPDR MSCI USA StrategicFactors SM ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QVAL", + "name": "Alpha Architect U.S. Quantitative Value ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QVCC", + "name": "QVC Inc. 6.250 Sr Secd Nt 2068", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QVCD", + "name": "QVC Inc 6375 Senior Secured Notes due 2067", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QVML", + "name": "Invesco S&P 500 QVM Multi-factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QVMM", + "name": "Invesco S&P MidCap 400 QVM Multi-factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QVMS", + "name": "Invesco S&P SmallCap 600 QVM Multi-factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QWLD", + "name": "SPDR MSCI World StrategicFactors SM ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QYLD", + "name": "Global X NASDAQ 100 Covered Call ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "QYLG", + "name": "Global X Nasdaq 100 Covered Call & Growth ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "R", + "name": "Ryder System Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RA", + "name": "Brookfield Real Assets Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2016-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAAS", + "name": "Cloopen Group Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAAX", + "name": "VanEck Inflation Allocation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RACB", + "name": "Research Alliance Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RACE", + "name": "Ferrari N.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RACYU", + "name": "Relativity Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAD", + "name": "Rite Aid Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RADA", + "name": "Rada Electronic Industries", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RADI", + "name": "Radius Global Infrastructure Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAFE", + "name": "Pimco Rafi ESG U.S. ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAIL", + "name": "FreightCar America Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAIN", + "name": "Rain Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RALS", + "name": "ProShares RAFI Long/Short", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAM", + "name": "Aries I Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAMMU", + "name": "Aries I Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAMMW", + "name": "Aries I Acquisition Corp - Warrants (18/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAMP", + "name": "LiveRamp Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAND", + "name": "Rand Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RANI", + "name": "Rani Therapeutics Holdings Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAPT", + "name": "RAPT Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RARE", + "name": "Ultragenyx Pharmaceutical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAVE", + "name": "Rave Restaurant Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAVI", + "name": "FlexShares Ready Access Variable Income Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAYC", + "name": "Rayliant Quantamental China Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAYD", + "name": "Rayliant Quantitative Developed Market Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAYE", + "name": "Rayliant Quantamental Emerging Market Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RAYS", + "name": "Global X Solar ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBA", + "name": "Ritchie Bros Auctioneers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBAC", + "name": "RedBall Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBAC-U", + "name": "RedBall Acquisition Corp - Units (1 Ord Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBAC-WS", + "name": "RedBall Acquisition Corp - Warrants(17/08/2022)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBB", + "name": "RBB Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBBN", + "name": "Ribbon Communications Inc - New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBC-W", + "name": "Regal Beloit Corporation Additional Shares WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBCAA", + "name": "Republic Bancorp Inc (KY) - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBCN", + "name": "Rubicon Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBIN", + "name": "NATIONWIDE RISK-BASED INTERNATIONAL EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBKB", + "name": "Rhinebeck Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBLX", + "name": "Roblox Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBND", + "name": "SPDR Bloomberg SASB Corporate Bond ESG Select ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBOT", + "name": "Vicarious Surgical Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBOT-WS", + "name": "Vicarious Surgical Inc - Warrants (05/08/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBS", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RBUS", + "name": "Nationwide Risk-Based U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RC", + "name": "Ready Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RC-P-C", + "name": "Ready Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RC-P-E", + "name": "Ready Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCA", + "name": "Ready Capital Corporation 700 Convertible Senior Notes due 2023", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCAC", + "name": "Revelstone Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCACU", + "name": "Revelstone Capital Acquisition Corp - Units (1 Ord ShareClass A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCACW", + "name": "Revelstone Capital Acquisition Corp - Warrants (15/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCAT", + "name": "Red Cat Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCB", + "name": "Ready Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCC", + "name": "Ready Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCD", + "name": "Invesco S&P 500 Equal Weight Consumer Discretionary ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCEL", + "name": "AVITA Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCF-U", + "name": "RCF Acquisition Corp Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCFA", + "name": "RCF Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCFA-U", + "name": "RCF Acquisition Corp Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCFA-WS", + "name": "RCF Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCG", + "name": "RENN Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1996-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCHG", + "name": "Recharge Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCHGU", + "name": "Recharge Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCHGW", + "name": "Recharge Acquisition Corp - Warrants (23/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCI", + "name": "Rogers Communications Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCII", + "name": "Rent-a-Center Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCKT", + "name": "Rocket Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCKY", + "name": "Rocky Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCL", + "name": "Royal Caribbean Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCLF", + "name": "Rosecliff Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCLFU", + "name": "Rosecliff Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCLFW", + "name": "Rosecliff Acquisition Corp I - Warrants (11/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCM", + "name": "R1 RCM Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCMT", + "name": "RCM Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCON", + "name": "Recon Technology Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCOR", + "name": "Renovacor Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCOR-WS", + "name": "Renovacor Inc - Warrants (05/03/2025)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCRT", + "name": "Recruiter.com Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCRTW", + "name": "Recruiter.com Group Inc - Warrants (15/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCS", + "name": "PIMCO Strategic Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RCUS", + "name": "Arcus Biosciences Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDBX", + "name": "Redbox Entertainment Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDBXW", + "name": "Redbox Entertainment Inc - Warrants (22/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDCM", + "name": "Radcom", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDFI", + "name": "Rareview Dynamic Fixed Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDFN", + "name": "Redfin Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDHL", + "name": "Redhill Biopharma", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDI", + "name": "Reading International Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDIB", + "name": "Reading International Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDIV", + "name": "Invesco S&P Ultra Dividend Revenue ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDMX", + "name": "SPDR Bloomberg SASB Developed Markets Ex US ESG Select ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDN", + "name": "Radian Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDNT", + "name": "Radnet Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDOG", + "name": "ALPS REIT DIVIDEND DOGS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDS-A", + "name": "Shell Plc ADR (Representing - Class A)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDUS", + "name": "Radius Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDVT", + "name": "Red Violet Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDVY", + "name": "First Trust Rising Dividend Achievers ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDW", + "name": "Redwire Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDW-WS", + "name": "Redwire Corporation - Warrants(27/05/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDWR", + "name": "Radware", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RDY", + "name": "Dr. Reddy`s Laboratories Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RE", + "name": "Everest Re Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REAL", + "name": "Therealreal Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REAX", + "name": "The Real Brokerage Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REC", + "name": "Emles Real Estate Credit ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RECS", + "name": "Columbia Research Enhanced Core ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REDU", + "name": "RISE Education Cayman Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REE", + "name": "REE Automotive Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REEAW", + "name": "REE Automotive Ltd - Warrants (22/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REED", + "name": "Reeds Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REET", + "name": "iShares Global REIT ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REFI", + "name": "Chicago Atlantic Real Estate Finance Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REFR", + "name": "Research Frontiers Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REG", + "name": "Regency Centers Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REGI", + "name": "Renewable Energy Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REGL", + "name": "ProShares S&P MidCap 400 Div Aristocrats ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REGN", + "name": "Regeneron Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REI", + "name": "Ring Energy Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REIT", + "name": "ALPS Active REIT ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REK", + "name": "ProShares Short Real Estate", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REKR", + "name": "Rekor Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RELI", + "name": "Reliance Global Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RELIW", + "name": "Reliance Global Group Inc - Warrants - Series A (01/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RELL", + "name": "Richardson Electronics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RELX", + "name": "RELX Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RELY", + "name": "Remitly Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REM", + "name": "iShares Mortgage Real Estate ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2007-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REMG", + "name": "SPDR Bloomberg SASB Emerging Markets ESG Select ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REMX", + "name": "VanEck Rare Earth/Strategic Metals ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RENN", + "name": "Renren Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RENO", + "name": "Renovare Environmental Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RENT", + "name": "Rent the Runway Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REPL", + "name": "Replimune Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REPX", + "name": "Riley Exploration Permian Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1998-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RERE", + "name": "ATRenew Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RES", + "name": "RPC Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RESD", + "name": "WISDOMTREE INTERNATIONAL ESG FUND N/A", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RESE", + "name": "WISDOMTREE EMERGING MARKETS ESG FUND N/A", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RESI", + "name": "Kelly Residential & Apartment Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RESN", + "name": "Resonant Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RESP", + "name": "WisdomTree U.S. ESG Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RETA", + "name": "Reata Pharmaceuticals Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RETL", + "name": "Direxion Daily Retail Bull 3x Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RETO", + "name": "ReTo Eco-Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REV", + "name": "Revlon Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-02-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVB", + "name": "Revelation Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVBU", + "name": "Revelation Biosciences Inc - Units (1 Ord share & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVBW", + "name": "Revelation Biosciences Inc - Warrants(10/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVE", + "name": "Alpine Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVEU", + "name": "Alpine Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVEW", + "name": "Alpine Acquisition Corp - Warrants (01/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVG", + "name": "REV Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVH", + "name": "Revolution Healthcare Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVHU", + "name": "Revolution Healthcare Acquisition Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVHW", + "name": "Revolution Healthcare Acquisition Corp - Warrants (17/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REVS", + "name": "COLUMBIA RESEARCH ENHANCED VALUE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REW", + "name": "ProShares UltraShort Technology", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REX", + "name": "REX American Resources Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REXR", + "name": "Rexford Industrial Realty Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REXR-P-B", + "name": "Rexford Industrial Realty Inc 5875 Series B Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REXR-P-C", + "name": "Rexford Industrial Realty Inc 5.625 PRF PERPETUAL USD 25 Ser C", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REYN", + "name": "Reynolds Consumer Products Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REZ", + "name": "iShares Residential and Multisector Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "REZI", + "name": "Resideo Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RF", + "name": "Regions Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RF-P-B", + "name": "Regions Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RF-P-C", + "name": "Regions Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RF-P-E", + "name": "Regions Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFACU", + "name": "RF Acquisition Corp - Units (1 Ord Class A & 1/2 War & 1 Right )", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFCI", + "name": "RiverFront Dynamic Core Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFDA", + "name": "RiverFront Dynamic US Dividend Advantage ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFDI", + "name": "First Trust RiverFront Dynamic Developed International ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFEM", + "name": "FIRST TRUST RIVERFRONT DYNAMIC EMERGING MARKETS ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFEU", + "name": "FIRST TRUST RIVERFRONT DYNAMIC EUROPE ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFFC", + "name": "RIVERFRONT DYNAMIC US FLEX-CAP ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFG", + "name": "Invesco S&P MidCap 400 Pure Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFI", + "name": "Cohen & Steers Total Return Realty Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFIL", + "name": "RF Industries Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFL", + "name": "Rafael Holdings Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFM", + "name": "RiverNorth Flexible Municipal Income Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFMZ", + "name": "RiverNorth Flexible Municipal Income Fund II Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFP", + "name": "Resolute Forest Products Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RFV", + "name": "Invesco S&P MidCap 400 Pure Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGA", + "name": "Reinsurance Group Of America Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGC", + "name": "Regencell Bioscience Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGCO", + "name": "RGC Resources Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGEN", + "name": "Repligen Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGF", + "name": "Real Good Food Company Inc (The) - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGI", + "name": "Invesco S&P 500 Equal Weight Industrials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGLD", + "name": "Royal Gold Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGLS", + "name": "Regulus Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGNX", + "name": "Regenxbio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGP", + "name": "Resources Connection Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGR", + "name": "Sturm Ruger & Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGS", + "name": "Regis Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGT", + "name": "Royce Global Value Trust Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2013-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGTI", + "name": "Rigetti Computing Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RGTIW", + "name": "Rigetti Computing Inc - Warrants (01/01/9999)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RH", + "name": "RH - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RHCB", + "name": "BNY Mellon Responsible Horizons Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RHE", + "name": "Regional Health Properties Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RHE-P-A", + "name": "Regional Health Properties Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RHI", + "name": "Robert Half International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RHP", + "name": "Ryman Hospitality Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RHRX", + "name": "RH Tactical Rotation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RHS", + "name": "Invesco S&P 500 Equal Weight Consumer Staples ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RHTX", + "name": "RH Tactical Outlook ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIBT", + "name": "RiceBran Technologies", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RICK", + "name": "RCI Hospitality Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RICO", + "name": "Agrico Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RICOU", + "name": "Agrico Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RICOW", + "name": "Agrico Acquisition Corp - Warrants (08/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIDE", + "name": "Lordstown Motors Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIET", + "name": "Hoya Capital High Dividend Yield ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIG", + "name": "Transocean Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIGL", + "name": "Rigel Pharmaceuticals", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIGS", + "name": "RiverFront Strategic Income Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIGZ", + "name": "Viridi Cleaner Energy Crypto-Mining & Semiconductor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILY", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILYG", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILYK", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILYL", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILYM", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILYN", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILYO", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILYP", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILYT", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RILYZ", + "name": "B. Riley Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RINF", + "name": "ProShares Inflation Expectations ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RING", + "name": "iShares MSCI Global Gold Miners ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIO", + "name": "Rio Tinto plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIOT", + "name": "Riot Blockchain Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RISN", + "name": "Inspire Tactical Balanced ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RISR", + "name": "FolioBeyond Rising Rates ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RITA", + "name": "ETFB GREEN SRI REITS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIV", + "name": "RiverNorth Opportunities Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2015-12-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIV-R-W", + "name": "RiverNorth Opportunities Fund Inc Rights expiring November 5 2021 WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RIVN", + "name": "Rivian Automotive Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RJA", + "name": "ELEMENTS Linked to the Rogers International Commodity Index Agriculture Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RJAC", + "name": "Jackson Acquisition Co - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RJAC-U", + "name": "Jackson Acquisition Co - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RJAC-WS", + "name": "Jackson Acquisition Co - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RJF", + "name": "Raymond James Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RJI", + "name": "ELEMENTS Linked to the Rogers International Commodity Index ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RJN", + "name": "AB Svensk Exportkredit", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RJZ", + "name": "AB Svensk Exportkredit", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RKDA", + "name": "Arcadia Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RKLB", + "name": "Rocket Lab USA Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RKLY", + "name": "Rockley Photonics Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RKLY-WS", + "name": "Rockley Photonics Holdings Ltd - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RKT", + "name": "Rocket Companies Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RKTA", + "name": "Rocket Internet Growth Opportunities Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RKTA-U", + "name": "Rocket Internet Growth Opportunities Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RKTA-WS", + "name": "Rocket Internet Growth Opportunities Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RL", + "name": "Ralph Lauren Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLAY", + "name": "Relay Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLGT", + "name": "Radiant Logistics Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLGY", + "name": "Realogy Holdings Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLI", + "name": "RLI Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLJ", + "name": "RLJ Lodging Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLJ-P-A", + "name": "RLJ Lodging Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLMD", + "name": "Relmada Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLTY", + "name": "Cohen & Steers Real Estate Opportunities and Income Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLX", + "name": "RLX Technology Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLY", + "name": "SPDR SSgA Multi-Asset Real Return ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RLYB", + "name": "Rallybio Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RM", + "name": "Regional Management Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMAX", + "name": "RE/MAX Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMBI", + "name": "Richmond Mutual Bancorporation Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMBL", + "name": "RumbleON Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMBS", + "name": "Rambus Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMCF", + "name": "Rocky Mountain Chocolate Factory Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMD", + "name": "Resmed Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMED", + "name": "Ra Medical Systems Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMG-U", + "name": "Romeo Power Inc - Unit (1 Ord Cls A & 0.33 Wrt)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMGC", + "name": "RMG Acquisition Corp III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMGCU", + "name": "RMG Acquisition Corp III - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMGCW", + "name": "RMG Acquisition Corp III - Warrants (08/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMI", + "name": "RiverNorth Opportunistic Municipal Income Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMM", + "name": "RiverNorth Managed Duration Municipal Income Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMMZ", + "name": "RiverNorth Managed Duration Municipal Income Fund II Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMNI", + "name": "Rimini Street Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMO", + "name": "Romeo Power Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMO-WS", + "name": "Romeo Power Inc Warrants", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMPL-P", + "name": "RiverNorth Marketplace Lending Corporation 5875 Series A Term Preferred Stock Due 2024", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMR", + "name": "RMR Group Inc (The) - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMT", + "name": "Royce Micro Capital Trust Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1993-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RMTI", + "name": "Rockwell Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNA", + "name": "Avidity Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNAZ", + "name": "TransCode Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNDB", + "name": "Randolph Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNDM", + "name": "First Trust Developed International Equity Select ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNDV", + "name": "First Trust US Equity Dividend Select ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNEM", + "name": "EMERGING MARKETS EQUITY SELECT ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNER", + "name": "Mount Rainier Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNERU", + "name": "Mount Rainier Acquisition Corp - Unit (1 Ordinary share & 1 Wrt)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNERW", + "name": "Mount Rainier Acquisition Corp - Warrants (27/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNG", + "name": "RingCentral Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNGR", + "name": "Ranger Energy Services Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNLC", + "name": "First Trust Large Cap US Equity Select ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNLX", + "name": "Renalytix Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNMC", + "name": "First Trust Mid Cap US Equity Select ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNP", + "name": "Cohen & Steers REIT & Preferred Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNR", + "name": "RenaissanceRe Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNR-P-C", + "name": "RenaissanceRe Holdings Ltd 608 Series C Preference Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNR-P-C-CL", + "name": "RenaissanceRe Holdings Ltd. 6.08 Series C Preference Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNR-P-F", + "name": "RenaissanceRe Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNR-P-G", + "name": "RenaissanceRe Holdings Ltd Depositary Shares Series G", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNRG", + "name": "Global X Renewable Energy Producers ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNSC", + "name": "First Trust Small Cap US Equity Select ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNST", + "name": "Renasant Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNW", + "name": "ReNew Energy Global plc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNWK", + "name": "Realnetworks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNWWW", + "name": "ReNew Energy Global plc - Warrants (23/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RNXT", + "name": "RenovoRx Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROAD", + "name": "Construction Partners Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROAM", + "name": "Hartford Multifactor Emerging Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROBO", + "name": "ETCT ROBO Global Robotics and Automation Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROBT", + "name": "First Trust Nasdaq Artificial Intelligence and Robotics ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROC", + "name": "ROC Energy Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCAR", + "name": "ROC Energy Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCAU", + "name": "ROC Energy Acquisition Corp - Units (1 Ord Share & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCC", + "name": "Ranger Oil Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCG", + "name": "Roth CH Acquisition IV Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCGU", + "name": "Roth CH Acquisition IV Co - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCGW", + "name": "Roth CH Acquisition IV Co - Warrants (01/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCI", + "name": "ROC ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCK", + "name": "Gibraltar Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCL", + "name": "Roth CH Acquisition V Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCLU", + "name": "Roth CH Acquisition V Co - Unit (1 Ordinary share & 1/2 Wrt)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCLW", + "name": "Roth CH Acquisition V Co - Warrants (10/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROCR", + "name": "QualTek Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RODE", + "name": "HARTFORD MULTIFACTOR DIVERSIFIED INTERNATIONAL ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RODI", + "name": "Barclays Return on Disability ETN", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RODM", + "name": "Hartford Multifactor Developed Markets (ex-US) ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROG", + "name": "Rogers Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROIC", + "name": "Retail Opportunity Investments Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROIV", + "name": "Roivant Sciences Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROIVW", + "name": "Roivant Sciences Ltd - Warrants (30/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROK", + "name": "Rockwell Automation Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROKT", + "name": "SPDR S&P Kensho Final Frontiers ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROKU", + "name": "Roku Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROL", + "name": "Rollins Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROLL", + "name": "RBC Bearings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROLLP", + "name": "RBC Bearings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROM", + "name": "ProShares Ultra Technology", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROMO", + "name": "Strategy Shares Newfound/ReSolve Robust Momentum ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RONI", + "name": "Rice Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RONI-U", + "name": "Rice Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RONI-WS", + "name": "Rice Acquisition Corp II - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROOF", + "name": "IQ U.S. Real Estate Small Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROOT", + "name": "Root Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROP", + "name": "Roper Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RORO", + "name": "ATAC US Rotation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROSC", + "name": "Hartford Multifactor Small Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROSE", + "name": "Rose Hill Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROSEU", + "name": "Rose Hill Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROSEW", + "name": "Rose Hill Acquisition Corp - Warrants (07/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROSS", + "name": "Ross Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROSS-U", + "name": "Ross Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROSS-WS", + "name": "Ross Acquisition Corp II - Warrants (01/02/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROST", + "name": "Ross Stores Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROUS", + "name": "Hartford Multifactor US Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ROVR", + "name": "Rover Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPAR", + "name": "RPAR Risk Parity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPAY", + "name": "Repay Holdings Corporation - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPD", + "name": "Rapid7 Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPG", + "name": "Invesco S&P 500 Pure Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPHM", + "name": "Reneo Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPID", + "name": "Rapid Micro Biosystems Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPM", + "name": "RPM International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPRX", + "name": "Royalty Pharma plc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPT", + "name": "RPT Realty", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPT-P-D", + "name": "RPT Realty", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPTX", + "name": "Repare Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RPV", + "name": "Invesco S&P 500 Pure Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RQI", + "name": "Cohen & Steers Quality Income Realty Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RRAC", + "name": "Rigel Resource Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RRAC-U", + "name": "Rigel Resource Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RRAC-WS", + "name": "Rigel Resource Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RRBI", + "name": "Red River Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RRC", + "name": "Range Resources Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RRGB", + "name": "Red Robin Gourmet Burgers Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RRH", + "name": "Advocate Rising Rate Hedge ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RRR", + "name": "Red Rock Resorts Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RRX", + "name": "Regal Rexnord Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RS", + "name": "Reliance Steel & Aluminum Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSEE", + "name": "Rareview Systematic Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSF", + "name": "RiverNorth Specialty Finance Corp", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2016-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSG", + "name": "Republic Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSI", + "name": "Rush Street Interactive Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSKD", + "name": "Riskified Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSLS", + "name": "ReShape Lifesciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSP", + "name": "Invesco S&P 500 Equal Weight ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2003-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSPE", + "name": "Invesco ESG S&P 500 Equal Weight ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSPY", + "name": "REVERE SECTOR OPPORTUNITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSSS", + "name": "Research Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSVR", + "name": "Reservoir Media Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSVRW", + "name": "Reservoir Media Inc - Warrants (28/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSX", + "name": "VanEck Russia ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2007-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RSXJ", + "name": "VanEck Russia Small-Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTAI", + "name": "Rareview Tax Advantaged Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTH", + "name": "VanEck Retail ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2001-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTIX", + "name": "Surgalign Holdings", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTL", + "name": "Necessity Retail REIT Inc (The) - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTLPO", + "name": "Necessity Retail REIT Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTLPP", + "name": "Necessity Retail REIT Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTLR", + "name": "Rattler Midstream Lp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTM", + "name": "Invesco S&P 500 Equal Weight Materials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTX", + "name": "Raytheon Technologies Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RTYD", + "name": "Simplify US Small Cap PLUS Downside Convexity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RUBI", + "name": "Rubicon Project", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RUBY", + "name": "Rubius Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RUFF", + "name": "Alpha Dog ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RULE", + "name": "Adaptive Core ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RUN", + "name": "Sunrun Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RUSHA", + "name": "Rush Enterprises Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RUSHB", + "name": "Rush Enterprises Inc - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RUSS", + "name": "DIREXION DAILY RUSSIA BEAR 3X SHARES ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RUTH", + "name": "Ruths Hospitality Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVAC", + "name": "Riverview Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVACU", + "name": "Riverview Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVACW", + "name": "Riverview Acquisition Corp - Warrants(29/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVI", + "name": "Retail Value Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVLP", + "name": "RVL Pharmaceuticals plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVLV", + "name": "Revolve Group Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVMD", + "name": "Revolution Medicines Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVNC", + "name": "Revance Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVNU", + "name": "Xtrackers Municipal Infrastructure Revenue Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVP", + "name": "Retractable Technologies Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2001-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVPH", + "name": "Reviva Pharmaceuticals Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVPHW", + "name": "Reviva Pharmaceuticals Holdings Inc - Warrants (25/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVSB", + "name": "Riverview Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RVT", + "name": "Royce Value Trust Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWAY", + "name": "Runway Growth Finance Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWGE-U", + "name": "Regalwood Global Energy Ltd Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWGV", + "name": "Direxion Russell 1000 Growth Over Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWJ", + "name": "Invesco S&P SmallCap 600 Revenue ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWK", + "name": "Invesco S&P MidCap 400 Revenue ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWL", + "name": "Invesco S&P 500 Revenue ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWLK", + "name": "Rewalk Robotics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWM", + "name": "ProShares Short Russell2000", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWO", + "name": "SPDR Dow Jones Global Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWR", + "name": "SPDR DJ Wilshire REIT ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWT", + "name": "Redwood Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWVG", + "name": "Direxion Russell 1000 Value Over Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RWX", + "name": "SPDR Dow Jones International Real Estate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXD", + "name": "ProShares UltraShort Health Care", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXDX", + "name": "Prometheus Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXI", + "name": "iShares Global Consumer Discretionary ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXL", + "name": "ProShares Ultra Health Care", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXN-W", + "name": "Rexnord Corporation ExDistribution WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXRA", + "name": "RXR Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXRAU", + "name": "RXR Acquisition Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXRAW", + "name": "RXR Acquisition Corp - Warrants (01/01/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXRX", + "name": "Recursion Pharmaceuticals Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXST", + "name": "RxSight Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RXT", + "name": "Rackspace Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RY", + "name": "Royal Bank Of Canada", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RY-P-T", + "name": "Royal Bank Of Canada", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYAAY", + "name": "Ryanair Holdings Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYAM", + "name": "Rayonier Advanced Materials Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYAN", + "name": "Ryan Specialty Group Holdings Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYB", + "name": "RYB Education Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYCE", + "name": "Amira Nature Foods Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYE", + "name": "Invesco S&P 500 Equal Weight Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYF", + "name": "Invesco S&P 500 Equal Weight Financials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYH", + "name": "Invesco S&P 500 Equal Weight Health Care ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYI", + "name": "Ryerson Holding Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYJ", + "name": "Invesco Raymond James SB-1 Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYLD", + "name": "Global X Russell 2000 Covered Call ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYN", + "name": "Rayonier Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYT", + "name": "Invesco S&P 500 Equal Weight Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYTM", + "name": "Rhythm Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RYU", + "name": "Invesco S&P 500 Equal Weight Utilities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RZA", + "name": "Reinsurance Group Of America Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RZB", + "name": "Reinsurance Group Of America Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RZG", + "name": "INVESCO S&P SMALLCAP 600 PURE GROWTH ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RZLT", + "name": "Rezolute Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "RZV", + "name": "Invesco S&P SmallCap 600 Pure Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "S", + "name": "SentinelOne Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SA", + "name": "Seabridge Gold Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAA", + "name": "ProShares Ultra SmallCap600", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAB", + "name": "Grupo Casa Saba SA De CV", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAB-CL", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SABR", + "name": "Sabre Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SABRP", + "name": "Sabre Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SABS", + "name": "SAB Biotherapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SABSW", + "name": "SAB Biotherapeutics Inc - Warrants (25/07/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SACC", + "name": "Sachem Capital Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SACH", + "name": "Sachem Capital Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SACH-P-A", + "name": "Sachem Capital Corp 7.75 Series A Cumulative Redeemable Preferred Stock", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAEF", + "name": "Schwab Ariel ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAFE", + "name": "Safehold Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAFM", + "name": "Sanderson Farms Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1989-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAFT", + "name": "Safety Insurance Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAGA", + "name": "Sagaliam Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAGAR", + "name": "Sagaliam Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAGAU", + "name": "Sagaliam Acquisition Corp - Units (1 Class A & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAGE", + "name": "Sage Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAGP", + "name": "Strategas Global Policy Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAH", + "name": "Sonic Automotive Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAIA", + "name": "Saia Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAIC", + "name": "Science Applications International Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAIL", + "name": "SailPoint Technologies Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAK", + "name": "Saratoga Investment Corp 7.25 Notes due 2025", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAL", + "name": "Salisbury Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SALM", + "name": "Salem Media Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAM", + "name": "Boston Beer Co. Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAMA", + "name": "Schultze Special Purpose Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAMAU", + "name": "Schultze Special Purpose Acquisition Corp II - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAMAW", + "name": "Schultze Special Purpose Acquisition Corp II - Warrants (25/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAMG", + "name": "Silvercrest Asset Management Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAMT", + "name": "Strategas Macro Thematic Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAN", + "name": "Banco Santander S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SANA", + "name": "Sana Biotechnology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SANB", + "name": "Sanaby Health Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SANBU", + "name": "Sanaby Health Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SANBW", + "name": "Sanaby Health Acquisition Corp I - Warrants (30/07/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAND", + "name": "Sandstorm Gold Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SANG", + "name": "SANGSTAT MEDICAL CORP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SANM", + "name": "Sanmina Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SANW", + "name": "S&W Seed Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAP", + "name": "Sap SE", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAR", + "name": "Saratoga Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SARK", + "name": "Tuttle Capital Short Innovation ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SASR", + "name": "Sandy Spring Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SATL", + "name": "Satellogic Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SATLW", + "name": "Satellogic Inc - Warrants (25/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SATO", + "name": "INVESCO ALERIAN GALAXY CRYPTO ECONOMY ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SATS", + "name": "EchoStar Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAVA", + "name": "Cassava Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAVE", + "name": "Spirit Airlines Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SAVN", + "name": "LIFEGOAL GENERAL CONSERVATIVE INVESTMENT ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SB", + "name": "Safe Bulkers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SB-P-C", + "name": "Safe Bulkers Inc Cumulative Redeemable Perpetual Preferred Series C Marshall Islands", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SB-P-D", + "name": "Safe Bulkers Inc Perpetual Preferred Series D Marshall Islands", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBAC", + "name": "SBA Communications Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBB", + "name": "ProShares Short SmallCap600", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBBA", + "name": "Scorpio Tankers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBCF", + "name": "Seacoast Banking Corp Of Florida", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBE-U", + "name": "ChargePoint Holdings Inc - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBET", + "name": "SharpLink Gaming Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBEV", + "name": "Splash Beverage Group Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBEV-WS", + "name": "Splash Beverage Group Inc - Warrants (01/01/9999)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBFG", + "name": "SB Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBFM", + "name": "Sunshine Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBFMW", + "name": "Sunshine Biopharma Inc - Warrants (15/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBG-WS", + "name": "Sandbridge Acquisition Corporation Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBGI", + "name": "Sinclair Broadcast Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBH", + "name": "Sally Beauty Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBI", + "name": "Western Asset Intermediate Muni Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBII", + "name": "Sandbridge X2 Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBII-U", + "name": "Sandbridge X2 Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBII-WS", + "name": "Sandbridge X2 Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBIO", + "name": "ALPS Medical Breakthroughs ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBLK", + "name": "Star Bulk Carriers Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBM", + "name": "ProShares Short Basic Materials", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBND", + "name": "COLUMBIA SHORT DURATION BOND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBNY", + "name": "Signature Bank", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBNYP", + "name": "Signature Bank", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBOW", + "name": "SilverBow Resources Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBR", + "name": "Sabine Royalty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBRA", + "name": "Sabra Healthcare REIT Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBS", + "name": "Companhia de Saneamento Basico do Estado de Sao Paulo.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBSI", + "name": "Southside Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBSW", + "name": "Sibanye Stillwater Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBT", + "name": "Sterling Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBTX", + "name": "Silverback Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBUG", + "name": "Barclays Bank Plc iPath Silver ETN Global Med Term Nt Ser A 10062049", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SBUX", + "name": "Starbucks Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCAQ", + "name": "Stratim Cloud Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCAQU", + "name": "Stratim Cloud Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCAQW", + "name": "Stratim Cloud Acquisition Corp - Warrants (05/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCC", + "name": "ProShares UltraShort Consumer Services", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCCB", + "name": "Sachem Capital Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCCC", + "name": "Sachem Capital Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCCD", + "name": "Sachem Capital Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCCE", + "name": "Sachem Capital Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2022-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCCO", + "name": "Southern Copper Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCD", + "name": "LMP Capital and Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCDL", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCE-P-G", + "name": "SCE Trust II Trust Preferred Securities", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCE-P-H", + "name": "SCE Trust III FixedFloating Rate Trust Preference Securities", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCE-P-J", + "name": "Southern California Edison Company 5375 FixedtoFloating Rate Trust Preference Securities", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCE-P-K", + "name": "Southern California Edison Company 545 FixedtoFloating Rate Trust Preference Securities", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCE-P-L", + "name": "SCE TRUST VI", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHA", + "name": "Schwab U.S. Small-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHB", + "name": "Schwab U.S. Broad Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHC", + "name": "Schwab International Small-Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHD", + "name": "Schwab US Dividend Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHE", + "name": "Schwab Emerging Markets Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHF", + "name": "Schwab International Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHG", + "name": "Schwab U.S. Large-Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHH", + "name": "Schwab U.S. REIT ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHI", + "name": "Schwab 5-10 Year Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHJ", + "name": "Schwab 1-5 Year Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHK", + "name": "Schwab 1000 Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHL", + "name": "Scholastic Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHM", + "name": "Schwab U.S. Mid-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHN", + "name": "Schnitzer Steel Industries Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHO", + "name": "Schwab Short-Term U.S. Treasury ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHP", + "name": "Schwab U.S. Tips ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHQ", + "name": "Schwab US Long-Term U.S. Treasury ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHR", + "name": "Schwab Intermediate-Term U.S. Treasury ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHV", + "name": "Schwab U.S. Large-Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHW", + "name": "Charles Schwab Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHW-P-D", + "name": "Charles Schwab Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHW-P-J", + "name": "Charles Schwab Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHX", + "name": "Schwab U.S. Large-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHY", + "name": "Schwab International Dividend Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCHZ", + "name": "Schwab US Aggregate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCI", + "name": "Service Corp International", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCJ", + "name": "ISHARES MSCI JAPAN SMALL-CAP ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCKT", + "name": "Socket Mobile Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCL", + "name": "Stepan Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCLE", + "name": "Broadscale Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCLEU", + "name": "Broadscale Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCLEW", + "name": "Broadscale Acquisition Corp - Warrants (02/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCM", + "name": "Stellus Capital Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCMA", + "name": "Seaport Calibre Materials Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCMAU", + "name": "Seaport Calibre Materials Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCMAW", + "name": "Seaport Calibre Materials Acquisition Corp - Warrants (28/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCO", + "name": "ProShares UltraShort Bloomberg Crude Oil", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCOA", + "name": "ScION Tech Growth I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCOAU", + "name": "ScION Tech Growth I - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCOAW", + "name": "ScION Tech Growth I - Warrants (01/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCOB", + "name": "ScION Tech Growth II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCOBU", + "name": "ScION Tech Growth II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCOBW", + "name": "ScION Tech Growth II - Warrants (09/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCOR", + "name": "Comscore Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCPE-U", + "name": "SC Health Corporation Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCPH", + "name": "scPharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCPL", + "name": "Sciplay Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCPS", + "name": "Scopus Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCRD", + "name": "Janus Henderson Sustainable Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCRM", + "name": "Screaming Eagle Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCRMU", + "name": "Screaming Eagle Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCRMW", + "name": "Screaming Eagle Acquisition Corp - Warrants (05/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCS", + "name": "Steelcase Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCSC", + "name": "Scansource Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCTL", + "name": "Societal CDMO Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCU", + "name": "Sculptor Capital Management Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCUA", + "name": "Sculptor Acquisition Corp I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCUA-U", + "name": "Sculptor Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCUA-WS", + "name": "Sculptor Acquisition Corp I - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCVL", + "name": "Shoe Carnival Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCVX-U", + "name": "SCVX Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCWX", + "name": "SecureWorks Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCX", + "name": "L.S. Starrett Co. - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCYX", + "name": "Scynexis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SCZ", + "name": "iShares MSCI EAFE Small-Cap ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SD", + "name": "Sandridge Energy Inc New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDAC", + "name": "Sustainable Development Acquisition I Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDACU", + "name": "Sustainable Development Acquisition I Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDACW", + "name": "Sustainable Development Acquisition I Corp - Warrants (05/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDC", + "name": "Smiledirectclub Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDCI", + "name": "USCF SummerHaven Dynamic Commodity Strategy No K-1 Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDD", + "name": "PROSHARES ULTRASHORT SMALLCAP600 ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDEF", + "name": "Sound Enhanced Fixed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDEI", + "name": "Sound Equity Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDEM", + "name": "Global X MSCI SuperDividend Emerging Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDG", + "name": "iShares MSCI Global Sustainable Development Goals ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDGA", + "name": "Impact Shares Sustainable Development Goals Global Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDGR", + "name": "Schrodinger Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDH", + "name": "Global Internet of People Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDHY", + "name": "PGIM Short Duration High Yield Opportunities Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDIG", + "name": "Stronghold Digital Mining Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDIV", + "name": "Global X SuperDividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDOG", + "name": "ALPS Sector Dividend Dogs ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDOW", + "name": "ProShares UltraPro Short Dow30", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDP", + "name": "ProShares UltraShort Utilities", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDPI", + "name": "Superior Drilling Products Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2014-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDS", + "name": "ProShares UltraShort S&P500", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDVY", + "name": "First Trust SMID Cap Rising Dividend Achievers ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SDY", + "name": "SPDR Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SE", + "name": "Sea Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEA", + "name": "U.S. Global Sea to Sky Cargo ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEAC", + "name": "Seachange International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEAL-P-A", + "name": "Seapeak LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEAL-P-B", + "name": "Seapeak LLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEAS", + "name": "SeaWorld Entertainment Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEAT", + "name": "Vivid Seats Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEB", + "name": "Seaboard Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1980-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SECO", + "name": "Secoo Holding Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SECT", + "name": "Main Sector Rotation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEDA", + "name": "SDCL EDGE Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEDA-U", + "name": "SDCL EDGE Acquisition Corporation Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEDA-WS", + "name": "SDCL EDGE Acquisition Corporation Redeemable warrants each whole warrant exercisable for one share of Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEDG", + "name": "Solaredge Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEE", + "name": "Sealed Air Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEED", + "name": "Origin Agritech Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEEL", + "name": "Seelos Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEER", + "name": "Seer Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEF", + "name": "ProShares Short Financials", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEIC", + "name": "SEI Investments Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEIX", + "name": "Virtus Seix Senior Loan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SELB", + "name": "Selecta Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SELF", + "name": "Global Self Storage Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEM", + "name": "Select Medical Holdings Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEMR", + "name": "SEMrush Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SENEA", + "name": "Seneca Foods Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SENEB", + "name": "Seneca Foods Corp - Class B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SENS", + "name": "Senseonics Holdings Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SENT", + "name": "ADVISORSHARES ALPHA DNA EQUITY SENTIMENT ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEPZ", + "name": "TrueShares Structured Outcome (September) ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SERA", + "name": "Sera Prognostics Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SES", + "name": "SES AI Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SES-WS", + "name": "SES AI Corporation - Warrants (08/01/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SESN", + "name": "Sesen Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEV", + "name": "Sono Group N.V.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SEVN", + "name": "Seven Hills Realty Trust .", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SF", + "name": "Stifel Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SF-P-B", + "name": "Stifel Financial", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SF-P-C", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SF-P-D", + "name": "Stifel Financial Corporation Depositary Shares Series D", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFB", + "name": "Stifel Financial Corporation 520 Senior Notes due 2047", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFBC", + "name": "Sound Financial Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-01-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFBS", + "name": "ServisFirst Bancshares Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFE", + "name": "Safeguard Scientifics Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFET", + "name": "Safe-T Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFHY", + "name": "WISDOMTREE U.S. SHORT-TERM HIGH YIELD CORPORATE BOND FUND N/A", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFIG", + "name": "WISDOMTREE U.S. SHORT-TERM CORPORATE BOND FUND N/A", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFIX", + "name": "Stitch Fix Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFL", + "name": "SFL Corporation Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFM", + "name": "Sprouts Farmers Market Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFNC", + "name": "Simmons First National Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFST", + "name": "Southern First Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFT", + "name": "Shift Technologies Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFTW-U", + "name": "BlackSky Technology Inc - Units (1 Ord Class A & 1/2 Warr)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFUN", + "name": "Fang Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFY", + "name": "SoFi Select 500 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFYF", + "name": "SOFI 50 ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SFYX", + "name": "SoFi Next 500 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SG", + "name": "Sweetgreen Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGA", + "name": "Saga Communications Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGAM", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGBX", + "name": "SG Blocks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGC", + "name": "Superior Group of Companies Inc.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGDJ", + "name": "Sprott Junior Gold Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGDM", + "name": "Sprott Gold Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGEN", + "name": "Seagen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGFY", + "name": "Signify Health Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGG", + "name": "iPathA Series B Bloomberg Sugar Subindex Total Return ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGH", + "name": "SMART Global Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGHC", + "name": "Super Group (SGHC) Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGHC-WS", + "name": "Super Group SGHC Ltd Redeemable Warrants each whole Warrant exercisable for one Ordinary Share each at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGHLU", + "name": "Signal Hill Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGHT", + "name": "Sight Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGII", + "name": "Seaport Global Acquisition II Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGIIU", + "name": "Seaport Global Acquisition II Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGIIW", + "name": "Seaport Global Acquisition II Corp - Warrants (17/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGLB", + "name": "Sigma Labs Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGLY", + "name": "Singularity Future Technology Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGMA", + "name": "Sigmatron International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGML", + "name": "Sigma Lithium Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGMO", + "name": "Sangamo Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGMS", + "name": "Scientific Games Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGOL", + "name": "Aberdeen Standard Physical Gold Shares ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGOV", + "name": "iShares 0-3 Month Treasury Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGRP", + "name": "Spar Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGRY", + "name": "Surgery Partners Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGTX", + "name": "Sigilon Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SGU", + "name": "Star Group L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SH", + "name": "ProShares Short S&P500", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHAC", + "name": "SCP & CO Healthcare Acquisition Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHACU", + "name": "SCP & CO Healthcare Acquisition Co - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHACW", + "name": "SCP & CO Healthcare Acquisition Co - Warrants (27/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHAG", + "name": "WisdomTree Yield Enhanced U.S. Short-Term Aggregate Bond Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHAK", + "name": "Shake Shack Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHAP", + "name": "Spree Acquisition Corp 1 Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHAP-U", + "name": "Spree Acquisition Corp 1 Ltd - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHAP-WS", + "name": "Spree Acquisition Corp 1 Ltd - Warrants (22/12/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHBI", + "name": "Shore Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHC", + "name": "Sotera Health Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHCA", + "name": "Spindletop Health Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHCAU", + "name": "Spindletop Health Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHCAW", + "name": "Spindletop Health Acquisition Corp - Warrants (04/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHCR", + "name": "Sharecare Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHCRW", + "name": "Sharecare Inc - Warrants (01/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHE", + "name": "SPDR SSGA Gender Diversity Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHEL", + "name": "Shell Plc ADR (Representing - )", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHEL-W", + "name": "Royal Dutch Shell PLC American Depositary Shares each representing two 2 WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHEN", + "name": "Shenandoah Telecommunications Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHFT", + "name": "iClima Distributed Smart Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHG", + "name": "Shinhan Financial Group Co. Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHI", + "name": "Sinopec Shanghai Petrochemical Co. Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHIP", + "name": "Seanergy Maritime Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHIPW", + "name": "Seanergy Maritime Holdings Corp - Warrants - Class A (07/12/2021)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHIPZ", + "name": "Seanergy Maritime Holdings Corp - Warrants - Class B (09/05/2022)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHLL-U", + "name": "Hyliion Holdings Corporation - Unit (1 Ordinary share Cls A & 1/2 Wrt)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHLS", + "name": "Shoals Technologies Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHLX", + "name": "Shell Midstream Partners L.P.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHM", + "name": "SPDR Nuveen Bloomberg Short Term Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHO", + "name": "Sunstone Hotel Investors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHO-P-H", + "name": "Sunstone Hotel Investors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHO-P-I", + "name": "Sunstone Hotel Investors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHOO", + "name": "Steven Madden Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHOP", + "name": "Shopify Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHPW", + "name": "Shapeways Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHPW-WS", + "name": "Shapeways Holdings Inc Redeemable Warrants each whole warrant exercisable for one share of Common Stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHQA", + "name": "Shelter Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHQAU", + "name": "Shelter Acquisition Corp I - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHQAW", + "name": "Shelter Acquisition Corp I - Warrants (25/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHUAU", + "name": "SHUAA Partners Acquisition Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHUS", + "name": "Syntax Stratified U.S. Total Market Hedged ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHV", + "name": "iShares Short Treasury Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHW", + "name": "Sherwin-Williams Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHY", + "name": "iShares 1-3 Year Treasury Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2002-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHYD", + "name": "VANECK SHORT HIGH YIELD MUNI ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHYF", + "name": "Shyft Group Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHYG", + "name": "iShares 0-5 Year High Yield Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SHYL", + "name": "Xtrackers Short Duration High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SI", + "name": "Silvergate Capital Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SI-P-A", + "name": "Silvergate Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIBN", + "name": "SI-BONE Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIC", + "name": "Select Interior Concepts Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SID", + "name": "Companhia Siderurgica Nacional", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIDU", + "name": "Sidus Space Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIEB", + "name": "Siebert Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1980-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIEN", + "name": "Sientra Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIER", + "name": "Sierra Lake Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIERU", + "name": "Sierra Lake Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIERW", + "name": "Sierra Lake Acquisition Corp - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIF", + "name": "SIFCO Industries Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1980-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIFI", + "name": "HARBOR SCIENTIFIC ALPHA INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIFY", + "name": "Sify Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIG", + "name": "Signet Jewelers Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIGA", + "name": "SIGA Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIGI", + "name": "Selective Insurance Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIGIP", + "name": "Selective Insurance Group Inc Depositary Shares each representing a 11000th interest in a share of 4.60 NonCumulative Preferred Stock Series B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIHY", + "name": "HARBOR SCIENTIFIC ALPHA HIGH-YIELD ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SII", + "name": "Sprott Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIJ", + "name": "ProShares UltraShort Industrials", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIL", + "name": "Global X Silver Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SILC", + "name": "Silicom Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SILJ", + "name": "ETFMG Prime Junior Silver Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SILK", + "name": "Silk Road Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SILV", + "name": "SilverCrest Metals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2015-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SILX", + "name": "ETFMG Prime 2X Daily Junior Silver Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIM", + "name": "Grupo Simec S.A.B. de C.V.", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIMO", + "name": "Silicon Motion Technology Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIMS", + "name": "SPDR S&P Kensho Intelligent Structures ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SINT", + "name": "SINTX Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SINV", + "name": "ETFMG Prime 2X Daily Inverse Junior Silver Miners ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIOX", + "name": "Sio Gene Therapies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIRE", + "name": "Sisecam Resources LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIRI", + "name": "Sirius XM Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SISI", + "name": "Shineco Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SITC", + "name": "SITE Centers Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SITC-P-A", + "name": "SITE Centers Corp 6375 Class A Preferred Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SITE", + "name": "SiteOne Landscape Supply Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SITM", + "name": "SiTime Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIVB", + "name": "SVB Financial Group", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIVBP", + "name": "SVB Financial Group", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIVR", + "name": "Aberdeen Standard Physical Silver Shares ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIX", + "name": "Six Flags Entertainment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIXA", + "name": "ETC 6 Meridian Mega Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIXH", + "name": "ETC 6 Meridian Hedged Equity Index Option ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIXJ", + "name": "AllianzIM U.S. Large Cap 6 Month Buffer10 Jan/Jul ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIXL", + "name": "ETC 6 Meridian Low Beta Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIXO", + "name": "AllianzIM U.S. Large Cap 6 Month Buffer10 Apr/Oct ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIXS", + "name": "ETC 6 Meridian Small Cap Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SIZE", + "name": "iShares MSCI USA Size Factor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJ", + "name": "Scienjoy Holding Corporation - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJB", + "name": "ProShares Short High Yield", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJI", + "name": "South Jersey Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJIJ", + "name": "South Jersey Industries Inc. 5.625 NT REDEEM 16092079 USD 25", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJIV", + "name": "South Jersey Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJM", + "name": "J.M. Smucker Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJNK", + "name": "SPDR Bloomberg Short Term High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJR", + "name": "Shaw Communications Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJT", + "name": "San Juan Basin Royalty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SJW", + "name": "SJW Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKE", + "name": "Skeena Resources Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKF", + "name": "ProShares UltraShort Financials", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKIL", + "name": "Skillsoft Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKIL-WS", + "name": "Skillsoft Corp New Wt Exp 06112026", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKIN", + "name": "Beauty Health Company (The) - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKLZ", + "name": "Skillz Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKM", + "name": "SK Telecom Co Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKOR", + "name": "FlexShares Credit-Scored US Corporate Bond Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKT", + "name": "Tanger Factory Outlet Centers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKX", + "name": "Skechers U S A Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKY", + "name": "Skyline Champion Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYA", + "name": "Skydeck Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYAU", + "name": "Skydeck Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYAW", + "name": "Skydeck Acquisition Corp - Warrants (13/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYH", + "name": "Sky Harbour Group Corporation - Class A", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYH-WS", + "name": "Sky Harbour Group Corporation - Warrants (22/10/2025)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2022-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYT", + "name": "SkyWater Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYU", + "name": "ProShares Ultra Nasdaq Cloud Computing ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYW", + "name": "Skywest Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYX", + "name": "SQL Technologies Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SKYY", + "name": "First Trust Cloud Computing ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLAB", + "name": "Silicon Laboratories Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLAC", + "name": "Social Leverage Acquisition Corp I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLAC-U", + "name": "Social Leverage Acquisition Corp I - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLAC-WS", + "name": "Social Leverage Acquisition Corp I - Warrants (17/02/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLAM", + "name": "Slam Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLAMU", + "name": "Slam Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLAMW", + "name": "Slam Corp - Warrants (23/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLB", + "name": "Schlumberger Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLCA", + "name": "U.S. Silica Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLCR", + "name": "Silver Crest Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLCRU", + "name": "Silver Crest Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLCRW", + "name": "Silver Crest Acquisition Corp - Warrants (15/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLDB", + "name": "Solid Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLDP", + "name": "Solid Power Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLDPW", + "name": "Solid Power Inc - Warrants (08/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLF", + "name": "Sun Life Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLG", + "name": "SL Green Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLG-P-I", + "name": "SL Green Realty Corporation Preferred Series I", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLGC", + "name": "SomaLogic Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLGCW", + "name": "SomaLogic Inc - Warrants (31/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLGG", + "name": "Super League Gaming Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLGL", + "name": "Sol-Gel Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLGN", + "name": "Silgan Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLHG", + "name": "Skylight Health Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLHGP", + "name": "Skylight Health Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLI", + "name": "Standard Lithium Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLM", + "name": "SLM Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLMBP", + "name": "SLM Corporation Floating Rate NonCumulative Preferred Stock Series B", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLN", + "name": "Silence Therapeutics Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLNG", + "name": "Stabilis Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLNH", + "name": "Soluna Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLNHP", + "name": "Soluna Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLNO", + "name": "Soleno Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLP", + "name": "Simulations Plus Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLQD", + "name": "iShares 0-5 Year Investment Grade Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLQT", + "name": "SelectQuote Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLRC", + "name": "SLR Investment Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLRX", + "name": "Salarius Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLS", + "name": "SELLAS Life Sciences Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLV", + "name": "iShares Silver Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLVM", + "name": "Sylvamo Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLVM-W", + "name": "Sylvamo Corporation When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLVO", + "name": "Credit Suisse AG Nassau Branch", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLVP", + "name": "iShares MSCI Global Silver and Metals Miners ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2012-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLVR", + "name": "SilverSPAC Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLVRU", + "name": "SilverSPAC Inc - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLVRW", + "name": "SilverSPAC Inc - Warrants (09/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLX", + "name": "VanEck Steel ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLY", + "name": "SPDR S&P 600 Small Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLYG", + "name": "SPDR S&P 600 Small Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SLYV", + "name": "SPDR S&P 600 Small Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SM", + "name": "SM Energy Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMAP", + "name": "SportsMap Tech Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMAPU", + "name": "SportsMap Tech Acquisition Corp - Units (1 Ord Share & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMAPW", + "name": "SportsMap Tech Acquisition Corp - Warrants - (01/09/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMAR", + "name": "Smartsheet Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMB", + "name": "VanEck Short Muni ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2008-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMBC", + "name": "Southern Missouri Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMBK", + "name": "SmartFinancial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMCI", + "name": "Super Micro Computer Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMCP", + "name": "ALPHAMARK ACTIVELY MANAGED SMALL CAP ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMDD", + "name": "PROSHARES ULTRAPRO SHORT MIDCAP400 ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMDV", + "name": "ProShares Russell 2000 Div Growers ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMDY", + "name": "Syntax Stratified MidCap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMED", + "name": "Sharps Compliance Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMFG", + "name": "Sumitomo Mitsui Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMFL", + "name": "Smart for Life Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMFR", + "name": "Sema4 Holdings Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMFRW", + "name": "Sema4 Holdings Corp - Warrants (22/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMG", + "name": "Scotts Miracle-Gro Company - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMH", + "name": "VanEck Semiconductor ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2000-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMHB", + "name": "UBS AG London Branch FR SP ETRACS REDEEM 10112048 USD 25 Ser B", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMHI", + "name": "SEACOR Marine Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMI", + "name": "VANECK HIP SUSTAINABLE MUNI ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMID", + "name": "Smith-Midland Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMIG", + "name": "AAM Bahl & Gaynor Small/Mid Cap Income Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMIH", + "name": "Summit Healthcare Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMIHU", + "name": "Summit Healthcare Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMIHW", + "name": "Summit Healthcare Acquisition Corp - Warrants (03/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMIN", + "name": "iShares MSCI India Small-Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMIT", + "name": "Schmitt Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMLE", + "name": "XTRACKERS S&P SMALLCAP 600 ESG ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMLF", + "name": "iShares MSCI USA Small-Cap Multifactor ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMLP", + "name": "Summit Midstream Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMLR", + "name": "Semler Scientific Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMLV", + "name": "SPDR SSGA US Small Cap Low Volatility Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-02-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMM", + "name": "Salient Midstream & MLP Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMMD", + "name": "iShares Russell 2500 ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMMF", + "name": "Summit Financial Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMMT", + "name": "Summit Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMMU", + "name": "PIMCO Short Term Municipal Bond Active Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMMV", + "name": "iShares MSCI USA Small-Cap Min Vol Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMN", + "name": "ProShares UltraShort Basic Materials", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMOG", + "name": "VANECK LOW CARBON ENERGY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMP", + "name": "Standard Motor Products Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMPL", + "name": "Simply Good Foods Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMRT", + "name": "SmartRent Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMSI", + "name": "Smith Micro Software Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMTC", + "name": "Semtech Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMTI", + "name": "Sanara MedTech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMTS", + "name": "Sierra Metals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SMWB", + "name": "Similarweb Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNA", + "name": "Snap-on Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNAP", + "name": "Snap Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNAX", + "name": "Stryve Foods Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNAXW", + "name": "Stryve Foods Inc - Warrants (20/07/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNBR", + "name": "Sleep Number Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNCE", + "name": "Science 37 Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNCR", + "name": "Synchronoss Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNCRL", + "name": "Synchronoss Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNCY", + "name": "Sun Country Airlines Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SND", + "name": "Smart Sand Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNDA", + "name": "Sonida Senior Living Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNDL", + "name": "Sundial Growers Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNDR", + "name": "Schneider National Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNDX", + "name": "Syndax Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNES", + "name": "SenesTech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNEX", + "name": "StoneX Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNFCA", + "name": "Security National Financial Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNGX", + "name": "Soligenix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNLN", + "name": "Highland/iBoxx Senior Loan ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNMP", + "name": "Evolve Transition Infrastructure LP", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNN", + "name": "Smith & Nephew plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNOA", + "name": "Sonoma Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNOAW", + "name": "Sonoma Pharmaceuticals Inc Warrants", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNOW", + "name": "Snowflake Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNP", + "name": "China Petroleum & Chemical Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNPE", + "name": "Xtrackers S&P 500 ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNPO", + "name": "Snap One Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNPS", + "name": "Synopsys Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNPX", + "name": "Synaptogenix Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNRH", + "name": "Senior Connect Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNRHU", + "name": "Senior Connect Acquisition Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNRHW", + "name": "Senior Connect Acquisition Corp I - Warrants (09/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNSE", + "name": "Sensei Biotherapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNSR", + "name": "Global X Funds Global X Internet of Things ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNT", + "name": "Senstar Technologies Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNTG", + "name": "Sentage Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNUG", + "name": "Merlyn.AI Tactical Growth and Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNV", + "name": "Synovus Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNV-P-D", + "name": "Synovus Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNV-P-E", + "name": "Synovus Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNX", + "name": "TD Synnex Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SNY", + "name": "Sanofi", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SO", + "name": "Southern Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SO 6.75 08-01-22", + "name": "Southern Company Unit Series A 2019", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOAC-U", + "name": "Sustainable Opportunities Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOCL", + "name": "Global X Social Media ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOFI", + "name": "SoFi Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOFO", + "name": "Sonic Foundry Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOGU", + "name": "The Short De-SPAC ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOHO", + "name": "Sotherly Hotels Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOHOB", + "name": "Sotherly Hotels Inc 80 Series B Cumulative Redeemable Perpetual Preferred Stock", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOHON", + "name": "Sotherly Hotels Inc Perp Pfd Ser D", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOHOO", + "name": "Sotherly Hotels Inc 7875 Series C Cumulative Redeemable Perpetual Preferred Stock", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOHU", + "name": "Sohu.com Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOI", + "name": "Solaris Oilfield Infrastructure Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOJB", + "name": "Southern Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOJC", + "name": "Southern Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOJD", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOJE", + "name": "Southern Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOL", + "name": "Renesola", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOLO", + "name": "Electrameccanica Vehicles Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOLOW", + "name": "Electrameccanica Vehicles Corp - Warrants (03/08/2023)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOLR", + "name": "SmartETFs Sustainable Energy II ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SON", + "name": "Sonoco Products Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOND", + "name": "Sonder Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SONDW", + "name": "Sonder Holdings Inc - Warrants (18/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SONM", + "name": "Sonim Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SONN", + "name": "Sonnet BioTherapeutics Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SONO", + "name": "Sonos Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SONX", + "name": "Sonendo Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SONY", + "name": "Sony Group Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1974-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOPA", + "name": "Society Pass Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOPH", + "name": "SOPHiA Genetics SA", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOR", + "name": "Source Capital Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOS", + "name": "SOS Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOTK", + "name": "Sono-Tek Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOVO", + "name": "Sovos Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOXL", + "name": "Direxion Daily Semiconductor Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOXQ", + "name": "Invesco PHLX Semiconductor ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOXS", + "name": "Direxion Daily Semiconductor Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOXX", + "name": "iShares Semiconductor ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2001-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SOYB", + "name": "Teucrium Soybean Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SP", + "name": "SP Plus Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPAB", + "name": "SPDR Portfolio Aggregate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPAK", + "name": "Defiance Next Gen SPAC Derived ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPAX", + "name": "Robinson Alternative Yield Pre-merger SPAC ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPB", + "name": "Spectrum Brands Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPBC", + "name": "SIMPLIFY U.S. EQUITY PLUS GBTC ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPBO", + "name": "SPDR Portfolio Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPC", + "name": "CrossingBridge Pre-Merger SPAC ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPCB", + "name": "SuperCom Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPCE", + "name": "Virgin Galactic Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPCE-WS", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPCMU", + "name": "Sound Point Acquisition Corp I Ltd - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPCX", + "name": "The SPAC and New Issue ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPD", + "name": "Simplify US Equity PLUS Downside Convexity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPDN", + "name": "Direxion Daily S&P 500 Bear 1X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPDV", + "name": "AAM S&P 500 High Dividend Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPDW", + "name": "SPDR Portfolio Developed World ex-US ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPE", + "name": "Special Opportunities Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPE-P-C", + "name": "Special Opportunities Fund Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPE-R-W", + "name": "Special Opportunities Fund Inc Rights expiring January 21 2022 Rights when issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPEM", + "name": "SPDR Portfolio Emerging Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPEU", + "name": "SPDR Portfolio Europe ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2002-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPFF", + "name": "Global X SuperIncome Preferred ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPFI", + "name": "South Plains Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPG", + "name": "Simon Property Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPG-P-J", + "name": "Simon Property Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPGI", + "name": "S&P Global Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPGM", + "name": "SPDR Portfolio MSCI Global Stock Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPGP", + "name": "Invesco S&P 500 GARP ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPGS", + "name": "Simon Property Group Acquisition Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPGS-U", + "name": "Simon Property Group Acquisition Holdings Inc - Units (1 Ord Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPGS-WS", + "name": "Simon Property Group Acquisition Holdings Inc - Warrants (04/02/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPH", + "name": "Suburban Propane Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-02-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPHB", + "name": "Invesco S&P 500 High Beta ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPHD", + "name": "Invesco S&P 500 High Dividend Low Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPHQ", + "name": "Invesco S&P 500 Quality ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPHY", + "name": "SPDR Portfolio High Yield Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPI", + "name": "SPI Energy Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPIB", + "name": "SPDR Portfolio Intermediate Term Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-02-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPIP", + "name": "SPDR Portfolio TIPS ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPIR", + "name": "Spire Global Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPIR-WS", + "name": "Spire Global Inc Warrants", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPK", + "name": "SPK Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPKAR", + "name": "SPK Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPKAU", + "name": "SPK Acquisition Corp - Units (1 Ord & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPKB", + "name": "Silver Spike Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPKBU", + "name": "Silver Spike Acquisition Corp II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPKBW", + "name": "Silver Spike Acquisition Corp II - Warrants (26/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPLB", + "name": "SPDR Portfolio Long Term Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPLG", + "name": "SPDR Portfolio S&P 500 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPLK", + "name": "Splunk Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPLP", + "name": "Steel Partners Holdings LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPLP-P-A", + "name": "Steel Partners Holdings LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPLV", + "name": "Invesco S&P 500 Low Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPMB", + "name": "SPDR Portfolio Mortgage Backed Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPMD", + "name": "SPDR Portfolio S&P 400 Mid Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPMO", + "name": "Invesco S&P 500 Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPMV", + "name": "Invesco S&P 500 Minimum Variance ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPNE", + "name": "SeaSpine Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPNS", + "name": "Sapiens International Corp NV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPNT", + "name": "SiriusPoint Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPNT-P-B", + "name": "SiriusPoint Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPOK", + "name": "Spok Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPOT", + "name": "Spotify Technology S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPPI", + "name": "Spectrum Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPPP", + "name": "Sprott Physical Platinum and Palladium Trust", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPR", + "name": "Spirit Aerosystems Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPRB", + "name": "Spruce Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPRC", + "name": "SciSparc Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPRE", + "name": "SP Funds S&P Global REIT Sharia ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPRO", + "name": "Spero Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPRX", + "name": "Spear Alpha ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPSB", + "name": "SPDR Portfolio Short Term Corporate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPSC", + "name": "SPS Commerce Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPSK", + "name": "SP Funds Dow Jones Global Sukuk ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPSM", + "name": "SPDR Portfolio S&P 600 Small Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPT", + "name": "Sprout Social Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPTI", + "name": "SPDR Portfolio Intermediate Term Treasury ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPTK", + "name": "SportsTek Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPTKU", + "name": "SportsTek Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPTKW", + "name": "SportsTek Acquisition Corp - Warrants (16/02/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPTL", + "name": "SPDR Portfolio Long Term Treasury ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPTM", + "name": "SPDR Portfolio S&P 1500 Composite Stock Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPTN", + "name": "SpartanNash Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPTS", + "name": "SPDR Portfolio Short Term Treasury ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPUC", + "name": "Simplify US Equity PLUS Upside Convexity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPUS", + "name": "SP Funds S&P 500 Sharia Industry Exclusions ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPUU", + "name": "Direxion Daily S&P 500 Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPVM", + "name": "Invesco Russell Top 200 Pure Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPVU", + "name": "Invesco S&P 500 Enhanced Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPWH", + "name": "Sportsman`s Warehouse Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPWR", + "name": "Sunpower Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXB", + "name": "ProShares S&P 500 Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXC", + "name": "SPX Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXE", + "name": "ProShares S&P 500 Ex-Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXL", + "name": "Direxion Daily S&P 500 Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXN", + "name": "S&P 500 EX-FINANCIALS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXS", + "name": "Direxion Daily S&P 500 Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXT", + "name": "ProShares S&P 500 Ex-Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXU", + "name": "ProShares UltraPro Short S&P 500 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXV", + "name": "S&P 500 EX-HEALTH CARE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXX", + "name": "Nuveen S&P 500 Dynamic Overwrite Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2005-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPXZ", + "name": "Morgan Creek - Exos SPAC Originated ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPY", + "name": "S&P 500 ETF TRUST ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1993-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPYC", + "name": "Simplify US Equity PLUS Convexity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPYD", + "name": "SPDR Portfolio S&P 500 High Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPYG", + "name": "SPDR Portfolio S&P 500 Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPYV", + "name": "SPDR Portfolio S&P 500 Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2000-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SPYX", + "name": "SSGA SPDR S&P 500 Fossil Fuel Free ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQ", + "name": "Block Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQEW", + "name": "LeaderShares Equity Skew ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQFT", + "name": "Presidio Property Trust Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQFTP", + "name": "Presidio Property Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQFTW", + "name": "Presidio Property Trust Inc - Warrants (24/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQL", + "name": "SeqLL Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQLLW", + "name": "SeqLL Inc - Warrants (06/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQLV", + "name": "Legg Mason Small-Cap Quality Value ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQM", + "name": "Sociedad Quimica Y Minera de Chile S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQM-R", + "name": "Sociedad Quimica y Minera S.A. Rights expires April 19 2021", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQM-R-W", + "name": "Sociedad Quimica y Minera S.A. Rights expires April 19 2021 When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQNS", + "name": "Sequans Communications S.A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQQQ", + "name": "ProShares UltraPro Short QQQ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQSP", + "name": "Squarespace Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SQZ", + "name": "SQZ Biotechnologies Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SR", + "name": "Spire Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SR-P-A", + "name": "Spire Inc Depositary Shares Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRAD", + "name": "Sportradar Group AG - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRAX", + "name": "SRAX Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRC", + "name": "Spirit Realty Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRC-P-A", + "name": "Spirit Realty Capital Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRCE", + "name": "1st Source Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRCL", + "name": "Stericycle Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-08-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRDX", + "name": "Surmodics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRE", + "name": "Sempra Energy", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SREA", + "name": "Sempra Energy", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRET", + "name": "Global X SuperDividend REIT ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SREV", + "name": "ServiceSource International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRF", + "name": "Cushing Royalty Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRG", + "name": "Seritage Growth Properties - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRG-P-A", + "name": "Seritage Growth Properties", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRGA", + "name": "Surgalign Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRI", + "name": "Stoneridge Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRL", + "name": "Scully Royalty Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRLN", + "name": "SPDR Blackstone Senior Loan ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRLP", + "name": "Sprague Resources LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRNE", + "name": "Sorrento Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRPT", + "name": "Sarepta Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRRA", + "name": "Sierra Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRRK", + "name": "Scholar Rock Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRS", + "name": "ProShares UltraShort Real Estate", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRSA", + "name": "Sarissa Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRSAU", + "name": "Sarissa Capital Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRSAW", + "name": "Sarissa Capital Acquisition Corp - Warrants (20/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRT", + "name": "Startek Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRTS", + "name": "Sensus Healthcare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRTY", + "name": "ProShares UltraPro Short Russell2000", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRV", + "name": "Cushing MLP & Infrastructure Total Return Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRVR", + "name": "Pacer Benchmark Data & Infrastructure Real Estate SCTR ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRZN", + "name": "Surrozen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SRZNW", + "name": "Surrozen Inc - Warrants (01/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSAA", + "name": "Science Strategic Acquisition Corp Alpha - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSAAU", + "name": "Science Strategic Acquisition Corp Alpha - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSAAW", + "name": "Science Strategic Acquisition Corp Alpha - Warrants (20/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSB", + "name": "SouthState Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSBI", + "name": "Summit State Bank", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-07-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSBK", + "name": "Southern States Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSD", + "name": "Simpson Manufacturing Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSFI", + "name": "Day Hagan/Ned Davis Research Smart Sector Fixed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSG", + "name": "ProShares UltraShort Semiconductors", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSIC", + "name": "Silver Spike Investment Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSKN", + "name": "STRATA Skin Sciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSL", + "name": "Sasol Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSLY", + "name": "Syntax Stratified SmallCap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSNC", + "name": "SS&C Technologies Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSNT", + "name": "SilverSun Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSO", + "name": "ProShares Ultra S&P500", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSP", + "name": "E.W. Scripps Co. - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSPX", + "name": "JANUS HENDERSON U.S. SUSTAINABLE EQUITY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSPY", + "name": "Syntax Stratified LargeCap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSRM", + "name": "SSR Mining Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSSS", + "name": "SuRo Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSSSL", + "name": "SuRo Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SST", + "name": "System1 Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SST-WS", + "name": "System1 Inc - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSTI", + "name": "ShotSpotter Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSTK", + "name": "Shutterstock Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSU", + "name": "SIGNA Sports United N.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSU-WS", + "name": "SIGNA Sports United N.V. - Warrants (06/08/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSUS", + "name": "Day Hagan/Ned Davis Research Smart Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSWA", + "name": "Seaspan Corporation 7125 Notes due 2027", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSY", + "name": "Sunlink Health Systems Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SSYS", + "name": "Stratasys Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ST", + "name": "Sensata Technologies Holding Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STAA", + "name": "Staar Surgical Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STAB", + "name": "Statera BioPharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STAF", + "name": "Staffing 360 Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STAG", + "name": "STAG Industrial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STAR", + "name": "iStar Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1989-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STAR-P-D", + "name": "iStar Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STAR-P-G", + "name": "iStar Inc Series G Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STAR-P-I", + "name": "iStar Inc Series I Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STBA", + "name": "S & T Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STBL", + "name": "DRIVEWEALTH STEADY SAVER ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STC", + "name": "Stewart Information Services Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STCN", + "name": "Steel Connect Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STE", + "name": "Steris Plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STEM", + "name": "Stem Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STEM-WS", + "name": "Stem Inc Wt Exp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STEP", + "name": "StepStone Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STER", + "name": "Sterling Check Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STET", + "name": "ST Energy Transition I Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STET-U", + "name": "ST Energy Transition I Ltd - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STET-WS", + "name": "ST Energy Transition I Ltd - Warrants (02/12/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STG", + "name": "Sunlands Technology Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STGW", + "name": "Stagwell Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STIM", + "name": "Neuronetics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STIP", + "name": "iShares 0-5 Year TIPS Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STK", + "name": "Columbia Seligman Premium Technology Growth Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STKL", + "name": "Sunopta Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STKS", + "name": "ONE Group Hospitality Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STLA", + "name": "Stellantis N.V", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STLD", + "name": "Steel Dynamics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STLG", + "name": "iShares Factors US Growth Style ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STLV", + "name": "iShares Factors US Value Style ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STM", + "name": "ST Microelectronics", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STN", + "name": "Stantec Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STNC", + "name": "Stance Equity ESG Large Cap Core ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STNE", + "name": "StoneCo Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STNEV", + "name": "StoneCo Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STNG", + "name": "Scorpio Tankers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STOK", + "name": "Stoke Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STON", + "name": "StoneMor Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STOR", + "name": "Store Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STOT", + "name": "SPDR DoubleLine Short Duration Total Return Tactical ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STPZ", + "name": "PIMCO 1-5 Year U.S. TIPS Index Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-08-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRA", + "name": "Strategic Education Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRC", + "name": "Sarcos Technology and Robotics Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRCW", + "name": "Sarcos Technology and Robotics Corporation - Warrants (24/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRE", + "name": "Supernova Partners Acquisition Co III Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRE-U", + "name": "Supernova Partners Acquisition Co III Ltd - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRE-WS", + "name": "Supernova Partners Acquisition Co III Ltd - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRL", + "name": "Sterling Construction Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRM", + "name": "Streamline Health Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRN", + "name": "Stran & Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRNW", + "name": "Stran & Company Inc - Warrants (01/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRO", + "name": "Sutro Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRR", + "name": "Star Equity Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRRP", + "name": "Star Equity Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRS", + "name": "Stratus Properties Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STRT", + "name": "Strattec Security Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STSA", + "name": "Satsuma Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STT", + "name": "State Street Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STT-P-C", + "name": "State Street Corporation Dep Shs Representing 14000 Ownership Int In Sh Non Cum Perpertual Pfd Stk Ser C", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STT-P-C-CL", + "name": "State Street Corporation Dep Shs", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STT-P-D", + "name": "State Street Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STT-P-G", + "name": "State Street Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STTK", + "name": "Shattuck Labs Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STVN", + "name": "Stevanato Group Spa", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STWD", + "name": "Starwood Property Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STWO", + "name": "ESS Tech Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STX", + "name": "Seagate Technology Holdings Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STXB", + "name": "Spirit of Texas Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STXS", + "name": "Stereotaxis Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2004-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STZ", + "name": "Constellation Brands Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "STZ-B", + "name": "Constellation Brands Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SU", + "name": "Suncor Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUAC", + "name": "ShoulderUp Technology Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUAC-U", + "name": "ShoulderUp Technology Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUAC-WS", + "name": "ShoulderUp Technology Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUB", + "name": "iShares Short-Term National Muni Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUBS", + "name": "Fount Subscription Economy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUBZ", + "name": "Roundhill Streaming Services & Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUI", + "name": "Sun Communities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUM", + "name": "Summit Materials Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUMO", + "name": "Sumo Logic Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUMR", + "name": "Summer Infant Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUN", + "name": "Sunoco LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUNL", + "name": "Sunlight Financial Holdings Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUNL-WS", + "name": "Sunlight Financial Holdings Inc Wt Exp 11282025", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUNS", + "name": "SLR Senior Investment Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUNW", + "name": "Sunworks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUP", + "name": "Superior Industries International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUPN", + "name": "Supernus Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUPV", + "name": "Grupo Supervielle S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SURF", + "name": "Surface Oncology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SURG", + "name": "Surgepays Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SURGW", + "name": "Surgepays Inc - Warrants (22/10/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUSA", + "name": "MSCI USA ESG Select ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUSB", + "name": "iShares Trust iShares ESG Aware 1-5 Year USD Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUSC", + "name": "iShares Trust iShares ESG Aware USD Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUSL", + "name": "iShares ESG MSCI USA Leaders ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SUZ", + "name": "Suzano S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-08-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SV", + "name": "Spring Valley Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVA", + "name": "Sinovac Biotech Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVAL", + "name": "iShares US Small Cap Value Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVC", + "name": "Service Properties Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVFA", + "name": "SVF Investment Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVFAU", + "name": "SVF Investment Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVFAW", + "name": "SVF Investment Corp - Warrants (20/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVFB", + "name": "SVF Investment Corp 2 - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVFC", + "name": "SVF Investment Corp 3 - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVFD", + "name": "Save Foods Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVM", + "name": "Silvercorp Metals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVNA", + "name": "7 Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVNAU", + "name": "7 Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVNAW", + "name": "7 Acquisition Corp - Warrants (05/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVOK", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVOL", + "name": "Simplify Volatility Premium ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVRA", + "name": "Savara Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVSVU", + "name": "Spring Valley Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVSVW", + "name": "Spring Valley Acquisition Corp - Warrants (11/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVT", + "name": "Servotronics Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVVC", + "name": "Firsthand Technology Value Fund Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SVXY", + "name": "ProShares Short VIX Short-Term Futures ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWAG", + "name": "Software Acquisition Group Inc III - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWAGU", + "name": "Software Acquisition Group Inc III - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWAGW", + "name": "Software Acquisition Group Inc III - Warrants (01/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWAN", + "name": "Amplify BlackSwan Growth & Treasury Core ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWAR", + "name": "Direxion Daily Software Bull 2X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWAV", + "name": "ShockWave Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWBI", + "name": "Smith & Wesson Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWBIV", + "name": "Smith & Wesson Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWCH", + "name": "Switch Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWET", + "name": "Athlon Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWETU", + "name": "Athlon Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWETW", + "name": "Athlon Acquisition Corp - Warrants (12/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWI", + "name": "SolarWinds Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWI-W", + "name": "SolarWinds Corporation ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWIM", + "name": "Latham Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWIR", + "name": "Sierra Wireless Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWJ-CL", + "name": "Stanley Black Decker Inc 575 Junior Subordinated Debenture due 2052", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWK", + "name": "Stanley Black & Decker Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWKH", + "name": "Swk Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWKS", + "name": "Skyworks Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWM", + "name": "Schweitzer-Mauduit International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWN", + "name": "Southwestern Energy Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWP", + "name": "Stanley Black Decker Inc Corporate Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWSS", + "name": "Springwater Special Situations Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWSSU", + "name": "Springwater Special Situations Corp - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWSSW", + "name": "Springwater Special Situations Corp - Warrants (01/12/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWT", + "name": "Stanley Black & Decker Inc Unit", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWTX", + "name": "SpringWorks Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWX", + "name": "Southwest Gas Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SWZ", + "name": "Swiss Helvetia Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SXC", + "name": "SunCoke Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SXI", + "name": "Standex International Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SXQG", + "name": "ETC 6 Meridian Quality Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SXT", + "name": "Sensient Technologies Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SXTC", + "name": "China SXT Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SXUS", + "name": "Janus Henderson International Sustainable Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SY", + "name": "So-Young International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYBT", + "name": "Stock Yards Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYBX", + "name": "Synlogic Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYF", + "name": "Synchrony Financial", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYF-P-A", + "name": "Synchrony Financial", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYK", + "name": "Stryker Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYLD", + "name": "Cambria Shareholder Yield ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYN", + "name": "Synthetic Biologics Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYNA", + "name": "Synaptics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYNH", + "name": "Syneos Health Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYNL", + "name": "Synalloy Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYPR", + "name": "Sypris Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYRS", + "name": "Syros Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYTA", + "name": "Siyata Mobile Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYTAW", + "name": "Siyata Mobile Inc - Warrants (25/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYUS", + "name": "Syntax Stratified U.S. Total Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SYY", + "name": "Sysco Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SZC", + "name": "Cushing NextGen Infrastructure Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SZK", + "name": "PROSHARES ULTRASHORT CONSUMER GOODS ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SZNE", + "name": "PACER CFRA-STOVALL EQUAL WEIGHT SEASONAL ROTATION ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SZZL", + "name": "Sizzle Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "SZZLW", + "name": "Sizzle Acquisition Corp - Warrants (02/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "T", + "name": "AT&T Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "T-P-A", + "name": "AT&T Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "T-P-C", + "name": "AT&T Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-02-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TA", + "name": "TravelCenters of America Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAC", + "name": "Transalta Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TACA", + "name": "Trepont Acquisition Corp I - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TACA-U", + "name": "Trepont Acquisition Corp I Units each consisting of one Class A ordinary share and onehalf of one redeemable warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TACA-WS", + "name": "Trepont Acquisition Corp I - Warrants (24/11/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TACK", + "name": "Fairlead Tactical Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TACT", + "name": "Transact Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAGG", + "name": "T. Rowe Price QM U.S. Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAGS", + "name": "Teucrium Agricultural Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAIL", + "name": "Cambria Tail Risk ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAIT", + "name": "Taitron Components Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAK", + "name": "Takeda Pharmaceutical Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAL", + "name": "TAL Education Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TALK", + "name": "Talkspace Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TALKW", + "name": "Talkspace Inc - Warrants (21/06/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TALO", + "name": "Talos Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TALS", + "name": "Talaris Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAN", + "name": "Invesco Solar ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TANH", + "name": "Tantech Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TANNI", + "name": "TravelCenters of America Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TANNL", + "name": "TravelCenters of America Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TANNZ", + "name": "TravelCenters of America Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAO", + "name": "INVESCO CHINA REAL ESTATE ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAOP", + "name": "Taoping Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAP", + "name": "Molson Coors Beverage Company - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAP-A", + "name": "Molson Coors Beverage Company - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-02-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TARA", + "name": "Protara Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TARO", + "name": "Taro Pharmaceutical Industries", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TARS", + "name": "Tarsus Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TASK", + "name": "TaskUs Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAST", + "name": "Carrols Restaurant Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TATT", + "name": "Tat Technologies", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAXF", + "name": "American Century Diversified Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TAYD", + "name": "Taylor Devices Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBB", + "name": "AT&T Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBBK", + "name": "Bancorp Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBC", + "name": "AT&T Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBCP", + "name": "Thunder Bridge Capital Partners III Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBCPU", + "name": "Thunder Bridge Capital Partners III Inc - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBCPW", + "name": "Thunder Bridge Capital Partners III Inc - Warrants (01/02/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBF", + "name": "ProShares Short 20+ Year Treasury", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBI", + "name": "TrueBlue Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBJL", + "name": "Innovator 20+ Year Treasury Bond 9 Buffer ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBK", + "name": "Triumph Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBKCP", + "name": "Triumph Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBLA", + "name": "Taboola.com Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBLD", + "name": "Thornburg Income Builder Opportunities Trust", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBLT", + "name": "Toughbuilt Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBLTW", + "name": "Toughbuilt Industries Inc Warrants Series A 09112023", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBNK", + "name": "Territorial Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBPH", + "name": "Theravance Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBSA", + "name": "TB SA Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBSAU", + "name": "TB SA Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBSAW", + "name": "TB SA Acquisition Corp - Warrants (01/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBT", + "name": "PowerShares UltraShort Lehman 20+ Year Treasury ProShares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBUX", + "name": "T. Rowe Price Ultra Short-Term Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TBX", + "name": "ProShares Short 7-10 Year Treasury", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TC", + "name": "TuanChe Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCAC", + "name": "Tuatara Capital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCACU", + "name": "Tuatara Capital Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCACW", + "name": "Tuatara Capital Acquisition Corp - Warrants (11/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCBC", + "name": "TC Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCBI", + "name": "Texas Capital Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCBIO", + "name": "Texas Capital Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCBK", + "name": "Trico Bancshares", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCBP", + "name": "TC BioPharm (Holdings) plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCBPW", + "name": "TC BioPharm (Holdings) plc - Warrants (08/02/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCBS", + "name": "Texas Community Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCBX", + "name": "Third Coast Bancshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCDA", + "name": "Tricida Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCFC", + "name": "Community Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCHI", + "name": "ISHARES MSCI CHINA MULTISECTOR TECH ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCHP", + "name": "T. Rowe Price Blue Chip Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCI", + "name": "Transcontinental Realty Investors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCMD", + "name": "Tactile Systems Technology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCN", + "name": "Tricon Residential Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCOA", + "name": "Trajectory Alpha Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCOA-U", + "name": "Trajectory Alpha Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCOA-WS", + "name": "Trajectory Alpha Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCOM", + "name": "Trip.com Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCON", + "name": "TRACON Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCPC", + "name": "BlackRock TCP Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCRR", + "name": "Tcr2 Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCRT", + "name": "Alaunos Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCRX", + "name": "Tscan Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCS", + "name": "Container Store Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCTL", + "name": "Premise Capital Diversified Tactical ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCVA", + "name": "TCV Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TCX", + "name": "Tucows Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TD", + "name": "Toronto Dominion Bank", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDAC", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDC", + "name": "Teradata Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDCX", + "name": "TDCX Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDF", + "name": "Templeton Dragon Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1995-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDG", + "name": "Transdigm Group Incorporated", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDIV", + "name": "First Trust ETF VI First Trust NASDAQ Technology Dividend Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDOC", + "name": "Teladoc Health Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDS", + "name": "Telephone And Data Systems Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDS-P-U", + "name": "Telephone And Data Systems Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDS-P-V", + "name": "Telephone And Data Systems Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDSA", + "name": "Cabana Target Drawdown 5 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDSB", + "name": "Cabana Target Drawdown 7 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDSC", + "name": "Cabana Target Drawdown 10 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDSD", + "name": "Cabana Target Drawdown 13 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDSE", + "name": "Cabana Target Drawdown 16 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDTF", + "name": "FlexShares iBoxx 5-Year Target Duration TIPS Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDTT", + "name": "FlexShares iBoxx 3-Year Target Duration TIPS Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDUP", + "name": "ThredUp Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDV", + "name": "ProShares S&P Technology Dividend Aristocrats ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDVG", + "name": "T. Rowe Price Dividend Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDW", + "name": "Tidewater Inc - New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDW-WS", + "name": "Tidewater Inc - Warrants (24/11/2024)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDW-WS-A", + "name": "Tidewater Inc - Warrants - Class A (31/07/2023)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDW-WS-B", + "name": "Tidewater Inc - Warrants - Class B (31/07/2023)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TDY", + "name": "Teledyne Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEAF", + "name": "Ecofin Sustainable and Social Impact Term Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEAM", + "name": "Atlassian Corporation Plc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TECB", + "name": "iShares U.S. Tech Breakthrough Multisector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TECH", + "name": "Bio-Techne Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TECK", + "name": "Teck Resources Ltd - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TECL", + "name": "Direxion Daily Technology Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TECS", + "name": "Direxion Daily Technology Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TECTP", + "name": "Tectonic Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEDU", + "name": "Tarena International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEF", + "name": "Telefonica S.A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEI", + "name": "Templeton Emerging Markets Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEKK", + "name": "Tekkorp Digital Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEKKU", + "name": "Tekkorp Digital Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEKKW", + "name": "Tekkorp Digital Acquisition Corp - Warrants(26/10/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEL", + "name": "TE Connectivity Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TELA", + "name": "TELA Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TELL", + "name": "Tellurian Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TELZ", + "name": "Tellurian Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEMP", + "name": "JPMORGAN CLIMATE CHANGE SOLUTIONS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEN", + "name": "Tenneco Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TENB", + "name": "Tenable Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TENG", + "name": "DIREXION DAILY 5G COMMUNICATIONS BULL 2X SHARES ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TENX", + "name": "Tenax Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEO", + "name": "Telecom Argentina S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEQI", + "name": "T. Rowe Price Equity Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TER", + "name": "Teradyne Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1987-03-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TERN", + "name": "Terns Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TESS", + "name": "Tessco Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TETC", + "name": "Tech and Energy Transition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TETCU", + "name": "Tech and Energy Transition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TETCW", + "name": "Tech and Energy Transition Corp - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TETE", + "name": "Technology & Telecommunication Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TETEU", + "name": "Technology & Telecommunication Acquisition Corp - Units (1 Ord Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TETEW", + "name": "Technology & Telecommunication Acquisition Corp - Warrants (13/01/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEVA", + "name": "Teva- Pharmaceutical Industries Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TEX", + "name": "Terex Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFC", + "name": "Truist Financial Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFC-P-I", + "name": "Truist Financial Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFC-P-O", + "name": "Truist Financial Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFC-P-R", + "name": "Truist Financial Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFFP", + "name": "Tff Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFI", + "name": "SPDR Nuveen Bloomberg Municipal Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFII", + "name": "TFI International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFJL", + "name": "Innovator 20+ Year Treasury Bond 5 Floor ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFLO", + "name": "iShares Treasury Floating Rate Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFSA", + "name": "Terra Income Fund 6 Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFSL", + "name": "TFS Financial Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TFX", + "name": "Teleflex Incorporated", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TG", + "name": "Tredegar Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGA", + "name": "Transglobe Energy Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGAA", + "name": "Target Global Acquisition I Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGAAU", + "name": "Target Global Acquisition I Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGAAW", + "name": "Target Global Acquisition I Corp - Warrants (09/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGAN", + "name": "Transphorm Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGB", + "name": "Taseko Mines Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1994-06-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGH", + "name": "Textainer Group Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGH-P-A", + "name": "Textainer Group Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGH-P-B", + "name": "Textainer Group Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGI", + "name": "Triumph Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGIF", + "name": "SOFI WEEKLY INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGLS", + "name": "Tecnoglass Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGNA", + "name": "TEGNA Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGR-U", + "name": "Kimbell Tiger Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGRW", + "name": "T. Rowe Price Growth Stock ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGS", + "name": "Transportadora de Gas del Sur", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGT", + "name": "Target Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGTX", + "name": "TG Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGVC", + "name": "TG Venture Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGVCU", + "name": "TG Venture Acquisition Corp - Units (1 Ord Share Class A & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TGVCW", + "name": "TG Venture Acquisition Corp - Warrants (15/08/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TH", + "name": "Target Hospitality Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THAC", + "name": "Thrive Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THACU", + "name": "Thrive Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THACW", + "name": "Thrive Acquisition Corp - Warrants (31/10/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THBRU", + "name": "Thunder Bridge Acquisition II Ltd Units 1 Ord Share Class A & 12 War", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THBRW", + "name": "Thunder Bridge Acquisition II Ltd Wt 11302026", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THC", + "name": "Tenet Healthcare Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THCA", + "name": "Tuscan Holdings Corp II", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THCAU", + "name": "Tuscan Holdings Corp II - Units (1 Ord shares & 1/2 Wrt)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THCAW", + "name": "Tuscan Holdings Corp II - Warrants (01/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THCP", + "name": "Thunder Bridge Capital Partners IV Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THCPU", + "name": "Thunder Bridge Capital Partners IV Inc - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THCPW", + "name": "Thunder Bridge Capital Partners IV Inc - Warrants (30/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THCX", + "name": "THE CANNABIS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THD", + "name": "iShares MSCI Thailand ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THFF", + "name": "First Financial Corp - Indiana", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THG", + "name": "Hanover Insurance Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THM", + "name": "International Tower Hill Mines Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THMO", + "name": "ThermoGenesis Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THNQ", + "name": "ROBO Global Artificial Intelligence ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THO", + "name": "Thor Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THQ", + "name": "Tekla Healthcare Opportunities Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2014-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THR", + "name": "Thermon Group Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THRM", + "name": "Gentherm Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THRN", + "name": "Thorne Healthtech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THRX", + "name": "Theseus Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THRY", + "name": "Thryv Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THS", + "name": "Treehouse Foods Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THTX", + "name": "Theratechnologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THW", + "name": "Tekla World Healthcare Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2015-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THWWW", + "name": "Target Hospitality Corp - Warrants (15/03/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "THY", + "name": "Toews Agility Shares Dynamic Tactical Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIG", + "name": "Trean Insurance Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIGO", + "name": "Millicom International Cellular S.A.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIGR", + "name": "UP Fintech Holding Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIL", + "name": "Instil Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TILE", + "name": "Interface Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TILT", + "name": "FlexShares Morningstar US Market Factors Tilt Index Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIMB", + "name": "TIM SA", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIMB-W", + "name": "TIM S.A. American Depositary Shares Each representing 5 When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TINT", + "name": "ProShares Smart Materials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TINV", + "name": "Tiga Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TINV-U", + "name": "Tiga Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TINV-WS", + "name": "Tiga Acquisition Corp - Warrants (06/11/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TINY", + "name": "ProShares Nanotechnology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIOA", + "name": "Tio Tech A - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIOAU", + "name": "Tio Tech A - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIOAW", + "name": "Tio Tech A - Warrants (31/03/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIP", + "name": "iShares TIPS Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2003-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIPT", + "name": "Tiptree Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-10-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIPX", + "name": "SPDR Bloomberg 1-10 Year TIPS ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIPZ", + "name": "PIMCO Broad U.S. TIPS Index Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIRX", + "name": "Tian Ruixiang Holdings Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TISI", + "name": "Team Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TITN", + "name": "Titan Machinery Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIVC", + "name": "Tivic Health Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TIXT", + "name": "TELUS International (Cda) Inc (Sub Voting)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TJX", + "name": "TJX Companies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TK", + "name": "Teekay Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TKAT", + "name": "Takung Art Co Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2015-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TKC", + "name": "Turkcell Iletisim Hizmetleri A.S.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-07-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TKLF", + "name": "Yoshitsu Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TKNO", + "name": "Alpha Teknova Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TKR", + "name": "Timken Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLGA", + "name": "TLG Acquisition One Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLGA-U", + "name": "TLG Acquisition One Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLGA-WS", + "name": "TLG Acquisition One Corp - Warrants (25/01/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLGY", + "name": "TLGY Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLGYU", + "name": "TLGY Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLGYW", + "name": "TLGY Acquisition Corp - Warrants (09/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLH", + "name": "iShares 10-20 Year Treasury Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLI", + "name": "Western Asset Corporate Loan Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLIS", + "name": "Talis Biomedical Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLK", + "name": "PT Telkom Indonesia (Persero) Tbk", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLMD", + "name": "SOC Telemed Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLMDW", + "name": "SOC Telemed Inc - Warrants(30/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLRY", + "name": "Tilray Brands Inc - Class 2", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLS", + "name": "Telos Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLSA", + "name": "Tiziana Life Sciences Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLT", + "name": "iShares 20+ Year Treasury Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2002-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLTD", + "name": "FlexShares Morningstar Developed Markets ex-US Factor Tilt Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLTE", + "name": "FLEXSHARES MORNINGSTAR EMERGING MARKETS FACTOR TILT INDEX FUND ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TLYS", + "name": "Tillys Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TM", + "name": "Toyota Motor Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1976-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMAC", + "name": "Music Acquisition Corporation - Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMAC-U", + "name": "Music Acquisition Corporation - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMAC-WS", + "name": "Music Acquisition Corporation - Warrants (05/02/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMAT", + "name": "Main Thematic Innovation ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMBR", + "name": "Timber Pharmaceuticals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2015-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMC", + "name": "TMC the metals company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMCI", + "name": "Treace Medical Concepts Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMCWW", + "name": "TMC the metals company Inc - Warrants (09/09/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMDI", + "name": "Titan Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMDV", + "name": "ProShares Russell US Dividend Growers ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMDX", + "name": "Transmedics Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TME", + "name": "Tencent Music Entertainment Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMF", + "name": "Direxion Daily 20+ Year Treasury Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMFC", + "name": "Motley Fool 100 Index ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMFE", + "name": "Motley Fool Capital Efficiency 100 Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMFG", + "name": "Motley Fool Global Opportunities ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMFM", + "name": "Motley Fool Mid Cap Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMFS", + "name": "Motley Fool Small-Cap Growth ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMFX", + "name": "Motley Fool Next Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMHC", + "name": "Taylor Morrison Home Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMKR", + "name": "Tastemaker Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMKRU", + "name": "Tastemaker Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMKRW", + "name": "Tastemaker Acquisition Corp - Warrants (02/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMO", + "name": "Thermo Fisher Scientific Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMP", + "name": "Tompkins Financial Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1990-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMPM", + "name": "Turmeric Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMPMU", + "name": "Turmeric Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMPMW", + "name": "Turmeric Acquisition Corp - Warrants (20/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMQ", + "name": "Trilogy Metals Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2012-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMST", + "name": "TimkenSteel Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMUS", + "name": "T-Mobile US Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMUSR", + "name": "TMobile US Inc Tradeable Rights June 2020", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMV", + "name": "Direxion Daily 20+ Year Treasury Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TMX", + "name": "Terminix Global Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNA", + "name": "Direxion Dialy Small Cap Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNC", + "name": "Tennant Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNDM", + "name": "Tandem Diabetes Care Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNET", + "name": "TriNet Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNGX", + "name": "Tango Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNK", + "name": "Teekay Tankers Ltd - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNL", + "name": "Travel+Leisure Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNP", + "name": "Tsakos Energy Navigation Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNP-P-D", + "name": "Tsakos Energy Navigation Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNP-P-E", + "name": "Tsakos Energy Navigation Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNP-P-F", + "name": "Tsakos Energy Navigation Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNXP", + "name": "Tonix Pharmaceuticals Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TNYA", + "name": "Tenaya Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOAC", + "name": "Talon 1 Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOACU", + "name": "Talon 1 Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOACW", + "name": "Talon 1 Acquisition Corp - Warrants (02/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOI", + "name": "Oncology Institute Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOIIW", + "name": "Oncology Institute Inc (The) - Warrants (15/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOK", + "name": "iShares MSCI KLD 400 Social ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOKE", + "name": "CAMBRIA CANNABIS ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOL", + "name": "Toll Brothers Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOLZ", + "name": "PROSHARES DJ BROOKFIELD GLOBAL INFRASTRUCTURE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOMZ", + "name": "TOMI Environmental Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOPS", + "name": "Top Ships Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-08-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOST", + "name": "Toast Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOTL", + "name": "SPDR DoubleLine Total Return Tactical ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOTR", + "name": "T. Rowe Price Total Return ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOUR", + "name": "Tuniu Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TOWN", + "name": "Townebank Portsmouth VA", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPAY", + "name": "ECOFIN DIGITAL PAYMENTS INFRASTRUCTURE FUND ", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPB", + "name": "Turning Point Brands Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPBA", + "name": "TPB Acquisition Corp I - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPBAU", + "name": "TPB Acquisition Corp I - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPBAW", + "name": "TPB Acquisition Corp I - Warrants (09/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPC", + "name": "Tutor Perini Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPG", + "name": "TPG Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPGY", + "name": "TPG Pace Beneficial Finance Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPGY-U", + "name": "TPG Pace Beneficial Finance Corp - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPGY-WS", + "name": "TPG Pace Beneficial Finance Corp - Warrants (10/09/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPH", + "name": "Tri Pointe Homes Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPHD", + "name": "Timothy Plan High Dividend Stock ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPHE", + "name": "Timothy Plan High Dividend Stock Enhanced ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPHS", + "name": "Trinity Place Holdings Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2012-09-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPIC", + "name": "TPI Composites Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPIF", + "name": "Timothy Plan International ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPL", + "name": "Texas Pacific Land Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPLC", + "name": "Timothy Plan US Large/Mid Cap Core ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPLE", + "name": "Timothy Plan US Large/Mid Cap Core Enhanced ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPOR", + "name": "Direxion Daily Transportation Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPR", + "name": "Tapestry Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPSC", + "name": "Timothy Plan US Small Cap Core ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPST", + "name": "Tempest Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPTA", + "name": "Terra Property Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPTX", + "name": "Turning Point Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPVG", + "name": "TriplePoint Venture Growth BDC Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-03-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPX", + "name": "Tempur Sealy International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPYP", + "name": "Tortoise North American Pipeline Fund ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TPZ", + "name": "Tortoise Power Energy Infrstrct Fd Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2009-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TQQQ", + "name": "ProShares UltraPro QQQ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TR", + "name": "Tootsie Roll Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRAQ", + "name": "Trine II Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRAQ-U", + "name": "Trine II Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRAQ-WS", + "name": "Trine II Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRC", + "name": "Tejon Ranch Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRCA", + "name": "Twin Ridge Capital Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRCA-U", + "name": "Twin Ridge Capital Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRCA-WS", + "name": "Twin Ridge Capital Acquisition Corp Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRDA", + "name": "Entrada Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRDF", + "name": "The NextGen Trend and Defend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-01-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TREC", + "name": "Trecora Resources", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TREE", + "name": "LendingTree Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TREX", + "name": "TREX Co. Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRGP", + "name": "Targa Resources Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRHC", + "name": "Tabula Rasa HealthCare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRI", + "name": "Thomson-Reuters Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRIB", + "name": "Trinity Biotech Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRIN", + "name": "Trinity Capital Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRIP", + "name": "TripAdvisor Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRIS", + "name": "Tristar Acquisition I Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRIS-U", + "name": "Tristar Acquisition I Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRIS-WS", + "name": "Tristar Acquisition I Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRKA", + "name": "Troika Media Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRKAW", + "name": "Troika Media Group Inc - Warrants (13/04/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRMB", + "name": "Trimble Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRMD", + "name": "Torm Plc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRMK", + "name": "Trustmark Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRMR", + "name": "Tremor International Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRN", + "name": "Trinity Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRND", + "name": "Pacer Trendpilot Fund of Funds ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRNE-U", + "name": "Desktop Metal Inc - Unit (1 Ord share Cls A & 1/2 Wrt)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRNO", + "name": "Terreno Realty Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRNS", + "name": "Transcat Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRON", + "name": "Corner Growth Acquisition Corp 2 - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRONU", + "name": "Corner Growth Acquisition Corp 2 - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRONW", + "name": "Corner Growth Acquisition Corp 2 - Warrants (09/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TROO", + "name": "TROOPS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TROW", + "name": "T. Rowe Price Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1989-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TROX", + "name": "Tronox Holdings plc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRP", + "name": "TC Energy Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRPL", + "name": "PACER METAURUS US LARGE CAP DIVIDEND MULTIPLIER 300 ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRQ", + "name": "Turquoise Hill Resources Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRS", + "name": "Trimas Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRST", + "name": "Trustco Bank Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRT", + "name": "Trio-Tech International", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-04-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTL", + "name": "TortoiseEcofin Acquisition Corp III - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTL-U", + "name": "TortoiseEcofin Acquisition Corp III - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTL-WS", + "name": "TortoiseEcofin Acquisition Corp III - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTN", + "name": "Triton International Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTN-P-A", + "name": "Triton International Limited 8.50 Series A Cumulative Redeemable Perpetual Preference Shares", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-03-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTN-P-B", + "name": "Triton International Ltd 8 PRF PERPETUAL USD 25 Ser B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTN-P-C", + "name": "Triton International Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTN-P-D", + "name": "Triton International Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTN-P-E", + "name": "Triton International Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTX", + "name": "TPG RE Finance Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTX-P-C", + "name": "TPG RE Finance Trust Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRTY", + "name": "Cambria Trinity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRU", + "name": "TransUnion", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRUE", + "name": "Truecar Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRUP", + "name": "Trupanion Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRV", + "name": "Travelers Companies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRVG", + "name": "Trivago NV", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRVI", + "name": "Trevi Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRVN", + "name": "Trevena Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRX", + "name": "Tanzanian Gold Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2005-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TRYP", + "name": "SonicShares Airlines Hotels Cruise Lines ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TS", + "name": "Tenaris S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSAT", + "name": "Telesat Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSBK", + "name": "Timberland Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSC", + "name": "Tristate Capital Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSCAP", + "name": "Tristate Capital Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSCBP", + "name": "Tristate Capital Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSCO", + "name": "Tractor Supply Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSE", + "name": "Trinseo PLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSEM", + "name": "Tower Semiconductor Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSHA", + "name": "Taysha Gene Therapies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSI", + "name": "TCW Strategic Income Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSIB", + "name": "Tishman Speyer Innovation Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSIBU", + "name": "Tishman Speyer Innovation Corp II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSIBW", + "name": "Tishman Speyer Innovation Corp II - Warrants (11/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSJA", + "name": "Innovator Triple Stacker ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSLA", + "name": "Tesla Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSLX", + "name": "Sixth Street Specialty Lending Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSM", + "name": "Taiwan Semiconductor Manufacturing", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSN", + "name": "Tyson Foods Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSOC", + "name": "Innovator Triple Stacker ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSP", + "name": "TuSimple Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSPA", + "name": "T. Rowe Price U.S. Equity Research ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSPQ", + "name": "TCW Special Purpose Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSPQ-U", + "name": "TCW Special Purpose Acquisition Corp - Units (1 Ord Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSPQ-WS", + "name": "TCW Special Purpose Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSQ", + "name": "Townsquare Media Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSRI", + "name": "TSR Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSVT", + "name": "2seventy bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TSVTV", + "name": "2seventy bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TT", + "name": "Trane Technologies plc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTAC", + "name": "FCF US Quality ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTAI", + "name": "FCF International Quality ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTC", + "name": "Toro Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTCF", + "name": "Tattooed Chef Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTD", + "name": "Trade Desk Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTE", + "name": "TotalEnergies SE", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTEC", + "name": "TTEC Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTEK", + "name": "Tetra Tech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTGT", + "name": "Techtarget Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTI", + "name": "Tetra Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTM", + "name": "Tata Motors Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTMI", + "name": "TTM Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTNP", + "name": "Titan Pharmaceuticals Inc (de)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTOO", + "name": "T2 Biosystems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTP", + "name": "Tortoise Pipeline & Energy Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2011-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTSH", + "name": "Tile Shop Hldgs Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTT", + "name": "ProShares UltraPro Short 20+ Year Treasury", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TTWO", + "name": "Take-Two Interactive Software Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TU", + "name": "Telus Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUEM", + "name": "Tuesday Morning Corp - New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUFN", + "name": "Tufin Software Technologies Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUGC", + "name": "TradeUP Global Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUGCU", + "name": "TradeUP Global Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUGCW", + "name": "TradeUP Global Corp - Warrants (27/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUP", + "name": "Tupperware Brands Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-05-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUR", + "name": "iShares MSCI Turkey ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TURN", + "name": "180 Degree Capital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUSA", + "name": "FIRST TRUST TOTAL US MARKET ALPHADEX ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2004-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUSK", + "name": "Mammoth Energy Services Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TUYA", + "name": "Tuya Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TV", + "name": "Grupo Televisa SAB", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TVC", + "name": "Tennessee Valley Authority", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TVE", + "name": "Tennessee Valley Authority", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TVTX", + "name": "Travere Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TVTY", + "name": "Tivity Health Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-08-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TW", + "name": "Tradeweb Markets Inc Cls A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWCB", + "name": "Bilander Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWCBU", + "name": "Bilander Acquisition Corp - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWCBW", + "name": "Bilander Acquisition Corp - Warrants (19/05/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWI", + "name": "Titan International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWIN", + "name": "Twin Disc Incorporated", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1987-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWIO", + "name": "Trajan Wealth Income Opportunities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWKS", + "name": "Thoughtworks Holding Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWLO", + "name": "Twilio Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWLV", + "name": "Twelve Seas Investment Co II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWLVU", + "name": "Twelve Seas Investment Co II - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWLVW", + "name": "Twelve Seas Investment Co II - Warrants (26/02/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWM", + "name": "ProShares UltraShort Russell2000", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWN", + "name": "Taiwan Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWND", + "name": "Tailwind Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWND-U", + "name": "Tailwind Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWND-WS", + "name": "Tailwind Acquisition Corp Redeemable Warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWNI", + "name": "Tailwind International Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWNI-U", + "name": "Tailwind International Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWNI-WS", + "name": "Tailwind International Acquisition Corp - Warrants (01/03/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWNK", + "name": "Hostess Brands Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWNT", + "name": "Tailwind Two Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWNT-U", + "name": "Tailwind Two Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWNT-WS", + "name": "Tailwind Two Acquisition Corp Redeemable warrants included as part of the units each whole warrant exercisable for one Class A ordinary share at an exercise pr", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWO", + "name": "Two Harbors Investment Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWO-P-A", + "name": "Two Harbors Investments Corp 8125 Series A FixedtoFloating Rate Cumulative Redeemable Preferred Stock 2500 liquidation preference per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWO-P-B", + "name": "Two Harbors Investments Corp 7625 Series B FixedtoFloating Rate Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWO-P-C", + "name": "Two Harbors Investments Corp 725 Series C FixedtoFloating Rate Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWOA", + "name": "two - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWOU", + "name": "2U Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWST", + "name": "Twist Bioscience Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TWTR", + "name": "Twitter Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TX", + "name": "Ternium S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TXG", + "name": "10x Genomics Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TXMD", + "name": "TherapeuticsMD Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TXN", + "name": "Texas Instruments Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TXRH", + "name": "Texas Roadhouse Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TXT", + "name": "Textron Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-10-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TY", + "name": "Tri-Continental Corp", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1983-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TY-P", + "name": "Tri-Continental Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TYA", + "name": "Simplify Risk Parity Treasury ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TYD", + "name": "Direxion Daily 7-10 Year Treasury Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TYG", + "name": "Tortoise Energy Infrastructure Corp", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TYL", + "name": "Tyler Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TYME", + "name": "Tyme Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TYNE", + "name": "DIREXION NANOTECHNOLOGY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TYO", + "name": "Direxion Daily 7-10 Year Treasury Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TYRA", + "name": "Tyra Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TZA", + "name": "Direxion Daily Small Cap Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TZOO", + "name": "Travelzoo", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TZPS", + "name": "TZP Strategies Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TZPSU", + "name": "TZP Strategies Acquisition Corp - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "TZPSW", + "name": "TZP Strategies Acquisition Corp - Warrants (06/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "U", + "name": "Unity Software Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UA", + "name": "Under Armour Inc - Class C", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UAA", + "name": "Under Armour Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UAE", + "name": "iShares MSCI UAE ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2014-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UAL", + "name": "United Airlines Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UAMY", + "name": "United States Antimony Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2000-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UAN", + "name": "CVR Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UAPR", + "name": "Innovator U.S. Equity Ultra Buffer ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UAUG", + "name": "Innovator U.S. Equity Ultra Buffer ETF - August", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-08-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UAVS", + "name": "AgEagle Aerial Systems Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2018-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBA", + "name": "Urstadt Biddle Properties Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBCB", + "name": "UBC ALGORITHMIC FUNDAMENTALS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBCP", + "name": "United Bancorp Inc (Martins Ferry OH)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBER", + "name": "Uber Technologies Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBFO", + "name": "United Security Bancshares (CA)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBND", + "name": "VictoryShares ESG Core Plus Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBOH", + "name": "United Bancshares Inc (OH)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBP", + "name": "Urstadt Biddle Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBP-P-H", + "name": "Urstadt Biddle Properties Inc 6250 Series H Cumulative Redeemable Preferred Stock", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBP-P-K", + "name": "Urstadt Biddle Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBR", + "name": "ProShares Ultra MSCI Brazil Capped ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBS", + "name": "UBS Group AG", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBSI", + "name": "United Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBT", + "name": "ProShares Ultra 20+ Year Treasury", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UBX", + "name": "Unity Biotechnology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCBI", + "name": "United Community Banks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCBIO", + "name": "United Community Banks Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCC", + "name": "ProShares Ultra Consumer Services", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCIB", + "name": "UCIB", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCL", + "name": "Ucloudlink Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCO", + "name": "ProShares Ultra Bloomberg Crude Oil", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCON", + "name": "First Trust TCW Unconstrained Plus Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCRD", + "name": "VictoryShares ESG Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCTT", + "name": "Ultra Clean Hldgs Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2004-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UCYB", + "name": "ProShares Ultra Nasdaq Cybersecurity ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UDEC", + "name": "Innovator U.S. Equity Ultra Buffer ETF - December", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UDMY", + "name": "Udemy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UDN", + "name": "Invesco DB US Dollar Index Bearish Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UDOW", + "name": "ProShares UltraPro Dow30", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UDR", + "name": "UDR Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UE", + "name": "Urban Edge Properties", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UEC", + "name": "Uranium Energy Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UEIC", + "name": "Universal Electronics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UEPS", + "name": "Net 1 UEPS Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UEVM", + "name": "VictoryShares USAA MSCI Emerging Markets Value Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UFAB", + "name": "Unique Fabricating Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2015-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UFCS", + "name": "United Fire Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UFEB", + "name": "Innovator U.S. Equity Ultra Buffer ETF - February", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UFI", + "name": "UNIFI Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UFO", + "name": "PROCURE SPACE ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UFPI", + "name": "UFP Industries Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UFPT", + "name": "UFP Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UG", + "name": "United-Guardian Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UGA", + "name": "United States Gasoline Fund LP", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UGAZ", + "name": "VelocityShares 3x Long Natural Gas ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UGCE", + "name": "Uncommon Portfolio Design Core Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UGE", + "name": "ProShares Ultra Consumer Goods", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UGI", + "name": "UGI Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UGIC", + "name": "UGI Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UGL", + "name": "ProShares Ultra Gold", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UGP", + "name": "Ultrapar Participacoes S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UGRO", + "name": "Urban-gro Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UHAL", + "name": "Amerco", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UHS", + "name": "Universal Health Services Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UHT", + "name": "Universal Health Realty Income Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UI", + "name": "Ubiquiti Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UIHC", + "name": "United Insurance Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UIS", + "name": "Unisys Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UITB", + "name": "VictoryShares USAA Core Intermediate-Term Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UIVM", + "name": "VictoryShares USAA MSCI International Value Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UJAN", + "name": "Innovator U.S. Equity Ultra Buffer ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UJB", + "name": "PROSHARES ULTRA HIGH YIELD ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UJUL", + "name": "Innovator U.S. Equity Ultra Buffer ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UJUN", + "name": "Innovator U.S. Equity Ultra Buffer ETF - June", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UK", + "name": "Ucommune International Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UKOMW", + "name": "Ucommune International Ltd - Warrants (17/11/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UL", + "name": "Unilever plc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ULBI", + "name": "Ultralife Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ULBR", + "name": "Citigroup Global Markets Holdings Inc VelocityShares Long LIBOR ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-08-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ULCC", + "name": "Frontier Group Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ULE", + "name": "ProShares Ultra Euro", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ULH", + "name": "Universal Logistics Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ULST", + "name": "SPDR SSgA Ultra Short Term Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ULTA", + "name": "Ulta Beauty Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ULTR", + "name": "IQ Ultra Short Duration ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ULVM", + "name": "VictoryShares USAA MSCI USA Value Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMAR", + "name": "Innovator U.S. Equity Ultra Buffer ETF - March", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMAY", + "name": "Innovator U.S. Equity Ultra Buffer ETF - May", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMBF", + "name": "UMB Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMC", + "name": "United Micro Electronics", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMDD", + "name": "ProShares UltraPro MidCap400", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMH", + "name": "UMH Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMH-P-C", + "name": "UMH Properties Inc 675 Series C Cumulative Redeemable Preferred Stock Liquidation Preference 25 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMH-P-D", + "name": "UMH Properties Inc 6375 Series D Cumulative Redeemable Preferred Stock Liquidation Preference 25 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMI", + "name": "USCF Midstream Energy Income Fund ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMMA", + "name": "Wahed Dow Jones Islamic World ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UMPQ", + "name": "Umpqua Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNAM", + "name": "Unico American Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNB", + "name": "Union Bankshares Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNCY", + "name": "Unicycive Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNF", + "name": "Unifirst Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNFI", + "name": "United Natural Foods Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1996-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNG", + "name": "United States Natural Gas Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNH", + "name": "Unitedhealth Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNIT", + "name": "Uniti Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNL", + "name": "United States 12 Month Natural Gas Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNM", + "name": "Unum Group", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNMA", + "name": "Unum Group 6250 Junior Subordinated Notes due 2058", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNOV", + "name": "Innovator U.S. Equity Ultra Buffer ETF - November", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNP", + "name": "Union Pacific Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNQL", + "name": "Unique Logistics International Inc", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2013-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNTY", + "name": "Unity Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UNVR", + "name": "Univar Solutions Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UOCT", + "name": "Innovator U.S. Equity Ultra Buffer ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UONE", + "name": "Urban One Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UONEK", + "name": "Urban One Inc - Class D", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UP", + "name": "Wheels Up Experience Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UP-WS", + "name": "Wheels Up Experience Inc - Warrants (19/09/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPAR", + "name": "UPAR Ultra Risk Parity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPC", + "name": "Universe Pharmaceuticals INC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPH", + "name": "UpHealth Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPH-WS", + "name": "UpHealth Inc Warrants", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPLD", + "name": "Upland Software Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPRO", + "name": "ProShares UltraPro S&P 500 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPS", + "name": "United Parcel Service Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPST", + "name": "Upstart Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPTD", + "name": "TradeUP Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPTDU", + "name": "TradeUP Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPTDW", + "name": "TradeUP Acquisition Corp - Warrants (15/10/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPV", + "name": "ProShares Ultra FTSE Europe", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPW", + "name": "ProShares Ultra Utilities", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UPWK", + "name": "Upwork Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "URA", + "name": "Global X Uranium ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "URBN", + "name": "Urban Outfitters Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "URE", + "name": "ProShares Ultra Real Estate", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "URG", + "name": "Ur-Energy Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2008-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "URGN", + "name": "UroGen Pharma Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "URI", + "name": "United Rentals Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "URNM", + "name": "North Shore Global Uranium Mining ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UROY", + "name": "Uranium Royalty Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "URTH", + "name": "iShares MSCI World ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "URTY", + "name": "ProShares UltraPro Russell2000", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USA", + "name": "Liberty All-Star Equity Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USAC", + "name": "USA Compression Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USAI", + "name": "Pacer American Energy Independence ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USAK", + "name": "USA Truck Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USAP", + "name": "Universal Stainless & Alloy Products Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USAS", + "name": "Americas Gold and Silver Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USAU", + "name": "U.S. Gold Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USB", + "name": "U.S. Bancorp.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USB-P-A", + "name": "US Bancorp Depositary Shares Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USB-P-H", + "name": "US Bancorp Depositary Shares repstg 11000th Pfd Ser B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USB-P-P", + "name": "US Bancorp Depositary Shares Series K", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USB-P-Q", + "name": "U.S. Bancorp.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USB-P-R", + "name": "U.S. Bancorp.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USB-P-S", + "name": "U.S. Bancorp.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USBF", + "name": "ISHARES USD BOND FACTOR ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USCB", + "name": "USCB Financial Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USCI", + "name": "United States Commodity Index Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USCT", + "name": "Tkb Critical Technologies 1 - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USCTU", + "name": "Tkb Critical Technologies 1 - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USCTW", + "name": "Tkb Critical Technologies 1 - Warrants (20/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USD", + "name": "ProShares Ultra Semiconductors", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USDP", + "name": "USD Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USDU", + "name": "WisdomTree Bloomberg U.S. Dollar Bullish Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USEG", + "name": "U.S. Energy Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USEP", + "name": "Innovator U.S. Equity Ultra Buffer ETF - September", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2019-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USEQ", + "name": "Invesco Russell 1000 Enhanced Equal Weight ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USER", + "name": "UserTesting Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USFD", + "name": "US Foods Holding Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USFR", + "name": "WisdomTree Floating Rate Treasury Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USHY", + "name": "iShares Broad USD High Yield Corporate Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USI", + "name": "PRINCIPAL ULTRA-SHORT ACTIVE INCOME ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USIG", + "name": "iShares Broad USD Investment Grade Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2007-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USIO", + "name": "Usio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USL", + "name": "United States 12 Month Oil Fund LP", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USLB", + "name": "Invesco Russell 1000 Low Beta Equal Weight ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USLM", + "name": "United States Lime & Minerals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USM", + "name": "United States Cellular Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USMC", + "name": "Principal U.S. Mega-Cap ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USMF", + "name": "WisdomTree U.S. Multifactor Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USML", + "name": "UBS AG London Branch", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USMV", + "name": "iShares MSCI USA Min Vol Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USNA", + "name": "Usana Health Sciences Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USO", + "name": "United States Oil Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USOI", + "name": "Credit Suisse AG Nassau Branch", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USPH", + "name": "U.S. Physical Therapy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USRT", + "name": "iShares Core U.S. REIT ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USSG", + "name": "Xtrackers MSCI USA ESG Leaders Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UST", + "name": "ProShares Ultra 7-10 Year Treasury", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USTB", + "name": "VictoryShares USAA Core Short-Term Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USVM", + "name": "VictoryShares USAA MSCI USA Small Cap Value Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USVT", + "name": "US VALUE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USWS", + "name": "U.S. Well Services Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USX", + "name": "U.S. Xpress Enterprises Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "USXF", + "name": "iShares ESG Advanced MSCI USA ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTAA", + "name": "UTA Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTAAU", + "name": "UTA Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTAAW", + "name": "UTA Acquisition Corp - Warrants (30/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTES", + "name": "Virtus Reaves Utilities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTF", + "name": "Cohen & Steers Infrastructure Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTG", + "name": "Reaves Utility Income Fund", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "2004-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTHR", + "name": "United Therapeutics Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTI", + "name": "Universal Technical Institute Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTL", + "name": "Unitil Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTMD", + "name": "Utah Medical Products Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTME", + "name": "UTime Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTRN", + "name": "Vesper U.S. Large Cap Short-Term Reversal Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTRS", + "name": "Minerva Surgical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTSI", + "name": "UTStarcom Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2000-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTSL", + "name": "Direxion Daily Utilities Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTX-W", + "name": "United Technologies Corporation ExDistribution When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTZ", + "name": "Utz Brands Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-11-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UTZ-WS", + "name": "Utz Brands Inc - Warrants (28/08/2025)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UUP", + "name": "Invesco DB US Dollar Index Bullish Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UUU", + "name": "Universal Security Instruments Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UUUU", + "name": "Energy Fuels Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UVDV", + "name": "UVA Dividend Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UVE", + "name": "Universal Insurance Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-06-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UVSP", + "name": "Univest Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UVV", + "name": "Universal Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UVXY", + "name": "ProShares Ultra VIX Short-Term Futures ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UWM", + "name": "ProShares Ultra Russell2000", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UWMC", + "name": "UWM Holdings Corporation Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UWMC-WS", + "name": "UWM Holdings Corporation Warrant", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UXI", + "name": "ProShares Ultra Industrials", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UXIN", + "name": "Uxin Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UYG", + "name": "ProShares Ultra Financials", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UYM", + "name": "PROSHARES ULTRA BASIC MATERIALS ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UZD", + "name": "United States Cellular Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UZE", + "name": "United States Cellular Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "UZF", + "name": "United States Cellular Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "V", + "name": "Visa Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2008-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VABK", + "name": "Virginia National Bankshares Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VABS", + "name": "VIRTUS NEWFLEET ABS/MBS ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VAC", + "name": "Marriott Vacations Worldwide Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VACC", + "name": "Vaccitech plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VAL", + "name": "Valaris Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VAL-WS", + "name": "Valaris Ltd - Warrants (29/04/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VALE", + "name": "Vale S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VALN", + "name": "Valneva SE", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VALQ", + "name": "American Century STOXX U.S. Quality Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VALT", + "name": "ETFMG SIT ULTRA SHORT ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VALU", + "name": "Value Line Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VAM", + "name": "The Vivaldi Opportunities Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VAMO", + "name": "Cambria ETF Trust Cambria Value and Momentum ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2015-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VAPO", + "name": "Vapotherm Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-11-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VAQC", + "name": "Vector Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VATE", + "name": "Innovate Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2009-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VAW", + "name": "Vanguard Materials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VAXX", + "name": "Vaxxinity Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VB", + "name": "Vanguard Small Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBB", + "name": "VALKYRIE BALANCE SHEET OPPORTUNITIES ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBF", + "name": "Invesco Bond Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBFC", + "name": "Village Bank & Trust Financial Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBIV", + "name": "VBI Vaccines Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBK", + "name": "Vanguard Small Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBLT", + "name": "Vascular Biogenics Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBND", + "name": "VIDENT CORE U.S. BOND STRATEGY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBNK", + "name": "VILLAGE BANCORP INC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBOC", + "name": "Viscogliosi Brothers Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBOCU", + "name": "Viscogliosi Brothers Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBOCW", + "name": "Viscogliosi Brothers Acquisition Corp - Warrants (18/03/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBR", + "name": "Vanguard Small Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VBTX", + "name": "Veritex Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VC", + "name": "Visteon Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCAR", + "name": "SIMPLIFY VOLT ROBOCAR DISRUPTION AND TECH ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCEB", + "name": "Vanguard ESG U.S. Corporate Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCEL", + "name": "Vericel Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCF", + "name": "Delaware Investments Colorado Municipal Income Fund Inc", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCIF", + "name": "Vertical Capital Income Fund.", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2019-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCIT", + "name": "Vanguard Intermediate-Term Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCKA", + "name": "Vickers Vantage Corp I", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCKAU", + "name": "Vickers Vantage Corp I - Units (1 Ord & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCKAW", + "name": "Vickers Vantage Corp I - Warrants (15/09/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCLN", + "name": "VIRTUS DUFF & PHELPS CLEAN ENERGY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCLO", + "name": "Simplify Volt Cloud and Cybersecurity Disruption ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCLT", + "name": "Vanguard Long-Term Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCNX", + "name": "Vaccinex Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCR", + "name": "Vanguard Consumer Discretionary ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCSA", + "name": "Vacasa Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCSH", + "name": "Vanguard Short-Term Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCTR", + "name": "Victory Capital Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCV", + "name": "Invesco California Value Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCXA", + "name": "10X Capital Venture Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCXAU", + "name": "10X Capital Venture Acquisition Corp II - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCXAW", + "name": "10X Capital Venture Acquisition Corp II - Warrants (19/04/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCXB", + "name": "10X Capital Venture Acquisition Corp III - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCXB-U", + "name": "10X Capital Venture Acquisition Corp III - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCXB-WS", + "name": "10X Capital Venture Acquisition Corp III - Warrants (30/06/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VCYT", + "name": "Veracyte Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VDC", + "name": "Vanguard Consumer Staples ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VDE", + "name": "Vanguard Energy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VDNI", + "name": "V-Shares US Leadership Diversity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEA", + "name": "Vanguard FTSE Developed Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEC", + "name": "Vectrus Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VECO", + "name": "Veeco Instruments Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VECT", + "name": "VectivBio Holding AG", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEEE", + "name": "Twin Vee PowerCats Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEEV", + "name": "Veeva Systems Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEGA", + "name": "AdvisorShares STAR Global Buy-Write ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEGI", + "name": "iShares MSCI Global Agriculture Producers ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEGN", + "name": "US Vegan Climate ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-09-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEL", + "name": "Velocity Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VELO", + "name": "Velocity Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VELOU", + "name": "Velocity Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VELOW", + "name": "Velocity Acquisition Corp - Warrants (24/02/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VENA", + "name": "Venus Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VENAR", + "name": "Venus Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VENAU", + "name": "Venus Acquisition Corp - Units (1 Ord 1 Right & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VENAW", + "name": "Venus Acquisition Corp - Warrants (30/04/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEON", + "name": "VEON Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VER-P-F", + "name": "VEREIT Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERA", + "name": "Vera Therapeutics Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERB", + "name": "Verb Technology Company Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERBW", + "name": "Verb Technology Company Inc - Warrants (14/03/2024)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERI", + "name": "Veritone Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERO", + "name": "Venus Concept Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERS", + "name": "ProShares Metaverse ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERU", + "name": "Veru Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERV", + "name": "Verve Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERX", + "name": "Vertex Inc Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VERY", + "name": "Vericity Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VET", + "name": "Vermilion Energy Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-09-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEU", + "name": "Vanguard FTSE All-World ex-US ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-03-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VEV", + "name": "Vicinity Motor Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFC", + "name": "VF Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFF", + "name": "Village Farms International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFH", + "name": "Vanguard Financials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFIN", + "name": "SIMPLIFY VOLT FINTECH DISRUPTION ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFL", + "name": "Delaware Investments Natnl Mncpl Incm Fd", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFLQ", + "name": "Vanguard U.S. Liquidity Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFMF", + "name": "Vanguard U.S. Multifactor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFMO", + "name": "Vanguard U.S. Momentum Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFMV", + "name": "Vanguard U.S. Minimum Volatility ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFQY", + "name": "Vanguard U.S. Quality Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VFVA", + "name": "Vanguard U.S. Value Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VG", + "name": "Vonage Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGI", + "name": "Virtus Global MultiSector Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2012-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGII", + "name": "Virgin Group Acquisition Corp II - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGII-U", + "name": "Virgin Group Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGII-WS", + "name": "Virgin Group Acquisition Corp II - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGIT", + "name": "Vanguard Intermediate-Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGK", + "name": "Vanguard FTSE Europe ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGLT", + "name": "Vanguard Long-Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGM", + "name": "Invesco Trust for Investment Grade Municipals", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGR", + "name": "Vector Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-10-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGSH", + "name": "Vanguard Short-Term Treasury ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGT", + "name": "Vanguard Information Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VGZ", + "name": "Vista Gold Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1990-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VHAQ", + "name": "Viveon Health Acquisition Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VHAQ-U", + "name": "Viveon Health Acquisition Corp - Units (1 Ord 1 War & 1 Right )", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VHAQ-WS", + "name": "Viveon Health Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VHC", + "name": "Virnetx Holding Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VHI", + "name": "Valhi Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VHNA", + "name": "Vahanna Tech Edge Acquisition I Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VHNAU", + "name": "Vahanna Tech Edge Acquisition I Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VHNAW", + "name": "Vahanna Tech Edge Acquisition I Corp - Warrants (30/11/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VHT", + "name": "Vanguard Health Care ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIA", + "name": "Via Renewables Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIACP", + "name": "ViacomCBS Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIAO", + "name": "VIA optronics AG", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIASP", + "name": "Via Renewables Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIAV", + "name": "Viavi Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VICE", + "name": "ADVISORSHARES VICE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VICI", + "name": "VICI Properties Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VICR", + "name": "Vicor Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-11-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIDI", + "name": "WisdomTree Vident International Equity Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-10-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIEW", + "name": "View Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIEWW", + "name": "View Inc - Warrants (08/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIG", + "name": "Vanguard Dividend Appreciation FTF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIGI", + "name": "Vanguard International Dividend Appreciation ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIGL", + "name": "Vigil Neuroscience Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VII", + "name": "7GC & Co Holdings Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIIAU", + "name": "7GC & Co Holdings Inc - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIIAW", + "name": "7GC & Co Holdings Inc - Warrants (23/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VINC", + "name": "Vincerx Pharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VINE", + "name": "Fresh Vine Wine Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VINO", + "name": "Gaucho Group Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VINP", + "name": "Vinci Partners Investments Ltd - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIOG", + "name": "VANGUARD S&P SMALL-CAP 600 GROWTH INDEX FUND ETF SHARES", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIOO", + "name": "Vanguard S&P Small-Cap 600 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIOT", + "name": "Viomi Technology Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIOV", + "name": "VANGUARD S&P SMALL-CAP 600 VALUE INDEX FUND ETF SHARES", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIPS", + "name": "Vipshop Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIR", + "name": "Vir Biotechnology Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIRC", + "name": "Virco Manufacturing Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIRI", + "name": "Virios Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIRS", + "name": "Pacer BioThreat Strategy ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIRT", + "name": "Virtu Financial Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIRX", + "name": "Viracta Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIS", + "name": "Vanguard Industrials ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VISL", + "name": "Vislink Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIST", + "name": "Vista Oil & Gas Sab De Cv", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VITL", + "name": "Vital Farms Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIV", + "name": "Telefonica Brasil S.A.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIV-W", + "name": "Telefonica Brasil S.A. American Depositary Shares Each representing One When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIVE", + "name": "Viveve Medical Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIVK", + "name": "Vivakor Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIVO", + "name": "Meridian Bioscience Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIXM", + "name": "ProShares VIX Mid-Term Futures ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VIXY", + "name": "ProShares VIX Short-Term Futures ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VJET", + "name": "Voxeljet AG", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-10-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VKI", + "name": "Invesco Advantage Municipal Income Trust II", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VKQ", + "name": "Invesco Municipal Trust Common", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1991-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VKTX", + "name": "Viking Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLAT", + "name": "Valor Latitude Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLATU", + "name": "Valor Latitude Acquisition Corp - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLATW", + "name": "Valor Latitude Acquisition Corp - Warrants (02/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLCN", + "name": "Volcon Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLD", + "name": "Velo3D Inc - New", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLD-WS", + "name": "Velo3D Inc Redeemable warrants each whole warrant exercisable for one share of Common Stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLDR", + "name": "Velodyne Lidar Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLDRW", + "name": "Velodyne Lidar Inc Warrant", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLGEA", + "name": "Village Super Market Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLN", + "name": "Valens Semiconductor Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLN-WS", + "name": "Valens Semiconductor Ltd Warrants each warrant to purchase onehalf of one Ordinary Share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLNS", + "name": "Valens Company Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-09-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLO", + "name": "Valero Energy Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1982-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLON", + "name": "Vallon Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLRS", + "name": "Controladora Vuela Cia De Aviacion", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLT", + "name": "Invesco High Income Trust II", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLTA", + "name": "Volta Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLTA-WS", + "name": "Volta Inc - Warrants(14/06/2027)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLU", + "name": "SPDR S&P 1500 Value Tilt ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLUE", + "name": "iShares MSCI USA Value Factor ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2013-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLY", + "name": "Valley National Bancorp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLYPO", + "name": "Valley National Bancorp 55 Fixed to Floating Rate Series B NonCumulative Perpetual Preferred Stock", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VLYPP", + "name": "Valley National Bancorp 625 FixedtoFloating Rate Series A NonCumulative Perpetual Preferred Stock", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMAR", + "name": "Vision Marine Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMBS", + "name": "Vanguard Mortgage-Backed Securities ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2009-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMC", + "name": "Vulcan Materials Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMCAU", + "name": "Valuence Merger Corp I - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMD", + "name": "Viemed Healthcare Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMEO", + "name": "Vimeo Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMGA", + "name": "VMG Consumer Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMGAU", + "name": "VMG Consumer Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMGAW", + "name": "VMG Consumer Acquisition Corp - Warrants (08/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMI", + "name": "Valmont Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMM", + "name": "Delaware Investments MN Muni Inc Fund II", + "exchange": "NYSE MKT", + "assetType": "ETF", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMO", + "name": "Invesco Municipal Opportunity Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMOT", + "name": "Alpha Architect Value Momentum Trend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMW", + "name": "Vmware Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VMW-W", + "name": "VMware Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNAM", + "name": "Global X MSCI Vietnam ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNCE", + "name": "Vince Holding Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-11-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNDA", + "name": "Vanda Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNE", + "name": "Veoneer Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-06-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNET", + "name": "VNET Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNLA", + "name": "Janus Henderson Short Duration Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNM", + "name": "VanEck Vietnam ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2009-08-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNMC", + "name": "Natixis Vaughan Nelson Mid Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNO", + "name": "Vornado Realty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNO-P-L", + "name": "Vornado Realty Trust Pfd Ser L", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNO-P-M", + "name": "Vornado Realty Trust 525 Series M Cumulative Redeemable Preferred Shares of Beneficial Interest liquidation preference 2500 per share no par value per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNO-P-N", + "name": "Vornado Realty Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNO-P-O", + "name": "Vornado Realty Trust 4.45 Series O Cumulative Redeemable Preferred Shares Liquidation Preference 25.00 Per Share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNOM", + "name": "Viper Energy Partners LP", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNQ", + "name": "Vanguard Real Estate Index Fund ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNQI", + "name": "Vanguard Global ex-U.S. Real Estate ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNRX", + "name": "VolitionRX Ltd", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2007-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNSE", + "name": "Natixis Vaughan Nelson Select ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNT", + "name": "Vontier Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNT-W", + "name": "Vontier Corporation When Issued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VNTR", + "name": "Venator Materials PLC", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VO", + "name": "Vanguard Mid-Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOC", + "name": "VOC Energy Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOD", + "name": "Vodafone Group plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1988-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOE", + "name": "Vanguard Mid-Cap Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOLT", + "name": "Volt Information Sciences Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VONE", + "name": "Vanguard Russell 1000 Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VONG", + "name": "Vanguard Russell 1000 Growth Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VONV", + "name": "Vanguard Russell 1000 Value Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOO", + "name": "Vanguard S&P 500 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOOG", + "name": "Vanguard S&P 500 Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOOV", + "name": "Vanguard S&P 500 Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOR", + "name": "Vor Biopharma Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VORB", + "name": "Virgin Orbit Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VORBW", + "name": "Virgin Orbit Holdings Inc - Warrants (29/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOT", + "name": "Vanguard Mid-Cap Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOTE", + "name": "Engine No. 1 Transform 500 ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOX", + "name": "Vanguard Communication Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOXX", + "name": "VOXX International Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOYA", + "name": "Voya Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VOYA-P-B", + "name": "Voya Financial Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPC", + "name": "Virtus Private Credit Strategy ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPCB", + "name": "VPC Impact Acquisition Holdings II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPCBU", + "name": "VPC Impact Acquisition Holdings II - Units (1 Ord Share Class A & 1/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPCBW", + "name": "VPC Impact Acquisition Holdings II - Warrants (05/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPG", + "name": "Vishay Precision Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPL", + "name": "Vanguard FTSE Pacific ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPN", + "name": "Global X Data Center REITs & Digital Infrastructure ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2020-10-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPOP", + "name": "SIMPLIFY VOLT POP CULTURE DISRUPTION ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPU", + "name": "Vanguard Utilities ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VPV", + "name": "Invesco Pennsylvania Value Municipal Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1994-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VQS", + "name": "VIQ Solutions Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRA", + "name": "Vera Bradley Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRAI", + "name": "Virtus Real Asset Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRAR", + "name": "Glimpse Group Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRAY", + "name": "ViewRay Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRCA", + "name": "Verrica Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRDN", + "name": "Viridian Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRE", + "name": "Veris Residential Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1994-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VREX", + "name": "Varex Imaging Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-01-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRIG", + "name": "Invesco Variable Rate Investment Grade ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRM", + "name": "Vroom Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRME", + "name": "VerifyMe Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRMEW", + "name": "VerifyMe Inc - Warrants (17/06/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRNA", + "name": "Verona Pharma Plc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRNS", + "name": "Varonis Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-02-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRNT", + "name": "Verint Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-05-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRP", + "name": "Invesco Variable Rate Preferred ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-05-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRPX", + "name": "Virpax Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRRM", + "name": "Verra Mobility Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRS", + "name": "Verso Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-07-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRSK", + "name": "Verisk Analytics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRSN", + "name": "Verisign Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRT", + "name": "Vertiv Holdings Co - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRTS", + "name": "Virtus Investment Partners Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRTV", + "name": "Veritiv Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VRTX", + "name": "Vertex Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VS", + "name": "Versus Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSAC", + "name": "Vision Sensing Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSACU", + "name": "Vision Sensing Acquisition Corp - Units (1 Ord Class A & 3/4 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSACW", + "name": "Vision Sensing Acquisition Corp - Warrants (21/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSAT", + "name": "Viasat Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSCO", + "name": "Victoria`s Secret & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSCO-W", + "name": "Victorias Secret & Co. WhenIssued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSDA", + "name": "VictoryShares Dividend Accelerator ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSEC", + "name": "VSE Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSGX", + "name": "Vanguard ESG International Stock ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSH", + "name": "Vishay Intertechnology Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSL", + "name": "VOLSHARES LARGE CAP ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSLU", + "name": "Applied Finance Valuation Large Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSMV", + "name": "VICTORYSHARES US MULTI-FACTOR MINIMUM VOLATILITY ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSPY", + "name": "VectorShares Min Vol ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSS", + "name": "Vanguard FTSE All-World Ex-US Small Capital Index Fund ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-04-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSSYW", + "name": "Versus Systems Inc - Warrants- Unit A (17/12/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VST", + "name": "Vistra Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VST-WS-A", + "name": "Vistra Corp - Warrants (02/02/2024)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSTA", + "name": "Vasta Platform Ltd Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-07-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSTM", + "name": "Verastem Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VSTO", + "name": "Vista Outdoor Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-02-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VT", + "name": "Vanguard Total World Stock ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-06-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTA", + "name": "Invesco Dynamic Credit Opportu", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2007-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTAQ", + "name": "Ventoux CCM Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTAQR", + "name": "Ventoux CCM Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTAQU", + "name": "Ventoux CCM Acquisition Corp - Units (1 Ord 1Right & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTAQW", + "name": "Ventoux CCM Acquisition Corp - Warrants (30/09/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTC", + "name": "Vanguard Total Corporate Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-11-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTEB", + "name": "Vanguard Tax-Exempt Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTEX", + "name": "Vtex - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTGN", + "name": "VistaGen Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTHR", + "name": "Vanguard Russell 3000 Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTI", + "name": "Vanguard Total Stock Market ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-05-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTIP", + "name": "Vanguard Short-Term Inflation-Protected Securities Index Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2012-10-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTIQ", + "name": "VectoIQ Acquisition Corp II - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTIQU", + "name": "VectoIQ Acquisition Corp II - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTIQW", + "name": "VectoIQ Acquisition Corp II - Warrants(07/01/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTN", + "name": "Invesco Trust For Investment Grade New York Municipals", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1992-05-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTNR", + "name": "Vertex Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTOL", + "name": "Bristow Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTR", + "name": "Ventas Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTRS", + "name": "Viatris Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTRSV", + "name": "Viatris Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTRU", + "name": "Vitru Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-09-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTSI", + "name": "VirTra Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTV", + "name": "Vanguard Value ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTVT", + "name": "vTv Therapeutics Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTWG", + "name": "Vanguard Russell 2000 Growth Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTWO", + "name": "Vanguard Russell 2000 Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTWV", + "name": "Vanguard Russell 2000 Value Index ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2010-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VTYX", + "name": "Ventyx Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VUG", + "name": "Vanguard Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VUSB", + "name": "Vanguard Ultra-Short Bond ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VUSE", + "name": "ESS Vident Core US Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-01-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VUZI", + "name": "Vuzix Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2010-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VV", + "name": "Vanguard Large Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2004-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VVI", + "name": "Viad Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-08-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VVNT", + "name": "Vivint Smart Home Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VVOS", + "name": "Vivos Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VVPR", + "name": "VivoPower International PLC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VVR", + "name": "Invesco Senior Income Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1998-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VVV", + "name": "Valvoline Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-09-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VWE", + "name": "Vintage Wine Estates Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VWEWW", + "name": "Vintage Wine Estates Inc - Warrants (16/08/2027)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VWID", + "name": "Virtus WMC International Dividend ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VWO", + "name": "Vanguard FTSE Emerging Markets ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VWOB", + "name": "Vanguard Emerging Markets Government Bond ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2013-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VWTR", + "name": "Vidler Water Resources Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-03-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VXF", + "name": "Vanguard Extended Market Index ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2002-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VXRT", + "name": "Vaxart Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-02-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VXUS", + "name": "Vanguard Total International Stock ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2011-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VXX", + "name": "Barclays Bank PLC", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2009-01-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VXZ", + "name": "iPath Series B SP 500 VIX MidTerm Futures ETN", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VYGG", + "name": "Vy Global Growth - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VYGG-U", + "name": "Vy Global Growth - Units (1 Ord Share Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VYGG-WS", + "name": "Vy Global Growth - Warrants (30/01/2030)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VYGR", + "name": "Voyager Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VYM", + "name": "Vanguard High Dividend Yield Indx ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VYMI", + "name": "Vanguard International High Dividend Yield ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2016-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VYNE", + "name": "VYNE Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VYNT", + "name": "Vyant Bio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VZ", + "name": "Verizon Communications Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VZIO", + "name": "VIZIO Holding Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "VZLA", + "name": "Vizsla Silver Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "W", + "name": "Wayfair Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAB", + "name": "Westinghouse Air Brake Technologies Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WABC", + "name": "Westamerica Bancorporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAFD", + "name": "Washington Federal Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAFDP", + "name": "Washington Federal Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAFU", + "name": "Wah Fu Education Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAL", + "name": "Western Alliance Bancorp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAL-P-A", + "name": "Western Alliance Bancorporation Depositary Shares Series A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WALD", + "name": "Waldencast Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WALDU", + "name": "Waldencast Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WALDW", + "name": "Waldencast Acquisition Corp - Warrants (11/03/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WANT", + "name": "DIREXION DAILY CONSUMER DISCRETIONARY BULL 3X SHARES ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WARR", + "name": "Warrior Technologies Acquisition Co - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WARR-U", + "name": "Warrior Technologies Acquisition Co - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WARR-WS", + "name": "Warrior Technologies Acquisition Co - Warrants (31/03/2028)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WASH", + "name": "Washington Trust Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAT", + "name": "Waters Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1995-11-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WATT", + "name": "Energous Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-03-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAVC", + "name": "Waverley Capital Acquisition Corp 1 - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAVC-U", + "name": "Waverley Capital Acquisition Corp 1 - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAVC-WS", + "name": "Waverley Capital Acquisition Corp 1 - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAVD", + "name": "WaveDancer Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAVE", + "name": "Eco Wave Power Global AB", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WAVSU", + "name": "Western Acquisition Ventures Corp - Unit (1 Ordinary share & 1 Wrt)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WB", + "name": "Weibo Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-04-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBA", + "name": "Walgreens Boots Alliance Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1985-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBAT", + "name": "WisdomTree Battery Value Chain and Innovation Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBEV", + "name": "Winc Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBIF", + "name": "WBI BullBear Value 3000 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBIG", + "name": "WBI BullBear Yield 3000 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBII", + "name": "WBI BullBear Global Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBIL", + "name": "WBI BullBear Quality 3000 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBIT", + "name": "WBI BullBear Trend Switch US 3000 Total Return ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBIY", + "name": "WBI POWER FACTOR HIGH DIVIDEND ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBND", + "name": "Western Asset Total Return ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2018-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBS", + "name": "Webster Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBS-P-F", + "name": "Webster Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-12-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBS-P-G", + "name": "Webster Financial Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-02-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBT", + "name": "Welbilt Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBX", + "name": "Wallbox N.V - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WBX-WS", + "name": "Wallbox N.V - Warrants(01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WCBR", + "name": "WisdomTree Cybersecurity Fund", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WCC", + "name": "Wesco International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-05-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WCC-P-A", + "name": "Wesco International Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WCLD", + "name": "WisdomTree Cloud Computing Fund", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WCN", + "name": "Waste Connections Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WD", + "name": "Walker & Dunlop Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WDAY", + "name": "Workday Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-10-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WDC", + "name": "Western Digital Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1987-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WDFC", + "name": "WD-40 Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WDH", + "name": "Waterdrop Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WDI", + "name": "Western Asset Diversified Income Fund", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WDIV", + "name": "SPDR S&P Global Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WDNA", + "name": "WisdomTree BioRevolution Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WE", + "name": "WeWork Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WE-WS", + "name": "WeWork Inc Redeemable Warrants each whole warrant exercisable for one share of Class A common stock at an exercise price of 11.50 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEA", + "name": "Western Asset Premier Bond Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2002-03-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEAT", + "name": "Teucrium Wheat Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEAV", + "name": "Weave Communications Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEBL", + "name": "Direxion Daily Dow Jones Internet Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEBR", + "name": "Weber Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEBS", + "name": "Direxion Daily Dow Jones Internet Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2019-11-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEC", + "name": "WEC Energy Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-10-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEI", + "name": "Weidai Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEIX", + "name": "Dynamic Short Short Term Volatility Futures ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEJO", + "name": "Wejo Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEJOW", + "name": "Wejo Group Ltd - Warrants (18/11/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEL", + "name": "Integrated Wellness Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEL-U", + "name": "Integrated Wellness Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEL-WS", + "name": "Integrated Wellness Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WELL", + "name": "Welltower Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEN", + "name": "Wendy`s Co - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WERN", + "name": "Werner Enterprises Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WES", + "name": "Western Midstream Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WETF", + "name": "Wisdomtree Investments Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-03-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEX", + "name": "WEX Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WEYS", + "name": "Weyco Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WF", + "name": "Woori Financial Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFC", + "name": "Wells Fargo & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-06-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFC-P-A", + "name": "Wells Fargo & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFC-P-C", + "name": "Wells Fargo & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFC-P-D", + "name": "Wells Fargo & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFC-P-L", + "name": "Wells Fargo & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFC-P-Q", + "name": "Wells Fargo & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFC-P-R", + "name": "Wells Fargo & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFC-P-Y", + "name": "Wells Fargo & Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFC-P-Z", + "name": "", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-01-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFCF", + "name": "Where Food Comes From Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-02-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFE-P-A", + "name": "Wells Fargo Company Cumulative Perpetual Preferred Stock Series A Liquidation Preference 25 per share", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-12-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFG", + "name": "West Fraser Timber Co. Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFH", + "name": "Direxion Work From Home ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFHY", + "name": "WisdomTree U.S. High Yield Corporate Bond Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFIG", + "name": "WISDOMTREE U.S. CORPORATE BOND FUND N/A", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WFRD", + "name": "Weatherford International plc - New", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WGLD", + "name": "Wilshire wShares Enhanced Gold ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-02-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WGMI", + "name": "Valkyrie Bitcoin Miners ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2022-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WGO", + "name": "Winnebago Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-11-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WGRO", + "name": "WISDOMTREE US GROWTH & MOMENTUM FUND NA", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WH", + "name": "Wyndham Hotels & Resorts Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-05-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WHD", + "name": "Cactus Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WHF", + "name": "WhiteHorse Finance Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-12-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WHG", + "name": "Westwood Holdings Group Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2002-06-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WHLM", + "name": "Wilhelmina International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WHLR", + "name": "Wheeler Real Estate Investment Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WHLRD", + "name": "Wheeler Real Estate Investment Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WHLRL", + "name": "Wheeler Real Estate Investment Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WHLRP", + "name": "Wheeler Real Estate Investment Trust Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WHR", + "name": "Whirlpool Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1983-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WIA", + "name": "Western Asset Inflation-Linked Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2003-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WIL", + "name": "Barclays Women in Leadership ETN", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2014-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WILC", + "name": "G. Willi-Food International Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1997-05-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WIMI", + "name": "Wimi Hologram Cloud Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WINA", + "name": "Winmark Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WINC", + "name": "Western Asset Short Duration Income ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WING", + "name": "Wingstop Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WINN", + "name": "Harbor Long-Term Growers ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WINT", + "name": "Windtree Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WINV", + "name": "WinVest Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WINVR", + "name": "WinVest Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WINVU", + "name": "WinVest Acquisition Corp - Units (1 1 Rights & 1 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WINVW", + "name": "WinVest Acquisition Corp - Warrants (09/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WIP", + "name": "SPDR Citi International Government Inflation-Protected Bond ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-03-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WIRE", + "name": "Encore Wire Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1992-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WISA", + "name": "WiSA Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WISH", + "name": "ContextLogic Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WIT", + "name": "Wipro Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2000-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WIW", + "name": "Western AssetClaymore InfLkd Opp Income Fund", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2004-02-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WIX", + "name": "Wix.com Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-11-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WIZ", + "name": "Alpha Architect Merlyn.AI Bull-Rider Bear-Fighter ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2019-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WK", + "name": "Workiva Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WKEY", + "name": "WISeKey International Holding Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-01-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WKHS", + "name": "Workhorse Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WKLY", + "name": "SoFi Weekly Dividend ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WKME", + "name": "WalkMe Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WKSP", + "name": "Worksport Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-07-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WKSPW", + "name": "Worksport Ltd - Warrants (01/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WLDN", + "name": "Willdan Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WLDR", + "name": "Affinity World Leaders Equity ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2018-01-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WLFC", + "name": "Willis Lease Finance Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WLK", + "name": "Westlake Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2004-08-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WLKP", + "name": "Westlake Chemical Partners LP", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WLL", + "name": "Whiting Petroleum Corp (New)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WLMS", + "name": "Williams Industrial Services Group Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WLTG", + "name": "WealthTrust DBS Long Term Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WLTH", + "name": "LifeGoal Wealth Builder ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-09-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WM", + "name": "Waste Management Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WMB", + "name": "Williams Cos Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1981-12-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WMC", + "name": "Western Asset Mortgage Capital Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-05-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WMG", + "name": "Warner Music Group Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WMK", + "name": "Weis Markets Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WMPN", + "name": "William Penn Bancorporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WMS", + "name": "Advanced Drainage Systems Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WMT", + "name": "Walmart Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1972-08-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WNC", + "name": "Wabash National Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-11-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WNDY", + "name": "GLOBAL X WIND ENERGY ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WNEB", + "name": "Western New England Bancorp Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-05-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WNNR", + "name": "Andretti Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WNNR-U", + "name": "Andretti Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WNNR-WS", + "name": "Andretti Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-03-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WNS", + "name": "WNS Holdings Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-07-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WNW", + "name": "Meiwu Technology Company Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WOLF", + "name": "Wolfspeed Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-02-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WOMN", + "name": "Impact Shares YWCA Womens Empowerment ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-08-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WOOD", + "name": "iShares Global Timber & Forestry ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2008-06-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WOOF", + "name": "Petco Health and Wellness Co Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WOR", + "name": "Worthington Industries Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WORX", + "name": "SCWorx Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WOW", + "name": "WideOpenWest Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-05-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPC", + "name": "W. P. Carey Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1998-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPCA", + "name": "Warburg Pincus Capital Corp I A - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPCA-U", + "name": "Warburg Pincus Capital Corp I A - Units (1 Ord Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPCA-WS", + "name": "Warburg Pincus Capital Corp I A - Warrants (01/01/9999)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPCB", + "name": "Warburg Pincus Capital Corp I B - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPCB-U", + "name": "Warburg Pincus Capital Corp I B - Units (1 Ord Class A & 1/5 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPCB-WS", + "name": "Warburg Pincus Capital Corporation IB Warrants each whole warrant exercisable for one Class A ordinary share at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPM", + "name": "Wheaton Precious Metals Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPP", + "name": "WPP Plc.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPRT", + "name": "Westport Fuel Systems Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2008-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WPS", + "name": "ISHARES INTERNATIONAL DEVELOPED PROPERTY ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2007-08-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WQGA", + "name": "World Quantum Growth Acquisition Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WQGA-U", + "name": "World Quantum Growth Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-08-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WQGA-WS", + "name": "World Quantum Growth Acquisition Corp - Warrants (04/08/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRAC", + "name": "Williams Rowland Acquisition Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRAC-U", + "name": "Williams Rowland Acquisition Corp - Units (1 Ord & 1/2 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRAC-WS", + "name": "Williams Rowland Acquisition Corp - Warrants (11/12/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRAP", + "name": "Wrap Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRB", + "name": "W.R. Berkley Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-09-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRB-P-E", + "name": "W.R. Berkley Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRB-P-F", + "name": "W.R. Berkley Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRB-P-G", + "name": "W.R. Berkley Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRB-P-H", + "name": "W.R. Berkley Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-02-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRBY", + "name": "Warby Parker Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRE", + "name": "Washington Real Estate Investment Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRK", + "name": "WestRock Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRLD", + "name": "World Acceptance Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRLSR", + "name": "Pensare Acquisition Corp Right", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRLSU", + "name": "Pensare Acquisition Corp Unit", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-07-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRN", + "name": "Western Copper & Gold Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WRND", + "name": "IQ Global Equity R&D Leaders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSBC", + "name": "Wesbanco Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSBCP", + "name": "Wesbanco Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSBF", + "name": "Waterstone Financial Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSC", + "name": "WillScot Mobile Mini Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSFS", + "name": "WSFS Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSM", + "name": "Williams-Sonoma Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSO", + "name": "Watsco Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-06-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSO-B", + "name": "Watsco Inc - Class B", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1992-03-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSR", + "name": "Whitestone REIT", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2010-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WST", + "name": "West Pharmaceutical Services Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1988-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WSTG", + "name": "Wayside Technology Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1995-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTAI", + "name": "WisdomTree Artificial Intelligence and Innovation Fund", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTBA", + "name": "West Bancorporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTER", + "name": "Alkaline Water Company Inc (The)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTFC", + "name": "Wintrust Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1998-04-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTFCM", + "name": "Wintrust Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTFCP", + "name": "", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTI", + "name": "W & T Offshore Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2005-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTID", + "name": "UBS ETRACS ProShares Daily 3x Inverse Crude ETN", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTM", + "name": "White Mountains Insurance Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-05-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTMA", + "name": "Welsbach Technology Metals Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTMAR", + "name": "Welsbach Technology Metals Acquisition Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTMAU", + "name": "Welsbach Technology Metals Acquisition Corp - Units (1 Ord & 1 Right)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTMF", + "name": "WisdomTree Managed Futures Strategy Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTRG", + "name": "Essential Utilities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1987-12-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTRH", + "name": "Waitr Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTRU", + "name": "Essential Utilities Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTS", + "name": "Watts Water Technologies Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1986-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTT", + "name": "Wireless Telecom Group Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1993-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTTR", + "name": "Select Energy Services Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTV", + "name": "WisdomTree U.S. Value Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2017-12-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WTW", + "name": "Willis Towers Watson Public Ltd Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WU", + "name": "Western Union Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2006-10-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WUGI", + "name": "Esoterica NextG Economy ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-03-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WULF", + "name": "TeraWulf Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WVE", + "name": "Wave Life Sciences Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-11-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WVFC", + "name": "WVS Financial Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1993-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WVVI", + "name": "Willamette Valley Vineyard Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-09-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WVVIP", + "name": "Willamette Valley Vineyard Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WW", + "name": "WW International Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-11-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WWAC", + "name": "Worldwide Webb Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WWACU", + "name": "Worldwide Webb Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WWACW", + "name": "Worldwide Webb Acquisition Corp - Warrants (20/10/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WWD", + "name": "Woodward Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1996-05-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WWE", + "name": "World Wrestling Entertainment Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1999-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WWJD", + "name": "Inspire International ESG ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WWOW", + "name": "DIREXION WORLD WITHOUT WASTE ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-12-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WWR", + "name": "Westwater Resources Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2017-08-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WWW", + "name": "Wolverine World Wide Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1984-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WY", + "name": "Weyerhaeuser Company", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1973-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WYNN", + "name": "Wynn Resorts Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2002-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "WYY", + "name": "Widepoint Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "1998-05-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "X", + "name": "United States Steel Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1991-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XAIR", + "name": "Beyond Air Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XAR", + "name": "SPDR S&P Aerospace & Defense ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBAP", + "name": "Innovator U.S. Equity Accelerated 9 Buffer ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBI", + "name": "SPDR Biotech ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBIO", + "name": "Xenetic Biosciences Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBIOW", + "name": "Xenetic Biosciences Inc Warrants 19072024", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBIT", + "name": "XBiotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBITV", + "name": "XBiotech Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBJA", + "name": "Innovator U.S. Equity Accelerated 9 Buffer ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBJL", + "name": "Innovator U.S. Equity Accelerated 9 Buffer ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBOC", + "name": "Innovator U.S. Equity Accelerated 9 Buffer ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XBTF", + "name": "VanEck Bitcoin Strategy ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XCEM", + "name": "Columbia EM Core ex-China ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-09-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XCLR", + "name": "GLOBAL X S&P 500 COLLAR 95-110 ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-03-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XCUR", + "name": "Exicure Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-05-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XDAP", + "name": "Innovator U.S. Equity Accelerated ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XDAT", + "name": "Franklin Exponential Data ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XDEC", + "name": "FT Cboe Vest U.S. Equity Enhance & Moderate Buffer ETF - December", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XDJA", + "name": "Innovator U.S. Equity Accelerated ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XDJL", + "name": "Innovator U.S. Equity Accelerated ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XDNA", + "name": "Kelly CRISPR & Gene Editing Technology ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2022-01-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XDOC", + "name": "Innovator U.S. Equity Accelerated ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XDQQ", + "name": "Innovator Growth Accelerated ETF - Quarterly", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XDSQ", + "name": "Innovator U.S. Equity Accelerated ETF - Quarterly", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XEL", + "name": "Xcel Energy Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1985-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XELA", + "name": "Exela Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-03-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XELAP", + "name": "Exela Technologies Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XELB", + "name": "Xcel Brands Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2001-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XENE", + "name": "Xenon Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-11-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XENT", + "name": "Intersect ENT Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-07-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XERS", + "name": "Xeris Biopharma Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XES", + "name": "SPDR Oil & Gas Equipment and Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XFIN", + "name": "ExcelFin Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XFINU", + "name": "ExcelFin Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XFINW", + "name": "ExcelFin Acquisition Corp - Warrants (25/10/2028)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XFLT", + "name": "XAI Octagon Floating Rate & Alternative Income Term Trust", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "2017-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XFLT-P-A", + "name": "XAI Octagon Floating Rate & Alternative Income Term Trust", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XFOR", + "name": "X4 Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XGN", + "name": "Exagen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHB", + "name": "SPDR Homebuilders ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHE", + "name": "SPDR S&P Health Care Equipment ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHR", + "name": "Xenia Hotels & Resorts Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-02-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHS", + "name": "SPDR S&P Health Care Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHYC", + "name": "BondBloxx USD High Yield Bond Consumer Cyclicals Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHYD", + "name": "BondBloxx USD High Yield Bond Consumer Non-Cyclicals Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHYE", + "name": "BondBloxx USD High Yield Bond Energy Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHYF", + "name": "BondBloxx USD High Yield Bond Financial & REIT Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHYH", + "name": "BondBloxx USD High Yield Bond Healthcare Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHYI", + "name": "BondBloxx USD High Yield Bond Industrial Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XHYT", + "name": "BondBloxx USD High Yield Bond Telecom Media & Technology Sector ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2022-02-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XIN", + "name": "Xinyuan Real Estate Co. Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2007-12-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XITK", + "name": "SPDR FactSet Innovative Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-01-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XJH", + "name": "iShares ESG Screened S&P Mid-Cap ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XJR", + "name": "ISHARES ESG SCREENED S&P SMALL-CAP ETF ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XJUN", + "name": "FT CBOE VEST U.S. EQUITY ENHANCE & MODERATE BUFFER ETF - JUNE ", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XL", + "name": "XL Fleet Corporation - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2019-09-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XL-WS", + "name": "XL Fleet Corp Wt Exp 06012025", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLB", + "name": "Materials Select Sector SPDR", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLC", + "name": "Communication Services Select Sector SPDR Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2018-06-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLE", + "name": "The Energy Select Sector SPDR Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLF", + "name": "Financial Select Sector SPDR", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLG", + "name": "Invesco S&P 500 Top 50 ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-05-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLI", + "name": "Industrial Select Sector SPDR", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLK", + "name": "Technology Select Sector SPDR ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLO", + "name": "Xilio Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLP", + "name": "Consumer Staples Select Sector SPDR", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLRE", + "name": "Real Estate Select Sector SPDR Fund (The)", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-10-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLSR", + "name": "SPDR SSGA U.S. Sector Rotation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLU", + "name": "Utilities Select Sector SPDR ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLV", + "name": "Health Care Select Sector SPDR", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XLY", + "name": "Consumer Discretionary Select Sector SPDR", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "1998-12-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XM", + "name": "Qualtrics International Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XME", + "name": "SPDR Metals & Mining ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XMHQ", + "name": "Invesco S&P MidCap Quality ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XMLV", + "name": "Invesco S&P MidCap Low Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XMMO", + "name": "Invesco S&P MidCap Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XMPT", + "name": "VanEck CEF Muni Income ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2011-07-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XMTR", + "name": "Xometry Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XMVM", + "name": "Invesco S&P MidCap Value with Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XNCR", + "name": "Xencor Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XNET", + "name": "Xunlei Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XNTK", + "name": "SPDR NYSE Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2001-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XOM", + "name": "Exxon Mobil Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1970-01-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XOMA", + "name": "XOMA Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1989-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XOMAO", + "name": "XOMA Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XOMAP", + "name": "XOMA Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XOP", + "name": "SPDR Oil & Gas Exploration and Production ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XOS", + "name": "Xos Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XOSWW", + "name": "Xos Inc - Warrants (20/08/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XOUT", + "name": "GraniteShares XOUT U.S. Large Cap ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XP", + "name": "XP Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPAX", + "name": "XPAC Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPAXU", + "name": "XPAC Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPAXW", + "name": "XPAC Acquisition Corp - Warrants (01/01/9999)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPDB", + "name": "Power & Digital Infrastructure Acquisition II Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPDBU", + "name": "Power & Digital Infrastructure Acquisition II Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPDBW", + "name": "Power & Digital Infrastructure Acquisition II Corp - Warrants (09/12/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPEL", + "name": "XPEL Inc - Reg S", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2007-07-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPER", + "name": "Xperi Holding Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2003-11-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPEV", + "name": "XPeng Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-08-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPH", + "name": "SPDR Pharmaceuticals ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPL", + "name": "Solitario Zinc Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2006-09-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPND", + "name": "First Trust Expanded Technology ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-06-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPO", + "name": "XPO Logistics Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2003-10-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPO-W", + "name": "XPO Logistics Inc ExDistribution Whenissued", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPOA", + "name": "DPCM Capital Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPOA-U", + "name": "DPCM Capital Inc - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPOA-WS", + "name": "DPCM Capital Inc Warrants each whole warrant exercisable for one share of Class A Common Stock at an exercise price of 11.50", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-12-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPOF", + "name": "Xponential Fitness Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPP", + "name": "ProShares Ultra FTSE China 50", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPRO", + "name": "Expro Group Holdings N.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XPVVV", + "name": "XP Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XRAY", + "name": "DENTSPLY Sirona Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-04-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XRLV", + "name": "Invesco S&P 500 ex-Rate Sensitive Low Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-04-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XRMI", + "name": "Global X S&P 500 Risk Managed Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XRT", + "name": "SPDR Retail ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XRTX", + "name": "XORTX Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-11-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XRX", + "name": "Xerox Holdings Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1977-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XSD", + "name": "SPDR Semiconductors ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2006-02-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XSHD", + "name": "Invesco S&P SmallCap High Dividend Low Volatility ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2016-12-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XSHQ", + "name": "Invesco S&P SmallCap Quality ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2017-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XSLV", + "name": "Invesco S&P SmallCap Low Volatility ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-02-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XSMO", + "name": "Invesco S&P SmallCap Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XSOE", + "name": "WisdomTree Emerging Markets ex-State-Owned Enterprises Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2014-12-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XSPA", + "name": "XpresSpa Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-01-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XSVM", + "name": "Invesco S&P SmallCap Value with Momentum ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2005-03-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XSW", + "name": "SPDR S&P Software & Services ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-09-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XT", + "name": "iShares Exponential Technologies ETF", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XTAP", + "name": "Innovator U.S. Equity Accelerated Plus ETF - April", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-04-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XTJA", + "name": "Innovator U.S. Equity Accelerated Plus ETF - January", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2022-01-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XTJL", + "name": "Innovator U.S. Equity Accelerated Plus ETF - July", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-07-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XTL", + "name": "SPDR S&P Telecom ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XTLB", + "name": "X.T.L. Biopharmaceuticals Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XTN", + "name": "SPDR S&P Transportation ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2011-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XTNT", + "name": "Xtant Medical Holdings Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2015-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XTOC", + "name": "Innovator U.S. Equity Accelerated Plus ETF - October", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XTR", + "name": "GLOBAL X S&P 500 TAIL RISK ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XVOL", + "name": "Acruence Active Hedge U.S. Equity ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XVV", + "name": "iShares ESG Screened S&P 500 ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XWEB", + "name": "SPDR S&P Internet ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2016-06-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XXII", + "name": "22nd Century Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-01-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XYF", + "name": "X Financial", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XYL", + "name": "Xylem Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2011-10-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XYLD", + "name": "Global X S&P 500 Covered Call ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2013-06-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "XYLG", + "name": "Global X S&P 500 Covered Call & Growth ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2020-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "Y", + "name": "Alleghany Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1980-03-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YALA", + "name": "Yalla Group Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-09-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YANG", + "name": "Direxion Daily FTSE China Bear 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YCBD", + "name": "cbdMD Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-04-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YCBD-P-A", + "name": "cbdMD Inc", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2019-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YCL", + "name": "ProShares Ultra Yen ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-12-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YCS", + "name": "ProShares UltraShort Yen", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-11-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YDEC", + "name": "FT Cboe Vest International Equity Buffer ETF - December", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2020-12-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YELL", + "name": "Yellow Corporation", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1986-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YELP", + "name": "Yelp Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-03-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YETI", + "name": "YETI Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-10-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YEXT", + "name": "Yext Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-13", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YGMZ", + "name": "MingZhu Logistics Holdings Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-10-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YI", + "name": "111 Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YINN", + "name": "Direxion Daily FTSE China Bull 3X Shares", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YJ", + "name": "Yunji Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YJUN", + "name": "FT Cboe Vest International Equity Buffer ETF - June", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-06-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YLD", + "name": "Principal Active High Yield ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2015-07-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YLDE", + "name": "CLEARBRIDGE DIVIDEND STRATEGY ESG ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2017-05-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YMAB", + "name": "Y-Mabs Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-09-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YMAR", + "name": "FT Cboe Vest International Equity Buffer ETF - March", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-03-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YMM", + "name": "Full Truck Alliance Co Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YMTX", + "name": "Yumanity Therapeutics Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-02-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YNDX", + "name": "Yandex NV - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-05-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YOLO", + "name": "AdvisorShares Pure Cannabis ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YORW", + "name": "York Water Company", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-05-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YOU", + "name": "Clear Secure Inc Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YPF", + "name": "YPF", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1993-06-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YPS", + "name": "Arrow Reverse Cap 500 ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-05-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YQ", + "name": "17 Education & Technology Group Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-12-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YRD", + "name": "Yiren Digital Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2015-12-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YSAC-U", + "name": "Yellowstone Acquisition Company Units", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2022-01-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YSEP", + "name": "FT Cboe Vest International Equity Buffer ETF - September", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YSG", + "name": "Yatsen Holding Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YTEN", + "name": "Yield10 Bioscience Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-11-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YTPG", + "name": "TPG Pace Beneficial II Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-04-14", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YTRA", + "name": "Yatra Online Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-12-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YUM", + "name": "Yum Brands Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-09-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YUMC", + "name": "Yum China Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YUMY", + "name": "VANECK FUTURE OF FOOD ETF ", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-12-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YVR", + "name": "Liquid Media Group Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-08-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YXI", + "name": "ProShares Short FTSE China 50", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2010-03-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YY", + "name": "JOYY Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-11-21", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "YYY", + "name": "Amplify High Income ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2012-06-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "Z", + "name": "Zillow Group Inc - Class C", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZAZZT", + "name": "ZAZZT", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZBH", + "name": "Zimmer Biomet Holdings Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2001-07-25", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZBIO", + "name": "PROSHARES ULTRAPRO SHORT NASDAQ BIOTECHNOLOGY ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2015-06-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZBRA", + "name": "Zebra Technologies Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1991-08-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZBZX", + "name": "Bats Listed Test", + "exchange": "BATS", + "assetType": "Stock", + "ipoDate": "2011-10-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZBZZT", + "name": "ZBZZT", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-31", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZCMD", + "name": "Zhongchao Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-02-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZCZZT", + "name": "Super Montage IPO X Tst Security SM IPO X 3", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-08-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZD", + "name": "Ziff Davis Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1999-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZDGE", + "name": "Zedge Inc - Class B", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZDVSV", + "name": "j2 Global Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-10-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZEAL", + "name": "Zealand Pharma A/S.", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-08-09", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZECP", + "name": "Zacks Earnings Consistent Portfolio ETF", + "exchange": "BATS", + "assetType": "ETF", + "ipoDate": "2021-08-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZEN", + "name": "Zendesk Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2014-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZENV", + "name": "Zenvia Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZEPP", + "name": "Zepp Health Corporation", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-02-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZEST", + "name": "Ecoark Holdings Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-11-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZETA", + "name": "Zeta Global Holdings Corp - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZEUS", + "name": "Olympic Steel Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1994-03-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZEV", + "name": "Lightning eMotors Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2020-07-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZEV-WS", + "name": "Lightning eMotors Inc Wt Exp 05182025", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZG", + "name": "Zillow Group Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-07-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZGEN", + "name": "THE GEN Z ETF ", + "exchange": "NASDAQ", + "assetType": "ETF", + "ipoDate": "2021-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZGN", + "name": "Ermenegildo Zegna N.V.", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZGN-WS", + "name": "Ermenegildo Zegna N.V. - Warrants (17/12/2026)", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-12-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZH", + "name": "Zhihu Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZHDG", + "name": "ZEGA Buy and Hedge ETF", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2021-07-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZI", + "name": "ZoomInfo Technologies Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-06-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIG", + "name": "The Acquirers Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2019-05-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIM", + "name": "Zim Integrated Shipping Services Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-01-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIMV", + "name": "ZimVie Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-03-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIMVV", + "name": "ZimVie Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-02-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZING", + "name": "FTAC Zeus Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-12", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZINGU", + "name": "FTAC Zeus Acquisition Corp - Units (1 Ord Share Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-11-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZINGW", + "name": "FTAC Zeus Acquisition Corp - Warrants (15/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2022-01-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZION", + "name": "Zions Bancorporation N.A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "1990-03-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIONL", + "name": "Zions Bancorporation NA 695 FixedtoFloating Rate Subordinated Notes due September 15 2028", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2013-09-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIONN", + "name": "Zions Bancorporation N.A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIONO", + "name": "Zions Bancorporation N.A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIONP", + "name": "Zions Bancorporation N.A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIP", + "name": "ZipRecruiter Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-05-26", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIVO", + "name": "Zivo Bioscience Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZIVOW", + "name": "Zivo Bioscience Inc - Warrants (29/04/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-05-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZJZZT", + "name": "NASDAQ TEST STOCK", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2014-09-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZKIN", + "name": "ZK International Group Co Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZLAB", + "name": "Zai Lab Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-20", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZM", + "name": "Zoom Video Communications Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2019-04-18", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZME", + "name": "Zhangmen Education Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-06-08", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZNGA", + "name": "Zynga Inc - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2011-12-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZNH", + "name": "China Southern Airlines Company Ltd", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "1997-07-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZNTE", + "name": "Zanite Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZNTEU", + "name": "Zanite Acquisition Corp - Units (1 Ord Class A & 1/2 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-11-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZNTEW", + "name": "Zanite Acquisition Corp - Warrants(08/10/2025)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-07", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZNTL", + "name": "Zentalis Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2020-04-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZOM", + "name": "Zomedica Corp", + "exchange": "NYSE MKT", + "assetType": "Stock", + "ipoDate": "2016-07-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZROZ", + "name": "PIMCO 25+ Year Zero Coupon U.S. Treasury Index Exchange-Traded Fund", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2009-11-04", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZS", + "name": "Zscaler Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2018-03-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZSAN", + "name": "Zosano Pharma Corp", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-01-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZSL", + "name": "ProShares UltraShort Silver", + "exchange": "NYSE ARCA", + "assetType": "ETF", + "ipoDate": "2008-12-03", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZT", + "name": "Zimmer Energy Transition Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZTAQU", + "name": "Zimmer Energy Transition Acquisition Corp - Units (1 Ord Share Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-06-16", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZTAQW", + "name": "Zimmer Energy Transition Acquisition Corp - Warrants (16/06/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-08-17", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZTEK", + "name": "Zentek Ltd", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-04-02", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZTEST", + "name": "", + "exchange": "BATS", + "assetType": "Stock", + "ipoDate": "2011-10-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZTO", + "name": "ZTO Express (Cayman) Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2016-10-27", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZTR", + "name": "Virtus Total Return Fund Inc", + "exchange": "NYSE", + "assetType": "ETF", + "ipoDate": "1989-06-30", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZTS", + "name": "Zoetis Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2013-02-01", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZTST", + "name": "", + "exchange": "BATS", + "assetType": "Stock", + "ipoDate": "2015-10-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZUMZ", + "name": "Zumiez Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2005-05-06", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZUO", + "name": "Zuora Inc - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2018-04-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZVIA", + "name": "Zevia PBC - Class A", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2021-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZVO", + "name": "Zovio Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2009-04-15", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZVV", + "name": "LISTED TEST SYMBOL", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2017-10-11", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZVZZC", + "name": "ZVZZC", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZVZZT", + "name": "NASDAQ TEST STOCK", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZWRK", + "name": "Z-Work Acquisition Corp - Class A", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZWRKU", + "name": "Z-Work Acquisition Corp - Units (1 Ord Class A & 1/3 War)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-01-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZWRKW", + "name": "Z-Work Acquisition Corp - Warrants (29/01/2026)", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-03-24", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZWS", + "name": "Zurn Water Solutions Corp", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2012-03-29", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZWZZT", + "name": "NASDAQ TEST STOCK", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2017-09-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZXYZ-A", + "name": "NASDAQ SYMBOLOGY TEST", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2016-01-19", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZXZZT", + "name": "NASDAQ TEST STOCK", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2006-07-10", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZY", + "name": "Zymergen Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2021-04-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZYME", + "name": "Zymeworks Inc", + "exchange": "NYSE", + "assetType": "Stock", + "ipoDate": "2017-04-28", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZYNE", + "name": "Zynerba Pharmaceuticals Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2015-08-05", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZYXI", + "name": "Zynex Inc", + "exchange": "NASDAQ", + "assetType": "Stock", + "ipoDate": "2012-07-23", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZZK", + "name": "", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2020-07-22", + "delistingDate": "null", + "status": "Active" + }, + { + "symbol": "ZZZ", + "name": "TEST TICKER FOR UTP", + "exchange": "NYSE ARCA", + "assetType": "Stock", + "ipoDate": "2014-10-31", + "delistingDate": "null", + "status": "Active" } ] \ No newline at end of file diff --git a/Backend/data/symbols.txt b/Backend/data/symbols.txt new file mode 100644 index 00000000..3f8f67c7 --- /dev/null +++ b/Backend/data/symbols.txt @@ -0,0 +1,3 @@ +IBM +ABC +ABT \ No newline at end of file diff --git a/Backend/module/safeNewSymbol.js b/Backend/module/safeNewSymbol.js new file mode 100644 index 00000000..84ac67a2 --- /dev/null +++ b/Backend/module/safeNewSymbol.js @@ -0,0 +1,12 @@ +const fs = require('fs'); + +const saveSymbol = (symbol) => { + console.log("A new symbol will be saved"); + const path = 'data/symbols.txt'; + + + fs.writeFile(path, "\n" + symbol, { flag: 'a+' }, err => {}) + console.log("A new symbol is saved"); +} + +module.exports = {saveSymbol}; \ No newline at end of file diff --git a/Backend/module/updateDataFromAPI.js b/Backend/module/updateDataFromAPI.js new file mode 100644 index 00000000..c801757e --- /dev/null +++ b/Backend/module/updateDataFromAPI.js @@ -0,0 +1,86 @@ +const axios = require('axios'); +const csvToJson = require('convert-csv-to-json'); +const fs = require('fs'); +let url; + + +//TODO überprüfen ob symbol überhaupt existiert + +const updateListOfQuotedUSshares = (apiKey) => { + console.log("update list of quoted US shares"); + url = `https://www.alphavantage.co/query?function=LISTING_STATUS&apikey=${apiKey}` + axios.get(url) + .then(res => res.data) + .then(data => { + fs.writeFileSync('data/quotedUSshares.csv',data); + csvToJson.fieldDelimiter(',').generateJsonFileFromCsv('data/quotedUSshares.csv','data/quotedUSshares.json'); + }) + .catch(error => {console.error(error)}); +} + + +const updateIntradaySeriesShare = async (symbol, interval = 30, apiKey) => { + console.log("update Intraday Series from " + symbol); + + url = `https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=${symbol}&interval=${interval}min&apikey=${apiKey}`; + let path = 'data/intraday_' + symbol + '.json'; + + const res = await axios.get(url) + .then(res => res.data ) + .then(data => { + fs.writeFileSync(path, JSON.stringify(data)); + }) + .catch(error => console.error(error)) +} + +const updateDailySeriesShare = async (symbol, apiKey) => { + console.log("update Daily Series from " + symbol); + + url = `https://www.alphavantage.co/query?function=TIME_SERIES_DAILY&symbol=${symbol}&apikey=${apiKey}`; + let path = 'data/daily_' + symbol + '.json'; + + const res = await axios.get(url) + .then(res => res.data ) + .then(data => { + fs.writeFileSync(path, JSON.stringify(data)); + }) + .catch(error => console.error(error) + ) + console.log("FINISH update Daily Series from " + symbol); + +} + +const updateWeeklySeriesShare = async (symbol, apiKey) => { + console.log("update Weekly Series from " + symbol); + + url = `https://www.alphavantage.co/query?function=TIME_SERIES_WEEKLY&symbol=${symbol}&apikey=${apiKey}`; + let path = 'data/weekly_' + symbol + '.json'; + + const res = await axios.get(url) + .then(res => res.data ) + .then(data => { + fs.writeFileSync(path, JSON.stringify(data)); + }) + .catch(error => console.error(error)) +} + +const updateMonthlySeriesShare = async (symbol, apiKey) => { + console.log("update Monthly Series from " + symbol); + + url = `https://www.alphavantage.co/query?function=TIME_SERIES_MONTHLY&symbol=${symbol}&apikey=${apiKey}`; + let path = 'data/monthly_' + symbol + '.json'; + + const res = await axios.get(url) + .then(res => res.data ) + .then(data => { + fs.writeFileSync(path, JSON.stringify(data)); + }) + .catch(error => console.error(error)) +} + +module.exports = { + updateDailySeriesShare, + updateIntradaySeriesShare, + updateListOfQuotedUSshares, + updateMonthlySeriesShare, + updateWeeklySeriesShare}; \ No newline at end of file diff --git a/Backend/package-lock.json b/Backend/package-lock.json index 4c97c783..b0fa31fe 100644 --- a/Backend/package-lock.json +++ b/Backend/package-lock.json @@ -13,6 +13,7 @@ "body-parser": "^1.19.2", "convert-csv-to-json": "^1.3.3", "express": "^4.17.3", + "linebyline": "^1.3.0", "node-schedule": "^2.1.0", "request": "^2.88.2" }, @@ -1303,6 +1304,11 @@ "node": ">=8" } }, + "node_modules/linebyline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/linebyline/-/linebyline-1.3.0.tgz", + "integrity": "sha1-bvVM6rgy0j94Qe0vKW/psvba3pQ=" + }, "node_modules/long-timeout": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/long-timeout/-/long-timeout-0.1.1.tgz", @@ -3304,6 +3310,11 @@ "package-json": "^6.3.0" } }, + "linebyline": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/linebyline/-/linebyline-1.3.0.tgz", + "integrity": "sha1-bvVM6rgy0j94Qe0vKW/psvba3pQ=" + }, "long-timeout": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/long-timeout/-/long-timeout-0.1.1.tgz", diff --git a/Backend/package.json b/Backend/package.json index e7ae857e..f77a8541 100644 --- a/Backend/package.json +++ b/Backend/package.json @@ -14,6 +14,7 @@ "body-parser": "^1.19.2", "convert-csv-to-json": "^1.3.3", "express": "^4.17.3", + "linebyline": "^1.3.0", "node-schedule": "^2.1.0", "request": "^2.88.2" }, diff --git a/Backend/routes/daily.js b/Backend/routes/daily.js index 98cd4b09..56f5f7e6 100644 --- a/Backend/routes/daily.js +++ b/Backend/routes/daily.js @@ -1,16 +1,41 @@ +const updateDataFromAPI = require('./../module/updateDataFromAPI'); +const safeNewSymbol = require('./../module/safeNewSymbol'); + + const userRoutes = (app, fs) => { - app.get('/daily', (req, res) => { + app.get('/daily', (req, res, apiKey) => { if(req.query.symbol){ const symbol = req.query.symbol; const dataPath = './data/daily_' + symbol + '.json'; + - fs.readFile(dataPath, 'utf8', (err, data) => { + fs.access(dataPath, fs.F_OK, (err) => { if (err) { - throw err; + updateDataFromAPI.updateDailySeriesShare(symbol, apiKey).then(() => { + safeNewSymbol.saveSymbol(symbol); + fs.readFile(dataPath, 'utf8', (err, data) => { + if (err) { + throw err; + } + + res.send(JSON.parse(data)); + }); + }); + + return; + }else{ + console.log("File exists"); } - res.send(JSON.parse(data)); - }); + + fs.readFile(dataPath, 'utf8', (err, data) => { + if (err) { + throw err; + } + + res.send(JSON.parse(data)); + }); + }); }else { res.send("NO Symbol"); diff --git a/Backend/routes/intraday.js b/Backend/routes/intraday.js index 27b507b0..de3a92f2 100644 --- a/Backend/routes/intraday.js +++ b/Backend/routes/intraday.js @@ -1,17 +1,40 @@ +const updateDataFromAPI = require('./../module/updateDataFromAPI'); +const safeNewSymbol = require('./../module/safeNewSymbol'); + + const userRoutes = (app, fs) => { - app.get('/intraday', (req, res) => { + app.get('/intraday', (req, res, apiKey) => { if(req.query.symbol){ const symbol = req.query.symbol; const dataPath = './data/intraday_' + symbol + '.json'; - fs.readFile(dataPath, 'utf8', (err, data) => { + fs.access(dataPath, fs.F_OK, (err) => { if (err) { - throw err; + updateDataFromAPI.updateIntradaySeriesShare(symbol,30, apiKey).then(() => { + safeNewSymbol.saveSymbol(symbol); + fs.readFile(dataPath, 'utf8', (err, data) => { + if (err) { + throw err; + } + + res.send(JSON.parse(data)); + }); + }); + + return; + }else{ + console.log("File exists"); } - - res.send(JSON.parse(data)); - }); + + fs.readFile(dataPath, 'utf8', (err, data) => { + if (err) { + throw err; + } + + res.send(JSON.parse(data)); + }); + }); }else { res.send("NO Symbol"); diff --git a/Backend/routes/monthly.js b/Backend/routes/monthly.js index c61b8ad2..d567b1d9 100644 --- a/Backend/routes/monthly.js +++ b/Backend/routes/monthly.js @@ -1,15 +1,40 @@ +const updateDataFromAPI = require('./../module/updateDataFromAPI'); +const safeNewSymbol = require('./../module/safeNewSymbol'); + + const userRoutes = (app, fs) => { - app.get('/monthly', (req, res) => { + app.get('/monthly', (req, res, apiKey) => { if(req.query.symbol){ const symbol = req.query.symbol; const dataPath = './data/monthly_' + symbol + '.json'; - fs.readFile(dataPath, 'utf8', (err, data) => { + + fs.access(dataPath, fs.F_OK, (err) => { if (err) { - throw err; + updateDataFromAPI.updateMonthlySeriesShare(symbol,apiKey).then(() => { + safeNewSymbol.saveSymbol(symbol); + fs.readFile(dataPath, 'utf8', (err, data) => { + if (err) { + throw err; + } + + res.send(JSON.parse(data)); + }); + }); + + return; + }else{ + console.log("File exists"); } - res.send(JSON.parse(data)); - }); + + fs.readFile(dataPath, 'utf8', (err, data) => { + if (err) { + throw err; + } + + res.send(JSON.parse(data)); + }); + }); }else { res.send("NO Symbol"); diff --git a/Backend/routes/routes.js b/Backend/routes/routes.js index d890e95b..702cdd82 100644 --- a/Backend/routes/routes.js +++ b/Backend/routes/routes.js @@ -5,15 +5,15 @@ const monthlyroute = require('./monthly'); const weeklyroute = require('./weekly'); const quotedUSshares = require('./quotedUSshares'); -const appRouter = (app, fs) => { +const appRouter = (app, fs, apiKey) => { app.get('/', (req, res) => { res.send('welcome to the api-server'); }); - dailyroute(app, fs); - intradayroute(app, fs); - monthlyroute(app, fs); - weeklyroute(app, fs); - quotedUSshares(app,fs); + dailyroute(app, fs, apiKey); + intradayroute(app, fs, apiKey); + monthlyroute(app, fs, apiKey); + weeklyroute(app, fs, apiKey); + quotedUSshares(app,fs, apiKey); }; diff --git a/Backend/routes/weekly.js b/Backend/routes/weekly.js index c10d0bff..416bffaa 100644 --- a/Backend/routes/weekly.js +++ b/Backend/routes/weekly.js @@ -1,15 +1,40 @@ +const updateDataFromAPI = require('./../module/updateDataFromAPI'); +const safeNewSymbol = require('./../module/safeNewSymbol'); + + const userRoutes = (app, fs) => { - app.get('/weekly', (req, res) => { + app.get('/weekly', (req, res, apiKey) => { if(req.query.symbol){ const symbol = req.query.symbol; const dataPath = './data/weekly_' + symbol + '.json'; - fs.readFile(dataPath, 'utf8', (err, data) => { + + fs.access(dataPath, fs.F_OK, (err) => { if (err) { - throw err; + updateDataFromAPI.updateWeeklySeriesShare(symbol,apiKey).then(() => { + safeNewSymbol.saveSymbol(symbol); + fs.readFile(dataPath, 'utf8', (err, data) => { + if (err) { + throw err; + } + + res.send(JSON.parse(data)); + }); + }); + + return; + }else{ + console.log("File exists"); } - res.send(JSON.parse(data)); - }); + + fs.readFile(dataPath, 'utf8', (err, data) => { + if (err) { + throw err; + } + + res.send(JSON.parse(data)); + }); + }); }else { res.send("NO Symbol"); diff --git a/Backend/server.js b/Backend/server.js index 96563a51..10fca96c 100644 --- a/Backend/server.js +++ b/Backend/server.js @@ -1,10 +1,12 @@ const express = require('express'); const bodyParser = require('body-parser'); const fs = require('fs'); -const axios = require('axios'); -const csvToJson = require('convert-csv-to-json'); const app = express(); const schedule = require('node-schedule'); +const readline = require('readline'); + +const updateDataFromAPI = require('./module/updateDataFromAPI'); + const apiKeys =[ 'ZSQ57OXG4YKUA0B8', //API Key Hakan; @@ -16,99 +18,96 @@ const apiKeys =[ ] let apiKeyIndex = 0; let apiKey; -let url; + app.use(bodyParser.json()); app.use(bodyParser.urlencoded({ extended: true })); -const routes = require('./routes/routes.js')(app, fs); +const routes = require('./routes/routes.js')(app, fs, apiKey); // launch server on Port 3001 const server = app.listen(3001, () => { setApiKey(); console.log('listening on port %s...', server.address().port); - // updateData(); + updateIntradayData(); }); -//Every 3 hours the API key is changed -const changeApiKey = schedule.scheduleJob('* */3 * * *', setApiKey); +//INFO WICHTIGER LINK für schedule +//https://crontab.guru/#*_*_*_*_* -function setApiKey(){ - console.log("API Key checked is called"); - apiKey = apiKeys[apiKeyIndex]; - apiKeyIndex++; - if(apiKeyIndex == 6) - { - apiKeyIndex = 0; - } -} +// //Every 3 hours the API key is updated +// const updateApiKey = schedule.scheduleJob('* */3 * * *', setApiKey); -function updateListOfQuotedUSshares(){ - console.log("update list of quoted US shares"); - url = `https://www.alphavantage.co/query?function=LISTING_STATUS&apikey=${apiKey}` - axios.get(url) - .then(res => res.data) - .then(data => { - fs.writeFileSync('data/quotedUSshares.csv',data); - csvToJson.generateJsonFileFromCsv('data/quotedUSshares.csv','data/quotedUSshares.json'); - }) - .catch(error => {console.error(error)}); -} +// //Every hour new data are pulled from the API for Intraday + const updateIntraday = schedule.scheduleJob('* */1 * * *', updateIntradayData); -//TODO überprüfen ob symbol überhaupt existiert -function updateIntradaySeriesShare(symbol, interval = 30){ - console.log("update Intraday Series from " + symbol); +// //Always at 0:10 the daily data is pulled from the API + const updateDaily = schedule.scheduleJob('30 0 * * *', updateDailyData); - url = `https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=${symbol}&interval=${interval}min&apikey=${apiKey}`; - let path = 'data/intraday_' + symbol + '.json'; +// //Always at 0:20 the weekly data is pulled from the API + const updateWeekly = schedule.scheduleJob('20 0 * * *', updateWeeklyData); - axios.get(url) - .then(res => res.data ) - .then(data => { - fs.writeFileSync(path, JSON.stringify(data)); - }) - .catch(error => console.error(error)) -} -function updateDailySeriesShare(symbol){ - console.log("update Daily Series from " + symbol); - - url = `https://www.alphavantage.co/query?function=TIME_SERIES_DAILY&symbol=${symbol}&apikey=${apiKey}`; - let path = 'data/daily_' + symbol + '.json'; - - axios.get(url) - .then(res => res.data ) - .then(data => { - fs.writeFileSync(path, JSON.stringify(data)); - }) - .catch(error => console.error(error) - ) +// //Always at 0:30 the monthly data is pulled from the API + const updateMonthly = schedule.scheduleJob('30 0 * * *', updateMonthlyData); + + +async function updateIntradayData(){ + const fileStream = fs.createReadStream('./data/symbols.txt'); + + const rl = readline.createInterface({ + input: fileStream, + crlfDelay: Infinity + }); + + for await (const symbol of rl) { + updateDataFromAPI.updateIntradaySeriesShare(symbol,30, apiKey); + } } -function updateWeeklySeriesShare(symbol){ - console.log("update Weekly Series from " + symbol); +async function updateDailyData(){ + const fileStream = fs.createReadStream('./data/symbols.txt'); - url = `https://www.alphavantage.co/query?function=TIME_SERIES_WEEKLY&symbol=${symbol}&apikey=${apiKey}`; - let path = 'data/weekly_' + symbol + '.json'; + const rl = readline.createInterface({ + input: fileStream, + crlfDelay: Infinity + }); - axios.get(url) - .then(res => res.data ) - .then(data => { - fs.writeFileSync(path, JSON.stringify(data)); - }) - .catch(error => console.error(error)) + for await (const symbol of rl) { + updateDataFromAPI.updateDailySeriesShare(symbol,apiKey); + } } +async function updateWeeklyData(){ + const fileStream = fs.createReadStream('./data/symbols.txt'); -function updateMonthlySeriesShare(symbol){ - console.log("update Monthly Series from " + symbol); + const rl = readline.createInterface({ + input: fileStream, + crlfDelay: Infinity + }); - url = `https://www.alphavantage.co/query?function=TIME_SERIES_MONTHLY&symbol=${symbol}&apikey=${apiKey}`; - let path = 'data/monthly_' + symbol + '.json'; + for await (const symbol of rl) { + updateDataFromAPI.updateWeeklySeriesShare(symbol,apiKey); + } +} +async function updateMonthlyData(){ + const fileStream = fs.createReadStream('./data/symbols.txt'); - axios.get(url) - .then(res => res.data ) - .then(data => { - fs.writeFileSync(path, JSON.stringify(data)); - }) - .catch(error => console.error(error)) + const rl = readline.createInterface({ + input: fileStream, + crlfDelay: Infinity + }); + + for await (const symbol of rl) { + updateDataFromAPI.updateMonthlySeriesShare(symbol,apiKey); + } +} +function setApiKey(){ + console.log("API Key checked is called"); + + apiKey = apiKeys[apiKeyIndex]; + apiKeyIndex++; + if(apiKeyIndex == 6) + { + apiKeyIndex = 0; + } } \ No newline at end of file From 4ed724582f627d95934b78da68d8fe026ed78c86 Mon Sep 17 00:00:00 2001 From: Steffen Kruschina Date: Sat, 26 Mar 2022 13:48:34 +0100 Subject: [PATCH 3/5] FIX and Data Fix a wrong IntradayData Add Data from API --- Backend/data/daily_ABC.json | 1 + Backend/data/daily_ABT.json | 1 + Backend/data/daily_AXS.json | 1 + Backend/data/daily_IBM.json | 2 +- Backend/data/daily_ZEN.json | 1 - Backend/data/intraday_ABC.json | 1 + Backend/data/intraday_ABT.json | 1 + Backend/data/monthly_ABC.json | 1 + Backend/data/monthly_ABT.json | 1 + Backend/data/monthly_IBM.json | 2 +- Backend/data/symbols.txt | 3 ++- Backend/data/weekly_ABC.json | 1 + Backend/data/weekly_ABT.json | 1 + Backend/data/weekly_IBM.json | 2 +- Backend/server.js | 4 ++-- 15 files changed, 16 insertions(+), 7 deletions(-) create mode 100644 Backend/data/daily_ABC.json create mode 100644 Backend/data/daily_ABT.json create mode 100644 Backend/data/daily_AXS.json delete mode 100644 Backend/data/daily_ZEN.json create mode 100644 Backend/data/intraday_ABC.json create mode 100644 Backend/data/intraday_ABT.json create mode 100644 Backend/data/monthly_ABC.json create mode 100644 Backend/data/monthly_ABT.json create mode 100644 Backend/data/weekly_ABC.json create mode 100644 Backend/data/weekly_ABT.json diff --git a/Backend/data/daily_ABC.json b/Backend/data/daily_ABC.json new file mode 100644 index 00000000..dbd43884 --- /dev/null +++ b/Backend/data/daily_ABC.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"ABC","3. Last Refreshed":"2022-03-24","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-24":{"1. open":"152.4800","2. high":"152.8700","3. low":"151.2900","4. close":"152.6100","5. volume":"696764"},"2022-03-23":{"1. open":"152.0100","2. high":"152.5600","3. low":"150.5400","4. close":"151.5300","5. volume":"1038349"},"2022-03-22":{"1. open":"153.8100","2. high":"154.6700","3. low":"151.6100","4. close":"152.1100","5. volume":"1057456"},"2022-03-21":{"1. open":"152.6000","2. high":"155.7600","3. low":"152.4500","4. close":"153.1800","5. volume":"1049168"},"2022-03-18":{"1. open":"152.2100","2. high":"152.4500","3. low":"150.1100","4. close":"152.0000","5. volume":"2034634"},"2022-03-17":{"1. open":"150.0300","2. high":"152.4000","3. low":"149.6900","4. close":"152.2000","5. volume":"1291316"},"2022-03-16":{"1. open":"151.6800","2. high":"153.0548","3. low":"148.3200","4. close":"150.5000","5. volume":"1002392"},"2022-03-15":{"1. open":"146.9700","2. high":"151.5500","3. low":"146.5300","4. close":"151.3900","5. volume":"1843023"},"2022-03-14":{"1. open":"145.9900","2. high":"146.3500","3. low":"143.1900","4. close":"146.1500","5. volume":"1033529"},"2022-03-11":{"1. open":"146.0900","2. high":"147.5300","3. low":"144.4600","4. close":"144.5600","5. volume":"1041283"},"2022-03-10":{"1. open":"145.1000","2. high":"147.6500","3. low":"144.4000","4. close":"146.1700","5. volume":"1311414"},"2022-03-09":{"1. open":"146.4500","2. high":"147.1700","3. low":"145.0000","4. close":"145.8300","5. volume":"1458253"},"2022-03-08":{"1. open":"144.4300","2. high":"146.4865","3. low":"143.1300","4. close":"144.4100","5. volume":"1282625"},"2022-03-07":{"1. open":"146.8900","2. high":"148.4200","3. low":"144.7900","4. close":"144.8400","5. volume":"1411547"},"2022-03-04":{"1. open":"143.5000","2. high":"147.5100","3. low":"143.0900","4. close":"147.3000","5. volume":"1059443"},"2022-03-03":{"1. open":"143.6200","2. high":"145.7300","3. low":"143.4700","4. close":"145.4700","5. volume":"721092"},"2022-03-02":{"1. open":"142.6500","2. high":"144.1100","3. low":"142.1800","4. close":"143.0000","5. volume":"1008228"},"2022-03-01":{"1. open":"142.4400","2. high":"143.3300","3. low":"140.3401","4. close":"141.9700","5. volume":"952564"},"2022-02-28":{"1. open":"139.3100","2. high":"142.7100","3. low":"138.3900","4. close":"142.5300","5. volume":"1241223"},"2022-02-25":{"1. open":"139.2300","2. high":"142.3500","3. low":"139.2300","4. close":"141.9200","5. volume":"1082041"},"2022-02-24":{"1. open":"137.5700","2. high":"137.9300","3. low":"134.7000","4. close":"137.8600","5. volume":"1807873"},"2022-02-23":{"1. open":"141.2300","2. high":"141.7300","3. low":"139.2200","4. close":"139.4700","5. volume":"1095234"},"2022-02-22":{"1. open":"141.6400","2. high":"141.9950","3. low":"139.1500","4. close":"140.5600","5. volume":"976085"},"2022-02-18":{"1. open":"142.1000","2. high":"144.2200","3. low":"141.0100","4. close":"141.5000","5. volume":"1099296"},"2022-02-17":{"1. open":"142.1000","2. high":"143.3300","3. low":"141.3900","4. close":"142.1100","5. volume":"1344016"},"2022-02-16":{"1. open":"140.9900","2. high":"143.0300","3. low":"140.7700","4. close":"142.7300","5. volume":"1433005"},"2022-02-15":{"1. open":"141.5500","2. high":"144.1000","3. low":"140.8400","4. close":"141.4800","5. volume":"1105311"},"2022-02-14":{"1. open":"140.0000","2. high":"140.9300","3. low":"137.7000","4. close":"140.1800","5. volume":"1248204"},"2022-02-11":{"1. open":"141.6800","2. high":"141.9700","3. low":"140.1700","4. close":"140.2400","5. volume":"1250087"},"2022-02-10":{"1. open":"142.0700","2. high":"143.6100","3. low":"140.8800","4. close":"141.5400","5. volume":"1359203"},"2022-02-09":{"1. open":"142.4800","2. high":"143.5600","3. low":"141.0300","4. close":"142.9200","5. volume":"1506066"},"2022-02-08":{"1. open":"139.5700","2. high":"142.9800","3. low":"138.9150","4. close":"142.2400","5. volume":"2163104"},"2022-02-07":{"1. open":"137.0200","2. high":"140.2400","3. low":"135.3900","4. close":"139.4100","5. volume":"1737687"},"2022-02-04":{"1. open":"136.2200","2. high":"137.7900","3. low":"134.6250","4. close":"136.6100","5. volume":"1357829"},"2022-02-03":{"1. open":"137.0900","2. high":"139.3150","3. low":"135.2500","4. close":"137.8800","5. volume":"1114438"},"2022-02-02":{"1. open":"134.3300","2. high":"137.9900","3. low":"132.0000","4. close":"136.0800","5. volume":"1849995"},"2022-02-01":{"1. open":"135.9400","2. high":"137.6900","3. low":"135.3500","4. close":"137.6600","5. volume":"1853844"},"2022-01-31":{"1. open":"135.8500","2. high":"136.6300","3. low":"134.4800","4. close":"136.2000","5. volume":"1102851"},"2022-01-28":{"1. open":"134.5500","2. high":"136.8800","3. low":"132.7500","4. close":"136.8000","5. volume":"858901"},"2022-01-27":{"1. open":"131.0300","2. high":"135.1000","3. low":"131.0300","4. close":"134.6900","5. volume":"1266206"},"2022-01-26":{"1. open":"130.7500","2. high":"132.3093","3. low":"129.0950","4. close":"130.5500","5. volume":"813698"},"2022-01-25":{"1. open":"130.6000","2. high":"131.7500","3. low":"127.9800","4. close":"131.0600","5. volume":"699917"},"2022-01-24":{"1. open":"130.0800","2. high":"132.0000","3. low":"127.9400","4. close":"131.5500","5. volume":"1353920"},"2022-01-21":{"1. open":"133.6200","2. high":"134.1100","3. low":"131.0000","4. close":"131.5200","5. volume":"715886"},"2022-01-20":{"1. open":"132.4600","2. high":"134.9800","3. low":"132.3700","4. close":"132.8800","5. volume":"635660"},"2022-01-19":{"1. open":"133.8000","2. high":"135.2300","3. low":"132.1200","4. close":"132.3900","5. volume":"809621"},"2022-01-18":{"1. open":"135.9300","2. high":"135.9500","3. low":"132.8000","4. close":"133.8100","5. volume":"700483"},"2022-01-14":{"1. open":"134.7500","2. high":"136.3050","3. low":"133.3300","4. close":"136.2000","5. volume":"926949"},"2022-01-13":{"1. open":"135.5000","2. high":"136.2600","3. low":"134.5700","4. close":"134.8900","5. volume":"883617"},"2022-01-12":{"1. open":"135.8400","2. high":"135.8700","3. low":"133.8300","4. close":"135.7100","5. volume":"937283"},"2022-01-11":{"1. open":"135.0000","2. high":"136.9450","3. low":"134.8000","4. close":"136.4500","5. volume":"1557999"},"2022-01-10":{"1. open":"131.3000","2. high":"134.7700","3. low":"130.0500","4. close":"134.6400","5. volume":"1197300"},"2022-01-07":{"1. open":"131.1100","2. high":"133.4800","3. low":"128.9000","4. close":"133.1200","5. volume":"1106632"},"2022-01-06":{"1. open":"132.6700","2. high":"132.9950","3. low":"130.1600","4. close":"130.4500","5. volume":"668303"},"2022-01-05":{"1. open":"131.6900","2. high":"135.1000","3. low":"131.6900","4. close":"132.5000","5. volume":"913666"},"2022-01-04":{"1. open":"132.7800","2. high":"133.2800","3. low":"130.5408","4. close":"131.3600","5. volume":"1111402"},"2022-01-03":{"1. open":"132.5800","2. high":"132.9200","3. low":"130.8700","4. close":"132.6200","5. volume":"977916"},"2021-12-31":{"1. open":"133.8300","2. high":"134.1700","3. low":"132.8400","4. close":"132.8900","5. volume":"580999"},"2021-12-30":{"1. open":"134.0000","2. high":"135.2600","3. low":"133.3500","4. close":"133.7700","5. volume":"540123"},"2021-12-29":{"1. open":"132.3600","2. high":"133.6650","3. low":"132.1900","4. close":"133.3400","5. volume":"787708"},"2021-12-28":{"1. open":"131.7600","2. high":"132.8500","3. low":"131.5000","4. close":"132.3600","5. volume":"602175"},"2021-12-27":{"1. open":"129.9200","2. high":"132.1500","3. low":"129.6001","4. close":"131.9000","5. volume":"497696"},"2021-12-23":{"1. open":"128.3000","2. high":"129.9200","3. low":"127.7500","4. close":"129.5300","5. volume":"717817"},"2021-12-22":{"1. open":"127.3500","2. high":"128.6550","3. low":"126.6100","4. close":"127.8100","5. volume":"602694"},"2021-12-21":{"1. open":"126.8400","2. high":"129.5000","3. low":"126.7450","4. close":"127.6100","5. volume":"1324973"},"2021-12-20":{"1. open":"124.7100","2. high":"126.2900","3. low":"123.2050","4. close":"126.0100","5. volume":"766247"},"2021-12-17":{"1. open":"124.6600","2. high":"126.3599","3. low":"123.6100","4. close":"125.1800","5. volume":"1434968"},"2021-12-16":{"1. open":"124.3300","2. high":"125.9900","3. low":"123.5200","4. close":"123.9800","5. volume":"840326"},"2021-12-15":{"1. open":"123.1700","2. high":"124.0500","3. low":"122.4700","4. close":"123.7700","5. volume":"776688"},"2021-12-14":{"1. open":"122.2300","2. high":"125.1500","3. low":"122.2300","4. close":"123.3000","5. volume":"999311"},"2021-12-13":{"1. open":"123.1300","2. high":"123.5100","3. low":"121.0000","4. close":"122.5200","5. volume":"541719"},"2021-12-10":{"1. open":"122.3000","2. high":"123.4994","3. low":"121.7500","4. close":"123.1300","5. volume":"1229071"},"2021-12-09":{"1. open":"120.3200","2. high":"122.3600","3. low":"119.8350","4. close":"121.6900","5. volume":"1025252"},"2021-12-08":{"1. open":"120.4100","2. high":"121.4900","3. low":"119.4400","4. close":"120.8500","5. volume":"868114"},"2021-12-07":{"1. open":"119.3400","2. high":"120.6400","3. low":"118.4600","4. close":"119.5200","5. volume":"846716"},"2021-12-06":{"1. open":"118.4500","2. high":"120.5819","3. low":"117.7700","4. close":"118.9000","5. volume":"1116217"},"2021-12-03":{"1. open":"116.8800","2. high":"118.8050","3. low":"115.7900","4. close":"116.7600","5. volume":"1251239"},"2021-12-02":{"1. open":"114.5100","2. high":"116.5300","3. low":"113.6800","4. close":"115.8000","5. volume":"1348975"},"2021-12-01":{"1. open":"116.4200","2. high":"117.1400","3. low":"114.0300","4. close":"114.0800","5. volume":"1198322"},"2021-11-30":{"1. open":"119.6500","2. high":"120.0150","3. low":"115.4100","4. close":"115.7500","5. volume":"3201344"},"2021-11-29":{"1. open":"120.7500","2. high":"121.6300","3. low":"119.6400","4. close":"120.2300","5. volume":"896299"},"2021-11-26":{"1. open":"121.9200","2. high":"123.6400","3. low":"119.9300","4. close":"120.2300","5. volume":"613655"},"2021-11-24":{"1. open":"123.2300","2. high":"124.9600","3. low":"122.7900","4. close":"123.4400","5. volume":"577037"},"2021-11-23":{"1. open":"121.2700","2. high":"124.2400","3. low":"120.9900","4. close":"123.6600","5. volume":"1288760"},"2021-11-22":{"1. open":"120.3400","2. high":"122.5900","3. low":"119.7900","4. close":"121.1200","5. volume":"1032983"},"2021-11-19":{"1. open":"125.4900","2. high":"126.1500","3. low":"120.3900","4. close":"120.5200","5. volume":"1533821"},"2021-11-18":{"1. open":"125.0300","2. high":"125.0300","3. low":"123.7300","4. close":"124.4900","5. volume":"592691"},"2021-11-17":{"1. open":"123.8100","2. high":"125.0900","3. low":"123.0700","4. close":"124.6700","5. volume":"1298083"},"2021-11-16":{"1. open":"124.3500","2. high":"125.3300","3. low":"123.8100","4. close":"123.8600","5. volume":"849665"},"2021-11-15":{"1. open":"125.3400","2. high":"125.6800","3. low":"124.0200","4. close":"124.4200","5. volume":"663540"},"2021-11-12":{"1. open":"126.2300","2. high":"127.1400","3. low":"124.8100","4. close":"125.3400","5. volume":"733720"},"2021-11-11":{"1. open":"125.1000","2. high":"125.8850","3. low":"123.8700","4. close":"125.6900","5. volume":"529718"},"2021-11-10":{"1. open":"125.0300","2. high":"126.1400","3. low":"124.9300","4. close":"125.6800","5. volume":"601943"},"2021-11-09":{"1. open":"125.6300","2. high":"126.3800","3. low":"124.5300","4. close":"124.6700","5. volume":"940253"},"2021-11-08":{"1. open":"127.3800","2. high":"128.0000","3. low":"125.7600","4. close":"125.9800","5. volume":"974197"},"2021-11-05":{"1. open":"126.5400","2. high":"129.5450","3. low":"126.1700","4. close":"127.5700","5. volume":"762788"},"2021-11-04":{"1. open":"126.0000","2. high":"128.0900","3. low":"123.2000","4. close":"126.7800","5. volume":"974246"},"2021-11-03":{"1. open":"124.8200","2. high":"128.6200","3. low":"124.5800","4. close":"128.2900","5. volume":"1138020"},"2021-11-02":{"1. open":"124.4900","2. high":"126.4800","3. low":"122.7400","4. close":"125.2000","5. volume":"1210625"},"2021-11-01":{"1. open":"122.4200","2. high":"123.7450","3. low":"122.2000","4. close":"122.8100","5. volume":"685897"}}} \ No newline at end of file diff --git a/Backend/data/daily_ABT.json b/Backend/data/daily_ABT.json new file mode 100644 index 00000000..74d71a1b --- /dev/null +++ b/Backend/data/daily_ABT.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"ABT","3. Last Refreshed":"2022-03-24","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-24":{"1. open":"117.3800","2. high":"117.8800","3. low":"116.6100","4. close":"117.8200","5. volume":"4505761"},"2022-03-23":{"1. open":"121.1100","2. high":"121.2400","3. low":"116.7350","4. close":"116.9200","5. volume":"5656038"},"2022-03-22":{"1. open":"121.8900","2. high":"122.5300","3. low":"121.2600","4. close":"121.8900","5. volume":"4287642"},"2022-03-21":{"1. open":"121.9300","2. high":"123.0962","3. low":"121.1600","4. close":"121.7600","5. volume":"4092450"},"2022-03-18":{"1. open":"121.7400","2. high":"122.6700","3. low":"120.6800","4. close":"122.4500","5. volume":"7677471"},"2022-03-17":{"1. open":"119.0000","2. high":"121.2400","3. low":"118.7300","4. close":"121.2000","5. volume":"3998929"},"2022-03-16":{"1. open":"118.2100","2. high":"119.5400","3. low":"116.9600","4. close":"119.4800","5. volume":"4441833"},"2022-03-15":{"1. open":"117.5000","2. high":"117.7900","3. low":"116.2200","4. close":"117.4800","5. volume":"5041193"},"2022-03-14":{"1. open":"114.9000","2. high":"117.2100","3. low":"114.5800","4. close":"115.5200","5. volume":"5527517"},"2022-03-11":{"1. open":"117.4400","2. high":"118.0600","3. low":"113.8800","4. close":"114.0200","5. volume":"8012571"},"2022-03-10":{"1. open":"117.1800","2. high":"117.8100","3. low":"115.7300","4. close":"117.0000","5. volume":"4377620"},"2022-03-09":{"1. open":"117.9000","2. high":"119.2000","3. low":"116.4400","4. close":"118.3900","5. volume":"5004766"},"2022-03-08":{"1. open":"117.9100","2. high":"119.0200","3. low":"115.7100","4. close":"116.1100","5. volume":"6694194"},"2022-03-07":{"1. open":"120.5400","2. high":"120.8900","3. low":"117.2600","4. close":"118.8600","5. volume":"6632006"},"2022-03-04":{"1. open":"119.9300","2. high":"121.7600","3. low":"119.0100","4. close":"121.4100","5. volume":"5911494"},"2022-03-03":{"1. open":"120.8000","2. high":"122.0700","3. low":"120.4900","4. close":"120.9700","5. volume":"5223115"},"2022-03-02":{"1. open":"118.6200","2. high":"121.0500","3. low":"118.2600","4. close":"120.3600","5. volume":"6419829"},"2022-03-01":{"1. open":"120.3100","2. high":"121.1600","3. low":"117.3800","4. close":"118.1700","5. volume":"6697813"},"2022-02-28":{"1. open":"121.0500","2. high":"121.0582","3. low":"119.1500","4. close":"120.6200","5. volume":"6828353"},"2022-02-25":{"1. open":"118.7200","2. high":"122.9300","3. low":"118.5000","4. close":"122.4100","5. volume":"5837687"},"2022-02-24":{"1. open":"115.0000","2. high":"118.9150","3. low":"114.4275","4. close":"118.7200","5. volume":"6252741"},"2022-02-23":{"1. open":"118.0000","2. high":"118.8399","3. low":"116.9900","4. close":"117.2500","5. volume":"5184241"},"2022-02-22":{"1. open":"116.5400","2. high":"119.3300","3. low":"116.1000","4. close":"117.5100","5. volume":"6584991"},"2022-02-18":{"1. open":"120.0000","2. high":"120.3100","3. low":"114.8400","4. close":"116.7900","5. volume":"12376135"},"2022-02-17":{"1. open":"122.9900","2. high":"123.1800","3. low":"120.4700","4. close":"120.5800","5. volume":"3688344"},"2022-02-16":{"1. open":"123.4500","2. high":"124.1100","3. low":"121.5600","4. close":"123.6800","5. volume":"5078173"},"2022-02-15":{"1. open":"124.1870","2. high":"125.4199","3. low":"123.4131","4. close":"123.9800","5. volume":"5297968"},"2022-02-14":{"1. open":"125.0000","2. high":"125.5700","3. low":"121.9800","4. close":"122.7800","5. volume":"7433877"},"2022-02-11":{"1. open":"127.7800","2. high":"128.9200","3. low":"125.1500","4. close":"125.4900","5. volume":"4803244"},"2022-02-10":{"1. open":"128.5700","2. high":"129.9200","3. low":"127.1700","4. close":"127.7600","5. volume":"5917727"},"2022-02-09":{"1. open":"129.5200","2. high":"130.7900","3. low":"129.4200","4. close":"130.4900","5. volume":"3434199"},"2022-02-08":{"1. open":"127.5300","2. high":"128.9400","3. low":"127.1600","4. close":"128.6500","5. volume":"3890854"},"2022-02-07":{"1. open":"129.8700","2. high":"129.9500","3. low":"127.6800","4. close":"128.0500","5. volume":"4035240"},"2022-02-04":{"1. open":"129.5600","2. high":"130.5200","3. low":"128.6000","4. close":"129.7100","5. volume":"4149683"},"2022-02-03":{"1. open":"128.6300","2. high":"130.9350","3. low":"128.2573","4. close":"130.1100","5. volume":"5613547"},"2022-02-02":{"1. open":"128.2500","2. high":"130.7400","3. low":"127.8600","4. close":"130.0400","5. volume":"7450501"},"2022-02-01":{"1. open":"127.3700","2. high":"127.6600","3. low":"126.2400","4. close":"127.2000","5. volume":"5602013"},"2022-01-31":{"1. open":"125.5200","2. high":"127.9600","3. low":"125.1300","4. close":"127.4600","5. volume":"7210140"},"2022-01-28":{"1. open":"120.7700","2. high":"125.5300","3. low":"119.6100","4. close":"125.3500","5. volume":"8286467"},"2022-01-27":{"1. open":"120.9800","2. high":"123.1700","3. low":"119.7400","4. close":"120.4400","5. volume":"9180134"},"2022-01-26":{"1. open":"119.1900","2. high":"121.6800","3. low":"119.0000","4. close":"120.0700","5. volume":"14753096"},"2022-01-25":{"1. open":"123.0800","2. high":"124.6217","3. low":"121.5900","4. close":"123.2700","5. volume":"9126620"},"2022-01-24":{"1. open":"124.0100","2. high":"124.5000","3. low":"120.6800","4. close":"123.8200","5. volume":"10868714"},"2022-01-21":{"1. open":"126.8100","2. high":"127.0900","3. low":"124.8600","4. close":"125.8300","5. volume":"10132682"},"2022-01-20":{"1. open":"126.2400","2. high":"127.9100","3. low":"124.6100","4. close":"124.7100","5. volume":"8652569"},"2022-01-19":{"1. open":"126.7500","2. high":"127.5800","3. low":"125.8300","4. close":"126.0500","5. volume":"3994939"},"2022-01-18":{"1. open":"127.4000","2. high":"127.9300","3. low":"125.5500","4. close":"126.5700","5. volume":"5802335"},"2022-01-14":{"1. open":"130.4900","2. high":"130.5900","3. low":"127.0200","4. close":"128.1600","5. volume":"9256873"},"2022-01-13":{"1. open":"132.3900","2. high":"132.8300","3. low":"129.4300","4. close":"129.6500","5. volume":"7174538"},"2022-01-12":{"1. open":"134.8900","2. high":"135.7000","3. low":"132.5300","4. close":"133.7200","5. volume":"8416010"},"2022-01-11":{"1. open":"135.2300","2. high":"135.9700","3. low":"134.0400","4. close":"135.7000","5. volume":"5703412"},"2022-01-10":{"1. open":"134.7900","2. high":"135.5000","3. low":"133.9200","4. close":"135.2600","5. volume":"5975633"},"2022-01-07":{"1. open":"134.8800","2. high":"136.1800","3. low":"134.3800","4. close":"135.5600","5. volume":"4367483"},"2022-01-06":{"1. open":"135.0000","2. high":"136.2100","3. low":"133.8800","4. close":"135.1400","5. volume":"5710227"},"2022-01-05":{"1. open":"135.1500","2. high":"137.0300","3. low":"135.0700","4. close":"135.1600","5. volume":"5948372"},"2022-01-04":{"1. open":"139.5000","2. high":"139.6500","3. low":"134.7600","4. close":"135.7700","5. volume":"8241222"},"2022-01-03":{"1. open":"139.4300","2. high":"139.8301","3. low":"137.2100","4. close":"139.0400","5. volume":"6692433"},"2021-12-31":{"1. open":"141.0000","2. high":"141.7700","3. low":"140.7200","4. close":"140.7400","5. volume":"3146605"},"2021-12-30":{"1. open":"141.4100","2. high":"141.7450","3. low":"140.5900","4. close":"141.0000","5. volume":"2809120"},"2021-12-29":{"1. open":"140.4700","2. high":"141.6600","3. low":"139.3300","4. close":"141.1900","5. volume":"2848992"},"2021-12-28":{"1. open":"141.5800","2. high":"141.7100","3. low":"140.1300","4. close":"140.4700","5. volume":"3298743"},"2021-12-27":{"1. open":"139.8200","2. high":"142.6000","3. low":"139.4300","4. close":"141.4600","5. volume":"3802592"},"2021-12-23":{"1. open":"139.6500","2. high":"140.2300","3. low":"138.7200","4. close":"139.1600","5. volume":"3492052"},"2021-12-22":{"1. open":"135.8800","2. high":"139.0200","3. low":"135.7900","4. close":"138.9900","5. volume":"6768868"},"2021-12-21":{"1. open":"136.0200","2. high":"137.1767","3. low":"133.4000","4. close":"135.2700","5. volume":"7153827"},"2021-12-20":{"1. open":"136.2000","2. high":"137.8100","3. low":"134.2200","4. close":"134.9800","5. volume":"6501433"},"2021-12-17":{"1. open":"137.5400","2. high":"139.2700","3. low":"136.8900","4. close":"137.1100","5. volume":"12156222"},"2021-12-16":{"1. open":"135.4400","2. high":"136.6100","3. low":"134.6000","4. close":"136.0900","5. volume":"6984050"},"2021-12-15":{"1. open":"133.5400","2. high":"135.6700","3. low":"132.9000","4. close":"135.5600","5. volume":"6422458"},"2021-12-14":{"1. open":"135.9300","2. high":"136.0000","3. low":"132.0000","4. close":"132.9400","5. volume":"8193321"},"2021-12-13":{"1. open":"134.5000","2. high":"137.0000","3. low":"134.5000","4. close":"135.9600","5. volume":"5094833"},"2021-12-10":{"1. open":"133.4200","2. high":"134.5000","3. low":"132.8700","4. close":"134.3700","5. volume":"4371797"},"2021-12-09":{"1. open":"132.5000","2. high":"133.1100","3. low":"131.4800","4. close":"132.5300","5. volume":"2663411"},"2021-12-08":{"1. open":"132.8000","2. high":"133.4500","3. low":"131.1200","4. close":"132.3700","5. volume":"5389410"},"2021-12-07":{"1. open":"134.0000","2. high":"134.0800","3. low":"131.8000","4. close":"132.4200","5. volume":"5143597"},"2021-12-06":{"1. open":"130.7600","2. high":"133.2800","3. low":"130.6100","4. close":"132.4700","5. volume":"6601840"},"2021-12-03":{"1. open":"128.8750","2. high":"130.4550","3. low":"128.0300","4. close":"130.2700","5. volume":"5254610"},"2021-12-02":{"1. open":"126.2900","2. high":"129.8500","3. low":"126.2900","4. close":"128.3800","5. volume":"5090982"},"2021-12-01":{"1. open":"126.4800","2. high":"128.4800","3. low":"125.1200","4. close":"126.7400","5. volume":"4816874"},"2021-11-30":{"1. open":"128.2000","2. high":"128.7900","3. low":"125.3400","4. close":"125.7700","5. volume":"7270172"},"2021-11-29":{"1. open":"126.3500","2. high":"128.9400","3. low":"125.3600","4. close":"128.0300","5. volume":"5648325"},"2021-11-26":{"1. open":"127.8100","2. high":"129.7500","3. low":"125.4400","4. close":"125.8800","5. volume":"4671350"},"2021-11-24":{"1. open":"124.0650","2. high":"125.2818","3. low":"124.0000","4. close":"125.0700","5. volume":"3729581"},"2021-11-23":{"1. open":"124.5100","2. high":"124.8900","3. low":"123.2200","4. close":"124.4800","5. volume":"4873730"},"2021-11-22":{"1. open":"126.7800","2. high":"126.8000","3. low":"124.6800","4. close":"125.2600","5. volume":"4205655"},"2021-11-19":{"1. open":"128.4100","2. high":"128.5300","3. low":"126.4600","4. close":"126.8400","5. volume":"6867681"},"2021-11-18":{"1. open":"129.3100","2. high":"129.4300","3. low":"127.4700","4. close":"127.6400","5. volume":"4467001"},"2021-11-17":{"1. open":"130.6100","2. high":"130.7000","3. low":"128.5400","4. close":"128.6200","5. volume":"4759890"},"2021-11-16":{"1. open":"129.6400","2. high":"131.6050","3. low":"129.6400","4. close":"130.8900","5. volume":"4141322"},"2021-11-15":{"1. open":"128.7700","2. high":"130.1950","3. low":"128.2600","4. close":"129.4400","5. volume":"4565941"},"2021-11-12":{"1. open":"127.9400","2. high":"128.8500","3. low":"127.1200","4. close":"128.4500","5. volume":"6441487"},"2021-11-11":{"1. open":"127.9700","2. high":"128.9600","3. low":"127.2400","4. close":"127.2500","5. volume":"5054821"},"2021-11-10":{"1. open":"126.1900","2. high":"128.1100","3. low":"126.0500","4. close":"127.8200","5. volume":"5358931"},"2021-11-09":{"1. open":"126.7000","2. high":"127.5000","3. low":"126.2500","4. close":"126.4300","5. volume":"5112082"},"2021-11-08":{"1. open":"124.0000","2. high":"127.2300","3. low":"123.8100","4. close":"126.8000","5. volume":"4929976"},"2021-11-05":{"1. open":"127.0800","2. high":"127.3200","3. low":"123.9300","4. close":"124.3700","5. volume":"7989929"},"2021-11-04":{"1. open":"128.9500","2. high":"129.4900","3. low":"128.1900","4. close":"129.0900","5. volume":"4675894"},"2021-11-03":{"1. open":"127.3800","2. high":"128.7400","3. low":"126.9700","4. close":"128.7000","5. volume":"5110642"},"2021-11-02":{"1. open":"129.3300","2. high":"129.5300","3. low":"127.2900","4. close":"127.7100","5. volume":"7742234"},"2021-11-01":{"1. open":"128.6350","2. high":"129.5300","3. low":"128.2900","4. close":"128.9400","5. volume":"3481457"}}} \ No newline at end of file diff --git a/Backend/data/daily_AXS.json b/Backend/data/daily_AXS.json new file mode 100644 index 00000000..f6306470 --- /dev/null +++ b/Backend/data/daily_AXS.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"AXS","3. Last Refreshed":"2022-03-25 16:00:01","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-25":{"1. open":"57.4900","2. high":"57.9000","3. low":"57.0600","4. close":"57.8400","5. volume":"408965"},"2022-03-24":{"1. open":"57.0000","2. high":"57.4000","3. low":"56.6700","4. close":"57.3700","5. volume":"540450"},"2022-03-23":{"1. open":"56.8500","2. high":"57.2225","3. low":"56.4100","4. close":"56.9000","5. volume":"552782"},"2022-03-22":{"1. open":"56.5900","2. high":"57.4700","3. low":"56.4600","4. close":"56.9300","5. volume":"813655"},"2022-03-21":{"1. open":"56.0000","2. high":"56.6600","3. low":"55.3900","4. close":"56.1600","5. volume":"447825"},"2022-03-18":{"1. open":"54.0900","2. high":"55.5900","3. low":"54.0900","4. close":"55.4700","5. volume":"1520068"},"2022-03-17":{"1. open":"53.8200","2. high":"54.5400","3. low":"53.4600","4. close":"54.5200","5. volume":"525260"},"2022-03-16":{"1. open":"53.7700","2. high":"54.4600","3. low":"53.2500","4. close":"54.2400","5. volume":"547855"},"2022-03-15":{"1. open":"52.6100","2. high":"53.5300","3. low":"52.5500","4. close":"53.2100","5. volume":"488162"},"2022-03-14":{"1. open":"52.3200","2. high":"53.1200","3. low":"51.7600","4. close":"52.2900","5. volume":"388818"},"2022-03-11":{"1. open":"52.0200","2. high":"52.4000","3. low":"51.2900","4. close":"51.6300","5. volume":"416145"},"2022-03-10":{"1. open":"51.5100","2. high":"52.1500","3. low":"51.0600","4. close":"51.5700","5. volume":"457273"},"2022-03-09":{"1. open":"52.0700","2. high":"52.7500","3. low":"51.6800","4. close":"52.4100","5. volume":"504647"},"2022-03-08":{"1. open":"51.5800","2. high":"51.8550","3. low":"49.7600","4. close":"50.8600","5. volume":"584812"},"2022-03-07":{"1. open":"52.9000","2. high":"52.9000","3. low":"51.0000","4. close":"51.0400","5. volume":"675681"},"2022-03-04":{"1. open":"53.8400","2. high":"54.3000","3. low":"53.1000","4. close":"53.6000","5. volume":"526695"},"2022-03-03":{"1. open":"55.2800","2. high":"55.5000","3. low":"54.5100","4. close":"55.0200","5. volume":"508358"},"2022-03-02":{"1. open":"53.1300","2. high":"55.3600","3. low":"53.0200","4. close":"55.2300","5. volume":"760852"},"2022-03-01":{"1. open":"54.1500","2. high":"54.4600","3. low":"52.0950","4. close":"52.9200","5. volume":"729872"},"2022-02-28":{"1. open":"54.6600","2. high":"55.0800","3. low":"54.0400","4. close":"54.6200","5. volume":"786219"},"2022-02-25":{"1. open":"53.8100","2. high":"55.8400","3. low":"53.7300","4. close":"55.8000","5. volume":"816663"},"2022-02-24":{"1. open":"54.8000","2. high":"54.9800","3. low":"52.3800","4. close":"53.5000","5. volume":"1510037"},"2022-02-23":{"1. open":"56.6300","2. high":"57.0143","3. low":"55.6400","4. close":"55.8500","5. volume":"484263"},"2022-02-22":{"1. open":"57.3800","2. high":"57.8300","3. low":"56.1100","4. close":"56.5000","5. volume":"410133"},"2022-02-18":{"1. open":"57.4100","2. high":"58.1200","3. low":"57.0900","4. close":"57.6800","5. volume":"315590"},"2022-02-17":{"1. open":"57.0900","2. high":"57.9200","3. low":"56.4100","4. close":"57.5400","5. volume":"533814"},"2022-02-16":{"1. open":"56.5900","2. high":"57.6550","3. low":"56.3900","4. close":"57.4000","5. volume":"353673"},"2022-02-15":{"1. open":"56.3000","2. high":"56.9100","3. low":"56.0100","4. close":"56.6000","5. volume":"338682"},"2022-02-14":{"1. open":"56.0000","2. high":"56.6000","3. low":"55.4600","4. close":"56.0900","5. volume":"403972"},"2022-02-11":{"1. open":"55.8500","2. high":"56.8800","3. low":"55.4500","4. close":"56.1400","5. volume":"486972"},"2022-02-10":{"1. open":"56.4800","2. high":"57.0600","3. low":"55.7650","4. close":"55.9800","5. volume":"347400"},"2022-02-09":{"1. open":"56.9000","2. high":"57.1000","3. low":"55.9800","4. close":"56.5600","5. volume":"542885"},"2022-02-08":{"1. open":"55.9800","2. high":"56.8800","3. low":"55.5405","4. close":"56.8400","5. volume":"612983"},"2022-02-07":{"1. open":"56.2900","2. high":"56.7600","3. low":"55.7907","4. close":"56.3000","5. volume":"403228"},"2022-02-04":{"1. open":"56.4300","2. high":"56.8000","3. low":"55.6200","4. close":"56.1700","5. volume":"390522"},"2022-02-03":{"1. open":"56.8000","2. high":"57.7000","3. low":"56.2833","4. close":"56.6300","5. volume":"500713"},"2022-02-02":{"1. open":"57.1100","2. high":"57.7500","3. low":"56.3400","4. close":"57.0000","5. volume":"823249"},"2022-02-01":{"1. open":"57.0000","2. high":"57.3600","3. low":"56.1400","4. close":"57.3400","5. volume":"480941"},"2022-01-31":{"1. open":"56.5900","2. high":"56.9800","3. low":"55.4300","4. close":"56.9800","5. volume":"535611"},"2022-01-28":{"1. open":"55.1100","2. high":"56.9200","3. low":"55.0000","4. close":"56.9200","5. volume":"1016090"},"2022-01-27":{"1. open":"55.9000","2. high":"57.9700","3. low":"52.0801","4. close":"54.4300","5. volume":"1287706"},"2022-01-26":{"1. open":"56.2100","2. high":"57.3000","3. low":"55.3100","4. close":"55.8400","5. volume":"753182"},"2022-01-25":{"1. open":"55.7500","2. high":"56.5400","3. low":"54.1900","4. close":"56.0800","5. volume":"450373"},"2022-01-24":{"1. open":"55.1800","2. high":"56.2300","3. low":"54.3300","4. close":"56.0100","5. volume":"533457"},"2022-01-21":{"1. open":"56.4100","2. high":"56.7900","3. low":"55.4100","4. close":"55.7800","5. volume":"614453"},"2022-01-20":{"1. open":"56.6300","2. high":"57.7400","3. low":"56.2400","4. close":"56.5000","5. volume":"406869"},"2022-01-19":{"1. open":"57.2600","2. high":"57.2600","3. low":"55.9100","4. close":"56.1600","5. volume":"322097"},"2022-01-18":{"1. open":"56.9300","2. high":"57.3000","3. low":"56.4500","4. close":"56.6400","5. volume":"295546"},"2022-01-14":{"1. open":"56.3900","2. high":"57.0800","3. low":"55.7600","4. close":"57.0000","5. volume":"295232"},"2022-01-13":{"1. open":"56.1600","2. high":"56.8700","3. low":"55.9950","4. close":"56.5700","5. volume":"262340"},"2022-01-12":{"1. open":"56.3200","2. high":"56.3500","3. low":"55.4250","4. close":"55.9900","5. volume":"416679"},"2022-01-11":{"1. open":"55.8400","2. high":"56.2800","3. low":"55.1350","4. close":"56.0800","5. volume":"445209"},"2022-01-10":{"1. open":"55.7600","2. high":"55.9100","3. low":"54.7400","4. close":"55.3800","5. volume":"357967"},"2022-01-07":{"1. open":"55.7400","2. high":"55.7400","3. low":"54.9250","4. close":"55.4300","5. volume":"301451"},"2022-01-06":{"1. open":"54.8600","2. high":"55.7150","3. low":"54.2900","4. close":"55.5000","5. volume":"511577"},"2022-01-05":{"1. open":"55.3400","2. high":"55.7850","3. low":"54.1900","4. close":"54.2400","5. volume":"647027"},"2022-01-04":{"1. open":"55.1100","2. high":"55.4300","3. low":"54.6100","4. close":"54.8000","5. volume":"666553"},"2022-01-03":{"1. open":"54.6300","2. high":"55.0700","3. low":"53.8500","4. close":"54.0500","5. volume":"415290"},"2021-12-31":{"1. open":"54.2200","2. high":"54.9800","3. low":"54.2200","4. close":"54.4700","5. volume":"199521"},"2021-12-30":{"1. open":"54.5600","2. high":"54.7800","3. low":"54.0950","4. close":"54.2200","5. volume":"357049"},"2021-12-29":{"1. open":"53.6300","2. high":"54.4300","3. low":"53.4900","4. close":"54.3900","5. volume":"243914"},"2021-12-28":{"1. open":"52.8900","2. high":"54.0200","3. low":"52.8900","4. close":"53.9800","5. volume":"267349"},"2021-12-27":{"1. open":"51.9000","2. high":"52.9800","3. low":"51.5401","4. close":"52.8700","5. volume":"223548"},"2021-12-23":{"1. open":"51.5500","2. high":"52.3000","3. low":"51.2700","4. close":"52.0800","5. volume":"211711"},"2021-12-22":{"1. open":"51.0400","2. high":"51.4950","3. low":"50.5600","4. close":"51.1300","5. volume":"368749"},"2021-12-21":{"1. open":"51.0200","2. high":"52.0100","3. low":"50.9800","4. close":"51.1200","5. volume":"238234"},"2021-12-20":{"1. open":"50.8500","2. high":"51.1250","3. low":"49.7800","4. close":"50.6900","5. volume":"314787"},"2021-12-17":{"1. open":"52.2200","2. high":"52.4300","3. low":"51.4000","4. close":"51.5600","5. volume":"544432"},"2021-12-16":{"1. open":"52.2000","2. high":"52.7250","3. low":"51.8750","4. close":"52.2000","5. volume":"303341"},"2021-12-15":{"1. open":"51.6400","2. high":"52.4400","3. low":"51.4400","4. close":"51.9900","5. volume":"316142"},"2021-12-14":{"1. open":"51.6200","2. high":"52.7200","3. low":"51.6050","4. close":"51.7000","5. volume":"288345"},"2021-12-13":{"1. open":"51.8500","2. high":"52.2100","3. low":"51.1700","4. close":"51.4800","5. volume":"273265"},"2021-12-10":{"1. open":"52.7900","2. high":"52.9700","3. low":"51.8300","4. close":"52.2400","5. volume":"258448"},"2021-12-09":{"1. open":"51.7400","2. high":"52.7499","3. low":"51.7400","4. close":"52.3300","5. volume":"218561"},"2021-12-08":{"1. open":"52.2100","2. high":"52.4150","3. low":"51.7700","4. close":"52.2000","5. volume":"198347"},"2021-12-07":{"1. open":"52.5500","2. high":"52.9200","3. low":"52.0300","4. close":"52.2100","5. volume":"428777"},"2021-12-06":{"1. open":"52.4700","2. high":"53.0600","3. low":"52.1700","4. close":"52.5000","5. volume":"578818"},"2021-12-03":{"1. open":"52.6300","2. high":"52.9150","3. low":"51.8500","4. close":"51.9100","5. volume":"532941"},"2021-12-02":{"1. open":"49.9700","2. high":"51.9600","3. low":"49.9700","4. close":"51.6400","5. volume":"304553"},"2021-12-01":{"1. open":"50.4500","2. high":"51.2500","3. low":"49.7100","4. close":"49.7400","5. volume":"277052"},"2021-11-30":{"1. open":"50.2300","2. high":"50.7800","3. low":"49.5000","4. close":"49.6800","5. volume":"544924"},"2021-11-29":{"1. open":"51.8400","2. high":"51.8400","3. low":"50.3700","4. close":"50.7900","5. volume":"383781"},"2021-11-26":{"1. open":"50.6900","2. high":"51.3700","3. low":"49.9300","4. close":"50.9900","5. volume":"263311"},"2021-11-24":{"1. open":"53.7200","2. high":"53.7200","3. low":"52.4800","4. close":"52.5800","5. volume":"314158"},"2021-11-23":{"1. open":"53.0900","2. high":"53.8000","3. low":"52.9750","4. close":"53.6900","5. volume":"298468"},"2021-11-22":{"1. open":"51.8300","2. high":"53.1100","3. low":"51.7700","4. close":"52.6700","5. volume":"281971"},"2021-11-19":{"1. open":"52.1500","2. high":"52.4000","3. low":"51.4000","4. close":"51.5500","5. volume":"326093"},"2021-11-18":{"1. open":"53.2300","2. high":"53.3600","3. low":"52.1000","4. close":"52.1200","5. volume":"233109"},"2021-11-17":{"1. open":"52.9600","2. high":"53.4500","3. low":"52.5833","4. close":"53.2000","5. volume":"302100"},"2021-11-16":{"1. open":"53.3900","2. high":"53.7300","3. low":"53.1800","4. close":"53.2600","5. volume":"314015"},"2021-11-15":{"1. open":"52.8700","2. high":"53.3800","3. low":"52.5900","4. close":"53.3100","5. volume":"265603"},"2021-11-12":{"1. open":"52.7100","2. high":"52.8500","3. low":"52.1100","4. close":"52.6000","5. volume":"168901"},"2021-11-11":{"1. open":"52.6150","2. high":"52.8900","3. low":"52.3000","4. close":"52.4800","5. volume":"162487"},"2021-11-10":{"1. open":"52.4100","2. high":"52.8200","3. low":"52.2100","4. close":"52.4700","5. volume":"187495"},"2021-11-09":{"1. open":"52.7400","2. high":"52.8800","3. low":"52.2000","4. close":"52.4000","5. volume":"201218"},"2021-11-08":{"1. open":"53.2200","2. high":"53.5700","3. low":"52.8300","4. close":"52.9000","5. volume":"224539"},"2021-11-05":{"1. open":"52.2300","2. high":"53.1900","3. low":"52.2300","4. close":"53.1200","5. volume":"184878"},"2021-11-04":{"1. open":"53.0300","2. high":"53.0300","3. low":"51.4500","4. close":"51.8400","5. volume":"330913"},"2021-11-03":{"1. open":"52.6600","2. high":"53.4700","3. low":"52.6000","4. close":"52.9800","5. volume":"458253"},"2021-11-02":{"1. open":"53.7500","2. high":"53.8200","3. low":"52.6000","4. close":"53.0500","5. volume":"330963"}}} \ No newline at end of file diff --git a/Backend/data/daily_IBM.json b/Backend/data/daily_IBM.json index 7d4d8e79..cf35a8d0 100644 --- a/Backend/data/daily_IBM.json +++ b/Backend/data/daily_IBM.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"IBM","3. Last Refreshed":"2022-03-24","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-24":{"1. open":"128.3300","2. high":"129.3700","3. low":"127.8000","4. close":"129.2500","5. volume":"2953522"},"2022-03-23":{"1. open":"129.0800","2. high":"129.3200","3. low":"128.2500","4. close":"128.3000","5. volume":"2924535"},"2022-03-22":{"1. open":"128.5000","2. high":"129.3000","3. low":"127.8500","4. close":"129.0600","5. volume":"2649026"},"2022-03-21":{"1. open":"129.0000","2. high":"129.7400","3. low":"127.4000","4. close":"128.1000","5. volume":"3379393"},"2022-03-18":{"1. open":"127.3800","2. high":"128.9300","3. low":"126.3700","4. close":"128.7600","5. volume":"7400216"},"2022-03-17":{"1. open":"127.1000","2. high":"128.2900","3. low":"126.5300","4. close":"127.9600","5. volume":"3671903"},"2022-03-16":{"1. open":"126.5000","2. high":"127.2842","3. low":"124.7100","4. close":"127.0400","5. volume":"4292845"},"2022-03-15":{"1. open":"124.0000","2. high":"125.9398","3. low":"123.2200","4. close":"125.6400","5. volume":"4021228"},"2022-03-14":{"1. open":"124.4500","2. high":"125.1600","3. low":"122.6850","4. close":"123.9400","5. volume":"3289440"},"2022-03-11":{"1. open":"125.0000","2. high":"126.7700","3. low":"123.9100","4. close":"123.9600","5. volume":"4119630"},"2022-03-10":{"1. open":"125.7500","2. high":"126.0300","3. low":"123.1250","4. close":"124.3500","5. volume":"5326835"},"2022-03-09":{"1. open":"127.4100","2. high":"128.1000","3. low":"125.9100","4. close":"126.2200","5. volume":"4403499"},"2022-03-08":{"1. open":"126.6200","2. high":"128.3450","3. low":"124.8200","4. close":"125.6800","5. volume":"4887565"},"2022-03-07":{"1. open":"126.4700","2. high":"127.9050","3. low":"125.6200","4. close":"126.0700","5. volume":"5047358"},"2022-03-04":{"1. open":"124.4000","2. high":"127.3500","3. low":"124.2103","4. close":"126.6200","5. volume":"4402911"},"2022-03-03":{"1. open":"124.9600","2. high":"126.6650","3. low":"124.2351","4. close":"125.9300","5. volume":"5206649"},"2022-03-02":{"1. open":"122.5900","2. high":"124.6400","3. low":"121.8000","4. close":"123.8600","5. volume":"4891435"},"2022-03-01":{"1. open":"122.6700","2. high":"123.3900","3. low":"120.7000","4. close":"121.3500","5. volume":"4873331"},"2022-02-28":{"1. open":"122.2100","2. high":"123.3851","3. low":"121.0388","4. close":"122.5100","5. volume":"6757332"},"2022-02-25":{"1. open":"122.0500","2. high":"124.2625","3. low":"121.4500","4. close":"124.1800","5. volume":"4460904"},"2022-02-24":{"1. open":"120.0000","2. high":"122.1000","3. low":"118.8100","4. close":"121.9700","5. volume":"6563202"},"2022-02-23":{"1. open":"124.3800","2. high":"124.7000","3. low":"121.8700","4. close":"122.0700","5. volume":"4086367"},"2022-02-22":{"1. open":"124.2000","2. high":"125.0000","3. low":"122.6800","4. close":"123.9200","5. volume":"5306688"},"2022-02-18":{"1. open":"124.9400","2. high":"125.4400","3. low":"123.6100","4. close":"124.3500","5. volume":"4609212"},"2022-02-17":{"1. open":"128.0500","2. high":"128.5000","3. low":"124.8500","4. close":"124.9700","5. volume":"6796997"},"2022-02-16":{"1. open":"129.4500","2. high":"130.4400","3. low":"128.2600","4. close":"129.1800","5. volume":"4875612"},"2022-02-15":{"1. open":"130.6400","2. high":"131.6800","3. low":"129.6100","4. close":"129.9400","5. volume":"4395714"},"2022-02-14":{"1. open":"132.5900","2. high":"132.6500","3. low":"129.0700","4. close":"130.1500","5. volume":"5345289"},"2022-02-11":{"1. open":"133.9000","2. high":"134.7099","3. low":"132.3800","4. close":"132.6900","5. volume":"4176155"},"2022-02-10":{"1. open":"135.4700","2. high":"136.5600","3. low":"133.1700","4. close":"133.5200","5. volume":"5978640"},"2022-02-09":{"1. open":"137.8400","2. high":"138.3500","3. low":"136.8300","4. close":"137.7900","5. volume":"5393478"},"2022-02-08":{"1. open":"137.2300","2. high":"137.5200","3. low":"135.7800","4. close":"137.0200","5. volume":"4181825"},"2022-02-07":{"1. open":"137.4500","2. high":"137.8223","3. low":"136.2700","4. close":"137.2400","5. volume":"3759046"},"2022-02-04":{"1. open":"137.8600","2. high":"138.8200","3. low":"136.2150","4. close":"137.1500","5. volume":"4142045"},"2022-02-03":{"1. open":"137.0000","2. high":"138.7600","3. low":"135.8310","4. close":"137.7800","5. volume":"6100777"},"2022-02-02":{"1. open":"135.7000","2. high":"137.5550","3. low":"135.2600","4. close":"137.2500","5. volume":"5357237"},"2022-02-01":{"1. open":"133.7600","2. high":"135.9600","3. low":"132.5000","4. close":"135.5300","5. volume":"6206448"},"2022-01-31":{"1. open":"134.0900","2. high":"134.0900","3. low":"132.3000","4. close":"133.5700","5. volume":"5859043"},"2022-01-28":{"1. open":"133.1900","2. high":"134.5300","3. low":"131.7900","4. close":"134.5000","5. volume":"5471497"},"2022-01-27":{"1. open":"133.6600","2. high":"134.7500","3. low":"132.0800","4. close":"132.5200","5. volume":"5499566"},"2022-01-26":{"1. open":"136.4700","2. high":"137.0700","3. low":"133.1300","4. close":"134.2600","5. volume":"8335992"},"2022-01-25":{"1. open":"129.1400","2. high":"137.3361","3. low":"128.3000","4. close":"136.1000","5. volume":"19715698"},"2022-01-24":{"1. open":"127.9900","2. high":"129.1500","3. low":"124.1930","4. close":"128.8200","5. volume":"13777648"},"2022-01-21":{"1. open":"131.6500","2. high":"131.8700","3. low":"129.2700","4. close":"129.3500","5. volume":"5906950"},"2022-01-20":{"1. open":"131.2600","2. high":"132.8800","3. low":"130.5705","4. close":"130.8200","5. volume":"5278244"},"2022-01-19":{"1. open":"132.9000","2. high":"133.9000","3. low":"131.5000","4. close":"131.5800","5. volume":"4099035"},"2022-01-18":{"1. open":"132.9500","2. high":"133.8900","3. low":"131.7800","4. close":"132.9400","5. volume":"5236258"},"2022-01-14":{"1. open":"134.5500","2. high":"135.1400","3. low":"133.3000","4. close":"134.2100","5. volume":"5310305"},"2022-01-13":{"1. open":"133.9000","2. high":"136.0500","3. low":"133.5600","4. close":"134.7600","5. volume":"4868349"},"2022-01-12":{"1. open":"133.2500","2. high":"134.4700","3. low":"131.3700","4. close":"133.5900","5. volume":"5352014"},"2022-01-11":{"1. open":"130.5200","2. high":"133.2500","3. low":"127.9700","4. close":"132.8700","5. volume":"11081210"},"2022-01-10":{"1. open":"134.4700","2. high":"136.2000","3. low":"133.3800","4. close":"135.0300","5. volume":"5432807"},"2022-01-07":{"1. open":"134.9000","2. high":"135.6618","3. low":"133.5111","4. close":"134.8300","5. volume":"5238099"},"2022-01-06":{"1. open":"138.2000","2. high":"138.4099","3. low":"132.5100","4. close":"135.3400","5. volume":"9908081"},"2022-01-05":{"1. open":"138.3100","2. high":"142.2000","3. low":"137.8800","4. close":"138.2200","5. volume":"8956910"},"2022-01-04":{"1. open":"136.1000","2. high":"139.9500","3. low":"135.9000","4. close":"138.0200","5. volume":"7300011"},"2022-01-03":{"1. open":"134.0700","2. high":"136.2950","3. low":"133.6300","4. close":"136.0400","5. volume":"4610665"},"2021-12-31":{"1. open":"134.0000","2. high":"134.9900","3. low":"133.6100","4. close":"133.6600","5. volume":"3315313"},"2021-12-30":{"1. open":"133.7500","2. high":"134.3700","3. low":"133.3300","4. close":"133.9100","5. volume":"3158111"},"2021-12-29":{"1. open":"132.4000","2. high":"134.2100","3. low":"132.3000","4. close":"133.3500","5. volume":"4239935"},"2021-12-28":{"1. open":"131.6000","2. high":"133.2200","3. low":"131.5900","4. close":"132.6300","5. volume":"3447079"},"2021-12-27":{"1. open":"130.6300","2. high":"131.6500","3. low":"129.9500","4. close":"131.6200","5. volume":"4294499"},"2021-12-23":{"1. open":"130.0000","2. high":"130.9600","3. low":"129.5200","4. close":"130.6300","5. volume":"3649044"},"2021-12-22":{"1. open":"129.0600","2. high":"129.7900","3. low":"127.6000","4. close":"129.7500","5. volume":"3923198"},"2021-12-21":{"1. open":"127.6600","2. high":"129.3356","3. low":"127.6600","4. close":"128.9700","5. volume":"4855972"},"2021-12-20":{"1. open":"125.7200","2. high":"127.2000","3. low":"124.7000","4. close":"127.0600","5. volume":"4941411"},"2021-12-17":{"1. open":"125.8700","2. high":"128.6400","3. low":"125.2093","4. close":"127.4000","5. volume":"10382693"},"2021-12-16":{"1. open":"123.5100","2. high":"126.6399","3. low":"123.4750","4. close":"125.9300","5. volume":"7280537"},"2021-12-15":{"1. open":"123.8000","2. high":"124.8150","3. low":"122.1800","4. close":"123.1100","5. volume":"4990028"},"2021-12-14":{"1. open":"122.3500","2. high":"125.0300","3. low":"122.3000","4. close":"123.7600","5. volume":"5716124"},"2021-12-13":{"1. open":"123.7600","2. high":"124.3554","3. low":"120.7900","4. close":"122.5800","5. volume":"6847468"},"2021-12-10":{"1. open":"124.3000","2. high":"125.3300","3. low":"123.3600","4. close":"124.0900","5. volume":"4966921"},"2021-12-09":{"1. open":"122.1500","2. high":"123.9500","3. low":"121.7900","4. close":"123.5700","5. volume":"4601092"},"2021-12-08":{"1. open":"122.0000","2. high":"123.3800","3. low":"121.5200","4. close":"123.0200","5. volume":"5483948"},"2021-12-07":{"1. open":"120.4750","2. high":"122.0800","3. low":"120.0700","4. close":"121.5800","5. volume":"5193991"},"2021-12-06":{"1. open":"119.4000","2. high":"121.1500","3. low":"119.4000","4. close":"119.9100","5. volume":"4785560"},"2021-12-03":{"1. open":"117.3600","2. high":"119.3600","3. low":"117.3600","4. close":"118.8400","5. volume":"6630139"},"2021-12-02":{"1. open":"117.3700","2. high":"117.9800","3. low":"116.5600","4. close":"116.9000","5. volume":"5267149"},"2021-12-01":{"1. open":"118.2500","2. high":"118.9300","3. low":"116.8500","4. close":"116.9200","5. volume":"5959867"},"2021-11-30":{"1. open":"117.5000","2. high":"119.2399","3. low":"116.4500","4. close":"117.1000","5. volume":"9252701"},"2021-11-29":{"1. open":"118.6200","2. high":"119.6100","3. low":"117.5300","4. close":"118.5000","5. volume":"8949795"},"2021-11-26":{"1. open":"115.0000","2. high":"116.3350","3. low":"114.5600","4. close":"115.8100","5. volume":"3322012"},"2021-11-24":{"1. open":"116.1600","2. high":"117.2700","3. low":"116.0800","4. close":"116.7300","5. volume":"3220802"},"2021-11-23":{"1. open":"116.7900","2. high":"117.9400","3. low":"116.0400","4. close":"116.7900","5. volume":"4914995"},"2021-11-22":{"1. open":"116.0000","2. high":"118.8100","3. low":"115.1900","4. close":"116.4700","5. volume":"6417218"},"2021-11-19":{"1. open":"116.4900","2. high":"116.5600","3. low":"115.2700","4. close":"116.0500","5. volume":"5384548"},"2021-11-18":{"1. open":"118.3600","2. high":"118.3600","3. low":"116.3100","4. close":"116.6600","5. volume":"5047879"},"2021-11-17":{"1. open":"118.3800","2. high":"119.3300","3. low":"117.7800","4. close":"118.0600","5. volume":"4043289"},"2021-11-16":{"1. open":"118.9200","2. high":"119.9000","3. low":"118.4200","4. close":"118.4600","5. volume":"4750760"},"2021-11-15":{"1. open":"119.5400","2. high":"120.1600","3. low":"118.3100","4. close":"118.8700","5. volume":"5046321"},"2021-11-12":{"1. open":"120.0000","2. high":"120.6400","3. low":"118.7800","4. close":"118.9600","5. volume":"5376966"},"2021-11-11":{"1. open":"120.9000","2. high":"121.7894","3. low":"120.0800","4. close":"120.2700","5. volume":"4643257"},"2021-11-10":{"1. open":"121.0000","2. high":"122.4300","3. low":"119.9320","4. close":"120.2200","5. volume":"6268961"},"2021-11-09":{"1. open":"122.5600","2. high":"122.9000","3. low":"120.2600","4. close":"120.8500","5. volume":"7195453"},"2021-11-08":{"1. open":"123.9850","2. high":"124.7800","3. low":"123.5300","4. close":"124.5400","5. volume":"5625275"},"2021-11-05":{"1. open":"121.4300","2. high":"123.7700","3. low":"121.4300","4. close":"123.6100","5. volume":"6790478"},"2021-11-04":{"1. open":"123.0500","2. high":"123.3400","3. low":"119.9000","4. close":"120.8500","5. volume":"7208736"},"2021-11-03":{"1. open":"126.2300","2. high":"127.2900","3. low":"125.6800","4. close":"127.1300","5. volume":"5421406"},"2021-11-02":{"1. open":"126.3000","2. high":"127.1700","3. low":"124.9100","4. close":"126.1800","5. volume":"4496393"},"2021-11-01":{"1. open":"125.0500","2. high":"126.3100","3. low":"123.8375","4. close":"126.2800","5. volume":"5874767"}}} \ No newline at end of file +{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"IBM","3. Last Refreshed":"2022-03-24","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-24":{"1. open":"128.3300","2. high":"129.3700","3. low":"127.8000","4. close":"129.2500","5. volume":"2971075"},"2022-03-23":{"1. open":"129.0800","2. high":"129.3200","3. low":"128.2500","4. close":"128.3000","5. volume":"2924535"},"2022-03-22":{"1. open":"128.5000","2. high":"129.3000","3. low":"127.8500","4. close":"129.0600","5. volume":"2649026"},"2022-03-21":{"1. open":"129.0000","2. high":"129.7400","3. low":"127.4000","4. close":"128.1000","5. volume":"3379393"},"2022-03-18":{"1. open":"127.3800","2. high":"128.9300","3. low":"126.3700","4. close":"128.7600","5. volume":"7400216"},"2022-03-17":{"1. open":"127.1000","2. high":"128.2900","3. low":"126.5300","4. close":"127.9600","5. volume":"3671903"},"2022-03-16":{"1. open":"126.5000","2. high":"127.2842","3. low":"124.7100","4. close":"127.0400","5. volume":"4292845"},"2022-03-15":{"1. open":"124.0000","2. high":"125.9398","3. low":"123.2200","4. close":"125.6400","5. volume":"4021228"},"2022-03-14":{"1. open":"124.4500","2. high":"125.1600","3. low":"122.6850","4. close":"123.9400","5. volume":"3289440"},"2022-03-11":{"1. open":"125.0000","2. high":"126.7700","3. low":"123.9100","4. close":"123.9600","5. volume":"4119630"},"2022-03-10":{"1. open":"125.7500","2. high":"126.0300","3. low":"123.1250","4. close":"124.3500","5. volume":"5326835"},"2022-03-09":{"1. open":"127.4100","2. high":"128.1000","3. low":"125.9100","4. close":"126.2200","5. volume":"4403499"},"2022-03-08":{"1. open":"126.6200","2. high":"128.3450","3. low":"124.8200","4. close":"125.6800","5. volume":"4887565"},"2022-03-07":{"1. open":"126.4700","2. high":"127.9050","3. low":"125.6200","4. close":"126.0700","5. volume":"5047358"},"2022-03-04":{"1. open":"124.4000","2. high":"127.3500","3. low":"124.2103","4. close":"126.6200","5. volume":"4402911"},"2022-03-03":{"1. open":"124.9600","2. high":"126.6650","3. low":"124.2351","4. close":"125.9300","5. volume":"5206649"},"2022-03-02":{"1. open":"122.5900","2. high":"124.6400","3. low":"121.8000","4. close":"123.8600","5. volume":"4891435"},"2022-03-01":{"1. open":"122.6700","2. high":"123.3900","3. low":"120.7000","4. close":"121.3500","5. volume":"4873331"},"2022-02-28":{"1. open":"122.2100","2. high":"123.3851","3. low":"121.0388","4. close":"122.5100","5. volume":"6757332"},"2022-02-25":{"1. open":"122.0500","2. high":"124.2625","3. low":"121.4500","4. close":"124.1800","5. volume":"4460904"},"2022-02-24":{"1. open":"120.0000","2. high":"122.1000","3. low":"118.8100","4. close":"121.9700","5. volume":"6563202"},"2022-02-23":{"1. open":"124.3800","2. high":"124.7000","3. low":"121.8700","4. close":"122.0700","5. volume":"4086367"},"2022-02-22":{"1. open":"124.2000","2. high":"125.0000","3. low":"122.6800","4. close":"123.9200","5. volume":"5306688"},"2022-02-18":{"1. open":"124.9400","2. high":"125.4400","3. low":"123.6100","4. close":"124.3500","5. volume":"4609212"},"2022-02-17":{"1. open":"128.0500","2. high":"128.5000","3. low":"124.8500","4. close":"124.9700","5. volume":"6796997"},"2022-02-16":{"1. open":"129.4500","2. high":"130.4400","3. low":"128.2600","4. close":"129.1800","5. volume":"4875612"},"2022-02-15":{"1. open":"130.6400","2. high":"131.6800","3. low":"129.6100","4. close":"129.9400","5. volume":"4395714"},"2022-02-14":{"1. open":"132.5900","2. high":"132.6500","3. low":"129.0700","4. close":"130.1500","5. volume":"5345289"},"2022-02-11":{"1. open":"133.9000","2. high":"134.7099","3. low":"132.3800","4. close":"132.6900","5. volume":"4176155"},"2022-02-10":{"1. open":"135.4700","2. high":"136.5600","3. low":"133.1700","4. close":"133.5200","5. volume":"5978640"},"2022-02-09":{"1. open":"137.8400","2. high":"138.3500","3. low":"136.8300","4. close":"137.7900","5. volume":"5393478"},"2022-02-08":{"1. open":"137.2300","2. high":"137.5200","3. low":"135.7800","4. close":"137.0200","5. volume":"4181825"},"2022-02-07":{"1. open":"137.4500","2. high":"137.8223","3. low":"136.2700","4. close":"137.2400","5. volume":"3759046"},"2022-02-04":{"1. open":"137.8600","2. high":"138.8200","3. low":"136.2150","4. close":"137.1500","5. volume":"4142045"},"2022-02-03":{"1. open":"137.0000","2. high":"138.7600","3. low":"135.8310","4. close":"137.7800","5. volume":"6100777"},"2022-02-02":{"1. open":"135.7000","2. high":"137.5550","3. low":"135.2600","4. close":"137.2500","5. volume":"5357237"},"2022-02-01":{"1. open":"133.7600","2. high":"135.9600","3. low":"132.5000","4. close":"135.5300","5. volume":"6206448"},"2022-01-31":{"1. open":"134.0900","2. high":"134.0900","3. low":"132.3000","4. close":"133.5700","5. volume":"5859043"},"2022-01-28":{"1. open":"133.1900","2. high":"134.5300","3. low":"131.7900","4. close":"134.5000","5. volume":"5471497"},"2022-01-27":{"1. open":"133.6600","2. high":"134.7500","3. low":"132.0800","4. close":"132.5200","5. volume":"5499566"},"2022-01-26":{"1. open":"136.4700","2. high":"137.0700","3. low":"133.1300","4. close":"134.2600","5. volume":"8335992"},"2022-01-25":{"1. open":"129.1400","2. high":"137.3361","3. low":"128.3000","4. close":"136.1000","5. volume":"19715698"},"2022-01-24":{"1. open":"127.9900","2. high":"129.1500","3. low":"124.1930","4. close":"128.8200","5. volume":"13777648"},"2022-01-21":{"1. open":"131.6500","2. high":"131.8700","3. low":"129.2700","4. close":"129.3500","5. volume":"5906950"},"2022-01-20":{"1. open":"131.2600","2. high":"132.8800","3. low":"130.5705","4. close":"130.8200","5. volume":"5278244"},"2022-01-19":{"1. open":"132.9000","2. high":"133.9000","3. low":"131.5000","4. close":"131.5800","5. volume":"4099035"},"2022-01-18":{"1. open":"132.9500","2. high":"133.8900","3. low":"131.7800","4. close":"132.9400","5. volume":"5236258"},"2022-01-14":{"1. open":"134.5500","2. high":"135.1400","3. low":"133.3000","4. close":"134.2100","5. volume":"5310305"},"2022-01-13":{"1. open":"133.9000","2. high":"136.0500","3. low":"133.5600","4. close":"134.7600","5. volume":"4868349"},"2022-01-12":{"1. open":"133.2500","2. high":"134.4700","3. low":"131.3700","4. close":"133.5900","5. volume":"5352014"},"2022-01-11":{"1. open":"130.5200","2. high":"133.2500","3. low":"127.9700","4. close":"132.8700","5. volume":"11081210"},"2022-01-10":{"1. open":"134.4700","2. high":"136.2000","3. low":"133.3800","4. close":"135.0300","5. volume":"5432807"},"2022-01-07":{"1. open":"134.9000","2. high":"135.6618","3. low":"133.5111","4. close":"134.8300","5. volume":"5238099"},"2022-01-06":{"1. open":"138.2000","2. high":"138.4099","3. low":"132.5100","4. close":"135.3400","5. volume":"9908081"},"2022-01-05":{"1. open":"138.3100","2. high":"142.2000","3. low":"137.8800","4. close":"138.2200","5. volume":"8956910"},"2022-01-04":{"1. open":"136.1000","2. high":"139.9500","3. low":"135.9000","4. close":"138.0200","5. volume":"7300011"},"2022-01-03":{"1. open":"134.0700","2. high":"136.2950","3. low":"133.6300","4. close":"136.0400","5. volume":"4610665"},"2021-12-31":{"1. open":"134.0000","2. high":"134.9900","3. low":"133.6100","4. close":"133.6600","5. volume":"3315313"},"2021-12-30":{"1. open":"133.7500","2. high":"134.3700","3. low":"133.3300","4. close":"133.9100","5. volume":"3158111"},"2021-12-29":{"1. open":"132.4000","2. high":"134.2100","3. low":"132.3000","4. close":"133.3500","5. volume":"4239935"},"2021-12-28":{"1. open":"131.6000","2. high":"133.2200","3. low":"131.5900","4. close":"132.6300","5. volume":"3447079"},"2021-12-27":{"1. open":"130.6300","2. high":"131.6500","3. low":"129.9500","4. close":"131.6200","5. volume":"4294499"},"2021-12-23":{"1. open":"130.0000","2. high":"130.9600","3. low":"129.5200","4. close":"130.6300","5. volume":"3649044"},"2021-12-22":{"1. open":"129.0600","2. high":"129.7900","3. low":"127.6000","4. close":"129.7500","5. volume":"3923198"},"2021-12-21":{"1. open":"127.6600","2. high":"129.3356","3. low":"127.6600","4. close":"128.9700","5. volume":"4855972"},"2021-12-20":{"1. open":"125.7200","2. high":"127.2000","3. low":"124.7000","4. close":"127.0600","5. volume":"4941411"},"2021-12-17":{"1. open":"125.8700","2. high":"128.6400","3. low":"125.2093","4. close":"127.4000","5. volume":"10382693"},"2021-12-16":{"1. open":"123.5100","2. high":"126.6399","3. low":"123.4750","4. close":"125.9300","5. volume":"7280537"},"2021-12-15":{"1. open":"123.8000","2. high":"124.8150","3. low":"122.1800","4. close":"123.1100","5. volume":"4990028"},"2021-12-14":{"1. open":"122.3500","2. high":"125.0300","3. low":"122.3000","4. close":"123.7600","5. volume":"5716124"},"2021-12-13":{"1. open":"123.7600","2. high":"124.3554","3. low":"120.7900","4. close":"122.5800","5. volume":"6847468"},"2021-12-10":{"1. open":"124.3000","2. high":"125.3300","3. low":"123.3600","4. close":"124.0900","5. volume":"4966921"},"2021-12-09":{"1. open":"122.1500","2. high":"123.9500","3. low":"121.7900","4. close":"123.5700","5. volume":"4601092"},"2021-12-08":{"1. open":"122.0000","2. high":"123.3800","3. low":"121.5200","4. close":"123.0200","5. volume":"5483948"},"2021-12-07":{"1. open":"120.4750","2. high":"122.0800","3. low":"120.0700","4. close":"121.5800","5. volume":"5193991"},"2021-12-06":{"1. open":"119.4000","2. high":"121.1500","3. low":"119.4000","4. close":"119.9100","5. volume":"4785560"},"2021-12-03":{"1. open":"117.3600","2. high":"119.3600","3. low":"117.3600","4. close":"118.8400","5. volume":"6630139"},"2021-12-02":{"1. open":"117.3700","2. high":"117.9800","3. low":"116.5600","4. close":"116.9000","5. volume":"5267149"},"2021-12-01":{"1. open":"118.2500","2. high":"118.9300","3. low":"116.8500","4. close":"116.9200","5. volume":"5959867"},"2021-11-30":{"1. open":"117.5000","2. high":"119.2399","3. low":"116.4500","4. close":"117.1000","5. volume":"9252701"},"2021-11-29":{"1. open":"118.6200","2. high":"119.6100","3. low":"117.5300","4. close":"118.5000","5. volume":"8949795"},"2021-11-26":{"1. open":"115.0000","2. high":"116.3350","3. low":"114.5600","4. close":"115.8100","5. volume":"3322012"},"2021-11-24":{"1. open":"116.1600","2. high":"117.2700","3. low":"116.0800","4. close":"116.7300","5. volume":"3220802"},"2021-11-23":{"1. open":"116.7900","2. high":"117.9400","3. low":"116.0400","4. close":"116.7900","5. volume":"4914995"},"2021-11-22":{"1. open":"116.0000","2. high":"118.8100","3. low":"115.1900","4. close":"116.4700","5. volume":"6417218"},"2021-11-19":{"1. open":"116.4900","2. high":"116.5600","3. low":"115.2700","4. close":"116.0500","5. volume":"5384548"},"2021-11-18":{"1. open":"118.3600","2. high":"118.3600","3. low":"116.3100","4. close":"116.6600","5. volume":"5047879"},"2021-11-17":{"1. open":"118.3800","2. high":"119.3300","3. low":"117.7800","4. close":"118.0600","5. volume":"4043289"},"2021-11-16":{"1. open":"118.9200","2. high":"119.9000","3. low":"118.4200","4. close":"118.4600","5. volume":"4750760"},"2021-11-15":{"1. open":"119.5400","2. high":"120.1600","3. low":"118.3100","4. close":"118.8700","5. volume":"5046321"},"2021-11-12":{"1. open":"120.0000","2. high":"120.6400","3. low":"118.7800","4. close":"118.9600","5. volume":"5376966"},"2021-11-11":{"1. open":"120.9000","2. high":"121.7894","3. low":"120.0800","4. close":"120.2700","5. volume":"4643257"},"2021-11-10":{"1. open":"121.0000","2. high":"122.4300","3. low":"119.9320","4. close":"120.2200","5. volume":"6268961"},"2021-11-09":{"1. open":"122.5600","2. high":"122.9000","3. low":"120.2600","4. close":"120.8500","5. volume":"7195453"},"2021-11-08":{"1. open":"123.9850","2. high":"124.7800","3. low":"123.5300","4. close":"124.5400","5. volume":"5625275"},"2021-11-05":{"1. open":"121.4300","2. high":"123.7700","3. low":"121.4300","4. close":"123.6100","5. volume":"6790478"},"2021-11-04":{"1. open":"123.0500","2. high":"123.3400","3. low":"119.9000","4. close":"120.8500","5. volume":"7208736"},"2021-11-03":{"1. open":"126.2300","2. high":"127.2900","3. low":"125.6800","4. close":"127.1300","5. volume":"5421406"},"2021-11-02":{"1. open":"126.3000","2. high":"127.1700","3. low":"124.9100","4. close":"126.1800","5. volume":"4496393"},"2021-11-01":{"1. open":"125.0500","2. high":"126.3100","3. low":"123.8375","4. close":"126.2800","5. volume":"5874767"}}} \ No newline at end of file diff --git a/Backend/data/daily_ZEN.json b/Backend/data/daily_ZEN.json deleted file mode 100644 index 83d4e5f6..00000000 --- a/Backend/data/daily_ZEN.json +++ /dev/null @@ -1 +0,0 @@ -{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"ZEN","3. Last Refreshed":"2022-03-24","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-24":{"1. open":"119.9600","2. high":"120.6400","3. low":"117.4400","4. close":"119.4800","5. volume":"1314806"},"2022-03-23":{"1. open":"119.0100","2. high":"119.6500","3. low":"117.5050","4. close":"118.9700","5. volume":"1512749"},"2022-03-22":{"1. open":"119.2700","2. high":"121.4600","3. low":"118.9800","4. close":"120.6100","5. volume":"1693222"},"2022-03-21":{"1. open":"116.5000","2. high":"121.0200","3. low":"116.5000","4. close":"119.8900","5. volume":"2129548"},"2022-03-18":{"1. open":"116.4900","2. high":"117.9900","3. low":"114.2500","4. close":"116.5900","5. volume":"2422632"},"2022-03-17":{"1. open":"113.2500","2. high":"116.1700","3. low":"112.0800","4. close":"115.4800","5. volume":"1835542"},"2022-03-16":{"1. open":"111.6400","2. high":"113.3600","3. low":"107.5300","4. close":"112.8200","5. volume":"2479137"},"2022-03-15":{"1. open":"109.5300","2. high":"112.0800","3. low":"107.7700","4. close":"111.2000","5. volume":"1463246"},"2022-03-14":{"1. open":"113.3500","2. high":"113.7000","3. low":"107.9555","4. close":"110.7900","5. volume":"1505759"},"2022-03-11":{"1. open":"118.9200","2. high":"119.5900","3. low":"113.8800","4. close":"113.9700","5. volume":"1198588"},"2022-03-10":{"1. open":"115.0000","2. high":"119.1400","3. low":"114.2982","4. close":"118.9300","5. volume":"1283084"},"2022-03-09":{"1. open":"115.6800","2. high":"118.8700","3. low":"114.6530","4. close":"116.3600","5. volume":"2509130"},"2022-03-08":{"1. open":"112.9900","2. high":"115.8800","3. low":"111.6100","4. close":"113.5600","5. volume":"2089967"},"2022-03-07":{"1. open":"120.6800","2. high":"121.1150","3. low":"112.3900","4. close":"113.3300","5. volume":"1932992"},"2022-03-04":{"1. open":"122.9400","2. high":"123.0000","3. low":"118.4600","4. close":"119.8100","5. volume":"1818669"},"2022-03-03":{"1. open":"124.3300","2. high":"124.8000","3. low":"121.3900","4. close":"122.0000","5. volume":"2537304"},"2022-03-02":{"1. open":"120.0900","2. high":"125.1000","3. low":"119.5600","4. close":"124.1900","5. volume":"3460050"},"2022-03-01":{"1. open":"116.0000","2. high":"118.2000","3. low":"115.4700","4. close":"116.8000","5. volume":"2179244"},"2022-02-28":{"1. open":"116.0600","2. high":"117.6300","3. low":"114.5700","4. close":"116.6700","5. volume":"2783008"},"2022-02-25":{"1. open":"116.0000","2. high":"117.5000","3. low":"113.2800","4. close":"115.4800","5. volume":"1550403"},"2022-02-24":{"1. open":"107.7300","2. high":"115.8300","3. low":"107.5600","4. close":"115.0600","5. volume":"2276474"},"2022-02-23":{"1. open":"112.3000","2. high":"113.8300","3. low":"110.2800","4. close":"112.0600","5. volume":"1926376"},"2022-02-22":{"1. open":"113.4200","2. high":"115.2100","3. low":"111.0800","4. close":"111.3900","5. volume":"2394826"},"2022-02-18":{"1. open":"116.8200","2. high":"117.6900","3. low":"113.1500","4. close":"115.0600","5. volume":"2810255"},"2022-02-17":{"1. open":"116.0900","2. high":"118.3200","3. low":"115.7600","4. close":"116.6500","5. volume":"1991961"},"2022-02-16":{"1. open":"117.2600","2. high":"119.8800","3. low":"115.3200","4. close":"118.0000","5. volume":"2104947"},"2022-02-15":{"1. open":"116.8700","2. high":"120.1800","3. low":"116.5600","4. close":"118.7800","5. volume":"2860716"},"2022-02-14":{"1. open":"114.4800","2. high":"117.5400","3. low":"112.3000","4. close":"116.3900","5. volume":"3277381"},"2022-02-11":{"1. open":"118.0250","2. high":"119.7500","3. low":"112.8300","4. close":"116.2700","5. volume":"7319443"},"2022-02-10":{"1. open":"101.4200","2. high":"121.6199","3. low":"100.6500","4. close":"114.1800","5. volume":"6600366"},"2022-02-09":{"1. open":"100.7700","2. high":"103.3800","3. low":"99.8000","4. close":"103.1100","5. volume":"1754598"},"2022-02-08":{"1. open":"97.6000","2. high":"99.8100","3. low":"97.6000","4. close":"99.1900","5. volume":"1239846"},"2022-02-07":{"1. open":"98.0000","2. high":"101.1900","3. low":"97.8200","4. close":"98.4300","5. volume":"1055177"},"2022-02-04":{"1. open":"95.4400","2. high":"98.2600","3. low":"93.7200","4. close":"97.6800","5. volume":"1393480"},"2022-02-03":{"1. open":"97.0800","2. high":"98.8000","3. low":"94.2900","4. close":"94.5700","5. volume":"1490098"},"2022-02-02":{"1. open":"101.1000","2. high":"101.1300","3. low":"98.0500","4. close":"99.4200","5. volume":"1568228"},"2022-02-01":{"1. open":"99.4400","2. high":"101.7900","3. low":"97.6300","4. close":"100.2300","5. volume":"1598502"},"2022-01-31":{"1. open":"95.6000","2. high":"98.6800","3. low":"95.2343","4. close":"98.5100","5. volume":"2186667"},"2022-01-28":{"1. open":"90.9400","2. high":"94.6250","3. low":"89.3300","4. close":"94.5100","5. volume":"1372986"},"2022-01-27":{"1. open":"93.4400","2. high":"93.6000","3. low":"89.6200","4. close":"90.5200","5. volume":"1253135"},"2022-01-26":{"1. open":"95.9000","2. high":"96.2400","3. low":"91.4700","4. close":"92.0300","5. volume":"1586416"},"2022-01-25":{"1. open":"94.4500","2. high":"95.4300","3. low":"91.5300","4. close":"93.7200","5. volume":"1967282"},"2022-01-24":{"1. open":"92.2100","2. high":"96.0350","3. low":"87.9000","4. close":"95.7700","5. volume":"2613027"},"2022-01-21":{"1. open":"96.8300","2. high":"98.1600","3. low":"94.3300","4. close":"94.7400","5. volume":"2139706"},"2022-01-20":{"1. open":"99.0000","2. high":"100.9500","3. low":"97.2900","4. close":"97.6900","5. volume":"1075764"},"2022-01-19":{"1. open":"96.4700","2. high":"100.2400","3. low":"96.2900","4. close":"97.5700","5. volume":"1349586"},"2022-01-18":{"1. open":"98.0200","2. high":"99.4000","3. low":"96.2100","4. close":"96.8800","5. volume":"2893687"},"2022-01-14":{"1. open":"98.5900","2. high":"101.0100","3. low":"97.0700","4. close":"100.4100","5. volume":"1437701"},"2022-01-13":{"1. open":"102.2700","2. high":"102.2700","3. low":"99.0200","4. close":"99.1500","5. volume":"1605247"},"2022-01-12":{"1. open":"102.1900","2. high":"105.0000","3. low":"101.3200","4. close":"101.9500","5. volume":"1563033"},"2022-01-11":{"1. open":"99.9900","2. high":"101.4400","3. low":"99.0100","4. close":"100.4500","5. volume":"1624903"},"2022-01-10":{"1. open":"97.3300","2. high":"100.1100","3. low":"95.9200","4. close":"99.9900","5. volume":"1606240"},"2022-01-07":{"1. open":"97.9500","2. high":"100.2200","3. low":"97.3000","4. close":"97.9200","5. volume":"1221061"},"2022-01-06":{"1. open":"96.6300","2. high":"101.5800","3. low":"96.0500","4. close":"98.3600","5. volume":"1492142"},"2022-01-05":{"1. open":"99.7300","2. high":"101.2300","3. low":"96.3400","4. close":"96.8700","5. volume":"2306082"},"2022-01-04":{"1. open":"102.9900","2. high":"103.3100","3. low":"98.9600","4. close":"102.2500","5. volume":"1508281"},"2022-01-03":{"1. open":"104.1600","2. high":"104.6700","3. low":"100.9200","4. close":"103.5300","5. volume":"1305701"},"2021-12-31":{"1. open":"105.1800","2. high":"106.0100","3. low":"104.0500","4. close":"104.2900","5. volume":"1374251"},"2021-12-30":{"1. open":"102.8400","2. high":"107.1300","3. low":"102.7950","4. close":"106.1800","5. volume":"2299408"},"2021-12-29":{"1. open":"104.4900","2. high":"104.5000","3. low":"101.8150","4. close":"102.4400","5. volume":"788265"},"2021-12-28":{"1. open":"104.2500","2. high":"104.8600","3. low":"103.1100","4. close":"104.2300","5. volume":"883110"},"2021-12-27":{"1. open":"103.5000","2. high":"105.4600","3. low":"103.1900","4. close":"103.8500","5. volume":"988603"},"2021-12-23":{"1. open":"103.8600","2. high":"104.1900","3. low":"102.8600","4. close":"103.3500","5. volume":"862379"},"2021-12-22":{"1. open":"104.8600","2. high":"106.4100","3. low":"102.8500","4. close":"103.8200","5. volume":"672855"},"2021-12-21":{"1. open":"102.5500","2. high":"105.7350","3. low":"102.0000","4. close":"104.7400","5. volume":"1786412"},"2021-12-20":{"1. open":"101.5900","2. high":"103.2000","3. low":"100.3300","4. close":"101.6900","5. volume":"1361320"},"2021-12-17":{"1. open":"97.2500","2. high":"102.5100","3. low":"95.3100","4. close":"102.3200","5. volume":"3023182"},"2021-12-16":{"1. open":"100.0000","2. high":"101.5900","3. low":"96.3900","4. close":"98.7000","5. volume":"1924954"},"2021-12-15":{"1. open":"98.8500","2. high":"100.2200","3. low":"96.6900","4. close":"99.4500","5. volume":"2650592"},"2021-12-14":{"1. open":"99.6400","2. high":"100.8400","3. low":"98.3900","4. close":"100.2500","5. volume":"1752837"},"2021-12-13":{"1. open":"101.3200","2. high":"101.9200","3. low":"98.8350","4. close":"100.9500","5. volume":"1844066"},"2021-12-10":{"1. open":"101.9700","2. high":"103.5950","3. low":"100.0200","4. close":"100.5700","5. volume":"1371414"},"2021-12-09":{"1. open":"103.3700","2. high":"104.3900","3. low":"100.9100","4. close":"101.2900","5. volume":"1209333"},"2021-12-08":{"1. open":"102.0000","2. high":"104.9300","3. low":"100.7500","4. close":"103.8300","5. volume":"2246395"},"2021-12-07":{"1. open":"102.9300","2. high":"107.4000","3. low":"101.6700","4. close":"102.1300","5. volume":"3406599"},"2021-12-06":{"1. open":"95.3900","2. high":"99.1000","3. low":"93.7000","4. close":"97.9100","5. volume":"1875385"},"2021-12-03":{"1. open":"100.8100","2. high":"101.9500","3. low":"91.0800","4. close":"96.8800","5. volume":"3581222"},"2021-12-02":{"1. open":"100.0200","2. high":"101.8000","3. low":"96.9500","4. close":"99.8000","5. volume":"3114214"},"2021-12-01":{"1. open":"102.0000","2. high":"104.0000","3. low":"98.1850","4. close":"99.3800","5. volume":"4033763"},"2021-11-30":{"1. open":"94.7200","2. high":"103.8600","3. low":"93.7500","4. close":"102.1100","5. volume":"7411617"},"2021-11-29":{"1. open":"94.6900","2. high":"95.8100","3. low":"93.1900","4. close":"95.1100","5. volume":"2019156"},"2021-11-26":{"1. open":"93.5900","2. high":"94.4416","3. low":"92.2187","4. close":"94.2700","5. volume":"1420385"},"2021-11-24":{"1. open":"91.4600","2. high":"94.5200","3. low":"90.5500","4. close":"94.1600","5. volume":"2132136"},"2021-11-23":{"1. open":"93.6800","2. high":"95.0700","3. low":"90.5100","4. close":"91.7400","5. volume":"3907035"},"2021-11-22":{"1. open":"97.8700","2. high":"98.0000","3. low":"91.6500","4. close":"94.8500","5. volume":"3986433"},"2021-11-19":{"1. open":"96.2800","2. high":"98.5000","3. low":"95.6000","4. close":"97.2100","5. volume":"3980804"},"2021-11-18":{"1. open":"102.6500","2. high":"102.8300","3. low":"97.7000","4. close":"97.7600","5. volume":"3343860"},"2021-11-17":{"1. open":"104.5000","2. high":"105.3100","3. low":"101.5200","4. close":"103.1300","5. volume":"2601418"},"2021-11-16":{"1. open":"103.8400","2. high":"104.6400","3. low":"102.3300","4. close":"104.1300","5. volume":"1698264"},"2021-11-15":{"1. open":"103.1400","2. high":"104.6100","3. low":"102.4900","4. close":"103.3900","5. volume":"2050736"},"2021-11-12":{"1. open":"101.0000","2. high":"103.8650","3. low":"100.9800","4. close":"103.8300","5. volume":"1561514"},"2021-11-11":{"1. open":"101.0000","2. high":"102.6500","3. low":"99.0100","4. close":"100.1300","5. volume":"2311661"},"2021-11-10":{"1. open":"99.5400","2. high":"101.6000","3. low":"99.0200","4. close":"100.6400","5. volume":"2746845"},"2021-11-09":{"1. open":"101.7400","2. high":"102.6500","3. low":"99.9400","4. close":"100.3500","5. volume":"1428284"},"2021-11-08":{"1. open":"101.0400","2. high":"102.5600","3. low":"100.1800","4. close":"101.0000","5. volume":"2355570"},"2021-11-05":{"1. open":"103.0200","2. high":"103.7200","3. low":"100.7600","4. close":"101.0700","5. volume":"2307225"},"2021-11-04":{"1. open":"104.1800","2. high":"105.0000","3. low":"102.8500","4. close":"102.8700","5. volume":"1775433"},"2021-11-03":{"1. open":"104.1100","2. high":"105.1800","3. low":"102.5504","4. close":"104.0600","5. volume":"2093107"},"2021-11-02":{"1. open":"100.5500","2. high":"105.2100","3. low":"99.9000","4. close":"104.8800","5. volume":"4577138"},"2021-11-01":{"1. open":"103.7000","2. high":"104.0100","3. low":"99.2900","4. close":"100.8800","5. volume":"7630042"}}} \ No newline at end of file diff --git a/Backend/data/intraday_ABC.json b/Backend/data/intraday_ABC.json new file mode 100644 index 00000000..0196d2a7 --- /dev/null +++ b/Backend/data/intraday_ABC.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"ABC","3. Last Refreshed":"2022-03-24 16:30:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-24 16:30:00":{"1. open":"152.6100","2. high":"152.6100","3. low":"152.6100","4. close":"152.6100","5. volume":"18709"},"2022-03-24 16:00:00":{"1. open":"152.2100","2. high":"152.6400","3. low":"152.1700","4. close":"152.6100","5. volume":"111479"},"2022-03-24 15:30:00":{"1. open":"152.0400","2. high":"152.3600","3. low":"151.9650","4. close":"152.2400","5. volume":"43565"},"2022-03-24 15:00:00":{"1. open":"151.7450","2. high":"152.0950","3. low":"151.6600","4. close":"152.0200","5. volume":"42138"},"2022-03-24 14:30:00":{"1. open":"152.2700","2. high":"152.2700","3. low":"151.7100","4. close":"151.7100","5. volume":"39337"},"2022-03-24 14:00:00":{"1. open":"151.8900","2. high":"152.3490","3. low":"151.8400","4. close":"152.2300","5. volume":"36029"},"2022-03-24 13:30:00":{"1. open":"152.2250","2. high":"152.2300","3. low":"151.8600","4. close":"151.8800","5. volume":"60373"},"2022-03-24 13:00:00":{"1. open":"151.8400","2. high":"152.2200","3. low":"151.7800","4. close":"152.2200","5. volume":"52305"},"2022-03-24 12:30:00":{"1. open":"152.3700","2. high":"152.5200","3. low":"151.7600","4. close":"151.9000","5. volume":"20209"},"2022-03-24 12:00:00":{"1. open":"152.7600","2. high":"152.7600","3. low":"152.0300","4. close":"152.2900","5. volume":"28198"},"2022-03-24 11:30:00":{"1. open":"152.3900","2. high":"152.7900","3. low":"152.3900","4. close":"152.7200","5. volume":"32144"},"2022-03-24 11:00:00":{"1. open":"152.3900","2. high":"152.6900","3. low":"152.1100","4. close":"152.3029","5. volume":"35631"},"2022-03-24 10:30:00":{"1. open":"151.9800","2. high":"152.8700","3. low":"151.9800","4. close":"152.4000","5. volume":"42202"},"2022-03-24 10:00:00":{"1. open":"152.4800","2. high":"152.4800","3. low":"151.2900","4. close":"152.0500","5. volume":"56356"},"2022-03-23 17:00:00":{"1. open":"151.5300","2. high":"151.5300","3. low":"151.5300","4. close":"151.5300","5. volume":"1135"},"2022-03-23 16:30:00":{"1. open":"151.5300","2. high":"151.5300","3. low":"151.5300","4. close":"151.5300","5. volume":"34943"},"2022-03-23 16:00:00":{"1. open":"151.9600","2. high":"152.0350","3. low":"151.5100","4. close":"151.5200","5. volume":"177924"},"2022-03-23 15:30:00":{"1. open":"151.9700","2. high":"152.3000","3. low":"151.9500","4. close":"152.0100","5. volume":"65254"},"2022-03-23 15:00:00":{"1. open":"151.9750","2. high":"152.2000","3. low":"151.9200","4. close":"151.9600","5. volume":"68352"},"2022-03-23 14:30:00":{"1. open":"151.8800","2. high":"152.2100","3. low":"151.8000","4. close":"151.9750","5. volume":"71872"},"2022-03-23 14:00:00":{"1. open":"151.3000","2. high":"151.9900","3. low":"151.1800","4. close":"151.8700","5. volume":"57053"},"2022-03-23 13:30:00":{"1. open":"151.3450","2. high":"151.5400","3. low":"151.3200","4. close":"151.3900","5. volume":"38980"},"2022-03-23 13:00:00":{"1. open":"150.6800","2. high":"151.3700","3. low":"150.5400","4. close":"151.3400","5. volume":"65369"},"2022-03-23 12:30:00":{"1. open":"151.0200","2. high":"151.1500","3. low":"150.6300","4. close":"150.6400","5. volume":"46781"},"2022-03-23 12:00:00":{"1. open":"151.7500","2. high":"151.7500","3. low":"150.8800","4. close":"151.0300","5. volume":"50201"},"2022-03-23 11:30:00":{"1. open":"151.2700","2. high":"151.8250","3. low":"151.2200","4. close":"151.7300","5. volume":"49361"},"2022-03-23 11:00:00":{"1. open":"151.9200","2. high":"151.9500","3. low":"151.1300","4. close":"151.2300","5. volume":"61698"},"2022-03-23 10:30:00":{"1. open":"151.6800","2. high":"152.2900","3. low":"151.2000","4. close":"151.9200","5. volume":"45779"},"2022-03-23 10:00:00":{"1. open":"152.0100","2. high":"152.5600","3. low":"151.4200","4. close":"151.6650","5. volume":"54488"},"2022-03-22 16:30:00":{"1. open":"152.1100","2. high":"152.1100","3. low":"152.1100","4. close":"152.1100","5. volume":"14327"},"2022-03-22 16:00:00":{"1. open":"152.3400","2. high":"152.6200","3. low":"151.9800","4. close":"152.1700","5. volume":"184529"},"2022-03-22 15:30:00":{"1. open":"152.2800","2. high":"152.5800","3. low":"152.2800","4. close":"152.3800","5. volume":"43497"},"2022-03-22 15:00:00":{"1. open":"152.3400","2. high":"152.5700","3. low":"152.2757","4. close":"152.2800","5. volume":"35903"},"2022-03-22 14:30:00":{"1. open":"152.4300","2. high":"152.5000","3. low":"152.2200","4. close":"152.4000","5. volume":"28846"},"2022-03-22 14:00:00":{"1. open":"152.6400","2. high":"152.6600","3. low":"152.3800","4. close":"152.4300","5. volume":"24568"},"2022-03-22 13:30:00":{"1. open":"152.5200","2. high":"152.6600","3. low":"152.3900","4. close":"152.6050","5. volume":"33386"},"2022-03-22 13:00:00":{"1. open":"152.3200","2. high":"152.6395","3. low":"152.1800","4. close":"152.5000","5. volume":"24631"},"2022-03-22 12:30:00":{"1. open":"152.5099","2. high":"152.6000","3. low":"152.2300","4. close":"152.3207","5. volume":"21184"},"2022-03-22 12:00:00":{"1. open":"151.7600","2. high":"152.6600","3. low":"151.6100","4. close":"152.4500","5. volume":"32443"},"2022-03-22 11:30:00":{"1. open":"152.6000","2. high":"152.6000","3. low":"151.6900","4. close":"151.8100","5. volume":"50692"},"2022-03-22 11:00:00":{"1. open":"152.3300","2. high":"152.8224","3. low":"152.1900","4. close":"152.5100","5. volume":"48400"},"2022-03-22 10:30:00":{"1. open":"152.5100","2. high":"152.5800","3. low":"151.7700","4. close":"152.2500","5. volume":"62732"},"2022-03-22 10:00:00":{"1. open":"153.8100","2. high":"154.6700","3. low":"152.3100","4. close":"152.5850","5. volume":"68126"},"2022-03-21 16:30:00":{"1. open":"153.1800","2. high":"153.1800","3. low":"153.1800","4. close":"153.1800","5. volume":"8275"},"2022-03-21 16:00:00":{"1. open":"153.1700","2. high":"153.5000","3. low":"152.9600","4. close":"153.2000","5. volume":"232452"},"2022-03-21 15:30:00":{"1. open":"152.6000","2. high":"153.2200","3. low":"152.6000","4. close":"153.1700","5. volume":"43051"},"2022-03-21 15:00:00":{"1. open":"153.0078","2. high":"153.3100","3. low":"152.6000","4. close":"152.6000","5. volume":"39316"},"2022-03-21 14:30:00":{"1. open":"152.9200","2. high":"153.2650","3. low":"152.7100","4. close":"153.0600","5. volume":"32597"},"2022-03-21 14:00:00":{"1. open":"152.7700","2. high":"153.3959","3. low":"152.7700","4. close":"152.9170","5. volume":"43488"},"2022-03-21 13:30:00":{"1. open":"152.7606","2. high":"153.0100","3. low":"152.5100","4. close":"152.6700","5. volume":"30003"},"2022-03-21 13:00:00":{"1. open":"152.7500","2. high":"153.0200","3. low":"152.5000","4. close":"152.7700","5. volume":"24267"},"2022-03-21 12:30:00":{"1. open":"152.9200","2. high":"153.3000","3. low":"152.8400","4. close":"152.8900","5. volume":"25819"},"2022-03-21 12:00:00":{"1. open":"153.2400","2. high":"153.4100","3. low":"152.7300","4. close":"152.9500","5. volume":"40736"},"2022-03-21 11:30:00":{"1. open":"153.9700","2. high":"154.1200","3. low":"153.0200","4. close":"153.1400","5. volume":"63586"},"2022-03-21 11:00:00":{"1. open":"154.4750","2. high":"154.6100","3. low":"153.2500","4. close":"153.9200","5. volume":"51331"},"2022-03-21 10:30:00":{"1. open":"154.6750","2. high":"154.9500","3. low":"154.0500","4. close":"154.4850","5. volume":"65816"},"2022-03-21 10:00:00":{"1. open":"152.6000","2. high":"155.7600","3. low":"152.4500","4. close":"154.6500","5. volume":"84565"},"2022-03-18 16:30:00":{"1. open":"152.0000","2. high":"152.0000","3. low":"152.0000","4. close":"152.0000","5. volume":"65798"},"2022-03-18 16:00:00":{"1. open":"151.2650","2. high":"152.3700","3. low":"151.2300","4. close":"151.9300","5. volume":"343863"},"2022-03-18 15:30:00":{"1. open":"150.6400","2. high":"151.4500","3. low":"150.6200","4. close":"151.2700","5. volume":"52830"},"2022-03-18 15:00:00":{"1. open":"150.8600","2. high":"150.9450","3. low":"150.4900","4. close":"150.6705","5. volume":"55205"},"2022-03-18 14:30:00":{"1. open":"151.2450","2. high":"151.4000","3. low":"150.7800","4. close":"150.8050","5. volume":"56697"},"2022-03-18 14:00:00":{"1. open":"151.4400","2. high":"151.5600","3. low":"151.0250","4. close":"151.2200","5. volume":"55112"},"2022-03-18 13:30:00":{"1. open":"150.9700","2. high":"151.5400","3. low":"150.8900","4. close":"151.5400","5. volume":"26521"},"2022-03-18 13:00:00":{"1. open":"150.8400","2. high":"150.9700","3. low":"150.7600","4. close":"150.9000","5. volume":"26250"},"2022-03-18 12:30:00":{"1. open":"150.3700","2. high":"150.9300","3. low":"150.2900","4. close":"150.8850","5. volume":"37450"},"2022-03-18 12:00:00":{"1. open":"150.3000","2. high":"150.8250","3. low":"150.1800","4. close":"150.4140","5. volume":"47539"},"2022-03-18 11:30:00":{"1. open":"150.4900","2. high":"150.8000","3. low":"150.2200","4. close":"150.3200","5. volume":"50284"},"2022-03-18 11:00:00":{"1. open":"151.0300","2. high":"151.3800","3. low":"150.1100","4. close":"150.3400","5. volume":"26839"},"2022-03-18 10:30:00":{"1. open":"151.0000","2. high":"151.9700","3. low":"150.7000","4. close":"151.2500","5. volume":"50863"},"2022-03-18 10:00:00":{"1. open":"152.2100","2. high":"152.4500","3. low":"150.7011","4. close":"151.0900","5. volume":"142118"},"2022-03-17 16:30:00":{"1. open":"152.2000","2. high":"152.2000","3. low":"152.2000","4. close":"152.2000","5. volume":"8416"},"2022-03-17 16:00:00":{"1. open":"151.6100","2. high":"152.2600","3. low":"151.5550","4. close":"152.2400","5. volume":"210166"},"2022-03-17 15:30:00":{"1. open":"151.8850","2. high":"151.9100","3. low":"151.4700","4. close":"151.6300","5. volume":"42609"},"2022-03-17 15:00:00":{"1. open":"151.8950","2. high":"152.1250","3. low":"151.6500","4. close":"151.7800","5. volume":"74080"},"2022-03-17 14:30:00":{"1. open":"152.2634","2. high":"152.4000","3. low":"151.9300","4. close":"151.9600","5. volume":"51623"},"2022-03-17 14:00:00":{"1. open":"151.8800","2. high":"152.3100","3. low":"151.8200","4. close":"152.2650","5. volume":"27177"},"2022-03-17 13:30:00":{"1. open":"151.4600","2. high":"151.9150","3. low":"151.3000","4. close":"151.8900","5. volume":"56493"},"2022-03-17 13:00:00":{"1. open":"151.8800","2. high":"152.1100","3. low":"151.4500","4. close":"151.5200","5. volume":"103102"},"2022-03-17 12:30:00":{"1. open":"151.8100","2. high":"151.9400","3. low":"151.4100","4. close":"151.8550","5. volume":"59424"},"2022-03-17 12:00:00":{"1. open":"151.2800","2. high":"152.0400","3. low":"151.2075","4. close":"151.8200","5. volume":"34462"},"2022-03-17 11:30:00":{"1. open":"152.3700","2. high":"152.3700","3. low":"150.8900","4. close":"151.2450","5. volume":"55867"},"2022-03-17 11:00:00":{"1. open":"151.8800","2. high":"152.3200","3. low":"151.3700","4. close":"152.3100","5. volume":"71413"},"2022-03-17 10:30:00":{"1. open":"150.6100","2. high":"152.2000","3. low":"150.0300","4. close":"151.8954","5. volume":"88011"},"2022-03-17 10:00:00":{"1. open":"150.0300","2. high":"151.2700","3. low":"149.6900","4. close":"150.4400","5. volume":"100678"},"2022-03-16 20:00:00":{"1. open":"150.4000","2. high":"150.4000","3. low":"150.4000","4. close":"150.4000","5. volume":"200"},"2022-03-16 16:30:00":{"1. open":"150.5000","2. high":"150.5000","3. low":"150.5000","4. close":"150.5000","5. volume":"13102"},"2022-03-16 16:00:00":{"1. open":"150.0000","2. high":"150.5600","3. low":"149.5580","4. close":"150.5200","5. volume":"153677"},"2022-03-16 15:30:00":{"1. open":"148.7300","2. high":"150.1750","3. low":"148.7200","4. close":"150.0000","5. volume":"39419"},"2022-03-16 15:00:00":{"1. open":"148.4800","2. high":"149.3520","3. low":"148.3200","4. close":"148.6100","5. volume":"36455"},"2022-03-16 14:30:00":{"1. open":"149.5100","2. high":"149.6800","3. low":"148.5300","4. close":"148.5300","5. volume":"54438"},"2022-03-16 14:00:00":{"1. open":"149.8250","2. high":"149.9300","3. low":"149.4600","4. close":"149.7400","5. volume":"25814"},"2022-03-16 13:30:00":{"1. open":"149.4200","2. high":"149.9800","3. low":"149.0700","4. close":"149.7700","5. volume":"39531"},"2022-03-16 13:00:00":{"1. open":"150.0800","2. high":"150.1900","3. low":"149.1900","4. close":"149.4700","5. volume":"50601"},"2022-03-16 12:30:00":{"1. open":"150.5650","2. high":"150.5700","3. low":"149.9200","4. close":"150.0800","5. volume":"38296"},"2022-03-16 12:00:00":{"1. open":"150.0100","2. high":"150.7200","3. low":"149.8000","4. close":"150.5650","5. volume":"62787"},"2022-03-16 11:30:00":{"1. open":"150.1100","2. high":"150.3000","3. low":"149.7800","4. close":"149.9600","5. volume":"33511"},"2022-03-16 11:00:00":{"1. open":"149.3650","2. high":"150.5300","3. low":"149.3650","4. close":"150.3200","5. volume":"51729"},"2022-03-16 10:30:00":{"1. open":"151.5200","2. high":"151.5200","3. low":"149.4900","4. close":"149.5400","5. volume":"50746"},"2022-03-16 10:00:00":{"1. open":"151.6800","2. high":"153.0548","3. low":"151.1750","4. close":"151.4100","5. volume":"68155"}}} \ No newline at end of file diff --git a/Backend/data/intraday_ABT.json b/Backend/data/intraday_ABT.json new file mode 100644 index 00000000..f102e804 --- /dev/null +++ b/Backend/data/intraday_ABT.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"ABT","3. Last Refreshed":"2022-03-24 20:00:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-24 20:00:00":{"1. open":"117.9400","2. high":"117.9400","3. low":"117.9400","4. close":"117.9400","5. volume":"260"},"2022-03-24 17:30:00":{"1. open":"117.9100","2. high":"117.9100","3. low":"117.9100","4. close":"117.9100","5. volume":"100"},"2022-03-24 17:00:00":{"1. open":"117.8200","2. high":"117.8200","3. low":"117.5800","4. close":"117.5800","5. volume":"1647"},"2022-03-24 16:30:00":{"1. open":"117.8200","2. high":"117.8200","3. low":"117.8200","4. close":"117.8200","5. volume":"101360"},"2022-03-24 16:00:00":{"1. open":"117.5000","2. high":"117.8800","3. low":"117.1900","4. close":"117.8200","5. volume":"1197950"},"2022-03-24 15:30:00":{"1. open":"117.1912","2. high":"117.5700","3. low":"117.1500","4. close":"117.5100","5. volume":"274661"},"2022-03-24 15:00:00":{"1. open":"117.1200","2. high":"117.2700","3. low":"117.0000","4. close":"117.2100","5. volume":"127652"},"2022-03-24 14:30:00":{"1. open":"117.1400","2. high":"117.4000","3. low":"117.0950","4. close":"117.1150","5. volume":"180414"},"2022-03-24 14:00:00":{"1. open":"117.2300","2. high":"117.3100","3. low":"117.1300","4. close":"117.1420","5. volume":"145884"},"2022-03-24 13:30:00":{"1. open":"117.2500","2. high":"117.3350","3. low":"117.0785","4. close":"117.2000","5. volume":"151641"},"2022-03-24 13:00:00":{"1. open":"116.9800","2. high":"117.2300","3. low":"116.8497","4. close":"117.2300","5. volume":"123282"},"2022-03-24 12:30:00":{"1. open":"117.1200","2. high":"117.2665","3. low":"116.8900","4. close":"116.9997","5. volume":"147829"},"2022-03-24 12:00:00":{"1. open":"117.2000","2. high":"117.5200","3. low":"117.1100","4. close":"117.1100","5. volume":"180739"},"2022-03-24 11:30:00":{"1. open":"116.8000","2. high":"117.2176","3. low":"116.7100","4. close":"117.1850","5. volume":"293791"},"2022-03-24 11:00:00":{"1. open":"116.6300","2. high":"117.1000","3. low":"116.6200","4. close":"116.7800","5. volume":"242480"},"2022-03-24 10:30:00":{"1. open":"117.0500","2. high":"117.2000","3. low":"116.6100","4. close":"116.6150","5. volume":"294743"},"2022-03-24 10:00:00":{"1. open":"117.3800","2. high":"117.6400","3. low":"116.9000","4. close":"117.0500","5. volume":"318216"},"2022-03-24 07:30:00":{"1. open":"117.5000","2. high":"117.5000","3. low":"117.5000","4. close":"117.5000","5. volume":"1314"},"2022-03-23 20:00:00":{"1. open":"117.0000","2. high":"117.0000","3. low":"117.0000","4. close":"117.0000","5. volume":"127"},"2022-03-23 19:30:00":{"1. open":"117.0000","2. high":"117.0000","3. low":"117.0000","4. close":"117.0000","5. volume":"258"},"2022-03-23 19:00:00":{"1. open":"117.0000","2. high":"117.0000","3. low":"117.0000","4. close":"117.0000","5. volume":"242"},"2022-03-23 17:30:00":{"1. open":"116.7900","2. high":"116.7900","3. low":"116.7500","4. close":"116.7500","5. volume":"1115"},"2022-03-23 17:00:00":{"1. open":"116.9200","2. high":"116.9200","3. low":"116.9200","4. close":"116.9200","5. volume":"16003"},"2022-03-23 16:30:00":{"1. open":"116.9200","2. high":"117.0000","3. low":"116.9200","4. close":"116.9200","5. volume":"115465"},"2022-03-23 16:00:00":{"1. open":"116.9800","2. high":"117.3100","3. low":"116.7350","4. close":"116.9300","5. volume":"959825"},"2022-03-23 15:30:00":{"1. open":"117.1650","2. high":"117.3200","3. low":"116.8800","4. close":"116.9900","5. volume":"368726"},"2022-03-23 15:00:00":{"1. open":"117.6400","2. high":"117.6800","3. low":"117.1500","4. close":"117.1500","5. volume":"248180"},"2022-03-23 14:30:00":{"1. open":"117.7600","2. high":"117.7800","3. low":"117.3900","4. close":"117.6300","5. volume":"249673"},"2022-03-23 14:00:00":{"1. open":"117.4400","2. high":"117.7700","3. low":"117.3300","4. close":"117.7500","5. volume":"236084"},"2022-03-23 13:30:00":{"1. open":"117.9500","2. high":"118.0300","3. low":"117.4250","4. close":"117.4800","5. volume":"228910"},"2022-03-23 13:00:00":{"1. open":"118.1900","2. high":"118.3400","3. low":"117.8910","4. close":"117.9500","5. volume":"214258"},"2022-03-23 12:30:00":{"1. open":"118.4600","2. high":"118.6700","3. low":"117.9600","4. close":"118.1600","5. volume":"271765"},"2022-03-23 12:00:00":{"1. open":"119.0900","2. high":"119.1000","3. low":"118.4450","4. close":"118.4700","5. volume":"212661"},"2022-03-23 11:30:00":{"1. open":"118.7700","2. high":"119.2600","3. low":"118.6700","4. close":"119.0900","5. volume":"380846"},"2022-03-23 11:00:00":{"1. open":"119.9400","2. high":"119.9600","3. low":"118.6900","4. close":"118.7700","5. volume":"407069"},"2022-03-23 10:30:00":{"1. open":"119.5300","2. high":"119.9500","3. low":"119.1800","4. close":"119.9500","5. volume":"243373"},"2022-03-23 10:00:00":{"1. open":"121.1100","2. high":"121.2400","3. low":"119.2700","4. close":"119.5300","5. volume":"405245"},"2022-03-23 09:30:00":{"1. open":"121.2500","2. high":"121.6906","3. low":"121.1500","4. close":"121.2500","5. volume":"1471"},"2022-03-22 17:30:00":{"1. open":"121.6500","2. high":"121.9000","3. low":"121.6500","4. close":"121.9000","5. volume":"1228"},"2022-03-22 17:00:00":{"1. open":"121.8900","2. high":"122.0900","3. low":"121.5600","4. close":"121.5601","5. volume":"1858"},"2022-03-22 16:30:00":{"1. open":"121.8900","2. high":"121.8900","3. low":"121.8900","4. close":"121.8900","5. volume":"328755"},"2022-03-22 16:00:00":{"1. open":"121.8400","2. high":"122.1500","3. low":"121.6800","4. close":"121.8900","5. volume":"603381"},"2022-03-22 15:30:00":{"1. open":"121.5300","2. high":"121.9100","3. low":"121.5300","4. close":"121.8500","5. volume":"178508"},"2022-03-22 15:00:00":{"1. open":"121.4800","2. high":"121.6000","3. low":"121.2600","4. close":"121.5500","5. volume":"317025"},"2022-03-22 14:30:00":{"1. open":"121.7700","2. high":"121.8150","3. low":"121.4200","4. close":"121.4700","5. volume":"152501"},"2022-03-22 14:00:00":{"1. open":"121.9300","2. high":"121.9800","3. low":"121.6200","4. close":"121.7300","5. volume":"305552"},"2022-03-22 13:30:00":{"1. open":"122.4700","2. high":"122.5300","3. low":"121.8600","4. close":"121.9300","5. volume":"221296"},"2022-03-22 13:00:00":{"1. open":"122.2700","2. high":"122.5000","3. low":"122.1900","4. close":"122.4900","5. volume":"134984"},"2022-03-22 12:30:00":{"1. open":"122.4700","2. high":"122.4800","3. low":"122.1550","4. close":"122.2546","5. volume":"132125"},"2022-03-22 12:00:00":{"1. open":"122.3300","2. high":"122.5100","3. low":"122.1600","4. close":"122.4600","5. volume":"113670"},"2022-03-22 11:30:00":{"1. open":"122.2900","2. high":"122.4200","3. low":"121.9616","4. close":"122.3100","5. volume":"145703"},"2022-03-22 11:00:00":{"1. open":"122.0600","2. high":"122.3400","3. low":"122.0100","4. close":"122.2800","5. volume":"253185"},"2022-03-22 10:30:00":{"1. open":"121.7900","2. high":"122.0400","3. low":"121.5900","4. close":"122.0300","5. volume":"223197"},"2022-03-22 10:00:00":{"1. open":"121.8900","2. high":"122.0400","3. low":"121.3300","4. close":"121.7400","5. volume":"266839"},"2022-03-22 09:00:00":{"1. open":"122.0100","2. high":"122.0100","3. low":"122.0000","4. close":"122.0000","5. volume":"1179"},"2022-03-21 18:30:00":{"1. open":"121.8100","2. high":"121.8100","3. low":"121.8100","4. close":"121.8100","5. volume":"132"},"2022-03-21 16:30:00":{"1. open":"121.7600","2. high":"121.7600","3. low":"121.7600","4. close":"121.7600","5. volume":"630680"},"2022-03-21 16:00:00":{"1. open":"121.8800","2. high":"121.8800","3. low":"121.3000","4. close":"121.7700","5. volume":"682065"},"2022-03-21 15:30:00":{"1. open":"121.4000","2. high":"121.8400","3. low":"121.3500","4. close":"121.8400","5. volume":"152048"},"2022-03-21 15:00:00":{"1. open":"121.6900","2. high":"121.8800","3. low":"121.3600","4. close":"121.3700","5. volume":"178219"},"2022-03-21 14:30:00":{"1. open":"121.4900","2. high":"121.7300","3. low":"121.2200","4. close":"121.7200","5. volume":"131988"},"2022-03-21 14:00:00":{"1. open":"121.2300","2. high":"121.5200","3. low":"121.2050","4. close":"121.4900","5. volume":"223141"},"2022-03-21 13:30:00":{"1. open":"121.3100","2. high":"121.5600","3. low":"121.2500","4. close":"121.2750","5. volume":"131445"},"2022-03-21 13:00:00":{"1. open":"121.7600","2. high":"121.7600","3. low":"121.1600","4. close":"121.3550","5. volume":"163002"},"2022-03-21 12:30:00":{"1. open":"121.6300","2. high":"121.8100","3. low":"121.4800","4. close":"121.7450","5. volume":"162884"},"2022-03-21 12:00:00":{"1. open":"121.7500","2. high":"122.0300","3. low":"121.5300","4. close":"121.6000","5. volume":"140960"},"2022-03-21 11:30:00":{"1. open":"122.1601","2. high":"122.2300","3. low":"121.6350","4. close":"121.7700","5. volume":"165940"},"2022-03-21 11:00:00":{"1. open":"122.3900","2. high":"122.4150","3. low":"121.8800","4. close":"122.1500","5. volume":"184998"},"2022-03-21 10:30:00":{"1. open":"122.1700","2. high":"122.4900","3. low":"121.8200","4. close":"122.4000","5. volume":"143582"},"2022-03-21 10:00:00":{"1. open":"121.9300","2. high":"123.0962","3. low":"121.8100","4. close":"122.1400","5. volume":"277677"},"2022-03-21 09:30:00":{"1. open":"123.0100","2. high":"123.0100","3. low":"123.0100","4. close":"123.0100","5. volume":"100"},"2022-03-21 09:00:00":{"1. open":"122.2600","2. high":"122.2600","3. low":"122.2600","4. close":"122.2600","5. volume":"110"},"2022-03-21 08:30:00":{"1. open":"122.4499","2. high":"122.4500","3. low":"122.4499","4. close":"122.4500","5. volume":"665"},"2022-03-18 19:00:00":{"1. open":"122.7000","2. high":"122.7000","3. low":"122.7000","4. close":"122.7000","5. volume":"700"},"2022-03-18 18:30:00":{"1. open":"122.7000","2. high":"122.7000","3. low":"122.7000","4. close":"122.7000","5. volume":"295"},"2022-03-18 16:30:00":{"1. open":"122.4500","2. high":"122.6100","3. low":"122.4500","4. close":"122.4500","5. volume":"346186"},"2022-03-18 16:00:00":{"1. open":"122.3300","2. high":"122.6700","3. low":"122.1300","4. close":"122.4200","5. volume":"1191907"},"2022-03-18 15:30:00":{"1. open":"122.1250","2. high":"122.4200","3. low":"121.9900","4. close":"122.3350","5. volume":"704467"},"2022-03-18 15:00:00":{"1. open":"121.8500","2. high":"122.1700","3. low":"121.6200","4. close":"122.1250","5. volume":"297592"},"2022-03-18 14:30:00":{"1. open":"121.8100","2. high":"121.9500","3. low":"121.7000","4. close":"121.8300","5. volume":"169990"},"2022-03-18 14:00:00":{"1. open":"121.9500","2. high":"121.9600","3. low":"121.7000","4. close":"121.8100","5. volume":"173916"},"2022-03-18 13:30:00":{"1. open":"121.6100","2. high":"121.9800","3. low":"121.5950","4. close":"121.9700","5. volume":"127827"},"2022-03-18 13:00:00":{"1. open":"121.9000","2. high":"121.9700","3. low":"121.6100","4. close":"121.6100","5. volume":"101836"},"2022-03-18 12:30:00":{"1. open":"121.6400","2. high":"122.0000","3. low":"121.5392","4. close":"121.8850","5. volume":"116650"},"2022-03-18 12:00:00":{"1. open":"121.5300","2. high":"121.8000","3. low":"121.1000","4. close":"121.6100","5. volume":"155010"},"2022-03-18 11:30:00":{"1. open":"121.7600","2. high":"121.9700","3. low":"121.4100","4. close":"121.5600","5. volume":"155833"},"2022-03-18 11:00:00":{"1. open":"121.8500","2. high":"122.1200","3. low":"121.6550","4. close":"121.7900","5. volume":"226612"},"2022-03-18 10:30:00":{"1. open":"121.5150","2. high":"122.1100","3. low":"121.4500","4. close":"121.8400","5. volume":"192435"},"2022-03-18 10:00:00":{"1. open":"121.7400","2. high":"121.9900","3. low":"120.6800","4. close":"121.5500","5. volume":"1337410"},"2022-03-18 09:30:00":{"1. open":"121.3000","2. high":"121.7400","3. low":"121.3000","4. close":"121.7400","5. volume":"1924"},"2022-03-17 17:00:00":{"1. open":"121.2000","2. high":"121.2000","3. low":"121.2000","4. close":"121.2000","5. volume":"1610"},"2022-03-17 16:30:00":{"1. open":"121.2000","2. high":"121.2000","3. low":"121.2000","4. close":"121.2000","5. volume":"75585"},"2022-03-17 16:00:00":{"1. open":"120.6650","2. high":"121.2400","3. low":"120.5800","4. close":"121.2400","5. volume":"625347"},"2022-03-17 15:30:00":{"1. open":"120.8600","2. high":"120.9102","3. low":"120.4600","4. close":"120.6600","5. volume":"260011"},"2022-03-17 15:00:00":{"1. open":"120.6950","2. high":"120.9970","3. low":"120.6900","4. close":"120.8400","5. volume":"144105"},"2022-03-17 14:30:00":{"1. open":"121.1050","2. high":"121.1200","3. low":"120.6900","4. close":"120.6946","5. volume":"170072"},"2022-03-17 14:00:00":{"1. open":"120.8900","2. high":"121.2300","3. low":"120.8350","4. close":"121.0900","5. volume":"124154"},"2022-03-17 13:30:00":{"1. open":"120.8300","2. high":"120.9350","3. low":"120.5900","4. close":"120.8900","5. volume":"105714"},"2022-03-17 13:00:00":{"1. open":"120.8300","2. high":"120.9300","3. low":"120.6222","4. close":"120.8500","5. volume":"114851"},"2022-03-17 12:30:00":{"1. open":"120.4000","2. high":"120.8600","3. low":"120.1400","4. close":"120.8216","5. volume":"125783"}}} \ No newline at end of file diff --git a/Backend/data/monthly_ABC.json b/Backend/data/monthly_ABC.json new file mode 100644 index 00000000..94c4c6dd --- /dev/null +++ b/Backend/data/monthly_ABC.json @@ -0,0 +1 @@ +{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file diff --git a/Backend/data/monthly_ABT.json b/Backend/data/monthly_ABT.json new file mode 100644 index 00000000..94c4c6dd --- /dev/null +++ b/Backend/data/monthly_ABT.json @@ -0,0 +1 @@ +{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file diff --git a/Backend/data/monthly_IBM.json b/Backend/data/monthly_IBM.json index 74a8245e..a62b5d94 100644 --- a/Backend/data/monthly_IBM.json +++ b/Backend/data/monthly_IBM.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Monthly Prices (open, high, low, close) and Volumes","2. Symbol":"IBM","3. Last Refreshed":"2022-03-24","4. Time Zone":"US/Eastern"},"Monthly Time Series":{"2022-03-24":{"1. open":"122.6700","2. high":"129.7400","3. low":"120.7000","4. close":"129.2500","5. volume":"77741321"},"2022-02-28":{"1. open":"133.7600","2. high":"138.8200","3. low":"118.8100","4. close":"122.5100","5. volume":"98492968"},"2022-01-31":{"1. open":"134.0700","2. high":"142.2000","3. low":"124.1930","4. close":"133.5700","5. volume":"147238382"},"2021-12-31":{"1. open":"118.2500","2. high":"134.9900","3. low":"116.5600","4. close":"133.6600","5. volume":"113930079"},"2021-11-30":{"1. open":"125.0500","2. high":"127.2900","3. low":"114.5600","4. close":"117.1000","5. volume":"119252012"},"2021-10-29":{"1. open":"141.0000","2. high":"146.0000","3. low":"124.6200","4. close":"125.1000","5. volume":"144097758"},"2021-09-30":{"1. open":"139.9800","2. high":"140.5700","3. low":"132.7800","4. close":"138.9300","5. volume":"76644238"},"2021-08-31":{"1. open":"141.4500","2. high":"144.7000","3. low":"137.2100","4. close":"140.3400","5. volume":"69687056"},"2021-07-30":{"1. open":"146.9600","2. high":"147.5000","3. low":"136.2089","4. close":"140.9600","5. volume":"110625907"},"2021-06-30":{"1. open":"145.0000","2. high":"152.8400","3. low":"143.0400","4. close":"146.5900","5. volume":"84365220"},"2021-05-28":{"1. open":"143.8100","2. high":"148.5150","3. low":"140.9200","4. close":"143.7400","5. volume":"98036425"},"2021-04-30":{"1. open":"133.7600","2. high":"148.7400","3. low":"130.3800","4. close":"141.8800","5. volume":"122920494"},"2021-03-31":{"1. open":"120.3500","2. high":"137.0700","3. low":"118.7550","4. close":"133.2600","5. volume":"127967821"},"2021-02-26":{"1. open":"119.9000","2. high":"124.3500","3. low":"118.1200","4. close":"118.9300","5. volume":"106339228"},"2021-01-29":{"1. open":"125.8500","2. high":"132.2400","3. low":"117.3600","4. close":"119.1100","5. volume":"176168962"},"2020-12-31":{"1. open":"123.9000","2. high":"127.6900","3. low":"121.7200","4. close":"125.8800","5. volume":"102587006"},"2020-11-30":{"1. open":"112.6500","2. high":"125.3130","3. low":"111.1600","4. close":"123.5200","5. volume":"103461100"},"2020-10-30":{"1. open":"122.3600","2. high":"135.5000","3. low":"105.9200","4. close":"111.6600","5. volume":"159130911"},"2020-09-30":{"1. open":"122.8500","2. high":"129.9500","3. low":"116.4800","4. close":"121.6700","5. volume":"84510174"},"2020-08-31":{"1. open":"123.5000","2. high":"130.4700","3. low":"122.1500","4. close":"123.3100","5. volume":"74033007"},"2020-07-31":{"1. open":"120.2700","2. high":"132.1700","3. low":"115.2000","4. close":"122.9400","5. volume":"113972765"},"2020-06-30":{"1. open":"124.6400","2. high":"135.8800","3. low":"115.8800","4. close":"120.7700","5. volume":"120931250"},"2020-05-29":{"1. open":"123.1900","2. high":"126.9700","3. low":"111.8100","4. close":"124.9000","5. volume":"92864791"},"2020-04-30":{"1. open":"106.3600","2. high":"129.3100","3. low":"104.5200","4. close":"125.5600","5. volume":"130400316"},"2020-03-31":{"1. open":"130.7500","2. high":"136.1000","3. low":"90.5600","4. close":"110.9300","5. volume":"189585053"},"2020-02-28":{"1. open":"144.2500","2. high":"158.7500","3. low":"126.3600","4. close":"130.1500","5. volume":"118092333"},"2020-01-31":{"1. open":"135.0000","2. high":"145.7900","3. low":"133.2000","4. close":"143.7300","5. volume":"112864967"},"2019-12-31":{"1. open":"134.4500","2. high":"136.4200","3. low":"130.6900","4. close":"134.0400","5. volume":"71661951"},"2019-11-29":{"1. open":"134.5000","2. high":"139.1400","3. low":"132.7500","4. close":"134.4500","5. volume":"64898948"},"2019-10-31":{"1. open":"145.5900","2. high":"147.3500","3. low":"130.9000","4. close":"133.7300","5. volume":"92647927"},"2019-09-30":{"1. open":"134.8500","2. high":"146.5700","3. low":"133.3300","4. close":"145.4200","5. volume":"62083780"},"2019-08-30":{"1. open":"148.9000","2. high":"152.9500","3. low":"128.8300","4. close":"135.5300","5. volume":"96719129"},"2019-07-31":{"1. open":"139.6000","2. high":"151.9400","3. low":"139.1300","4. close":"148.2400","5. volume":"80175943"},"2019-06-28":{"1. open":"127.1000","2. high":"140.1500","3. low":"127.0600","4. close":"137.9000","5. volume":"61342985"},"2019-05-31":{"1. open":"140.5500","2. high":"141.8100","3. low":"126.8500","4. close":"126.9900","5. volume":"75537897"},"2019-04-30":{"1. open":"141.5100","2. high":"145.3900","3. low":"136.2600","4. close":"140.2700","5. volume":"80199229"},"2019-03-29":{"1. open":"139.3100","2. high":"142.1200","3. low":"133.5800","4. close":"141.1000","5. volume":"74688899"},"2019-02-28":{"1. open":"134.9700","2. high":"140.4900","3. low":"132.1200","4. close":"138.1300","5. volume":"68462024"},"2019-01-31":{"1. open":"112.0100","2. high":"135.4100","3. low":"111.6900","4. close":"134.4200","5. volume":"120388583"},"2018-12-31":{"1. open":"125.6700","2. high":"126.5900","3. low":"105.9400","4. close":"113.6700","5. volume":"115600988"},"2018-11-30":{"1. open":"115.5000","2. high":"125.0600","3. low":"114.5400","4. close":"124.2700","5. volume":"141719180"},"2018-10-31":{"1. open":"151.7100","2. high":"154.3600","3. low":"114.0900","4. close":"115.4300","5. volume":"198093801"},"2018-09-28":{"1. open":"145.9800","2. high":"153.3500","3. low":"144.8100","4. close":"151.2100","5. volume":"95868702"},"2018-08-31":{"1. open":"144.7600","2. high":"147.9300","3. low":"142.0000","4. close":"146.4800","5. volume":"79196876"},"2018-07-31":{"1. open":"138.2800","2. high":"150.5400","3. low":"138.2000","4. close":"144.9300","5. volume":"95015127"},"2018-06-29":{"1. open":"142.4300","2. high":"147.5200","3. low":"137.4500","4. close":"139.7000","5. volume":"90243111"},"2018-05-31":{"1. open":"144.6500","2. high":"146.2000","3. low":"139.9000","4. close":"141.3100","5. volume":"88812832"},"2018-04-30":{"1. open":"153.3400","2. high":"162.0000","3. low":"144.1100","4. close":"144.9600","5. volume":"122893135"},"2018-03-29":{"1. open":"155.5300","2. high":"162.1100","3. low":"148.5400","4. close":"153.4300","5. volume":"92113147"},"2018-02-28":{"1. open":"163.1900","2. high":"164.1300","3. low":"144.4000","4. close":"155.8300","5. volume":"100673819"},"2018-01-31":{"1. open":"154.5000","2. high":"171.1300","3. low":"153.5400","4. close":"163.7000","5. volume":"140197975"},"2017-12-29":{"1. open":"154.4000","2. high":"157.8500","3. low":"151.4900","4. close":"153.4200","5. volume":"87525752"},"2017-11-30":{"1. open":"154.1000","2. high":"154.9000","3. low":"146.2110","4. close":"153.9700","5. volume":"89208545"},"2017-10-31":{"1. open":"145.3500","2. high":"162.5100","3. low":"145.2100","4. close":"154.0600","5. volume":"121490046"},"2017-09-29":{"1. open":"142.9800","2. high":"147.4200","3. low":"141.6400","4. close":"145.0800","5. volume":"77056229"},"2017-08-31":{"1. open":"145.0000","2. high":"145.6700","3. low":"139.1300","4. close":"143.0300","5. volume":"79260314"},"2017-07-31":{"1. open":"153.5800","2. high":"156.0250","3. low":"143.6400","4. close":"144.6700","5. volume":"91242021"},"2017-06-30":{"1. open":"152.8000","2. high":"157.2000","3. low":"150.8000","4. close":"153.8300","5. volume":"82652760"},"2017-05-31":{"1. open":"160.0500","2. high":"160.4200","3. low":"149.7900","4. close":"152.6300","5. volume":"102455942"},"2017-04-28":{"1. open":"173.8200","2. high":"176.3300","3. low":"159.6000","4. close":"160.2900","5. volume":"80758989"},"2017-03-31":{"1. open":"180.4800","2. high":"182.5500","3. low":"172.0937","4. close":"174.1400","5. volume":"79476385"},"2017-02-28":{"1. open":"175.0000","2. high":"182.7900","3. low":"172.8900","4. close":"179.8200","5. volume":"59817600"},"2017-01-31":{"1. open":"167.0000","2. high":"179.2500","3. low":"165.3400","4. close":"174.5200","5. volume":"88671370"},"2016-12-30":{"1. open":"161.9500","2. high":"169.9520","3. low":"158.3000","4. close":"165.9900","5. volume":"69463793"},"2016-11-30":{"1. open":"153.5000","2. high":"164.6600","3. low":"151.0000","4. close":"162.2200","5. volume":"76340912"},"2016-10-31":{"1. open":"158.0600","2. high":"158.5300","3. low":"147.7900","4. close":"153.6900","5. volume":"78325840"},"2016-09-30":{"1. open":"158.3200","2. high":"165.0000","3. low":"153.2100","4. close":"158.8500","5. volume":"69951563"},"2016-08-31":{"1. open":"160.6500","2. high":"164.9500","3. low":"157.8500","4. close":"158.8800","5. volume":"69680582"},"2016-07-29":{"1. open":"152.1900","2. high":"163.6000","3. low":"149.9200","4. close":"160.6200","5. volume":"69930927"},"2016-06-30":{"1. open":"153.0000","2. high":"155.4800","3. low":"142.5000","4. close":"151.7800","5. volume":"77115961"},"2016-05-31":{"1. open":"146.5600","2. high":"153.8100","3. low":"142.9000","4. close":"153.7400","5. volume":"75248178"},"2016-04-29":{"1. open":"150.5100","2. high":"153.5200","3. low":"142.6100","4. close":"145.9400","5. volume":"94431134"},"2016-03-31":{"1. open":"132.2400","2. high":"153.1000","3. low":"132.0300","4. close":"151.4500","5. volume":"105698603"},"2016-02-29":{"1. open":"124.4000","2. high":"134.9200","3. low":"116.9010","4. close":"131.0300","5. volume":"106703104"},"2016-01-29":{"1. open":"135.6000","2. high":"136.8900","3. low":"118.0000","4. close":"124.7900","5. volume":"126204196"},"2015-12-31":{"1. open":"139.5800","2. high":"141.4000","3. low":"133.9100","4. close":"137.6200","5. volume":"97650594"},"2015-11-30":{"1. open":"140.5000","2. high":"142.8000","3. low":"131.6500","4. close":"139.4200","5. volume":"85421426"},"2015-10-30":{"1. open":"145.3100","2. high":"153.1470","3. low":"137.3300","4. close":"140.0800","5. volume":"120622363"},"2015-09-30":{"1. open":"144.8400","2. high":"149.6800","3. low":"141.1501","4. close":"144.9700","5. volume":"81761648"},"2015-08-31":{"1. open":"161.7000","2. high":"161.8500","3. low":"140.6200","4. close":"147.8900","5. volume":"93750967"},"2015-07-31":{"1. open":"163.9700","2. high":"173.7800","3. low":"158.5000","4. close":"161.9900","5. volume":"93805392"},"2015-06-30":{"1. open":"170.2100","2. high":"171.5601","3. low":"162.1200","4. close":"162.6600","5. volume":"80845501"},"2015-05-29":{"1. open":"173.2000","2. high":"176.3000","3. low":"168.8400","4. close":"169.6500","5. volume":"57916093"},"2015-04-30":{"1. open":"160.2300","2. high":"175.1303","3. low":"158.3900","4. close":"171.2900","5. volume":"93821213"},"2015-03-31":{"1. open":"161.6800","2. high":"165.3500","3. low":"153.4000","4. close":"160.5000","5. volume":"104899758"},"2015-02-27":{"1. open":"154.0000","2. high":"164.9900","3. low":"151.5100","4. close":"161.9400","5. volume":"77654705"},"2015-01-30":{"1. open":"161.3100","2. high":"163.3100","3. low":"149.5200","4. close":"153.3100","5. volume":"117395861"},"2014-12-31":{"1. open":"161.6400","2. high":"164.5200","3. low":"150.5000","4. close":"160.4400","5. volume":"101614529"},"2014-11-28":{"1. open":"164.2500","2. high":"164.9700","3. low":"159.8000","4. close":"162.1700","5. volume":"80018581"},"2014-10-31":{"1. open":"189.9100","2. high":"190.8900","3. low":"161.1000","4. close":"164.4000","5. volume":"146272610"},"2014-09-30":{"1. open":"192.6800","2. high":"195.0000","3. low":"188.1200","4. close":"189.8300","5. volume":"64033759"},"2014-08-29":{"1. open":"190.5000","2. high":"194.1330","3. low":"183.5800","4. close":"192.3000","5. volume":"53441600"},"2014-07-31":{"1. open":"181.7000","2. high":"196.4000","3. low":"181.7000","4. close":"191.6700","5. volume":"97597800"},"2014-06-30":{"1. open":"184.7600","2. high":"187.6500","3. low":"179.2700","4. close":"181.2700","5. volume":"78501700"},"2014-05-30":{"1. open":"196.3100","2. high":"196.7400","3. low":"182.3300","4. close":"184.3600","5. volume":"70018300"},"2014-04-30":{"1. open":"193.1200","2. high":"199.2100","3. low":"187.0100","4. close":"196.4700","5. volume":"118447100"},"2014-03-31":{"1. open":"183.3300","2. high":"195.6300","3. low":"182.2100","4. close":"192.4900","5. volume":"118984000"},"2014-02-28":{"1. open":"176.0200","2. high":"186.1200","3. low":"172.1900","4. close":"185.1700","5. volume":"87054800"},"2014-01-31":{"1. open":"187.2100","2. high":"190.8100","3. low":"175.3400","4. close":"176.6800","5. volume":"123489300"},"2013-12-31":{"1. open":"179.4600","2. high":"187.7900","3. low":"172.7300","4. close":"187.5700","5. volume":"97993100"},"2013-11-29":{"1. open":"179.8100","2. high":"186.2400","3. low":"177.3100","4. close":"179.6800","5. volume":"100984900"},"2013-10-31":{"1. open":"185.3400","2. high":"186.9900","3. low":"172.5700","4. close":"179.2100","5. volume":"130967100"},"2013-09-30":{"1. open":"183.6300","2. high":"194.8900","3. low":"182.3100","4. close":"185.1800","5. volume":"71488100"},"2013-08-30":{"1. open":"196.6500","2. high":"197.1700","3. low":"181.1000","4. close":"182.2700","5. volume":"73077400"},"2013-07-31":{"1. open":"192.1500","2. high":"200.9400","3. low":"190.2600","4. close":"195.0400","5. volume":"88079400"},"2013-06-28":{"1. open":"208.2500","2. high":"210.0500","3. low":"188.4100","4. close":"191.1100","5. volume":"80215000"},"2013-05-31":{"1. open":"201.8700","2. high":"211.9800","3. low":"199.2000","4. close":"208.0200","5. volume":"90683600"},"2013-04-30":{"1. open":"212.8000","2. high":"214.8900","3. low":"187.6800","4. close":"202.5400","5. volume":"108666600"},"2013-03-28":{"1. open":"200.6500","2. high":"215.9000","3. low":"199.3600","4. close":"213.3000","5. volume":"76023800"},"2013-02-28":{"1. open":"204.6500","2. high":"205.3500","3. low":"197.5100","4. close":"200.8300","5. volume":"64144100"},"2013-01-31":{"1. open":"194.0900","2. high":"208.5800","3. low":"190.3900","4. close":"203.0700","5. volume":"87636600"},"2012-12-31":{"1. open":"190.7600","2. high":"196.4500","3. low":"186.9400","4. close":"191.5500","5. volume":"79320200"},"2012-11-30":{"1. open":"194.9600","2. high":"198.0000","3. low":"184.7800","4. close":"190.0700","5. volume":"81892500"},"2012-10-31":{"1. open":"208.0100","2. high":"211.7900","3. low":"190.5600","4. close":"194.5300","5. volume":"96155000"},"2012-09-28":{"1. open":"196.6100","2. high":"208.3200","3. low":"193.2500","4. close":"207.4500","5. volume":"77341400"},"2012-08-31":{"1. open":"196.9600","2. high":"202.0000","3. low":"193.0200","4. close":"194.8500","5. volume":"60653700"},"2012-07-31":{"1. open":"196.3600","2. high":"197.8400","3. low":"181.8500","4. close":"195.9800","5. volume":"91516500"},"2012-06-29":{"1. open":"190.1200","2. high":"199.9900","3. low":"187.0000","4. close":"195.5800","5. volume":"84559100"},"2012-05-31":{"1. open":"207.1800","2. high":"208.9290","3. low":"192.0000","4. close":"192.9000","5. volume":"86005300"},"2012-04-30":{"1. open":"208.9600","2. high":"210.6900","3. low":"196.7910","4. close":"207.0800","5. volume":"86603000"},"2012-03-30":{"1. open":"197.2300","2. high":"209.1200","3. low":"196.8120","4. close":"208.6500","5. volume":"88096900"},"2012-02-29":{"1. open":"193.2100","2. high":"199.2300","3. low":"190.8310","4. close":"196.7300","5. volume":"78809900"},"2012-01-31":{"1. open":"186.7300","2. high":"193.1000","3. low":"177.3472","4. close":"192.6000","5. volume":"110015000"},"2011-12-30":{"1. open":"187.0100","2. high":"194.9000","3. low":"179.0400","4. close":"183.8800","5. volume":"103436500"},"2011-11-30":{"1. open":"181.5500","2. high":"189.9700","3. low":"177.0600","4. close":"188.0000","5. volume":"97014100"},"2011-10-31":{"1. open":"174.3600","2. high":"190.5300","3. low":"168.8800","4. close":"184.6300","5. volume":"144563700"},"2011-09-30":{"1. open":"172.7100","2. high":"180.9100","3. low":"158.7600","4. close":"174.8700","5. volume":"137895000"},"2011-08-31":{"1. open":"182.6000","2. high":"183.6900","3. low":"157.1300","4. close":"171.9100","5. volume":"195054100"},"2011-07-29":{"1. open":"171.6100","2. high":"185.6300","3. low":"171.4900","4. close":"181.8500","5. volume":"113593200"},"2011-06-30":{"1. open":"168.9000","2. high":"172.4468","3. low":"161.5200","4. close":"171.5500","5. volume":"105442400"},"2011-05-31":{"1. open":"172.1100","2. high":"173.5400","3. low":"165.9000","4. close":"168.9300","5. volume":"110804200"},"2011-04-29":{"1. open":"163.7000","2. high":"173.0000","3. low":"162.1900","4. close":"170.5800","5. volume":"100769500"},"2011-03-31":{"1. open":"163.1500","2. high":"167.7200","3. low":"151.7100","4. close":"163.0700","5. volume":"129714300"},"2011-02-28":{"1. open":"162.1100","2. high":"166.2500","3. low":"159.0300","4. close":"161.8800","5. volume":"89067500"},"2011-01-31":{"1. open":"147.2100","2. high":"164.3500","3. low":"146.6400","4. close":"162.0000","5. volume":"118831600"},"2010-12-31":{"1. open":"143.6100","2. high":"147.5000","3. low":"143.5100","4. close":"146.7600","5. volume":"93392800"},"2010-11-30":{"1. open":"143.6400","2. high":"147.5300","3. low":"141.1800","4. close":"141.4600","5. volume":"104096700"},"2010-10-29":{"1. open":"135.5100","2. high":"144.0000","3. low":"134.3900","4. close":"143.6000","5. volume":"137284700"},"2010-09-30":{"1. open":"125.3100","2. high":"136.1100","3. low":"124.5200","4. close":"134.1400","5. volume":"116092900"},"2010-08-31":{"1. open":"129.2500","2. high":"132.4900","3. low":"122.2800","4. close":"123.1300","5. volume":"117394000"},"2010-07-30":{"1. open":"123.5500","2. high":"131.6000","3. low":"120.6100","4. close":"128.4000","5. volume":"144080000"},"2010-06-30":{"1. open":"124.6900","2. high":"131.9400","3. low":"122.8200","4. close":"123.4800","5. volume":"162019100"},"2010-05-28":{"1. open":"129.3900","2. high":"133.1000","3. low":"116.0000","4. close":"125.2600","5. volume":"188444200"},"2010-04-30":{"1. open":"128.9500","2. high":"132.2800","3. low":"127.1200","4. close":"129.0000","5. volume":"146426400"},"2010-03-31":{"1. open":"127.5000","2. high":"130.7300","3. low":"125.2000","4. close":"128.2500","5. volume":"139997300"},"2010-02-26":{"1. open":"123.2300","2. high":"128.2700","3. low":"121.6100","4. close":"127.1600","5. volume":"113211200"},"2010-01-29":{"1. open":"131.1800","2. high":"134.2500","3. low":"121.9000","4. close":"122.3900","5. volume":"156110600"},"2009-12-31":{"1. open":"127.2900","2. high":"132.8500","3. low":"126.0000","4. close":"130.9000","5. volume":"124475900"},"2009-11-30":{"1. open":"120.6100","2. high":"128.9400","3. low":"119.5000","4. close":"126.3500","5. volume":"110748200"},"2009-10-30":{"1. open":"119.3900","2. high":"128.6100","3. low":"117.2600","4. close":"120.6100","5. volume":"183531100"},"2009-09-30":{"1. open":"117.6700","2. high":"122.8800","3. low":"115.1500","4. close":"119.6100","5. volume":"131522200"},"2009-08-31":{"1. open":"118.8800","2. high":"120.8800","3. low":"116.1200","4. close":"118.0500","5. volume":"112480200"},"2009-07-31":{"1. open":"105.0000","2. high":"119.3700","3. low":"99.5000","4. close":"117.9300","5. volume":"176171400"},"2009-06-30":{"1. open":"106.9400","2. high":"110.6400","3. low":"103.5100","4. close":"104.4200","5. volume":"160502100"},"2009-05-29":{"1. open":"103.7800","2. high":"106.8200","3. low":"99.8300","4. close":"106.2800","5. volume":"153084700"},"2009-04-30":{"1. open":"96.1300","2. high":"106.0500","3. low":"95.7000","4. close":"103.2100","5. volume":"213623100"},"2009-03-31":{"1. open":"91.1700","2. high":"99.8600","3. low":"83.0200","4. close":"96.8900","5. volume":"286114500"},"2009-02-27":{"1. open":"90.6000","2. high":"97.1000","3. low":"82.8500","4. close":"92.0300","5. volume":"223017600"},"2009-01-30":{"1. open":"83.8900","2. high":"94.9400","3. low":"81.7600","4. close":"91.6500","5. volume":"208959400"},"2008-12-31":{"1. open":"80.9500","2. high":"87.2700","3. low":"75.3100","4. close":"84.1600","5. volume":"188846100"},"2008-11-28":{"1. open":"92.6400","2. high":"94.7600","3. low":"69.5000","4. close":"81.6000","5. volume":"218313000"},"2008-10-31":{"1. open":"115.5100","2. high":"116.8000","3. low":"78.8200","4. close":"92.9700","5. volume":"314972000"},"2008-09-30":{"1. open":"122.8700","2. high":"124.0000","3. low":"109.9500","4. close":"116.9600","5. volume":"218411700"},"2008-08-29":{"1. open":"128.5200","2. high":"129.9700","3. low":"121.5000","4. close":"121.7300","5. volume":"137028800"},"2008-07-31":{"1. open":"117.5000","2. high":"130.9300","3. low":"116.6000","4. close":"127.9800","5. volume":"200876500"},"2008-06-30":{"1. open":"128.6700","2. high":"129.3700","3. low":"118.1500","4. close":"118.5300","5. volume":"152327500"},"2008-05-30":{"1. open":"121.0600","2. high":"129.9900","3. low":"120.7800","4. close":"129.4300","5. volume":"159517500"},"2008-04-30":{"1. open":"115.1400","2. high":"125.0000","3. low":"113.8600","4. close":"120.7000","5. volume":"192087200"},"2008-03-31":{"1. open":"114.0900","2. high":"119.7900","3. low":"111.8000","4. close":"115.1400","5. volume":"179284200"},"2008-02-29":{"1. open":"107.2100","2. high":"116.6300","3. low":"100.6000","4. close":"113.8600","5. volume":"168280800"},"2008-01-31":{"1. open":"108.9900","2. high":"108.9900","3. low":"97.0400","4. close":"107.1100","5. volume":"247523900"},"2007-12-31":{"1. open":"105.4500","2. high":"112.1900","3. low":"104.0000","4. close":"108.1000","5. volume":"134151600"},"2007-11-30":{"1. open":"115.5000","2. high":"116.0900","3. low":"99.2700","4. close":"105.1800","5. volume":"200920600"},"2007-10-31":{"1. open":"117.6100","2. high":"121.4600","3. low":"110.9600","4. close":"116.1200","5. volume":"171669000"},"2007-09-28":{"1. open":"116.3400","2. high":"118.8900","3. low":"114.3000","4. close":"117.8000","5. volume":"132233800"},"2007-08-31":{"1. open":"110.3900","2. high":"117.3500","3. low":"103.7000","4. close":"116.6900","5. volume":"202871500"},"2007-07-31":{"1. open":"105.3900","2. high":"118.8200","3. low":"104.5800","4. close":"110.6500","5. volume":"212757600"},"2007-06-29":{"1. open":"106.6200","2. high":"107.2400","3. low":"101.5600","4. close":"105.2500","5. volume":"169602000"},"2007-05-31":{"1. open":"102.0600","2. high":"108.0500","3. low":"101.3500","4. close":"106.6000","5. volume":"146441400"},"2007-04-30":{"1. open":"94.5100","2. high":"103.0000","3. low":"93.9110","4. close":"102.2100","5. volume":"166807200"},"2007-03-30":{"1. open":"90.2500","2. high":"95.8100","3. low":"88.7700","4. close":"94.2600","5. volume":"163194500"},"2007-02-28":{"1. open":"98.9700","2. high":"100.4400","3. low":"92.4700","4. close":"92.9400","5. volume":"125776200"},"2007-01-31":{"1. open":"97.1700","2. high":"100.9000","3. low":"94.5500","4. close":"99.1500","5. volume":"192702000"},"2006-12-29":{"1. open":"91.9000","2. high":"97.8800","3. low":"90.5500","4. close":"97.1500","5. volume":"104470200"},"2006-11-30":{"1. open":"92.5000","2. high":"94.0500","3. low":"90.4300","4. close":"91.9200","5. volume":"104430000"},"2006-10-31":{"1. open":"81.7600","2. high":"92.6800","3. low":"81.5600","4. close":"92.3300","5. volume":"170367300"},"2006-09-29":{"1. open":"81.1300","2. high":"83.7900","3. low":"79.3100","4. close":"81.9400","5. volume":"102776100"},"2006-08-31":{"1. open":"76.8600","2. high":"81.6800","3. low":"74.9000","4. close":"80.9700","5. volume":"100880300"},"2006-07-31":{"1. open":"77.5400","2. high":"78.5300","3. low":"72.7300","4. close":"77.4100","5. volume":"137188300"},"2006-06-30":{"1. open":"79.8900","2. high":"80.8700","3. low":"76.0600","4. close":"76.8200","5. volume":"139457800"},"2006-05-31":{"1. open":"82.5900","2. high":"83.6900","3. low":"79.0000","4. close":"79.9000","5. volume":"113146500"},"2006-04-28":{"1. open":"82.7200","2. high":"84.4500","3. low":"80.6300","4. close":"82.3400","5. volume":"114007000"},"2006-03-31":{"1. open":"80.0100","2. high":"84.9900","3. low":"79.5100","4. close":"82.4700","5. volume":"111514900"},"2006-02-28":{"1. open":"80.9000","2. high":"82.2400","3. low":"78.9300","4. close":"80.2400","5. volume":"111052200"},"2006-01-31":{"1. open":"82.4500","2. high":"85.0300","3. low":"80.2100","4. close":"81.3000","5. volume":"146491600"},"2005-12-30":{"1. open":"89.1500","2. high":"89.9200","3. low":"81.5600","4. close":"82.2000","5. volume":"120052400"},"2005-11-30":{"1. open":"81.8500","2. high":"89.9400","3. low":"80.6400","4. close":"88.9000","5. volume":"110664500"},"2005-10-31":{"1. open":"80.2200","2. high":"84.6000","3. low":"78.7000","4. close":"81.8800","5. volume":"139881800"},"2005-09-30":{"1. open":"80.1600","2. high":"82.1100","3. low":"76.9300","4. close":"80.2200","5. volume":"115681400"},"2005-08-31":{"1. open":"83.0000","2. high":"84.2000","3. low":"79.8700","4. close":"80.6200","5. volume":"105031100"},"2005-07-29":{"1. open":"74.3000","2. high":"85.1100","3. low":"74.1600","4. close":"83.4600","5. volume":"156801500"},"2005-06-30":{"1. open":"75.5700","2. high":"77.7300","3. low":"73.4500","4. close":"74.2000","5. volume":"135542800"},"2005-05-31":{"1. open":"76.8800","2. high":"78.1100","3. low":"72.5000","4. close":"75.5500","5. volume":"138416000"},"2005-04-29":{"1. open":"91.4900","2. high":"91.7600","3. low":"71.8500","4. close":"76.3800","5. volume":"216745500"},"2005-03-31":{"1. open":"92.6400","2. high":"93.7300","3. low":"89.0900","4. close":"91.3800","5. volume":"106145200"},"2005-02-28":{"1. open":"93.6700","2. high":"94.9700","3. low":"91.5500","4. close":"92.5800","5. volume":"79707700"},"2005-01-31":{"1. open":"98.9700","2. high":"99.1000","3. low":"91.4400","4. close":"93.4200","5. volume":"114459000"},"2004-12-31":{"1. open":"94.5000","2. high":"99.0000","3. low":"94.4700","4. close":"98.5800","5. volume":"108170400"},"2004-11-30":{"1. open":"89.3300","2. high":"96.6300","3. low":"89.2300","4. close":"94.2400","5. volume":"114982100"},"2004-10-29":{"1. open":"85.9500","2. high":"90.2700","3. low":"84.2900","4. close":"89.7500","5. volume":"118116100"},"2004-09-30":{"1. open":"84.0500","2. high":"87.2800","3. low":"83.2400","4. close":"85.7400","5. volume":"93906300"},"2004-08-31":{"1. open":"86.8700","2. high":"87.3900","3. low":"81.9000","4. close":"84.6900","5. volume":"91169700"},"2004-07-30":{"1. open":"88.2800","2. high":"88.4400","3. low":"83.4200","4. close":"87.0700","5. volume":"121001000"},"2004-06-30":{"1. open":"88.0900","2. high":"91.2100","3. low":"87.3000","4. close":"88.1500","5. volume":"91968600"},"2004-05-28":{"1. open":"88.1300","2. high":"89.7500","3. low":"85.1200","4. close":"88.5900","5. volume":"104707300"},"2004-04-30":{"1. open":"91.6700","2. high":"94.5500","3. low":"88.0100","4. close":"88.1700","5. volume":"110632000"},"2004-03-31":{"1. open":"96.5000","2. high":"97.6000","3. low":"90.2800","4. close":"91.8400","5. volume":"124483700"},"2004-02-27":{"1. open":"99.1500","2. high":"100.4300","3. low":"95.2000","4. close":"96.5000","5. volume":"97741900"},"2004-01-30":{"1. open":"92.8600","2. high":"99.8500","3. low":"89.0100","4. close":"99.2300","5. volume":"139368500"},"2003-12-31":{"1. open":"90.9000","2. high":"94.1200","3. low":"90.0300","4. close":"92.6800","5. volume":"116103600"},"2003-11-28":{"1. open":"89.9000","2. high":"91.4800","3. low":"87.7200","4. close":"90.5400","5. volume":"97966100"},"2003-10-31":{"1. open":"88.7500","2. high":"94.5400","3. low":"87.5300","4. close":"89.4800","5. volume":"156145400"},"2003-09-30":{"1. open":"82.4000","2. high":"93.4700","3. low":"82.3000","4. close":"88.3300","5. volume":"171943100"},"2003-08-29":{"1. open":"81.1500","2. high":"84.7200","3. low":"78.7300","4. close":"82.0100","5. volume":"113895200"},"2003-07-31":{"1. open":"81.4000","2. high":"87.0300","3. low":"80.5800","4. close":"81.2500","5. volume":"153915600"},"2003-06-30":{"1. open":"89.0000","2. high":"89.0800","3. low":"79.8100","4. close":"82.5000","5. volume":"184488300"},"2003-05-30":{"1. open":"85.3000","2. high":"90.4000","3. low":"84.4500","4. close":"88.0400","5. volume":"149548000"},"2003-04-30":{"1. open":"78.5000","2. high":"86.4900","3. low":"78.1200","4. close":"84.9000","5. volume":"177874300"},"2003-03-31":{"1. open":"78.9000","2. high":"84.9000","3. low":"73.1700","4. close":"78.4300","5. volume":"191937200"},"2003-02-28":{"1. open":"78.2000","2. high":"80.0500","3. low":"74.3100","4. close":"77.9500","5. volume":"145672700"},"2003-01-31":{"1. open":"78.8000","2. high":"88.9500","3. low":"77.0200","4. close":"78.2000","5. volume":"193933500"},"2002-12-31":{"1. open":"88.6000","2. high":"89.4600","3. low":"75.6000","4. close":"77.5000","5. volume":"151563500"},"2002-11-29":{"1. open":"78.9000","2. high":"88.1100","3. low":"76.7000","4. close":"86.9200","5. volume":"184438100"},"2002-10-31":{"1. open":"59.2000","2. high":"79.7900","3. low":"54.0100","4. close":"78.9400","5. volume":"285626300"},"2002-09-30":{"1. open":"74.2000","2. high":"77.5000","3. low":"57.9900","4. close":"58.3100","5. volume":"185664400"},"2002-08-30":{"1. open":"70.4000","2. high":"82.8500","3. low":"65.8500","4. close":"75.3800","5. volume":"166322300"},"2002-07-31":{"1. open":"72.0100","2. high":"74.2000","3. low":"65.7000","4. close":"70.4000","5. volume":"246256900"},"2002-06-28":{"1. open":"80.7500","2. high":"80.9500","3. low":"66.1000","4. close":"72.0000","5. volume":"190980700"},"2002-05-31":{"1. open":"83.8500","2. high":"86.4900","3. low":"75.9200","4. close":"80.4500","5. volume":"172738400"},"2002-04-30":{"1. open":"104.0000","2. high":"104.0000","3. low":"83.3400","4. close":"83.7600","5. volume":"246503300"},"2002-03-28":{"1. open":"98.6000","2. high":"108.8500","3. low":"98.5000","4. close":"104.0000","5. volume":"151268500"},"2002-02-28":{"1. open":"107.6400","2. high":"109.3000","3. low":"95.7600","4. close":"98.1200","5. volume":"172321000"},"2002-01-31":{"1. open":"120.6000","2. high":"126.3900","3. low":"101.0000","4. close":"107.8900","5. volume":"193562900"},"2001-12-31":{"1. open":"114.8000","2. high":"124.7000","3. low":"113.2100","4. close":"120.9600","5. volume":"133393800"},"2001-11-30":{"1. open":"107.2500","2. high":"117.0000","3. low":"106.9000","4. close":"115.5900","5. volume":"135136300"},"2001-10-31":{"1. open":"91.7200","2. high":"112.1000","3. low":"91.3400","4. close":"108.0700","5. volume":"224351500"},"2001-09-28":{"1. open":"100.1500","2. high":"103.1300","3. low":"87.4900","4. close":"91.7200","5. volume":"189312500"},"2001-08-31":{"1. open":"105.3500","2. high":"110.0900","3. low":"98.8600","4. close":"99.9500","5. volume":"143401500"},"2001-07-31":{"1. open":"113.5000","2. high":"115.4000","3. low":"101.5600","4. close":"105.2100","5. volume":"161016400"},"2001-06-29":{"1. open":"112.5000","2. high":"119.0000","3. low":"111.1000","4. close":"113.5000","5. volume":"142929700"},"2001-05-31":{"1. open":"115.8500","2. high":"119.9000","3. low":"110.9600","4. close":"111.8000","5. volume":"159356200"},"2001-04-30":{"1. open":"97.4500","2. high":"118.0500","3. low":"90.0500","4. close":"115.1400","5. volume":"226210900"},"2001-03-30":{"1. open":"99.3000","2. high":"108.4000","3. low":"87.6500","4. close":"96.1800","5. volume":"254550000"},"2001-02-28":{"1. open":"112.4000","2. high":"118.6400","3. low":"99.1000","4. close":"99.9000","5. volume":"156438900"},"2001-01-31":{"1. open":"84.5000","2. high":"116.7500","3. low":"83.7500","4. close":"112.0000","5. volume":"198962600"},"2000-12-29":{"1. open":"94.4400","2. high":"104.7500","3. low":"80.0600","4. close":"85.0000","5. volume":"167790700"},"2000-11-30":{"1. open":"98.4400","2. high":"104.3700","3. low":"91.6200","4. close":"93.5000","5. volume":"130411900"},"2000-10-31":{"1. open":"112.6200","2. high":"119.6200","3. low":"86.9400","4. close":"98.5000","5. volume":"223510000"},"2000-09-29":{"1. open":"133.0600","2. high":"134.9400","3. low":"110.2500","4. close":"112.6200","5. volume":"107468400"},"2000-08-31":{"1. open":"112.0000","2. high":"134.2500","3. low":"110.2500","4. close":"132.0200","5. volume":"121998000"},"2000-07-31":{"1. open":"108.7500","2. high":"117.8100","3. low":"100.0000","4. close":"112.2500","5. volume":"150130400"},"2000-06-30":{"1. open":"107.5600","2. high":"122.3100","3. low":"105.5000","4. close":"109.5600","5. volume":"136216300"},"2000-05-31":{"1. open":"112.5000","2. high":"113.6200","3. low":"102.0000","4. close":"107.3100","5. volume":"123803200"},"2000-04-28":{"1. open":"120.0000","2. high":"128.0000","3. low":"101.2500","4. close":"111.5000","5. volume":"168464800"},"2000-03-31":{"1. open":"102.0000","2. high":"128.2500","3. low":"99.5000","4. close":"118.3700","5. volume":"194329000"},"2000-02-29":{"1. open":"112.3700","2. high":"119.7500","3. low":"100.9400","4. close":"102.7500","5. volume":"133524400"},"2000-01-31":{"1. open":"112.4400","2. high":"124.7500","3. low":"109.6200","4. close":"112.2500","5. volume":"175259600"},"1999-12-31":{"1. open":"102.5600","2. high":"122.1200","3. low":"102.2500","4. close":"107.8700","5. volume":"158626300"}}} \ No newline at end of file +{"Meta Data":{"1. Information":"Monthly Prices (open, high, low, close) and Volumes","2. Symbol":"IBM","3. Last Refreshed":"2022-03-24","4. Time Zone":"US/Eastern"},"Monthly Time Series":{"2022-03-24":{"1. open":"122.6700","2. high":"129.7400","3. low":"120.7000","4. close":"129.2500","5. volume":"77758874"},"2022-02-28":{"1. open":"133.7600","2. high":"138.8200","3. low":"118.8100","4. close":"122.5100","5. volume":"98492968"},"2022-01-31":{"1. open":"134.0700","2. high":"142.2000","3. low":"124.1930","4. close":"133.5700","5. volume":"147238382"},"2021-12-31":{"1. open":"118.2500","2. high":"134.9900","3. low":"116.5600","4. close":"133.6600","5. volume":"113930079"},"2021-11-30":{"1. open":"125.0500","2. high":"127.2900","3. low":"114.5600","4. close":"117.1000","5. volume":"119252012"},"2021-10-29":{"1. open":"141.0000","2. high":"146.0000","3. low":"124.6200","4. close":"125.1000","5. volume":"144097758"},"2021-09-30":{"1. open":"139.9800","2. high":"140.5700","3. low":"132.7800","4. close":"138.9300","5. volume":"76644238"},"2021-08-31":{"1. open":"141.4500","2. high":"144.7000","3. low":"137.2100","4. close":"140.3400","5. volume":"69687056"},"2021-07-30":{"1. open":"146.9600","2. high":"147.5000","3. low":"136.2089","4. close":"140.9600","5. volume":"110625907"},"2021-06-30":{"1. open":"145.0000","2. high":"152.8400","3. low":"143.0400","4. close":"146.5900","5. volume":"84365220"},"2021-05-28":{"1. open":"143.8100","2. high":"148.5150","3. low":"140.9200","4. close":"143.7400","5. volume":"98036425"},"2021-04-30":{"1. open":"133.7600","2. high":"148.7400","3. low":"130.3800","4. close":"141.8800","5. volume":"122920494"},"2021-03-31":{"1. open":"120.3500","2. high":"137.0700","3. low":"118.7550","4. close":"133.2600","5. volume":"127967821"},"2021-02-26":{"1. open":"119.9000","2. high":"124.3500","3. low":"118.1200","4. close":"118.9300","5. volume":"106339228"},"2021-01-29":{"1. open":"125.8500","2. high":"132.2400","3. low":"117.3600","4. close":"119.1100","5. volume":"176168962"},"2020-12-31":{"1. open":"123.9000","2. high":"127.6900","3. low":"121.7200","4. close":"125.8800","5. volume":"102587006"},"2020-11-30":{"1. open":"112.6500","2. high":"125.3130","3. low":"111.1600","4. close":"123.5200","5. volume":"103461100"},"2020-10-30":{"1. open":"122.3600","2. high":"135.5000","3. low":"105.9200","4. close":"111.6600","5. volume":"159130911"},"2020-09-30":{"1. open":"122.8500","2. high":"129.9500","3. low":"116.4800","4. close":"121.6700","5. volume":"84510174"},"2020-08-31":{"1. open":"123.5000","2. high":"130.4700","3. low":"122.1500","4. close":"123.3100","5. volume":"74033007"},"2020-07-31":{"1. open":"120.2700","2. high":"132.1700","3. low":"115.2000","4. close":"122.9400","5. volume":"113972765"},"2020-06-30":{"1. open":"124.6400","2. high":"135.8800","3. low":"115.8800","4. close":"120.7700","5. volume":"120931250"},"2020-05-29":{"1. open":"123.1900","2. high":"126.9700","3. low":"111.8100","4. close":"124.9000","5. volume":"92864791"},"2020-04-30":{"1. open":"106.3600","2. high":"129.3100","3. low":"104.5200","4. close":"125.5600","5. volume":"130400316"},"2020-03-31":{"1. open":"130.7500","2. high":"136.1000","3. low":"90.5600","4. close":"110.9300","5. volume":"189585053"},"2020-02-28":{"1. open":"144.2500","2. high":"158.7500","3. low":"126.3600","4. close":"130.1500","5. volume":"118092333"},"2020-01-31":{"1. open":"135.0000","2. high":"145.7900","3. low":"133.2000","4. close":"143.7300","5. volume":"112864967"},"2019-12-31":{"1. open":"134.4500","2. high":"136.4200","3. low":"130.6900","4. close":"134.0400","5. volume":"71661951"},"2019-11-29":{"1. open":"134.5000","2. high":"139.1400","3. low":"132.7500","4. close":"134.4500","5. volume":"64898948"},"2019-10-31":{"1. open":"145.5900","2. high":"147.3500","3. low":"130.9000","4. close":"133.7300","5. volume":"92647927"},"2019-09-30":{"1. open":"134.8500","2. high":"146.5700","3. low":"133.3300","4. close":"145.4200","5. volume":"62083780"},"2019-08-30":{"1. open":"148.9000","2. high":"152.9500","3. low":"128.8300","4. close":"135.5300","5. volume":"96719129"},"2019-07-31":{"1. open":"139.6000","2. high":"151.9400","3. low":"139.1300","4. close":"148.2400","5. volume":"80175943"},"2019-06-28":{"1. open":"127.1000","2. high":"140.1500","3. low":"127.0600","4. close":"137.9000","5. volume":"61342985"},"2019-05-31":{"1. open":"140.5500","2. high":"141.8100","3. low":"126.8500","4. close":"126.9900","5. volume":"75537897"},"2019-04-30":{"1. open":"141.5100","2. high":"145.3900","3. low":"136.2600","4. close":"140.2700","5. volume":"80199229"},"2019-03-29":{"1. open":"139.3100","2. high":"142.1200","3. low":"133.5800","4. close":"141.1000","5. volume":"74688899"},"2019-02-28":{"1. open":"134.9700","2. high":"140.4900","3. low":"132.1200","4. close":"138.1300","5. volume":"68462024"},"2019-01-31":{"1. open":"112.0100","2. high":"135.4100","3. low":"111.6900","4. close":"134.4200","5. volume":"120388583"},"2018-12-31":{"1. open":"125.6700","2. high":"126.5900","3. low":"105.9400","4. close":"113.6700","5. volume":"115600988"},"2018-11-30":{"1. open":"115.5000","2. high":"125.0600","3. low":"114.5400","4. close":"124.2700","5. volume":"141719180"},"2018-10-31":{"1. open":"151.7100","2. high":"154.3600","3. low":"114.0900","4. close":"115.4300","5. volume":"198093801"},"2018-09-28":{"1. open":"145.9800","2. high":"153.3500","3. low":"144.8100","4. close":"151.2100","5. volume":"95868702"},"2018-08-31":{"1. open":"144.7600","2. high":"147.9300","3. low":"142.0000","4. close":"146.4800","5. volume":"79196876"},"2018-07-31":{"1. open":"138.2800","2. high":"150.5400","3. low":"138.2000","4. close":"144.9300","5. volume":"95015127"},"2018-06-29":{"1. open":"142.4300","2. high":"147.5200","3. low":"137.4500","4. close":"139.7000","5. volume":"90243111"},"2018-05-31":{"1. open":"144.6500","2. high":"146.2000","3. low":"139.9000","4. close":"141.3100","5. volume":"88812832"},"2018-04-30":{"1. open":"153.3400","2. high":"162.0000","3. low":"144.1100","4. close":"144.9600","5. volume":"122893135"},"2018-03-29":{"1. open":"155.5300","2. high":"162.1100","3. low":"148.5400","4. close":"153.4300","5. volume":"92113147"},"2018-02-28":{"1. open":"163.1900","2. high":"164.1300","3. low":"144.4000","4. close":"155.8300","5. volume":"100673819"},"2018-01-31":{"1. open":"154.5000","2. high":"171.1300","3. low":"153.5400","4. close":"163.7000","5. volume":"140197975"},"2017-12-29":{"1. open":"154.4000","2. high":"157.8500","3. low":"151.4900","4. close":"153.4200","5. volume":"87525752"},"2017-11-30":{"1. open":"154.1000","2. high":"154.9000","3. low":"146.2110","4. close":"153.9700","5. volume":"89208545"},"2017-10-31":{"1. open":"145.3500","2. high":"162.5100","3. low":"145.2100","4. close":"154.0600","5. volume":"121490046"},"2017-09-29":{"1. open":"142.9800","2. high":"147.4200","3. low":"141.6400","4. close":"145.0800","5. volume":"77056229"},"2017-08-31":{"1. open":"145.0000","2. high":"145.6700","3. low":"139.1300","4. close":"143.0300","5. volume":"79260314"},"2017-07-31":{"1. open":"153.5800","2. high":"156.0250","3. low":"143.6400","4. close":"144.6700","5. volume":"91242021"},"2017-06-30":{"1. open":"152.8000","2. high":"157.2000","3. low":"150.8000","4. close":"153.8300","5. volume":"82652760"},"2017-05-31":{"1. open":"160.0500","2. high":"160.4200","3. low":"149.7900","4. close":"152.6300","5. volume":"102455942"},"2017-04-28":{"1. open":"173.8200","2. high":"176.3300","3. low":"159.6000","4. close":"160.2900","5. volume":"80758989"},"2017-03-31":{"1. open":"180.4800","2. high":"182.5500","3. low":"172.0937","4. close":"174.1400","5. volume":"79476385"},"2017-02-28":{"1. open":"175.0000","2. high":"182.7900","3. low":"172.8900","4. close":"179.8200","5. volume":"59817600"},"2017-01-31":{"1. open":"167.0000","2. high":"179.2500","3. low":"165.3400","4. close":"174.5200","5. volume":"88671370"},"2016-12-30":{"1. open":"161.9500","2. high":"169.9520","3. low":"158.3000","4. close":"165.9900","5. volume":"69463793"},"2016-11-30":{"1. open":"153.5000","2. high":"164.6600","3. low":"151.0000","4. close":"162.2200","5. volume":"76340912"},"2016-10-31":{"1. open":"158.0600","2. high":"158.5300","3. low":"147.7900","4. close":"153.6900","5. volume":"78325840"},"2016-09-30":{"1. open":"158.3200","2. high":"165.0000","3. low":"153.2100","4. close":"158.8500","5. volume":"69951563"},"2016-08-31":{"1. open":"160.6500","2. high":"164.9500","3. low":"157.8500","4. close":"158.8800","5. volume":"69680582"},"2016-07-29":{"1. open":"152.1900","2. high":"163.6000","3. low":"149.9200","4. close":"160.6200","5. volume":"69930927"},"2016-06-30":{"1. open":"153.0000","2. high":"155.4800","3. low":"142.5000","4. close":"151.7800","5. volume":"77115961"},"2016-05-31":{"1. open":"146.5600","2. high":"153.8100","3. low":"142.9000","4. close":"153.7400","5. volume":"75248178"},"2016-04-29":{"1. open":"150.5100","2. high":"153.5200","3. low":"142.6100","4. close":"145.9400","5. volume":"94431134"},"2016-03-31":{"1. open":"132.2400","2. high":"153.1000","3. low":"132.0300","4. close":"151.4500","5. volume":"105698603"},"2016-02-29":{"1. open":"124.4000","2. high":"134.9200","3. low":"116.9010","4. close":"131.0300","5. volume":"106703104"},"2016-01-29":{"1. open":"135.6000","2. high":"136.8900","3. low":"118.0000","4. close":"124.7900","5. volume":"126204196"},"2015-12-31":{"1. open":"139.5800","2. high":"141.4000","3. low":"133.9100","4. close":"137.6200","5. volume":"97650594"},"2015-11-30":{"1. open":"140.5000","2. high":"142.8000","3. low":"131.6500","4. close":"139.4200","5. volume":"85421426"},"2015-10-30":{"1. open":"145.3100","2. high":"153.1470","3. low":"137.3300","4. close":"140.0800","5. volume":"120622363"},"2015-09-30":{"1. open":"144.8400","2. high":"149.6800","3. low":"141.1501","4. close":"144.9700","5. volume":"81761648"},"2015-08-31":{"1. open":"161.7000","2. high":"161.8500","3. low":"140.6200","4. close":"147.8900","5. volume":"93750967"},"2015-07-31":{"1. open":"163.9700","2. high":"173.7800","3. low":"158.5000","4. close":"161.9900","5. volume":"93805392"},"2015-06-30":{"1. open":"170.2100","2. high":"171.5601","3. low":"162.1200","4. close":"162.6600","5. volume":"80845501"},"2015-05-29":{"1. open":"173.2000","2. high":"176.3000","3. low":"168.8400","4. close":"169.6500","5. volume":"57916093"},"2015-04-30":{"1. open":"160.2300","2. high":"175.1303","3. low":"158.3900","4. close":"171.2900","5. volume":"93821213"},"2015-03-31":{"1. open":"161.6800","2. high":"165.3500","3. low":"153.4000","4. close":"160.5000","5. volume":"104899758"},"2015-02-27":{"1. open":"154.0000","2. high":"164.9900","3. low":"151.5100","4. close":"161.9400","5. volume":"77654705"},"2015-01-30":{"1. open":"161.3100","2. high":"163.3100","3. low":"149.5200","4. close":"153.3100","5. volume":"117395861"},"2014-12-31":{"1. open":"161.6400","2. high":"164.5200","3. low":"150.5000","4. close":"160.4400","5. volume":"101614529"},"2014-11-28":{"1. open":"164.2500","2. high":"164.9700","3. low":"159.8000","4. close":"162.1700","5. volume":"80018581"},"2014-10-31":{"1. open":"189.9100","2. high":"190.8900","3. low":"161.1000","4. close":"164.4000","5. volume":"146272610"},"2014-09-30":{"1. open":"192.6800","2. high":"195.0000","3. low":"188.1200","4. close":"189.8300","5. volume":"64033759"},"2014-08-29":{"1. open":"190.5000","2. high":"194.1330","3. low":"183.5800","4. close":"192.3000","5. volume":"53441600"},"2014-07-31":{"1. open":"181.7000","2. high":"196.4000","3. low":"181.7000","4. close":"191.6700","5. volume":"97597800"},"2014-06-30":{"1. open":"184.7600","2. high":"187.6500","3. low":"179.2700","4. close":"181.2700","5. volume":"78501700"},"2014-05-30":{"1. open":"196.3100","2. high":"196.7400","3. low":"182.3300","4. close":"184.3600","5. volume":"70018300"},"2014-04-30":{"1. open":"193.1200","2. high":"199.2100","3. low":"187.0100","4. close":"196.4700","5. volume":"118447100"},"2014-03-31":{"1. open":"183.3300","2. high":"195.6300","3. low":"182.2100","4. close":"192.4900","5. volume":"118984000"},"2014-02-28":{"1. open":"176.0200","2. high":"186.1200","3. low":"172.1900","4. close":"185.1700","5. volume":"87054800"},"2014-01-31":{"1. open":"187.2100","2. high":"190.8100","3. low":"175.3400","4. close":"176.6800","5. volume":"123489300"},"2013-12-31":{"1. open":"179.4600","2. high":"187.7900","3. low":"172.7300","4. close":"187.5700","5. volume":"97993100"},"2013-11-29":{"1. open":"179.8100","2. high":"186.2400","3. low":"177.3100","4. close":"179.6800","5. volume":"100984900"},"2013-10-31":{"1. open":"185.3400","2. high":"186.9900","3. low":"172.5700","4. close":"179.2100","5. volume":"130967100"},"2013-09-30":{"1. open":"183.6300","2. high":"194.8900","3. low":"182.3100","4. close":"185.1800","5. volume":"71488100"},"2013-08-30":{"1. open":"196.6500","2. high":"197.1700","3. low":"181.1000","4. close":"182.2700","5. volume":"73077400"},"2013-07-31":{"1. open":"192.1500","2. high":"200.9400","3. low":"190.2600","4. close":"195.0400","5. volume":"88079400"},"2013-06-28":{"1. open":"208.2500","2. high":"210.0500","3. low":"188.4100","4. close":"191.1100","5. volume":"80215000"},"2013-05-31":{"1. open":"201.8700","2. high":"211.9800","3. low":"199.2000","4. close":"208.0200","5. volume":"90683600"},"2013-04-30":{"1. open":"212.8000","2. high":"214.8900","3. low":"187.6800","4. close":"202.5400","5. volume":"108666600"},"2013-03-28":{"1. open":"200.6500","2. high":"215.9000","3. low":"199.3600","4. close":"213.3000","5. volume":"76023800"},"2013-02-28":{"1. open":"204.6500","2. high":"205.3500","3. low":"197.5100","4. close":"200.8300","5. volume":"64144100"},"2013-01-31":{"1. open":"194.0900","2. high":"208.5800","3. low":"190.3900","4. close":"203.0700","5. volume":"87636600"},"2012-12-31":{"1. open":"190.7600","2. high":"196.4500","3. low":"186.9400","4. close":"191.5500","5. volume":"79320200"},"2012-11-30":{"1. open":"194.9600","2. high":"198.0000","3. low":"184.7800","4. close":"190.0700","5. volume":"81892500"},"2012-10-31":{"1. open":"208.0100","2. high":"211.7900","3. low":"190.5600","4. close":"194.5300","5. volume":"96155000"},"2012-09-28":{"1. open":"196.6100","2. high":"208.3200","3. low":"193.2500","4. close":"207.4500","5. volume":"77341400"},"2012-08-31":{"1. open":"196.9600","2. high":"202.0000","3. low":"193.0200","4. close":"194.8500","5. volume":"60653700"},"2012-07-31":{"1. open":"196.3600","2. high":"197.8400","3. low":"181.8500","4. close":"195.9800","5. volume":"91516500"},"2012-06-29":{"1. open":"190.1200","2. high":"199.9900","3. low":"187.0000","4. close":"195.5800","5. volume":"84559100"},"2012-05-31":{"1. open":"207.1800","2. high":"208.9290","3. low":"192.0000","4. close":"192.9000","5. volume":"86005300"},"2012-04-30":{"1. open":"208.9600","2. high":"210.6900","3. low":"196.7910","4. close":"207.0800","5. volume":"86603000"},"2012-03-30":{"1. open":"197.2300","2. high":"209.1200","3. low":"196.8120","4. close":"208.6500","5. volume":"88096900"},"2012-02-29":{"1. open":"193.2100","2. high":"199.2300","3. low":"190.8310","4. close":"196.7300","5. volume":"78809900"},"2012-01-31":{"1. open":"186.7300","2. high":"193.1000","3. low":"177.3472","4. close":"192.6000","5. volume":"110015000"},"2011-12-30":{"1. open":"187.0100","2. high":"194.9000","3. low":"179.0400","4. close":"183.8800","5. volume":"103436500"},"2011-11-30":{"1. open":"181.5500","2. high":"189.9700","3. low":"177.0600","4. close":"188.0000","5. volume":"97014100"},"2011-10-31":{"1. open":"174.3600","2. high":"190.5300","3. low":"168.8800","4. close":"184.6300","5. volume":"144563700"},"2011-09-30":{"1. open":"172.7100","2. high":"180.9100","3. low":"158.7600","4. close":"174.8700","5. volume":"137895000"},"2011-08-31":{"1. open":"182.6000","2. high":"183.6900","3. low":"157.1300","4. close":"171.9100","5. volume":"195054100"},"2011-07-29":{"1. open":"171.6100","2. high":"185.6300","3. low":"171.4900","4. close":"181.8500","5. volume":"113593200"},"2011-06-30":{"1. open":"168.9000","2. high":"172.4468","3. low":"161.5200","4. close":"171.5500","5. volume":"105442400"},"2011-05-31":{"1. open":"172.1100","2. high":"173.5400","3. low":"165.9000","4. close":"168.9300","5. volume":"110804200"},"2011-04-29":{"1. open":"163.7000","2. high":"173.0000","3. low":"162.1900","4. close":"170.5800","5. volume":"100769500"},"2011-03-31":{"1. open":"163.1500","2. high":"167.7200","3. low":"151.7100","4. close":"163.0700","5. volume":"129714300"},"2011-02-28":{"1. open":"162.1100","2. high":"166.2500","3. low":"159.0300","4. close":"161.8800","5. volume":"89067500"},"2011-01-31":{"1. open":"147.2100","2. high":"164.3500","3. low":"146.6400","4. close":"162.0000","5. volume":"118831600"},"2010-12-31":{"1. open":"143.6100","2. high":"147.5000","3. low":"143.5100","4. close":"146.7600","5. volume":"93392800"},"2010-11-30":{"1. open":"143.6400","2. high":"147.5300","3. low":"141.1800","4. close":"141.4600","5. volume":"104096700"},"2010-10-29":{"1. open":"135.5100","2. high":"144.0000","3. low":"134.3900","4. close":"143.6000","5. volume":"137284700"},"2010-09-30":{"1. open":"125.3100","2. high":"136.1100","3. low":"124.5200","4. close":"134.1400","5. volume":"116092900"},"2010-08-31":{"1. open":"129.2500","2. high":"132.4900","3. low":"122.2800","4. close":"123.1300","5. volume":"117394000"},"2010-07-30":{"1. open":"123.5500","2. high":"131.6000","3. low":"120.6100","4. close":"128.4000","5. volume":"144080000"},"2010-06-30":{"1. open":"124.6900","2. high":"131.9400","3. low":"122.8200","4. close":"123.4800","5. volume":"162019100"},"2010-05-28":{"1. open":"129.3900","2. high":"133.1000","3. low":"116.0000","4. close":"125.2600","5. volume":"188444200"},"2010-04-30":{"1. open":"128.9500","2. high":"132.2800","3. low":"127.1200","4. close":"129.0000","5. volume":"146426400"},"2010-03-31":{"1. open":"127.5000","2. high":"130.7300","3. low":"125.2000","4. close":"128.2500","5. volume":"139997300"},"2010-02-26":{"1. open":"123.2300","2. high":"128.2700","3. low":"121.6100","4. close":"127.1600","5. volume":"113211200"},"2010-01-29":{"1. open":"131.1800","2. high":"134.2500","3. low":"121.9000","4. close":"122.3900","5. volume":"156110600"},"2009-12-31":{"1. open":"127.2900","2. high":"132.8500","3. low":"126.0000","4. close":"130.9000","5. volume":"124475900"},"2009-11-30":{"1. open":"120.6100","2. high":"128.9400","3. low":"119.5000","4. close":"126.3500","5. volume":"110748200"},"2009-10-30":{"1. open":"119.3900","2. high":"128.6100","3. low":"117.2600","4. close":"120.6100","5. volume":"183531100"},"2009-09-30":{"1. open":"117.6700","2. high":"122.8800","3. low":"115.1500","4. close":"119.6100","5. volume":"131522200"},"2009-08-31":{"1. open":"118.8800","2. high":"120.8800","3. low":"116.1200","4. close":"118.0500","5. volume":"112480200"},"2009-07-31":{"1. open":"105.0000","2. high":"119.3700","3. low":"99.5000","4. close":"117.9300","5. volume":"176171400"},"2009-06-30":{"1. open":"106.9400","2. high":"110.6400","3. low":"103.5100","4. close":"104.4200","5. volume":"160502100"},"2009-05-29":{"1. open":"103.7800","2. high":"106.8200","3. low":"99.8300","4. close":"106.2800","5. volume":"153084700"},"2009-04-30":{"1. open":"96.1300","2. high":"106.0500","3. low":"95.7000","4. close":"103.2100","5. volume":"213623100"},"2009-03-31":{"1. open":"91.1700","2. high":"99.8600","3. low":"83.0200","4. close":"96.8900","5. volume":"286114500"},"2009-02-27":{"1. open":"90.6000","2. high":"97.1000","3. low":"82.8500","4. close":"92.0300","5. volume":"223017600"},"2009-01-30":{"1. open":"83.8900","2. high":"94.9400","3. low":"81.7600","4. close":"91.6500","5. volume":"208959400"},"2008-12-31":{"1. open":"80.9500","2. high":"87.2700","3. low":"75.3100","4. close":"84.1600","5. volume":"188846100"},"2008-11-28":{"1. open":"92.6400","2. high":"94.7600","3. low":"69.5000","4. close":"81.6000","5. volume":"218313000"},"2008-10-31":{"1. open":"115.5100","2. high":"116.8000","3. low":"78.8200","4. close":"92.9700","5. volume":"314972000"},"2008-09-30":{"1. open":"122.8700","2. high":"124.0000","3. low":"109.9500","4. close":"116.9600","5. volume":"218411700"},"2008-08-29":{"1. open":"128.5200","2. high":"129.9700","3. low":"121.5000","4. close":"121.7300","5. volume":"137028800"},"2008-07-31":{"1. open":"117.5000","2. high":"130.9300","3. low":"116.6000","4. close":"127.9800","5. volume":"200876500"},"2008-06-30":{"1. open":"128.6700","2. high":"129.3700","3. low":"118.1500","4. close":"118.5300","5. volume":"152327500"},"2008-05-30":{"1. open":"121.0600","2. high":"129.9900","3. low":"120.7800","4. close":"129.4300","5. volume":"159517500"},"2008-04-30":{"1. open":"115.1400","2. high":"125.0000","3. low":"113.8600","4. close":"120.7000","5. volume":"192087200"},"2008-03-31":{"1. open":"114.0900","2. high":"119.7900","3. low":"111.8000","4. close":"115.1400","5. volume":"179284200"},"2008-02-29":{"1. open":"107.2100","2. high":"116.6300","3. low":"100.6000","4. close":"113.8600","5. volume":"168280800"},"2008-01-31":{"1. open":"108.9900","2. high":"108.9900","3. low":"97.0400","4. close":"107.1100","5. volume":"247523900"},"2007-12-31":{"1. open":"105.4500","2. high":"112.1900","3. low":"104.0000","4. close":"108.1000","5. volume":"134151600"},"2007-11-30":{"1. open":"115.5000","2. high":"116.0900","3. low":"99.2700","4. close":"105.1800","5. volume":"200920600"},"2007-10-31":{"1. open":"117.6100","2. high":"121.4600","3. low":"110.9600","4. close":"116.1200","5. volume":"171669000"},"2007-09-28":{"1. open":"116.3400","2. high":"118.8900","3. low":"114.3000","4. close":"117.8000","5. volume":"132233800"},"2007-08-31":{"1. open":"110.3900","2. high":"117.3500","3. low":"103.7000","4. close":"116.6900","5. volume":"202871500"},"2007-07-31":{"1. open":"105.3900","2. high":"118.8200","3. low":"104.5800","4. close":"110.6500","5. volume":"212757600"},"2007-06-29":{"1. open":"106.6200","2. high":"107.2400","3. low":"101.5600","4. close":"105.2500","5. volume":"169602000"},"2007-05-31":{"1. open":"102.0600","2. high":"108.0500","3. low":"101.3500","4. close":"106.6000","5. volume":"146441400"},"2007-04-30":{"1. open":"94.5100","2. high":"103.0000","3. low":"93.9110","4. close":"102.2100","5. volume":"166807200"},"2007-03-30":{"1. open":"90.2500","2. high":"95.8100","3. low":"88.7700","4. close":"94.2600","5. volume":"163194500"},"2007-02-28":{"1. open":"98.9700","2. high":"100.4400","3. low":"92.4700","4. close":"92.9400","5. volume":"125776200"},"2007-01-31":{"1. open":"97.1700","2. high":"100.9000","3. low":"94.5500","4. close":"99.1500","5. volume":"192702000"},"2006-12-29":{"1. open":"91.9000","2. high":"97.8800","3. low":"90.5500","4. close":"97.1500","5. volume":"104470200"},"2006-11-30":{"1. open":"92.5000","2. high":"94.0500","3. low":"90.4300","4. close":"91.9200","5. volume":"104430000"},"2006-10-31":{"1. open":"81.7600","2. high":"92.6800","3. low":"81.5600","4. close":"92.3300","5. volume":"170367300"},"2006-09-29":{"1. open":"81.1300","2. high":"83.7900","3. low":"79.3100","4. close":"81.9400","5. volume":"102776100"},"2006-08-31":{"1. open":"76.8600","2. high":"81.6800","3. low":"74.9000","4. close":"80.9700","5. volume":"100880300"},"2006-07-31":{"1. open":"77.5400","2. high":"78.5300","3. low":"72.7300","4. close":"77.4100","5. volume":"137188300"},"2006-06-30":{"1. open":"79.8900","2. high":"80.8700","3. low":"76.0600","4. close":"76.8200","5. volume":"139457800"},"2006-05-31":{"1. open":"82.5900","2. high":"83.6900","3. low":"79.0000","4. close":"79.9000","5. volume":"113146500"},"2006-04-28":{"1. open":"82.7200","2. high":"84.4500","3. low":"80.6300","4. close":"82.3400","5. volume":"114007000"},"2006-03-31":{"1. open":"80.0100","2. high":"84.9900","3. low":"79.5100","4. close":"82.4700","5. volume":"111514900"},"2006-02-28":{"1. open":"80.9000","2. high":"82.2400","3. low":"78.9300","4. close":"80.2400","5. volume":"111052200"},"2006-01-31":{"1. open":"82.4500","2. high":"85.0300","3. low":"80.2100","4. close":"81.3000","5. volume":"146491600"},"2005-12-30":{"1. open":"89.1500","2. high":"89.9200","3. low":"81.5600","4. close":"82.2000","5. volume":"120052400"},"2005-11-30":{"1. open":"81.8500","2. high":"89.9400","3. low":"80.6400","4. close":"88.9000","5. volume":"110664500"},"2005-10-31":{"1. open":"80.2200","2. high":"84.6000","3. low":"78.7000","4. close":"81.8800","5. volume":"139881800"},"2005-09-30":{"1. open":"80.1600","2. high":"82.1100","3. low":"76.9300","4. close":"80.2200","5. volume":"115681400"},"2005-08-31":{"1. open":"83.0000","2. high":"84.2000","3. low":"79.8700","4. close":"80.6200","5. volume":"105031100"},"2005-07-29":{"1. open":"74.3000","2. high":"85.1100","3. low":"74.1600","4. close":"83.4600","5. volume":"156801500"},"2005-06-30":{"1. open":"75.5700","2. high":"77.7300","3. low":"73.4500","4. close":"74.2000","5. volume":"135542800"},"2005-05-31":{"1. open":"76.8800","2. high":"78.1100","3. low":"72.5000","4. close":"75.5500","5. volume":"138416000"},"2005-04-29":{"1. open":"91.4900","2. high":"91.7600","3. low":"71.8500","4. close":"76.3800","5. volume":"216745500"},"2005-03-31":{"1. open":"92.6400","2. high":"93.7300","3. low":"89.0900","4. close":"91.3800","5. volume":"106145200"},"2005-02-28":{"1. open":"93.6700","2. high":"94.9700","3. low":"91.5500","4. close":"92.5800","5. volume":"79707700"},"2005-01-31":{"1. open":"98.9700","2. high":"99.1000","3. low":"91.4400","4. close":"93.4200","5. volume":"114459000"},"2004-12-31":{"1. open":"94.5000","2. high":"99.0000","3. low":"94.4700","4. close":"98.5800","5. volume":"108170400"},"2004-11-30":{"1. open":"89.3300","2. high":"96.6300","3. low":"89.2300","4. close":"94.2400","5. volume":"114982100"},"2004-10-29":{"1. open":"85.9500","2. high":"90.2700","3. low":"84.2900","4. close":"89.7500","5. volume":"118116100"},"2004-09-30":{"1. open":"84.0500","2. high":"87.2800","3. low":"83.2400","4. close":"85.7400","5. volume":"93906300"},"2004-08-31":{"1. open":"86.8700","2. high":"87.3900","3. low":"81.9000","4. close":"84.6900","5. volume":"91169700"},"2004-07-30":{"1. open":"88.2800","2. high":"88.4400","3. low":"83.4200","4. close":"87.0700","5. volume":"121001000"},"2004-06-30":{"1. open":"88.0900","2. high":"91.2100","3. low":"87.3000","4. close":"88.1500","5. volume":"91968600"},"2004-05-28":{"1. open":"88.1300","2. high":"89.7500","3. low":"85.1200","4. close":"88.5900","5. volume":"104707300"},"2004-04-30":{"1. open":"91.6700","2. high":"94.5500","3. low":"88.0100","4. close":"88.1700","5. volume":"110632000"},"2004-03-31":{"1. open":"96.5000","2. high":"97.6000","3. low":"90.2800","4. close":"91.8400","5. volume":"124483700"},"2004-02-27":{"1. open":"99.1500","2. high":"100.4300","3. low":"95.2000","4. close":"96.5000","5. volume":"97741900"},"2004-01-30":{"1. open":"92.8600","2. high":"99.8500","3. low":"89.0100","4. close":"99.2300","5. volume":"139368500"},"2003-12-31":{"1. open":"90.9000","2. high":"94.1200","3. low":"90.0300","4. close":"92.6800","5. volume":"116103600"},"2003-11-28":{"1. open":"89.9000","2. high":"91.4800","3. low":"87.7200","4. close":"90.5400","5. volume":"97966100"},"2003-10-31":{"1. open":"88.7500","2. high":"94.5400","3. low":"87.5300","4. close":"89.4800","5. volume":"156145400"},"2003-09-30":{"1. open":"82.4000","2. high":"93.4700","3. low":"82.3000","4. close":"88.3300","5. volume":"171943100"},"2003-08-29":{"1. open":"81.1500","2. high":"84.7200","3. low":"78.7300","4. close":"82.0100","5. volume":"113895200"},"2003-07-31":{"1. open":"81.4000","2. high":"87.0300","3. low":"80.5800","4. close":"81.2500","5. volume":"153915600"},"2003-06-30":{"1. open":"89.0000","2. high":"89.0800","3. low":"79.8100","4. close":"82.5000","5. volume":"184488300"},"2003-05-30":{"1. open":"85.3000","2. high":"90.4000","3. low":"84.4500","4. close":"88.0400","5. volume":"149548000"},"2003-04-30":{"1. open":"78.5000","2. high":"86.4900","3. low":"78.1200","4. close":"84.9000","5. volume":"177874300"},"2003-03-31":{"1. open":"78.9000","2. high":"84.9000","3. low":"73.1700","4. close":"78.4300","5. volume":"191937200"},"2003-02-28":{"1. open":"78.2000","2. high":"80.0500","3. low":"74.3100","4. close":"77.9500","5. volume":"145672700"},"2003-01-31":{"1. open":"78.8000","2. high":"88.9500","3. low":"77.0200","4. close":"78.2000","5. volume":"193933500"},"2002-12-31":{"1. open":"88.6000","2. high":"89.4600","3. low":"75.6000","4. close":"77.5000","5. volume":"151563500"},"2002-11-29":{"1. open":"78.9000","2. high":"88.1100","3. low":"76.7000","4. close":"86.9200","5. volume":"184438100"},"2002-10-31":{"1. open":"59.2000","2. high":"79.7900","3. low":"54.0100","4. close":"78.9400","5. volume":"285626300"},"2002-09-30":{"1. open":"74.2000","2. high":"77.5000","3. low":"57.9900","4. close":"58.3100","5. volume":"185664400"},"2002-08-30":{"1. open":"70.4000","2. high":"82.8500","3. low":"65.8500","4. close":"75.3800","5. volume":"166322300"},"2002-07-31":{"1. open":"72.0100","2. high":"74.2000","3. low":"65.7000","4. close":"70.4000","5. volume":"246256900"},"2002-06-28":{"1. open":"80.7500","2. high":"80.9500","3. low":"66.1000","4. close":"72.0000","5. volume":"190980700"},"2002-05-31":{"1. open":"83.8500","2. high":"86.4900","3. low":"75.9200","4. close":"80.4500","5. volume":"172738400"},"2002-04-30":{"1. open":"104.0000","2. high":"104.0000","3. low":"83.3400","4. close":"83.7600","5. volume":"246503300"},"2002-03-28":{"1. open":"98.6000","2. high":"108.8500","3. low":"98.5000","4. close":"104.0000","5. volume":"151268500"},"2002-02-28":{"1. open":"107.6400","2. high":"109.3000","3. low":"95.7600","4. close":"98.1200","5. volume":"172321000"},"2002-01-31":{"1. open":"120.6000","2. high":"126.3900","3. low":"101.0000","4. close":"107.8900","5. volume":"193562900"},"2001-12-31":{"1. open":"114.8000","2. high":"124.7000","3. low":"113.2100","4. close":"120.9600","5. volume":"133393800"},"2001-11-30":{"1. open":"107.2500","2. high":"117.0000","3. low":"106.9000","4. close":"115.5900","5. volume":"135136300"},"2001-10-31":{"1. open":"91.7200","2. high":"112.1000","3. low":"91.3400","4. close":"108.0700","5. volume":"224351500"},"2001-09-28":{"1. open":"100.1500","2. high":"103.1300","3. low":"87.4900","4. close":"91.7200","5. volume":"189312500"},"2001-08-31":{"1. open":"105.3500","2. high":"110.0900","3. low":"98.8600","4. close":"99.9500","5. volume":"143401500"},"2001-07-31":{"1. open":"113.5000","2. high":"115.4000","3. low":"101.5600","4. close":"105.2100","5. volume":"161016400"},"2001-06-29":{"1. open":"112.5000","2. high":"119.0000","3. low":"111.1000","4. close":"113.5000","5. volume":"142929700"},"2001-05-31":{"1. open":"115.8500","2. high":"119.9000","3. low":"110.9600","4. close":"111.8000","5. volume":"159356200"},"2001-04-30":{"1. open":"97.4500","2. high":"118.0500","3. low":"90.0500","4. close":"115.1400","5. volume":"226210900"},"2001-03-30":{"1. open":"99.3000","2. high":"108.4000","3. low":"87.6500","4. close":"96.1800","5. volume":"254550000"},"2001-02-28":{"1. open":"112.4000","2. high":"118.6400","3. low":"99.1000","4. close":"99.9000","5. volume":"156438900"},"2001-01-31":{"1. open":"84.5000","2. high":"116.7500","3. low":"83.7500","4. close":"112.0000","5. volume":"198962600"},"2000-12-29":{"1. open":"94.4400","2. high":"104.7500","3. low":"80.0600","4. close":"85.0000","5. volume":"167790700"},"2000-11-30":{"1. open":"98.4400","2. high":"104.3700","3. low":"91.6200","4. close":"93.5000","5. volume":"130411900"},"2000-10-31":{"1. open":"112.6200","2. high":"119.6200","3. low":"86.9400","4. close":"98.5000","5. volume":"223510000"},"2000-09-29":{"1. open":"133.0600","2. high":"134.9400","3. low":"110.2500","4. close":"112.6200","5. volume":"107468400"},"2000-08-31":{"1. open":"112.0000","2. high":"134.2500","3. low":"110.2500","4. close":"132.0200","5. volume":"121998000"},"2000-07-31":{"1. open":"108.7500","2. high":"117.8100","3. low":"100.0000","4. close":"112.2500","5. volume":"150130400"},"2000-06-30":{"1. open":"107.5600","2. high":"122.3100","3. low":"105.5000","4. close":"109.5600","5. volume":"136216300"},"2000-05-31":{"1. open":"112.5000","2. high":"113.6200","3. low":"102.0000","4. close":"107.3100","5. volume":"123803200"},"2000-04-28":{"1. open":"120.0000","2. high":"128.0000","3. low":"101.2500","4. close":"111.5000","5. volume":"168464800"},"2000-03-31":{"1. open":"102.0000","2. high":"128.2500","3. low":"99.5000","4. close":"118.3700","5. volume":"194329000"},"2000-02-29":{"1. open":"112.3700","2. high":"119.7500","3. low":"100.9400","4. close":"102.7500","5. volume":"133524400"},"2000-01-31":{"1. open":"112.4400","2. high":"124.7500","3. low":"109.6200","4. close":"112.2500","5. volume":"175259600"},"1999-12-31":{"1. open":"102.5600","2. high":"122.1200","3. low":"102.2500","4. close":"107.8700","5. volume":"158626300"}}} \ No newline at end of file diff --git a/Backend/data/symbols.txt b/Backend/data/symbols.txt index 3f8f67c7..00601024 100644 --- a/Backend/data/symbols.txt +++ b/Backend/data/symbols.txt @@ -1,3 +1,4 @@ IBM ABC -ABT \ No newline at end of file +ABT +AXS \ No newline at end of file diff --git a/Backend/data/weekly_ABC.json b/Backend/data/weekly_ABC.json new file mode 100644 index 00000000..94c4c6dd --- /dev/null +++ b/Backend/data/weekly_ABC.json @@ -0,0 +1 @@ +{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file diff --git a/Backend/data/weekly_ABT.json b/Backend/data/weekly_ABT.json new file mode 100644 index 00000000..94c4c6dd --- /dev/null +++ b/Backend/data/weekly_ABT.json @@ -0,0 +1 @@ +{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file diff --git a/Backend/data/weekly_IBM.json b/Backend/data/weekly_IBM.json index e55e983c..94c4c6dd 100644 --- a/Backend/data/weekly_IBM.json +++ b/Backend/data/weekly_IBM.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Weekly Prices (open, high, low, close) and Volumes","2. Symbol":"IBM","3. Last Refreshed":"2022-03-24","4. Time Zone":"US/Eastern"},"Weekly Time Series":{"2022-03-24":{"1. open":"129.0000","2. high":"129.7400","3. low":"127.4000","4. close":"129.2500","5. volume":"11906476"},"2022-03-18":{"1. open":"124.4500","2. high":"128.9300","3. low":"122.6850","4. close":"128.7600","5. volume":"22675632"},"2022-03-11":{"1. open":"126.4700","2. high":"128.3450","3. low":"123.1250","4. close":"123.9600","5. volume":"23784887"},"2022-03-04":{"1. open":"122.2100","2. high":"127.3500","3. low":"120.7000","4. close":"126.6200","5. volume":"26131658"},"2022-02-25":{"1. open":"124.2000","2. high":"125.0000","3. low":"118.8100","4. close":"124.1800","5. volume":"20417161"},"2022-02-18":{"1. open":"132.5900","2. high":"132.6500","3. low":"123.6100","4. close":"124.3500","5. volume":"26022824"},"2022-02-11":{"1. open":"137.4500","2. high":"138.3500","3. low":"132.3800","4. close":"132.6900","5. volume":"23489144"},"2022-02-04":{"1. open":"134.0900","2. high":"138.8200","3. low":"132.3000","4. close":"137.1500","5. volume":"27665550"},"2022-01-28":{"1. open":"127.9900","2. high":"137.3361","3. low":"124.1930","4. close":"134.5000","5. volume":"52800401"},"2022-01-21":{"1. open":"132.9500","2. high":"133.9000","3. low":"129.2700","4. close":"129.3500","5. volume":"20520487"},"2022-01-14":{"1. open":"134.4700","2. high":"136.2000","3. low":"127.9700","4. close":"134.2100","5. volume":"32044685"},"2022-01-07":{"1. open":"134.0700","2. high":"142.2000","3. low":"132.5100","4. close":"134.8300","5. volume":"36013766"},"2021-12-31":{"1. open":"130.6300","2. high":"134.9900","3. low":"129.9500","4. close":"133.6600","5. volume":"18454937"},"2021-12-23":{"1. open":"125.7200","2. high":"130.9600","3. low":"124.7000","4. close":"130.6300","5. volume":"17369625"},"2021-12-17":{"1. open":"123.7600","2. high":"128.6400","3. low":"120.7900","4. close":"127.4000","5. volume":"35216850"},"2021-12-10":{"1. open":"119.4000","2. high":"125.3300","3. low":"119.4000","4. close":"124.0900","5. volume":"25031512"},"2021-12-03":{"1. open":"118.6200","2. high":"119.6100","3. low":"116.4500","4. close":"118.8400","5. volume":"36059651"},"2021-11-26":{"1. open":"116.0000","2. high":"118.8100","3. low":"114.5600","4. close":"115.8100","5. volume":"17875027"},"2021-11-19":{"1. open":"119.5400","2. high":"120.1600","3. low":"115.2700","4. close":"116.0500","5. volume":"24272797"},"2021-11-12":{"1. open":"123.9850","2. high":"124.7800","3. low":"118.7800","4. close":"118.9600","5. volume":"29109912"},"2021-11-05":{"1. open":"125.0500","2. high":"127.2900","3. low":"119.9000","4. close":"123.6100","5. volume":"29791780"},"2021-10-29":{"1. open":"127.5300","2. high":"128.6500","3. low":"124.6200","4. close":"125.1000","5. volume":"34288134"},"2021-10-22":{"1. open":"144.0000","2. high":"144.9400","3. low":"126.6110","4. close":"127.8800","5. volume":"59731582"},"2021-10-15":{"1. open":"143.5000","2. high":"144.8500","3. low":"139.6600","4. close":"144.6100","5. volume":"16262687"},"2021-10-08":{"1. open":"142.7400","2. high":"146.0000","3. low":"140.8900","4. close":"143.2200","5. volume":"27211291"},"2021-10-01":{"1. open":"137.9600","2. high":"143.9700","3. low":"136.4400","4. close":"143.3200","5. volume":"23824191"},"2021-09-24":{"1. open":"133.9000","2. high":"138.4800","3. low":"132.7800","4. close":"137.4900","5. volume":"18425230"},"2021-09-17":{"1. open":"138.4000","2. high":"138.9900","3. low":"135.0500","4. close":"135.2300","5. volume":"20130213"},"2021-09-10":{"1. open":"139.6500","2. high":"139.7900","3. low":"137.0000","4. close":"137.0200","5. volume":"13754250"},"2021-09-03":{"1. open":"139.5000","2. high":"140.9400","3. low":"138.8150","4. close":"139.5800","5. volume":"13345045"},"2021-08-27":{"1. open":"139.6200","2. high":"140.8000","3. low":"138.4000","4. close":"139.4100","5. volume":"12376600"},"2021-08-20":{"1. open":"143.2300","2. high":"143.7400","3. low":"137.2100","4. close":"139.1100","5. volume":"16189007"},"2021-08-13":{"1. open":"142.2000","2. high":"143.5800","3. low":"140.3400","4. close":"143.1800","5. volume":"18462255"},"2021-08-06":{"1. open":"141.4500","2. high":"144.7000","3. low":"141.0300","4. close":"144.0900","5. volume":"16428567"},"2021-07-30":{"1. open":"141.3900","2. high":"143.6400","3. low":"140.7900","4. close":"140.9600","5. volume":"16120616"},"2021-07-23":{"1. open":"136.4500","2. high":"144.9200","3. low":"136.2089","4. close":"141.3400","5. volume":"34786264"},"2021-07-16":{"1. open":"141.4300","2. high":"141.9599","3. low":"138.5900","4. close":"138.9000","5. volume":"18659679"},"2021-07-09":{"1. open":"139.9900","2. high":"141.9800","3. low":"137.1000","4. close":"141.5200","5. volume":"21544898"},"2021-07-02":{"1. open":"147.0100","2. high":"147.5000","3. low":"139.4600","4. close":"140.0200","5. volume":"29077036"},"2021-06-25":{"1. open":"144.1100","2. high":"147.0700","3. low":"144.0600","4. close":"146.8400","5. volume":"17129373"},"2021-06-18":{"1. open":"150.7100","2. high":"151.0300","3. low":"143.0400","4. close":"143.1200","5. volume":"23177438"},"2021-06-11":{"1. open":"147.5500","2. high":"152.8400","3. low":"147.1700","4. close":"151.2800","5. volume":"22042806"},"2021-06-04":{"1. open":"145.0000","2. high":"147.5500","3. low":"143.7500","4. close":"147.4200","5. volume":"12453017"},"2021-05-28":{"1. open":"145.0600","2. high":"145.3900","3. low":"143.0400","4. close":"143.7400","5. volume":"18483838"},"2021-05-21":{"1. open":"144.4400","2. high":"145.8000","3. low":"140.9200","4. close":"144.7400","5. volume":"20546126"},"2021-05-14":{"1. open":"145.8000","2. high":"148.3800","3. low":"141.1400","4. close":"144.6800","5. volume":"27415665"},"2021-05-07":{"1. open":"143.8100","2. high":"148.5150","3. low":"143.5500","4. close":"145.4600","5. volume":"31590796"},"2021-04-30":{"1. open":"142.4200","2. high":"148.7400","3. low":"140.5500","4. close":"141.8800","5. volume":"25588990"},"2021-04-23":{"1. open":"133.6000","2. high":"144.7400","3. low":"132.5800","4. close":"142.4300","5. volume":"47246234"},"2021-04-16":{"1. open":"135.0200","2. high":"135.3700","3. low":"130.3800","4. close":"133.5900","5. volume":"26831249"},"2021-04-09":{"1. open":"133.6400","2. high":"136.6900","3. low":"133.4000","4. close":"135.7300","5. volume":"19179860"},"2021-04-01":{"1. open":"135.9800","2. high":"137.0700","3. low":"132.2700","4. close":"133.2300","5. volume":"18432506"},"2021-03-26":{"1. open":"128.5000","2. high":"136.4800","3. low":"127.8900","4. close":"136.3800","5. volume":"23647858"},"2021-03-19":{"1. open":"127.7700","2. high":"130.9950","3. low":"127.3400","4. close":"128.9000","5. volume":"28046462"},"2021-03-12":{"1. open":"122.9900","2. high":"128.6400","3. low":"122.8800","4. close":"127.6100","5. volume":"29253064"},"2021-03-05":{"1. open":"120.3500","2. high":"123.7500","3. low":"118.7550","4. close":"122.8300","5. volume":"32662092"},"2021-02-26":{"1. open":"118.5000","2. high":"124.3500","3. low":"118.4400","4. close":"118.9300","5. volume":"30731807"},"2021-02-19":{"1. open":"120.1500","2. high":"120.9400","3. low":"118.3800","4. close":"118.9900","5. volume":"22567552"},"2021-02-12":{"1. open":"122.6200","2. high":"123.9767","3. low":"120.0900","4. close":"120.8000","5. volume":"24634263"},"2021-02-05":{"1. open":"119.9000","2. high":"121.8100","3. low":"118.1200","4. close":"121.7900","5. volume":"28405606"},"2021-01-29":{"1. open":"118.7624","2. high":"124.7900","3. low":"117.4500","4. close":"119.1100","5. volume":"56437187"},"2021-01-22":{"1. open":"129.2800","2. high":"132.2400","3. low":"117.3600","4. close":"118.6100","5. volume":"61879427"},"2021-01-15":{"1. open":"127.9500","2. high":"130.1600","3. low":"126.4550","4. close":"128.3900","5. volume":"29417959"},"2021-01-08":{"1. open":"125.8500","2. high":"131.8800","3. low":"123.0400","4. close":"128.5300","5. volume":"28434389"},"2020-12-31":{"1. open":"125.1000","2. high":"126.6000","3. low":"123.2400","4. close":"125.8800","5. volume":"14025419"},"2020-12-24":{"1. open":"123.9700","2. high":"125.2100","3. low":"121.7200","4. close":"124.6900","5. volume":"14908439"},"2020-12-18":{"1. open":"125.3200","2. high":"126.5728","3. low":"123.4400","4. close":"125.8500","5. volume":"25280527"},"2020-12-11":{"1. open":"126.4900","2. high":"127.6900","3. low":"123.6100","4. close":"124.2700","5. volume":"29511629"},"2020-12-04":{"1. open":"124.1000","2. high":"127.3800","3. low":"122.4100","4. close":"127.2000","5. volume":"24848983"},"2020-11-27":{"1. open":"117.4300","2. high":"125.3130","3. low":"117.2700","4. close":"124.3500","5. volume":"19418148"},"2020-11-20":{"1. open":"118.3000","2. high":"118.8800","3. low":"115.8900","4. close":"116.9400","5. volume":"22498909"},"2020-11-13":{"1. open":"117.8800","2. high":"119.7400","3. low":"113.4800","4. close":"116.8500","5. volume":"30088820"},"2020-11-06":{"1. open":"112.6500","2. high":"115.6500","3. low":"111.1600","4. close":"114.0400","5. volume":"25467232"},"2020-10-30":{"1. open":"114.4500","2. high":"114.9000","3. low":"105.9200","4. close":"111.6600","5. volume":"37250916"},"2020-10-23":{"1. open":"126.8000","2. high":"127.3500","3. low":"112.9800","4. close":"116.0000","5. volume":"50486636"},"2020-10-16":{"1. open":"128.0700","2. high":"128.2500","3. low":"123.8500","4. close":"125.9300","5. volume":"21874963"},"2020-10-09":{"1. open":"121.8400","2. high":"135.5000","3. low":"121.0500","4. close":"127.7900","5. volume":"43381507"},"2020-10-02":{"1. open":"120.5700","2. high":"123.3000","3. low":"118.8200","4. close":"120.5700","5. volume":"15038264"},"2020-09-25":{"1. open":"120.4800","2. high":"121.5900","3. low":"116.4800","4. close":"118.9500","5. volume":"18708494"},"2020-09-18":{"1. open":"122.3600","2. high":"125.8200","3. low":"121.7600","4. close":"122.7600","5. volume":"18909398"},"2020-09-11":{"1. open":"122.1600","2. high":"123.7000","3. low":"120.2400","4. close":"121.4600","5. volume":"16507866"},"2020-09-04":{"1. open":"125.2500","2. high":"129.9500","3. low":"121.2400","4. close":"122.3000","5. volume":"26310920"},"2020-08-28":{"1. open":"123.7900","2. high":"126.8200","3. low":"123.3600","4. close":"125.0700","5. volume":"16959794"},"2020-08-21":{"1. open":"125.2500","2. high":"125.5900","3. low":"122.3100","4. close":"123.1600","5. volume":"15908978"},"2020-08-14":{"1. open":"125.4200","2. high":"130.4700","3. low":"123.9100","4. close":"125.2700","5. volume":"18634659"},"2020-08-07":{"1. open":"123.5000","2. high":"126.7500","3. low":"122.1500","4. close":"124.9600","5. volume":"17701697"},"2020-07-31":{"1. open":"124.8600","2. high":"126.3400","3. low":"121.0900","4. close":"122.9400","5. volume":"20010578"},"2020-07-24":{"1. open":"126.0700","2. high":"132.1700","3. low":"125.1400","4. close":"125.7900","5. volume":"41040414"},"2020-07-17":{"1. open":"119.7800","2. high":"125.6300","3. low":"117.9200","4. close":"125.1100","5. volume":"21958911"},"2020-07-10":{"1. open":"121.2500","2. high":"121.8500","3. low":"115.2000","4. close":"118.3500","5. volume":"22560031"},"2020-07-02":{"1. open":"117.9800","2. high":"121.4200","3. low":"117.3700","4. close":"119.7000","5. volume":"16478700"},"2020-06-26":{"1. open":"122.1200","2. high":"122.9000","3. low":"115.8800","4. close":"117.1900","5. volume":"35016186"},"2020-06-19":{"1. open":"119.1900","2. high":"127.5000","3. low":"118.2900","4. close":"122.4700","5. volume":"24867689"},"2020-06-12":{"1. open":"132.2700","2. high":"135.8800","3. low":"117.8400","4. close":"121.9100","5. volume":"33456639"},"2020-06-05":{"1. open":"124.6400","2. high":"134.2300","3. low":"124.0300","4. close":"132.0600","5. volume":"19514867"},"2020-05-29":{"1. open":"121.3000","2. high":"126.9700","3. low":"121.0100","4. close":"124.9000","5. volume":"23037728"},"2020-05-22":{"1. open":"119.8800","2. high":"122.4700","3. low":"117.5900","4. close":"118.3900","5. volume":"19484187"},"2020-05-15":{"1. open":"121.8100","2. high":"124.3200","3. low":"111.8100","4. close":"116.9800","5. volume":"24229073"},"2020-05-08":{"1. open":"120.8200","2. high":"124.3200","3. low":"119.3900","4. close":"122.9900","5. volume":"21189890"},"2020-05-01":{"1. open":"125.5600","2. high":"129.3100","3. low":"121.3900","4. close":"121.8700","5. volume":"26502989"},"2020-04-24":{"1. open":"119.1500","2. high":"125.0000","3. low":"112.0600","4. close":"124.7200","5. volume":"41252209"},"2020-04-17":{"1. open":"121.6300","2. high":"125.1800","3. low":"114.4200","4. close":"120.1200","5. volume":"27240371"},"2020-04-09":{"1. open":"110.3500","2. high":"122.9200","3. low":"110.1300","4. close":"121.5000","5. volume":"23351117"},"2020-04-03":{"1. open":"108.0900","2. high":"113.8100","3. low":"104.5200","4. close":"106.3400","5. volume":"28882211"},"2020-03-27":{"1. open":"94.6000","2. high":"113.1500","3. low":"90.5600","4. close":"108.0300","5. volume":"39907532"},"2020-03-20":{"1. open":"98.0000","2. high":"107.4100","3. low":"94.7100","4. close":"95.3900","5. volume":"47138046"},"2020-03-13":{"1. open":"120.1600","2. high":"124.8800","3. low":"100.8100","4. close":"107.9500","5. volume":"55580046"},"2020-03-06":{"1. open":"130.7500","2. high":"136.1000","3. low":"124.5200","4. close":"127.7300","5. volume":"35054761"},"2020-02-28":{"1. open":"145.5100","2. high":"148.0500","3. low":"126.3600","4. close":"130.1500","5. volume":"38480655"},"2020-02-21":{"1. open":"149.7900","2. high":"151.8900","3. low":"148.8400","4. close":"149.8400","5. volume":"12493166"},"2020-02-14":{"1. open":"152.9700","2. high":"155.6000","3. low":"149.7700","4. close":"150.7000","5. volume":"23423757"},"2020-02-07":{"1. open":"144.2500","2. high":"158.7500","3. low":"143.9000","4. close":"153.4100","5. volume":"43694755"},"2020-01-31":{"1. open":"138.5000","2. high":"144.0500","3. low":"134.9700","4. close":"143.7300","5. volume":"34661511"},"2020-01-24":{"1. open":"137.8100","2. high":"145.7900","3. low":"137.6000","4. close":"140.5600","5. volume":"34829367"},"2020-01-17":{"1. open":"135.4800","2. high":"138.3300","3. low":"135.0700","4. close":"138.3100","5. volume":"20831539"},"2020-01-10":{"1. open":"133.4200","2. high":"137.8700","3. low":"133.2000","4. close":"136.6900","5. volume":"17020619"},"2020-01-03":{"1. open":"135.2000","2. high":"135.9200","3. low":"132.4000","4. close":"134.3400","5. volume":"13418364"},"2019-12-27":{"1. open":"135.7800","2. high":"136.1500","3. low":"134.6100","4. close":"135.2700","5. volume":"8887084"},"2019-12-20":{"1. open":"134.9400","2. high":"136.4200","3. low":"133.4600","4. close":"135.5900","5. volume":"20036502"},"2019-12-13":{"1. open":"133.3500","2. high":"135.6600","3. low":"133.2600","4. close":"134.2100","5. volume":"17504239"},"2019-12-06":{"1. open":"134.4500","2. high":"134.5000","3. low":"130.6900","4. close":"133.2200","5. volume":"17337693"},"2019-11-29":{"1. open":"134.4700","2. high":"136.1500","3. low":"133.0300","4. close":"134.4500","5. volume":"11502959"},"2019-11-22":{"1. open":"134.3000","2. high":"135.3800","3. low":"132.7500","4. close":"134.3400","5. volume":"16963107"},"2019-11-15":{"1. open":"137.2000","2. high":"137.2000","3. low":"133.3300","4. close":"134.4000","5. volume":"16169172"},"2019-11-08":{"1. open":"136.2400","2. high":"139.1400","3. low":"136.1600","4. close":"137.6100","5. volume":"17174941"},"2019-11-01":{"1. open":"136.0000","2. high":"136.6300","3. low":"133.2000","4. close":"135.5300","5. volume":"16136475"},"2019-10-25":{"1. open":"132.6100","2. high":"135.9300","3. low":"130.9000","4. close":"135.4400","5. volume":"19388201"},"2019-10-18":{"1. open":"142.3100","2. high":"143.7200","3. low":"132.2500","4. close":"134.0900","5. volume":"34208011"},"2019-10-11":{"1. open":"142.2600","2. high":"144.5000","3. low":"138.2500","4. close":"142.7600","5. volume":"14096608"},"2019-10-04":{"1. open":"143.7300","2. high":"147.3500","3. low":"139.1800","4. close":"142.9900","5. volume":"15911420"},"2019-09-27":{"1. open":"141.1900","2. high":"145.0900","3. low":"140.5600","4. close":"143.2400","5. volume":"12376163"},"2019-09-20":{"1. open":"142.5600","2. high":"145.0300","3. low":"140.5100","4. close":"141.8800","5. volume":"15262993"},"2019-09-13":{"1. open":"140.5900","2. high":"145.4600","3. low":"140.4600","4. close":"143.6700","5. volume":"17776693"},"2019-09-06":{"1. open":"134.8500","2. high":"141.7000","3. low":"133.3300","4. close":"140.5700","5. volume":"12663912"},"2019-08-30":{"1. open":"131.0500","2. high":"136.0700","3. low":"129.1600","4. close":"135.5300","5. volume":"16211916"},"2019-08-23":{"1. open":"134.8800","2. high":"136.3300","3. low":"128.8300","4. close":"129.5700","5. volume":"16504912"},"2019-08-16":{"1. open":"135.6600","2. high":"136.5700","3. low":"130.2500","4. close":"133.7600","5. volume":"20933133"},"2019-08-09":{"1. open":"144.9800","2. high":"145.1000","3. low":"135.3500","4. close":"136.1300","5. volume":"28623442"},"2019-08-02":{"1. open":"151.1100","2. high":"152.9500","3. low":"145.5900","4. close":"147.2500","5. volume":"22876887"},"2019-07-26":{"1. open":"150.1600","2. high":"151.9400","3. low":"148.3800","4. close":"151.3600","5. volume":"16794485"},"2019-07-19":{"1. open":"142.8900","2. high":"151.5800","3. low":"141.9500","4. close":"149.6800","5. volume":"31893327"},"2019-07-12":{"1. open":"141.0500","2. high":"142.9200","3. low":"139.1300","4. close":"142.7400","5. volume":"13194248"},"2019-07-05":{"1. open":"139.6000","2. high":"141.8200","3. low":"139.2800","4. close":"141.3800","5. volume":"9862722"},"2019-06-28":{"1. open":"139.2000","2. high":"140.1500","3. low":"137.8400","4. close":"137.9000","5. volume":"15575818"},"2019-06-21":{"1. open":"135.3900","2. high":"139.5400","3. low":"134.7000","4. close":"139.2000","5. volume":"15851123"},"2019-06-14":{"1. open":"134.3800","2. high":"136.4600","3. low":"133.9100","4. close":"135.1500","5. volume":"13722199"},"2019-06-07":{"1. open":"127.1000","2. high":"134.7200","3. low":"127.0600","4. close":"133.3100","5. volume":"16193845"},"2019-05-31":{"1. open":"132.1300","2. high":"132.6400","3. low":"126.8500","4. close":"126.9900","5. volume":"14869322"},"2019-05-24":{"1. open":"133.5300","2. high":"137.0600","3. low":"130.4400","4. close":"132.2800","5. volume":"15557532"},"2019-05-17":{"1. open":"133.2800","2. high":"136.1100","3. low":"130.9600","4. close":"134.3200","5. volume":"16426011"},"2019-05-10":{"1. open":"138.3000","2. high":"140.6900","3. low":"132.4200","4. close":"135.3200","5. volume":"19509963"},"2019-05-03":{"1. open":"139.1500","2. high":"141.8100","3. low":"138.6800","4. close":"140.2500","5. volume":"16772230"},"2019-04-26":{"1. open":"139.4200","2. high":"141.3100","3. low":"137.7100","4. close":"139.4400","5. volume":"16961387"},"2019-04-18":{"1. open":"144.4000","2. high":"145.3900","3. low":"136.2600","4. close":"140.3300","5. volume":"27390537"},"2019-04-12":{"1. open":"143.0200","2. high":"144.4400","3. low":"141.8400","4. close":"144.3500","5. volume":"13675882"},"2019-04-05":{"1. open":"141.5100","2. high":"144.2200","3. low":"141.5100","4. close":"143.2800","5. volume":"14574262"},"2019-03-29":{"1. open":"139.0600","2. high":"141.2200","3. low":"138.3500","4. close":"141.1000","5. volume":"14257045"},"2019-03-22":{"1. open":"139.8300","2. high":"142.1200","3. low":"138.7200","4. close":"139.4500","5. volume":"17883337"},"2019-03-15":{"1. open":"136.0300","2. high":"140.3300","3. low":"135.8400","4. close":"139.4300","5. volume":"20959826"},"2019-03-08":{"1. open":"139.9900","2. high":"140.0800","3. low":"133.5800","4. close":"135.0900","5. volume":"18558647"},"2019-03-01":{"1. open":"140.0000","2. high":"140.4900","3. low":"137.7200","4. close":"139.2000","5. volume":"15273342"},"2019-02-22":{"1. open":"137.8100","2. high":"139.3800","3. low":"137.2200","4. close":"139.2500","5. volume":"13238819"},"2019-02-15":{"1. open":"134.2900","2. high":"138.1900","3. low":"133.9100","4. close":"138.0300","5. volume":"17299173"},"2019-02-08":{"1. open":"134.0200","2. high":"136.6500","3. low":"132.1200","4. close":"133.7100","5. volume":"21874687"},"2019-02-01":{"1. open":"133.1000","2. high":"135.4100","3. low":"132.5800","4. close":"134.1000","5. volume":"23585862"},"2019-01-25":{"1. open":"123.3000","2. high":"135.0000","3. low":"121.5400","4. close":"133.9700","5. volume":"44147478"},"2019-01-18":{"1. open":"120.5100","2. high":"124.7200","3. low":"119.7600","4. close":"123.8200","5. volume":"23616108"},"2019-01-11":{"1. open":"117.5000","2. high":"121.8600","3. low":"116.6700","4. close":"121.4600","5. volume":"19780844"},"2019-01-04":{"1. open":"113.3300","2. high":"117.4900","3. low":"111.6900","4. close":"117.3200","5. volume":"18047093"},"2018-12-28":{"1. open":"109.9000","2. high":"114.8000","3. low":"105.9400","4. close":"113.0300","5. volume":"21630293"},"2018-12-21":{"1. open":"119.0700","2. high":"120.2700","3. low":"110.4400","4. close":"110.9400","5. volume":"39485288"},"2018-12-14":{"1. open":"119.7400","2. high":"123.8100","3. low":"118.5200","4. close":"119.9000","5. volume":"23701178"},"2018-12-07":{"1. open":"125.6700","2. high":"126.5900","3. low":"118.8700","4. close":"119.3400","5. volume":"25801474"},"2018-11-30":{"1. open":"118.3700","2. high":"124.6900","3. low":"118.0600","4. close":"124.2700","5. volume":"27471124"},"2018-11-23":{"1. open":"121.6300","2. high":"122.1800","3. low":"116.7000","4. close":"117.1900","5. volume":"18035587"},"2018-11-16":{"1. open":"123.5000","2. high":"123.5700","3. low":"119.5100","4. close":"121.5700","5. volume":"23510061"},"2018-11-09":{"1. open":"116.1000","2. high":"125.0600","3. low":"116.0000","4. close":"123.5400","5. volume":"48482997"},"2018-11-02":{"1. open":"119.3400","2. high":"123.9500","3. low":"114.0900","4. close":"115.6700","5. volume":"87773431"},"2018-10-26":{"1. open":"129.5800","2. high":"131.9000","3. low":"123.7100","4. close":"124.7900","5. volume":"36964774"},"2018-10-19":{"1. open":"140.3800","2. high":"145.4500","3. low":"127.9600","4. close":"129.1000","5. volume":"50928336"},"2018-10-12":{"1. open":"148.5000","2. high":"149.0700","3. low":"138.7800","4. close":"140.8500","5. volume":"27703434"},"2018-10-05":{"1. open":"151.7100","2. high":"154.3600","3. low":"147.8700","4. close":"149.0300","5. volume":"18943237"},"2018-09-28":{"1. open":"151.1000","2. high":"153.3500","3. low":"148.3600","4. close":"151.2100","5. volume":"22847744"},"2018-09-21":{"1. open":"148.4400","2. high":"152.6000","3. low":"147.4700","4. close":"151.3500","5. volume":"37327961"},"2018-09-14":{"1. open":"146.6000","2. high":"149.3000","3. low":"145.2500","4. close":"148.3300","5. volume":"20298346"},"2018-09-07":{"1. open":"145.9800","2. high":"147.6600","3. low":"144.8100","4. close":"145.4500","5. volume":"15394651"},"2018-08-31":{"1. open":"146.9400","2. high":"147.9300","3. low":"145.2500","4. close":"146.4800","5. volume":"15929583"},"2018-08-24":{"1. open":"146.3700","2. high":"147.1600","3. low":"144.7500","4. close":"146.0400","5. volume":"12992907"},"2018-08-17":{"1. open":"144.1500","2. high":"146.3900","3. low":"142.0000","4. close":"146.0600","5. volume":"17890077"},"2018-08-10":{"1. open":"146.9500","2. high":"147.6400","3. low":"143.8800","4. close":"144.4800","5. volume":"17100909"},"2018-08-03":{"1. open":"144.8000","2. high":"147.9200","3. low":"142.3300","4. close":"147.7000","5. volume":"24366161"},"2018-07-27":{"1. open":"146.3500","2. high":"149.2700","3. low":"144.6600","4. close":"145.1500","5. volume":"19940363"},"2018-07-20":{"1. open":"145.6700","2. high":"150.5400","3. low":"142.7400","4. close":"146.3500","5. volume":"36572622"},"2018-07-13":{"1. open":"142.5900","2. high":"146.9800","3. low":"142.4700","4. close":"145.9000","5. volume":"17395351"},"2018-07-06":{"1. open":"138.2800","2. high":"142.9400","3. low":"138.2000","4. close":"142.4800","5. volume":"12024030"},"2018-06-29":{"1. open":"140.4000","2. high":"141.3600","3. low":"137.4500","4. close":"139.7000","5. volume":"25451478"},"2018-06-22":{"1. open":"144.1800","2. high":"144.5200","3. low":"140.7800","4. close":"141.2800","5. volume":"21004666"},"2018-06-15":{"1. open":"146.6200","2. high":"147.5200","3. low":"143.7000","4. close":"145.3900","5. volume":"21311072"},"2018-06-08":{"1. open":"142.3000","2. high":"146.7000","3. low":"142.1800","4. close":"146.1400","5. volume":"18618365"},"2018-06-01":{"1. open":"142.5300","2. high":"143.1000","3. low":"140.2100","4. close":"141.9500","5. volume":"20343954"},"2018-05-25":{"1. open":"144.9500","2. high":"146.2000","3. low":"142.9500","4. close":"143.6400","5. volume":"16951460"},"2018-05-18":{"1. open":"144.4700","2. high":"145.1900","3. low":"142.9200","4. close":"144.0800","5. volume":"16304020"},"2018-05-11":{"1. open":"144.0000","2. high":"144.8500","3. low":"141.2800","4. close":"144.1400","5. volume":"20021856"},"2018-05-04":{"1. open":"146.8600","2. high":"147.3800","3. low":"139.9000","4. close":"143.9100","5. volume":"23464605"},"2018-04-27":{"1. open":"145.0300","2. high":"147.3600","3. low":"144.1100","4. close":"146.4800","5. volume":"25028049"},"2018-04-20":{"1. open":"157.9900","2. high":"162.0000","3. low":"144.5100","4. close":"144.9000","5. volume":"51127683"},"2018-04-13":{"1. open":"151.8000","2. high":"159.2200","3. low":"151.7400","4. close":"156.7100","5. volume":"21372171"},"2018-04-06":{"1. open":"153.3400","2. high":"154.9200","3. low":"147.4500","4. close":"150.5700","5. volume":"20949699"},"2018-03-29":{"1. open":"151.2100","2. high":"154.8700","3. low":"150.2800","4. close":"153.4300","5. volume":"14934365"},"2018-03-23":{"1. open":"159.7100","2. high":"159.8900","3. low":"148.5400","4. close":"148.8900","5. volume":"21959274"},"2018-03-16":{"1. open":"159.6400","2. high":"162.1100","3. low":"157.7400","4. close":"160.2600","5. volume":"25076217"},"2018-03-09":{"1. open":"154.1200","2. high":"159.5800","3. low":"153.7500","4. close":"159.3100","5. volume":"22842811"},"2018-03-02":{"1. open":"155.8100","2. high":"159.7800","3. low":"151.8800","4. close":"154.4900","5. volume":"18831762"},"2018-02-23":{"1. open":"155.7900","2. high":"156.7900","3. low":"152.7900","4. close":"155.5200","5. volume":"14987102"},"2018-02-16":{"1. open":"150.9000","2. high":"157.7900","3. low":"149.6400","4. close":"156.1800","5. volume":"25701914"},"2018-02-09":{"1. open":"157.8900","2. high":"158.5000","3. low":"144.4000","4. close":"149.5100","5. volume":"38856237"},"2018-02-02":{"1. open":"167.4500","2. high":"168.3900","3. low":"158.8700","4. close":"159.0300","5. volume":"21842492"},"2018-01-26":{"1. open":"161.5100","2. high":"168.7200","3. low":"161.1100","4. close":"167.3400","5. volume":"28170112"},"2018-01-19":{"1. open":"165.1000","2. high":"171.1300","3. low":"161.3000","4. close":"162.3700","5. volume":"51246304"},"2018-01-12":{"1. open":"162.6600","2. high":"164.9400","3. low":"161.7000","4. close":"163.1400","5. volume":"22376145"},"2018-01-05":{"1. open":"154.5000","2. high":"162.9000","3. low":"153.5400","4. close":"162.4900","5. volume":"26160206"},"2017-12-29":{"1. open":"152.5100","2. high":"154.7200","3. low":"152.5000","4. close":"153.4200","5. volume":"10573732"},"2017-12-22":{"1. open":"153.4100","2. high":"154.1800","3. low":"151.4900","4. close":"152.5000","5. volume":"20045931"},"2017-12-15":{"1. open":"154.9700","2. high":"157.8500","3. low":"152.0300","4. close":"152.5000","5. volume":"31101402"},"2017-12-08":{"1. open":"155.6700","2. high":"156.8000","3. low":"153.2600","4. close":"154.8100","5. volume":"20236835"},"2017-12-01":{"1. open":"152.0600","2. high":"155.0200","3. low":"151.6200","4. close":"154.7600","5. volume":"24386604"},"2017-11-24":{"1. open":"150.6400","2. high":"152.4500","3. low":"149.9000","4. close":"151.8400","5. volume":"13728716"},"2017-11-17":{"1. open":"148.8800","2. high":"150.1500","3. low":"146.2110","4. close":"148.9700","5. volume":"23731918"},"2017-11-10":{"1. open":"151.7700","2. high":"151.8200","3. low":"149.1400","4. close":"149.1600","5. volume":"21891991"},"2017-11-03":{"1. open":"153.7600","2. high":"154.9300","3. low":"151.4900","4. close":"151.5800","5. volume":"19467703"},"2017-10-27":{"1. open":"162.0500","2. high":"162.5100","3. low":"152.9110","4. close":"153.6800","5. volume":"28529638"},"2017-10-20":{"1. open":"147.2200","2. high":"162.4800","3. low":"146.1800","4. close":"162.0700","5. volume":"56148944"},"2017-10-13":{"1. open":"146.5000","2. high":"148.9500","3. low":"146.3500","4. close":"147.1000","5. volume":"16128636"},"2017-10-06":{"1. open":"145.3500","2. high":"147.5400","3. low":"145.2100","4. close":"146.4800","5. volume":"12252293"},"2017-09-29":{"1. open":"145.1200","2. high":"147.4200","3. low":"144.2100","4. close":"145.0800","5. volume":"18131168"},"2017-09-22":{"1. open":"144.8100","2. high":"145.8911","3. low":"144.2200","4. close":"145.1300","5. volume":"16890140"},"2017-09-15":{"1. open":"143.5400","2. high":"146.3800","3. low":"143.0100","4. close":"144.8200","5. volume":"24882951"},"2017-09-08":{"1. open":"143.5000","2. high":"144.6400","3. low":"141.6400","4. close":"142.4500","5. volume":"13803467"},"2017-09-01":{"1. open":"144.1100","2. high":"144.5600","3. low":"141.9000","4. close":"144.0800","5. volume":"17765494"},"2017-08-25":{"1. open":"139.5900","2. high":"144.1900","3. low":"139.1300","4. close":"143.7400","5. volume":"15927109"},"2017-08-18":{"1. open":"142.0000","2. high":"143.3400","3. low":"139.5800","4. close":"139.7000","5. volume":"18585485"},"2017-08-11":{"1. open":"145.0000","2. high":"145.0900","3. low":"141.1900","4. close":"141.8400","5. volume":"18161288"},"2017-08-04":{"1. open":"144.3800","2. high":"145.6700","3. low":"144.1700","4. close":"145.1600","5. volume":"16503121"},"2017-07-28":{"1. open":"147.0000","2. high":"147.4900","3. low":"143.6400","4. close":"144.2900","5. volume":"21206630"},"2017-07-21":{"1. open":"153.5900","2. high":"154.2900","3. low":"146.5100","4. close":"147.0800","5. volume":"39223438"},"2017-07-14":{"1. open":"152.9100","2. high":"154.6150","3. low":"152.0500","4. close":"154.2400","5. volume":"15015697"},"2017-07-07":{"1. open":"153.5800","2. high":"156.0250","3. low":"152.1400","4. close":"152.9400","5. volume":"11462576"},"2017-06-30":{"1. open":"154.7100","2. high":"155.7500","3. low":"153.1400","4. close":"153.8300","5. volume":"13465670"},"2017-06-23":{"1. open":"155.5100","2. high":"155.8600","3. low":"153.3900","4. close":"154.1100","5. volume":"18294998"},"2017-06-16":{"1. open":"154.1900","2. high":"157.2000","3. low":"152.9400","4. close":"155.3800","5. volume":"23761609"},"2017-06-09":{"1. open":"151.8200","2. high":"154.2650","3. low":"150.8000","4. close":"154.1000","5. volume":"20653101"},"2017-06-02":{"1. open":"151.9500","2. high":"153.2000","3. low":"151.5900","4. close":"152.0500","5. volume":"13583558"},"2017-05-26":{"1. open":"152.1000","2. high":"153.7300","3. low":"151.2300","4. close":"152.4900","5. volume":"14563625"},"2017-05-19":{"1. open":"150.6200","2. high":"154.1400","3. low":"150.1100","4. close":"151.9800","5. volume":"23606431"},"2017-05-12":{"1. open":"152.8000","2. high":"153.4700","3. low":"149.7900","4. close":"150.3700","5. volume":"28432713"},"2017-05-05":{"1. open":"160.0500","2. high":"160.4200","3. low":"153.0000","4. close":"155.0500","5. volume":"28746997"},"2017-04-28":{"1. open":"161.2900","2. high":"162.0400","3. low":"159.6300","4. close":"160.2900","5. volume":"22585454"},"2017-04-21":{"1. open":"169.7500","2. high":"171.6900","3. low":"159.6000","4. close":"160.3800","5. volume":"22353091"},"2017-04-13":{"1. open":"172.5300","2. high":"172.5600","3. low":"168.9800","4. close":"169.5300","5. volume":"15162492"},"2017-04-07":{"1. open":"173.8200","2. high":"176.3300","3. low":"171.2800","4. close":"172.1400","5. volume":"20657952"},"2017-03-31":{"1. open":"172.6900","2. high":"175.0000","3. low":"172.0937","4. close":"174.1400","5. volume":"15949938"},"2017-03-24":{"1. open":"175.6500","2. high":"176.2300","3. low":"172.8000","4. close":"173.8300","5. volume":"16816026"},"2017-03-17":{"1. open":"177.8500","2. high":"179.0000","3. low":"174.7500","4. close":"175.6500","5. volume":"20678038"},"2017-03-10":{"1. open":"179.7200","2. high":"181.2900","3. low":"175.8800","4. close":"177.8300","5. volume":"18283618"},"2017-03-03":{"1. open":"181.1900","2. high":"182.5500","3. low":"179.2800","4. close":"180.0500","5. volume":"14713309"},"2017-02-24":{"1. open":"180.6000","2. high":"182.5000","3. low":"179.1200","4. close":"181.3500","5. volume":"13082284"},"2017-02-17":{"1. open":"179.2400","2. high":"182.7900","3. low":"178.3500","4. close":"180.6700","5. volume":"15587334"},"2017-02-10":{"1. open":"175.3100","2. high":"178.8701","3. low":"174.3800","4. close":"178.6800","5. volume":"15458288"},"2017-02-03":{"1. open":"176.9800","2. high":"177.0700","3. low":"172.8900","4. close":"175.8200","5. volume":"16952754"},"2017-01-27":{"1. open":"170.0800","2. high":"179.2500","3. low":"170.0100","4. close":"177.3000","5. volume":"24898161"},"2017-01-20":{"1. open":"166.6900","2. high":"170.6400","3. low":"165.8000","4. close":"170.5500","5. volume":"26891514"},"2017-01-13":{"1. open":"169.4700","2. high":"169.8000","3. low":"165.3400","4. close":"167.3400","5. volume":"16710843"},"2017-01-06":{"1. open":"167.0000","2. high":"169.9200","3. low":"166.0100","4. close":"169.5300","5. volume":"11943248"},"2016-12-30":{"1. open":"166.9800","2. high":"167.9800","3. low":"165.5000","4. close":"165.9900","5. volume":"7770697"},"2016-12-23":{"1. open":"166.8300","2. high":"168.2500","3. low":"165.2500","4. close":"166.7100","5. volume":"13209502"},"2016-12-16":{"1. open":"166.7200","2. high":"169.9520","3. low":"165.0700","4. close":"166.7300","5. volume":"23953742"},"2016-12-09":{"1. open":"160.8500","2. high":"166.7200","3. low":"158.9300","4. close":"166.5200","5. volume":"17154330"},"2016-12-02":{"1. open":"163.2000","2. high":"164.6600","3. low":"158.3000","4. close":"160.0200","5. volume":"19370850"},"2016-11-25":{"1. open":"160.6900","2. high":"163.1900","3. low":"160.3697","4. close":"163.1400","5. volume":"11269212"},"2016-11-18":{"1. open":"161.2500","2. high":"161.8600","3. low":"157.5500","4. close":"160.3900","5. volume":"16168917"},"2016-11-11":{"1. open":"153.9900","2. high":"161.3400","3. low":"151.0000","4. close":"161.2700","5. volume":"25292112"},"2016-11-04":{"1. open":"152.7600","2. high":"154.3300","3. low":"151.6700","4. close":"152.4300","5. volume":"15168515"},"2016-10-28":{"1. open":"150.4000","2. high":"154.4400","3. low":"149.8300","4. close":"152.6100","5. volume":"16009359"},"2016-10-21":{"1. open":"154.4500","2. high":"155.8900","3. low":"147.7900","4. close":"149.6300","5. volume":"31731091"},"2016-10-14":{"1. open":"156.7100","2. high":"158.4900","3. low":"152.2700","4. close":"154.4500","5. volume":"15614452"},"2016-10-07":{"1. open":"158.0600","2. high":"158.5300","3. low":"154.8600","4. close":"155.6700","5. volume":"11417766"},"2016-09-30":{"1. open":"154.4600","2. high":"165.0000","3. low":"153.4600","4. close":"158.8500","5. volume":"15801644"},"2016-09-23":{"1. open":"154.8700","2. high":"157.2200","3. low":"153.8700","4. close":"154.9800","5. volume":"12476162"},"2016-09-16":{"1. open":"155.2600","2. high":"158.5300","3. low":"153.2100","4. close":"153.8400","5. volume":"21990587"},"2016-09-09":{"1. open":"159.8800","2. high":"161.7600","3. low":"155.6500","4. close":"155.6900","5. volume":"15009419"},"2016-09-02":{"1. open":"158.8300","2. high":"160.5700","3. low":"158.1000","4. close":"159.5500","5. volume":"11286596"},"2016-08-26":{"1. open":"160.0000","2. high":"161.3400","3. low":"157.8500","4. close":"158.3200","5. volume":"13571765"},"2016-08-19":{"1. open":"162.4000","2. high":"162.9700","3. low":"159.5200","4. close":"160.0400","5. volume":"14873739"},"2016-08-12":{"1. open":"162.7300","2. high":"164.9500","3. low":"161.5200","4. close":"161.9500","5. volume":"19554950"},"2016-08-05":{"1. open":"160.6500","2. high":"163.5100","3. low":"159.8000","4. close":"163.5000","5. volume":"15067283"},"2016-07-29":{"1. open":"162.0000","2. high":"163.6000","3. low":"160.0300","4. close":"160.6200","5. volume":"13747991"},"2016-07-22":{"1. open":"159.3000","2. high":"162.1700","3. low":"157.8900","4. close":"162.0700","5. volume":"24775973"},"2016-07-15":{"1. open":"154.6000","2. high":"161.4000","3. low":"154.5000","4. close":"159.7800","5. volume":"18535456"},"2016-07-08":{"1. open":"151.1900","2. high":"154.6000","3. low":"149.9200","4. close":"154.4600","5. volume":"10213227"},"2016-07-01":{"1. open":"146.1800","2. high":"152.9700","3. low":"142.5000","4. close":"152.3500","5. volume":"19155814"},"2016-06-24":{"1. open":"152.6000","2. high":"155.4800","3. low":"146.1800","4. close":"146.5900","5. volume":"22214411"},"2016-06-17":{"1. open":"151.6300","2. high":"152.7200","3. low":"149.0000","4. close":"151.9900","5. volume":"15849580"},"2016-06-10":{"1. open":"153.0900","2. high":"154.0900","3. low":"151.8600","4. close":"152.3700","5. volume":"14920842"},"2016-06-03":{"1. open":"152.5600","2. high":"153.8100","3. low":"151.5400","4. close":"152.8900","5. volume":"13470239"},"2016-05-27":{"1. open":"147.6100","2. high":"152.9300","3. low":"146.6600","4. close":"152.8400","5. volume":"14910875"},"2016-05-20":{"1. open":"147.6500","2. high":"149.9900","3. low":"143.9550","4. close":"147.2500","5. volume":"16406443"},"2016-05-13":{"1. open":"147.7000","2. high":"151.0900","3. low":"147.0100","4. close":"147.7200","5. volume":"17034303"},"2016-05-06":{"1. open":"146.5600","2. high":"147.9700","3. low":"142.9000","4. close":"147.2900","5. volume":"21059912"},"2016-04-29":{"1. open":"148.1600","2. high":"150.7800","3. low":"144.1910","4. close":"145.9400","5. volume":"16956550"},"2016-04-22":{"1. open":"151.7500","2. high":"153.1400","3. low":"142.6100","4. close":"148.5000","5. volume":"37688644"},"2016-04-15":{"1. open":"150.2600","2. high":"152.7600","3. low":"148.5800","4. close":"151.7200","5. volume":"17443203"},"2016-04-08":{"1. open":"152.3400","2. high":"153.5200","3. low":"147.8100","4. close":"149.3500","5. volume":"18417556"},"2016-04-01":{"1. open":"147.7500","2. high":"153.1000","3. low":"147.2300","4. close":"152.5200","5. volume":"20439783"},"2016-03-24":{"1. open":"147.3000","2. high":"149.2800","3. low":"144.4900","4. close":"147.9500","5. volume":"17611709"},"2016-03-18":{"1. open":"142.0100","2. high":"147.5100","3. low":"141.0400","4. close":"147.0900","5. volume":"29886417"},"2016-03-11":{"1. open":"137.2800","2. high":"142.9236","3. low":"136.8718","4. close":"142.3600","5. volume":"23556160"},"2016-03-04":{"1. open":"132.0000","2. high":"139.4200","3. low":"130.9000","4. close":"137.8000","5. volume":"22557187"},"2016-02-26":{"1. open":"133.8400","2. high":"134.9200","3. low":"129.6800","4. close":"132.0300","5. volume":"20763400"},"2016-02-19":{"1. open":"121.8300","2. high":"134.0000","3. low":"121.3400","4. close":"133.0800","5. volume":"23958762"},"2016-02-12":{"1. open":"126.0000","2. high":"127.5100","3. low":"116.9010","4. close":"121.0400","5. volume":"32025579"},"2016-02-05":{"1. open":"124.4000","2. high":"128.6400","3. low":"122.2900","4. close":"128.5700","5. volume":"25527891"},"2016-01-29":{"1. open":"122.1000","2. high":"124.7900","3. low":"120.6500","4. close":"124.7900","5. volume":"27278749"},"2016-01-22":{"1. open":"130.1100","2. high":"132.1000","3. low":"118.0000","4. close":"122.5000","5. volume":"44203492"},"2016-01-15":{"1. open":"131.8100","2. high":"134.2799","3. low":"128.8700","4. close":"130.0300","5. volume":"29470082"},"2016-01-08":{"1. open":"135.6000","2. high":"136.8900","3. low":"131.3200","4. close":"131.6300","5. volume":"25251873"},"2015-12-31":{"1. open":"137.7400","2. high":"140.4400","3. low":"136.5400","4. close":"137.6200","5. volume":"13538507"},"2015-12-24":{"1. open":"135.8300","2. high":"139.3050","3. low":"134.0200","4. close":"138.2500","5. volume":"16540309"},"2015-12-18":{"1. open":"135.3100","2. high":"139.6500","3. low":"134.0200","4. close":"134.9000","5. volume":"27823388"},"2015-12-11":{"1. open":"140.1600","2. high":"140.4100","3. low":"133.9100","4. close":"134.5700","5. volume":"21354563"},"2015-12-04":{"1. open":"138.6100","2. high":"141.4000","3. low":"137.9900","4. close":"140.4300","5. volume":"22935841"},"2015-11-27":{"1. open":"138.5300","2. high":"139.3400","3. low":"137.1200","4. close":"138.4600","5. volume":"13199481"},"2015-11-20":{"1. open":"131.7900","2. high":"138.9150","3. low":"131.7900","4. close":"138.5000","5. volume":"21083793"},"2015-11-13":{"1. open":"137.9200","2. high":"138.0800","3. low":"131.6500","4. close":"131.7500","5. volume":"25069755"},"2015-11-06":{"1. open":"140.5000","2. high":"142.8000","3. low":"137.8700","4. close":"138.2500","5. volume":"21526383"},"2015-10-30":{"1. open":"144.7500","2. high":"145.0000","3. low":"137.3300","4. close":"140.0800","5. volume":"34698762"},"2015-10-23":{"1. open":"149.8500","2. high":"149.9700","3. low":"139.3000","4. close":"144.6800","5. volume":"42068316"},"2015-10-16":{"1. open":"152.4000","2. high":"152.5800","3. low":"148.5800","4. close":"150.3900","5. volume":"17455488"},"2015-10-09":{"1. open":"145.8200","2. high":"153.1470","3. low":"145.8200","4. close":"152.3900","5. volume":"19465122"},"2015-10-02":{"1. open":"144.4200","2. high":"145.7100","3. low":"140.5600","4. close":"144.5800","5. volume":"19914471"},"2015-09-25":{"1. open":"145.3900","2. high":"146.9800","3. low":"141.9500","4. close":"145.4200","5. volume":"16815584"},"2015-09-18":{"1. open":"147.3700","2. high":"149.6800","3. low":"143.9800","4. close":"144.5100","5. volume":"20721826"},"2015-09-11":{"1. open":"145.8600","2. high":"149.0400","3. low":"144.5100","4. close":"147.3700","5. volume":"13916382"},"2015-09-04":{"1. open":"147.2600","2. high":"148.4000","3. low":"141.8500","4. close":"143.7000","5. volume":"21421138"},"2015-08-28":{"1. open":"143.4700","2. high":"148.9700","3. low":"140.6200","4. close":"147.9800","5. volume":"32508092"},"2015-08-21":{"1. open":"155.2000","2. high":"156.6900","3. low":"148.7000","4. close":"148.8500","5. volume":"19846207"},"2015-08-14":{"1. open":"156.7700","2. high":"157.4652","3. low":"153.9500","4. close":"155.7500","5. volume":"17165086"},"2015-08-07":{"1. open":"161.7000","2. high":"161.8500","3. low":"154.3350","4. close":"155.1200","5. volume":"20138504"},"2015-07-31":{"1. open":"159.0000","2. high":"162.0600","3. low":"158.5000","4. close":"161.9900","5. volume":"15380412"},"2015-07-24":{"1. open":"172.7900","2. high":"173.7800","3. low":"159.4100","4. close":"159.7500","5. volume":"37075256"},"2015-07-17":{"1. open":"167.9300","2. high":"172.5200","3. low":"167.5200","4. close":"172.5100","5. volume":"17138495"},"2015-07-10":{"1. open":"163.8300","2. high":"167.4000","3. low":"162.2317","4. close":"166.9500","5. volume":"18143986"},"2015-07-02":{"1. open":"163.9200","2. high":"165.6100","3. low":"162.1200","4. close":"165.0900","5. volume":"12979210"},"2015-06-26":{"1. open":"167.6500","2. high":"169.9700","3. low":"165.2300","4. close":"165.4600","5. volume":"20939777"},"2015-06-19":{"1. open":"165.3300","2. high":"168.7200","3. low":"164.2500","4. close":"166.9900","5. volume":"20761376"},"2015-06-12":{"1. open":"167.1700","2. high":"170.4400","3. low":"163.3700","4. close":"166.9900","5. volume":"18364270"},"2015-06-05":{"1. open":"170.2100","2. high":"171.5601","3. low":"167.2000","4. close":"167.4000","5. volume":"13868111"},"2015-05-29":{"1. open":"172.1100","2. high":"172.4800","3. low":"169.1300","4. close":"169.6500","5. volume":"12435919"},"2015-05-22":{"1. open":"173.4400","2. high":"174.4400","3. low":"171.9300","4. close":"172.2200","5. volume":"11939607"},"2015-05-15":{"1. open":"172.6500","2. high":"174.4100","3. low":"168.8400","4. close":"173.2600","5. volume":"13435074"},"2015-05-08":{"1. open":"174.4700","2. high":"176.3000","3. low":"168.8600","4. close":"172.6800","5. volume":"16793441"},"2015-05-01":{"1. open":"170.8900","2. high":"175.1303","3. low":"170.0200","4. close":"173.6700","5. volume":"21874751"},"2015-04-24":{"1. open":"162.1000","2. high":"171.9100","3. low":"161.9000","4. close":"169.7800","5. volume":"35436301"},"2015-04-17":{"1. open":"162.3700","2. high":"164.9600","3. low":"160.0300","4. close":"160.6700","5. volume":"17532781"},"2015-04-10":{"1. open":"159.6900","2. high":"163.8400","3. low":"158.7020","4. close":"162.8600","5. volume":"13917063"},"2015-04-02":{"1. open":"161.3100","2. high":"163.6000","3. low":"158.3900","4. close":"160.4500","5. volume":"16765545"},"2015-03-27":{"1. open":"162.7700","2. high":"165.3500","3. low":"158.9100","4. close":"160.4000","5. volume":"23569213"},"2015-03-20":{"1. open":"155.0500","2. high":"163.0000","3. low":"154.8000","4. close":"162.8800","5. volume":"25684872"},"2015-03-13":{"1. open":"158.2000","2. high":"161.1500","3. low":"153.4000","4. close":"154.2800","5. volume":"26135448"},"2015-03-06":{"1. open":"161.6800","2. high":"161.8900","3. low":"158.0600","4. close":"158.5000","5. volume":"21117049"},"2015-02-27":{"1. open":"164.2300","2. high":"164.9900","3. low":"159.7700","4. close":"161.9400","5. volume":"22941227"},"2015-02-20":{"1. open":"159.7500","2. high":"164.4900","3. low":"159.7300","4. close":"163.6500","5. volume":"14108892"},"2015-02-13":{"1. open":"156.0000","2. high":"160.8000","3. low":"155.0800","4. close":"160.4000","5. volume":"18164756"},"2015-02-06":{"1. open":"154.0000","2. high":"158.7100","3. low":"151.5100","4. close":"156.7200","5. volume":"22439830"},"2015-01-30":{"1. open":"158.2600","2. high":"159.4600","3. low":"149.5200","4. close":"153.3100","5. volume":"32927307"},"2015-01-23":{"1. open":"156.7000","2. high":"157.6000","3. low":"151.0700","4. close":"155.8700","5. volume":"31230797"},"2015-01-16":{"1. open":"159.0000","2. high":"159.9700","3. low":"153.7400","4. close":"157.1400","5. volume":"23272056"},"2015-01-09":{"1. open":"161.2700","2. high":"161.2700","3. low":"154.0300","4. close":"159.1100","5. volume":"24440360"},"2015-01-02":{"1. open":"162.0000","2. high":"163.3100","3. low":"159.4500","4. close":"162.0600","5. volume":"15698987"},"2014-12-26":{"1. open":"158.3300","2. high":"163.0900","3. low":"158.3300","4. close":"162.3400","5. volume":"12508916"},"2014-12-19":{"1. open":"155.9300","2. high":"160.4100","3. low":"150.5000","4. close":"158.5100","5. volume":"34588770"},"2014-12-12":{"1. open":"163.2900","2. high":"163.3300","3. low":"155.3300","4. close":"155.3800","5. volume":"23397756"},"2014-12-05":{"1. open":"161.6400","2. high":"164.5200","3. low":"161.3500","4. close":"163.2700","5. volume":"20945441"},"2014-11-28":{"1. open":"161.5400","2. high":"163.8600","3. low":"161.0100","4. close":"162.1700","5. volume":"17053892"},"2014-11-21":{"1. open":"164.1600","2. high":"164.9700","3. low":"159.8000","4. close":"160.9200","5. volume":"22273217"},"2014-11-14":{"1. open":"161.9000","2. high":"164.4900","3. low":"161.6100","4. close":"164.1600","5. volume":"20088151"},"2014-11-07":{"1. open":"164.2500","2. high":"164.5400","3. low":"160.0500","4. close":"162.0700","5. volume":"20603321"},"2014-10-31":{"1. open":"162.0000","2. high":"165.5900","3. low":"161.8000","4. close":"164.4000","5. volume":"27342119"},"2014-10-24":{"1. open":"166.8450","2. high":"170.3310","3. low":"161.1000","4. close":"162.0800","5. volume":"69701346"},"2014-10-17":{"1. open":"185.4900","2. high":"186.6500","3. low":"178.6900","4. close":"182.0500","5. volume":"24355568"},"2014-10-10":{"1. open":"189.6900","2. high":"190.8900","3. low":"185.1000","4. close":"185.9300","5. volume":"15795271"},"2014-10-03":{"1. open":"188.5100","2. high":"190.8500","3. low":"186.2400","4. close":"188.6700","5. volume":"14352364"},"2014-09-26":{"1. open":"193.7200","2. high":"194.1400","3. low":"188.6100","4. close":"190.0600","5. volume":"16209901"},"2014-09-19":{"1. open":"191.4200","2. high":"195.0000","3. low":"190.5800","4. close":"194.0000","5. volume":"20044000"},"2014-09-12":{"1. open":"190.7500","2. high":"192.7800","3. low":"189.5100","4. close":"191.2800","5. volume":"12878100"},"2014-09-05":{"1. open":"192.6800","2. high":"192.9700","3. low":"190.0600","4. close":"191.2000","5. volume":"9627700"},"2014-08-29":{"1. open":"191.3900","2. high":"194.1330","3. low":"190.6600","4. close":"192.3000","5. volume":"11487700"},"2014-08-22":{"1. open":"188.1000","2. high":"192.0700","3. low":"187.7600","4. close":"190.4100","5. volume":"11074800"},"2014-08-15":{"1. open":"187.8100","2. high":"188.8800","3. low":"186.2800","4. close":"187.3800","5. volume":"10927100"},"2014-08-08":{"1. open":"189.3500","2. high":"189.9500","3. low":"183.5800","4. close":"186.6300","5. volume":"14770900"},"2014-08-01":{"1. open":"194.3000","2. high":"196.4000","3. low":"188.8600","4. close":"189.1500","5. volume":"19838900"},"2014-07-25":{"1. open":"191.3000","2. high":"195.9000","3. low":"189.2500","4. close":"194.4000","5. volume":"19580700"},"2014-07-18":{"1. open":"188.5500","2. high":"195.9500","3. low":"188.2100","4. close":"192.5000","5. volume":"34217100"},"2014-07-11":{"1. open":"187.6100","2. high":"188.9000","3. low":"186.2100","4. close":"188.0000","5. volume":"14983700"},"2014-07-03":{"1. open":"181.3300","2. high":"188.9900","3. low":"180.2600","4. close":"188.5300","5. volume":"18382300"},"2014-06-27":{"1. open":"181.9200","2. high":"183.0000","3. low":"179.2700","4. close":"181.7100","5. volume":"17703900"},"2014-06-20":{"1. open":"182.4000","2. high":"184.4700","3. low":"181.2350","4. close":"181.5500","5. volume":"24186800"},"2014-06-13":{"1. open":"186.2200","2. high":"187.6400","3. low":"180.9100","4. close":"182.5600","5. volume":"18143900"},"2014-06-06":{"1. open":"184.7600","2. high":"187.6500","3. low":"183.9200","4. close":"186.3700","5. volume":"14243300"},"2014-05-30":{"1. open":"184.8000","2. high":"185.6500","3. low":"182.3300","4. close":"184.3600","5. volume":"15895800"},"2014-05-23":{"1. open":"186.6100","2. high":"187.1600","3. low":"184.7000","4. close":"185.9400","5. volume":"14066100"},"2014-05-16":{"1. open":"191.1200","2. high":"193.0300","3. low":"185.9300","4. close":"187.0600","5. volume":"19407200"},"2014-05-09":{"1. open":"191.0500","2. high":"191.4900","3. low":"186.9300","4. close":"190.0800","5. volume":"13925300"},"2014-05-02":{"1. open":"191.1400","2. high":"196.8600","3. low":"190.5800","4. close":"191.4400","5. volume":"21195300"},"2014-04-25":{"1. open":"189.8000","2. high":"193.0000","3. low":"189.1100","4. close":"189.6300","5. volume":"22312800"},"2014-04-17":{"1. open":"196.2400","2. high":"198.7100","3. low":"187.0100","4. close":"190.0100","5. volume":"30565200"},"2014-04-11":{"1. open":"191.7200","2. high":"199.2100","3. low":"191.5700","4. close":"195.1900","5. volume":"30598500"},"2014-04-04":{"1. open":"191.6400","2. high":"195.1300","3. low":"191.2800","4. close":"191.7700","5. volume":"29036500"},"2014-03-28":{"1. open":"187.4300","2. high":"195.6300","3. low":"187.3700","4. close":"190.4500","5. volume":"35465000"},"2014-03-21":{"1. open":"182.6600","2. high":"188.7000","3. low":"182.6600","4. close":"186.6700","5. volume":"30821100"},"2014-03-14":{"1. open":"187.5500","2. high":"188.4500","3. low":"182.2100","4. close":"182.2100","5. volume":"24057200"},"2014-03-07":{"1. open":"183.3300","2. high":"188.9200","3. low":"182.8200","4. close":"187.6800","5. volume":"20103400"},"2014-02-28":{"1. open":"182.8200","2. high":"186.1200","3. low":"182.8200","4. close":"185.1700","5. volume":"20734000"},"2014-02-21":{"1. open":"183.1800","2. high":"185.7100","3. low":"182.3200","4. close":"182.7900","5. volume":"19774200"},"2014-02-14":{"1. open":"176.9700","2. high":"184.4300","3. low":"176.2500","4. close":"183.6900","5. volume":"21312600"},"2014-02-07":{"1. open":"176.0200","2. high":"177.5600","3. low":"172.1900","4. close":"177.2500","5. volume":"25234000"},"2014-01-31":{"1. open":"179.6050","2. high":"179.6500","3. low":"175.3400","4. close":"176.6800","5. volume":"25559900"},"2014-01-24":{"1. open":"190.2300","2. high":"190.3900","3. low":"179.6400","4. close":"179.6400","5. volume":"38736900"},"2014-01-17":{"1. open":"186.2600","2. high":"190.8100","3. low":"183.8600","4. close":"190.0900","5. volume":"27635300"},"2014-01-10":{"1. open":"187.1500","2. high":"190.3500","3. low":"185.3000","4. close":"187.2600","5. volume":"22947500"},"2014-01-03":{"1. open":"185.3200","2. high":"187.7900","3. low":"184.6700","4. close":"186.6400","5. volume":"15248000"},"2013-12-27":{"1. open":"181.0500","2. high":"186.5000","3. low":"180.6100","4. close":"185.0800","5. volume":"12400800"},"2013-12-20":{"1. open":"173.2200","2. high":"182.0000","3. low":"172.7300","4. close":"180.0200","5. volume":"32267100"},"2013-12-13":{"1. open":"177.9900","2. high":"178.1520","3. low":"172.7300","4. close":"172.8000","5. volume":"21870800"},"2013-12-06":{"1. open":"179.4600","2. high":"179.5900","3. low":"175.1600","4. close":"177.6700","5. volume":"24816100"},"2013-11-29":{"1. open":"180.2500","2. high":"180.7600","3. low":"177.3100","4. close":"179.6800","5. volume":"20384900"},"2013-11-22":{"1. open":"183.5200","2. high":"186.2400","3. low":"179.9200","4. close":"181.3000","5. volume":"25637400"},"2013-11-15":{"1. open":"180.1900","2. high":"184.0487","3. low":"179.6600","4. close":"183.1900","5. volume":"25682800"},"2013-11-08":{"1. open":"179.9000","2. high":"181.3900","3. low":"177.3500","4. close":"179.9900","5. volume":"25635300"},"2013-11-01":{"1. open":"177.0400","2. high":"182.3200","3. low":"176.2000","4. close":"179.2300","5. volume":"25853600"},"2013-10-25":{"1. open":"174.4200","2. high":"179.1000","3. low":"172.6301","4. close":"176.8500","5. volume":"29861500"},"2013-10-18":{"1. open":"185.4100","2. high":"186.9900","3. low":"172.5700","4. close":"173.7800","5. volume":"45663100"},"2013-10-11":{"1. open":"181.8500","2. high":"186.2300","3. low":"178.7100","4. close":"186.1600","5. volume":"20859700"},"2013-10-04":{"1. open":"185.5600","2. high":"186.7400","3. low":"183.0000","4. close":"184.1000","5. volume":"16351900"},"2013-09-27":{"1. open":"190.0600","2. high":"192.4100","3. low":"186.4500","4. close":"186.9200","5. volume":"15079700"},"2013-09-20":{"1. open":"193.7000","2. high":"194.8900","3. low":"190.0200","4. close":"190.0200","5. volume":"22379100"},"2013-09-13":{"1. open":"183.6800","2. high":"193.1000","3. low":"183.3100","4. close":"192.1700","5. volume":"18194900"},"2013-09-06":{"1. open":"183.6300","2. high":"185.0000","3. low":"182.3100","4. close":"183.0300","5. volume":"11856200"},"2013-08-30":{"1. open":"185.2700","2. high":"187.0000","3. low":"181.1000","4. close":"182.2700","5. volume":"15052200"},"2013-08-23":{"1. open":"185.3000","2. high":"186.5700","3. low":"183.1685","4. close":"185.4200","5. volume":"14564700"},"2013-08-16":{"1. open":"186.9700","2. high":"189.9900","3. low":"185.3400","4. close":"185.3400","5. volume":"16580500"},"2013-08-09":{"1. open":"195.1600","2. high":"195.8800","3. low":"186.7900","4. close":"187.8200","5. volume":"20128300"},"2013-08-02":{"1. open":"196.8300","2. high":"197.8300","3. low":"193.2215","4. close":"195.1600","5. volume":"15338600"},"2013-07-26":{"1. open":"193.4000","2. high":"197.8300","3. low":"193.2804","4. close":"197.3500","5. volume":"14719100"},"2013-07-19":{"1. open":"192.4200","2. high":"200.9400","3. low":"191.6800","4. close":"193.5400","5. volume":"31679400"},"2013-07-12":{"1. open":"195.6000","2. high":"195.7800","3. low":"190.7800","4. close":"192.0700","5. volume":"20715900"},"2013-07-05":{"1. open":"192.1500","2. high":"195.1600","3. low":"190.2600","4. close":"194.9300","5. volume":"12378100"},"2013-06-28":{"1. open":"193.9900","2. high":"196.9000","3. low":"188.4100","4. close":"191.1100","5. volume":"25092600"},"2013-06-21":{"1. open":"203.4400","2. high":"206.0900","3. low":"193.5401","4. close":"195.4600","5. volume":"22773400"},"2013-06-14":{"1. open":"206.9700","2. high":"206.9800","3. low":"200.3400","4. close":"202.2000","5. volume":"14580500"},"2013-06-07":{"1. open":"208.2500","2. high":"210.0500","3. low":"201.4700","4. close":"206.3500","5. volume":"17768500"},"2013-05-31":{"1. open":"207.4400","2. high":"211.9800","3. low":"206.0400","4. close":"208.0200","5. volume":"16799600"},"2013-05-24":{"1. open":"208.0200","2. high":"210.1500","3. low":"204.4200","4. close":"205.7200","5. volume":"20259100"},"2013-05-17":{"1. open":"204.1800","2. high":"209.5000","3. low":"202.0400","4. close":"208.4400","5. volume":"21587300"},"2013-05-10":{"1. open":"203.7900","2. high":"205.0000","3. low":"201.5200","4. close":"204.4700","5. volume":"18700700"},"2013-05-03":{"1. open":"194.7800","2. high":"205.3190","3. low":"194.6500","4. close":"204.5100","5. volume":"26809200"},"2013-04-26":{"1. open":"191.1500","2. high":"195.1700","3. low":"187.6800","4. close":"194.3100","5. volume":"27976600"},"2013-04-19":{"1. open":"210.4400","2. high":"212.0000","3. low":"189.7600","4. close":"190.0000","5. volume":"35696400"},"2013-04-12":{"1. open":"209.0700","2. high":"213.0900","3. low":"207.3300","4. close":"211.3800","5. volume":"15273700"},"2013-04-05":{"1. open":"212.8000","2. high":"214.8900","3. low":"206.3400","4. close":"209.4100","5. volume":"16247600"},"2013-03-28":{"1. open":"212.5400","2. high":"213.4400","3. low":"209.7350","4. close":"213.3000","5. volume":"12516100"},"2013-03-22":{"1. open":"212.9000","2. high":"215.8200","3. low":"210.1100","4. close":"212.0800","5. volume":"18085500"},"2013-03-15":{"1. open":"210.0400","2. high":"215.9000","3. low":"209.0400","4. close":"214.9200","5. volume":"23433000"},"2013-03-08":{"1. open":"202.5900","2. high":"210.7400","3. low":"202.5500","4. close":"210.3800","5. volume":"18680900"},"2013-03-01":{"1. open":"201.6700","2. high":"203.1230","3. low":"197.5100","4. close":"202.9100","5. volume":"19419000"},"2013-02-22":{"1. open":"200.6000","2. high":"201.8900","3. low":"198.1100","4. close":"201.0900","5. volume":"13744500"},"2013-02-15":{"1. open":"200.9800","2. high":"201.9500","3. low":"199.0200","4. close":"200.9800","5. volume":"14498300"},"2013-02-08":{"1. open":"204.1900","2. high":"205.0200","3. low":"198.6800","4. close":"201.6800","5. volume":"16419900"},"2013-02-01":{"1. open":"204.8500","2. high":"206.2200","3. low":"202.9600","4. close":"205.1800","5. volume":"15901300"},"2013-01-25":{"1. open":"194.3600","2. high":"208.5800","3. low":"194.0100","4. close":"204.9700","5. volume":"27508900"},"2013-01-18":{"1. open":"192.8200","2. high":"195.0000","3. low":"190.3900","4. close":"194.4700","5. volume":"19748400"},"2013-01-11":{"1. open":"193.4000","2. high":"195.0000","3. low":"191.2800","4. close":"194.4500","5. volume":"16589700"},"2013-01-04":{"1. open":"189.2300","2. high":"196.3500","3. low":"188.8400","4. close":"193.9900","5. volume":"15943900"},"2012-12-28":{"1. open":"193.0500","2. high":"193.8300","3. low":"189.8300","4. close":"189.8300","5. volume":"11911900"},"2012-12-21":{"1. open":"191.7600","2. high":"196.4500","3. low":"191.5700","4. close":"193.4200","5. volume":"24598600"},"2012-12-14":{"1. open":"192.1700","2. high":"194.8000","3. low":"191.2600","4. close":"191.7600","5. volume":"19274500"},"2012-12-07":{"1. open":"190.7600","2. high":"192.2000","3. low":"186.9400","4. close":"191.9500","5. volume":"18850300"},"2012-11-30":{"1. open":"192.4500","2. high":"193.3700","3. low":"189.2700","4. close":"190.0700","5. volume":"21119100"},"2012-11-23":{"1. open":"188.6200","2. high":"193.4900","3. low":"188.2500","4. close":"193.4900","5. volume":"15826300"},"2012-11-16":{"1. open":"190.0300","2. high":"190.8800","3. low":"184.7800","4. close":"186.9400","5. volume":"18951000"},"2012-11-09":{"1. open":"192.3600","2. high":"196.7500","3. low":"188.8800","4. close":"189.6400","5. volume":"17977200"},"2012-11-02":{"1. open":"194.8000","2. high":"198.0000","3. low":"193.2900","4. close":"193.4300","5. volume":"14071200"},"2012-10-26":{"1. open":"193.7100","2. high":"194.6800","3. low":"190.5600","4. close":"193.2700","5. volume":"19824000"},"2012-10-19":{"1. open":"208.8800","2. high":"211.0000","3. low":"193.1800","4. close":"193.3600","5. volume":"37283100"},"2012-10-12":{"1. open":"210.0200","2. high":"210.7400","3. low":"205.0500","4. close":"207.8000","5. volume":"15209500"},"2012-10-05":{"1. open":"208.0100","2. high":"211.7900","3. low":"207.9400","4. close":"210.5900","5. volume":"17786100"},"2012-09-28":{"1. open":"205.0200","2. high":"208.3200","3. low":"203.9000","4. close":"207.4500","5. volume":"17962400"},"2012-09-21":{"1. open":"205.5500","2. high":"207.9900","3. low":"205.3000","4. close":"205.9800","5. volume":"24867400"},"2012-09-14":{"1. open":"199.3900","2. high":"207.6500","3. low":"198.7300","4. close":"206.8100","5. volume":"19339300"},"2012-09-07":{"1. open":"196.6100","2. high":"199.5000","3. low":"193.2500","4. close":"199.5000","5. volume":"15172300"},"2012-08-31":{"1. open":"197.9600","2. high":"198.3000","3. low":"193.1800","4. close":"194.8500","5. volume":"13113600"},"2012-08-24":{"1. open":"200.6900","2. high":"201.1300","3. low":"194.2000","4. close":"197.7700","5. volume":"14140300"},"2012-08-17":{"1. open":"198.8800","2. high":"202.0000","3. low":"197.7200","4. close":"201.2200","5. volume":"12373700"},"2012-08-10":{"1. open":"198.7600","2. high":"200.8800","3. low":"197.2400","4. close":"199.2900","5. volume":"12376100"},"2012-08-03":{"1. open":"196.3200","2. high":"198.9500","3. low":"193.0200","4. close":"198.5200","5. volume":"14944000"},"2012-07-27":{"1. open":"189.7800","2. high":"197.4100","3. low":"188.2000","4. close":"196.3900","5. volume":"18795600"},"2012-07-20":{"1. open":"185.5800","2. high":"196.8500","3. low":"183.2000","4. close":"192.4500","5. volume":"31507600"},"2012-07-13":{"1. open":"190.7600","2. high":"191.1400","3. low":"181.8500","4. close":"186.0100","5. volume":"22998800"},"2012-07-06":{"1. open":"196.3600","2. high":"197.2000","3. low":"189.7400","4. close":"191.4100","5. volume":"11920500"},"2012-06-29":{"1. open":"192.4800","2. high":"195.8100","3. low":"188.9000","4. close":"195.5800","5. volume":"18637100"},"2012-06-22":{"1. open":"197.5700","2. high":"199.9900","3. low":"193.1900","4. close":"193.7000","5. volume":"23194300"},"2012-06-15":{"1. open":"196.6000","2. high":"199.2700","3. low":"192.1400","4. close":"199.1000","5. volume":"19518700"},"2012-06-08":{"1. open":"188.3400","2. high":"195.8299","3. low":"187.0000","4. close":"195.1400","5. volume":"18002600"},"2012-06-01":{"1. open":"195.2200","2. high":"198.0800","3. low":"188.6000","4. close":"189.0800","5. volume":"21714900"},"2012-05-25":{"1. open":"195.9800","2. high":"198.2600","3. low":"193.2000","4. close":"194.3000","5. volume":"17970000"},"2012-05-18":{"1. open":"199.9200","2. high":"201.4679","3. low":"195.1600","4. close":"195.8800","5. volume":"22381000"},"2012-05-11":{"1. open":"203.9600","2. high":"204.7700","3. low":"199.0600","4. close":"201.1700","5. volume":"17219400"},"2012-05-04":{"1. open":"206.7100","2. high":"208.9290","3. low":"204.4000","4. close":"204.9900","5. volume":"14699600"},"2012-04-27":{"1. open":"197.8900","2. high":"208.1700","3. low":"196.7910","4. close":"206.8100","5. volume":"20048100"},"2012-04-20":{"1. open":"204.7400","2. high":"207.6400","3. low":"197.5210","4. close":"199.6000","5. volume":"30566700"},"2012-04-13":{"1. open":"204.4000","2. high":"206.1700","3. low":"202.1700","4. close":"202.8000","5. volume":"17522600"},"2012-04-05":{"1. open":"208.9600","2. high":"210.6900","3. low":"204.4600","4. close":"205.4700","5. volume":"15692400"},"2012-03-30":{"1. open":"206.4500","2. high":"209.1200","3. low":"206.0200","4. close":"208.6500","5. volume":"16007300"},"2012-03-23":{"1. open":"205.7100","2. high":"206.5300","3. low":"203.7020","4. close":"205.4800","5. volume":"17132200"},"2012-03-16":{"1. open":"200.9300","2. high":"207.5200","3. low":"200.2300","4. close":"206.0100","5. volume":"25846100"},"2012-03-09":{"1. open":"198.3600","2. high":"201.1900","3. low":"196.8120","4. close":"200.6200","5. volume":"21823600"},"2012-03-02":{"1. open":"196.7800","2. high":"199.1700","3. low":"196.1000","4. close":"198.8100","5. volume":"19330600"},"2012-02-24":{"1. open":"193.7300","2. high":"199.2300","3. low":"192.4600","4. close":"197.7600","5. volume":"17955300"},"2012-02-17":{"1. open":"193.3100","2. high":"193.8600","3. low":"190.8310","4. close":"193.4200","5. volume":"17149800"},"2012-02-10":{"1. open":"192.4800","2. high":"194.4600","3. low":"191.2800","4. close":"192.4200","5. volume":"18144100"},"2012-02-03":{"1. open":"189.3900","2. high":"194.8100","3. low":"188.2200","4. close":"193.6400","5. volume":"22703600"},"2012-01-27":{"1. open":"187.9100","2. high":"192.7900","3. low":"187.6700","4. close":"190.4600","5. volume":"22822200"},"2012-01-20":{"1. open":"180.3600","2. high":"188.9700","3. low":"179.3200","4. close":"188.5200","5. volume":"32020900"},"2012-01-13":{"1. open":"182.2000","2. high":"183.7200","3. low":"177.3472","4. close":"179.1600","5. volume":"26633200"},"2012-01-06":{"1. open":"186.7300","2. high":"188.7100","3. low":"182.3100","4. close":"182.5400","5. volume":"19352900"},"2011-12-30":{"1. open":"184.9700","2. high":"186.4800","3. low":"183.3400","4. close":"183.8800","5. volume":"12119700"},"2011-12-23":{"1. open":"184.5100","2. high":"187.3300","3. low":"179.0400","4. close":"184.7500","5. volume":"27166800"},"2011-12-16":{"1. open":"193.6400","2. high":"194.3000","3. low":"181.9100","4. close":"183.5700","5. volume":"30186100"},"2011-12-09":{"1. open":"191.1800","2. high":"194.9000","3. low":"190.3200","4. close":"194.5600","5. volume":"24142900"},"2011-12-02":{"1. open":"182.7100","2. high":"191.3300","3. low":"180.6700","4. close":"189.6600","5. volume":"25843600"},"2011-11-25":{"1. open":"183.3700","2. high":"183.9600","3. low":"177.0600","4. close":"177.0600","5. volume":"16357400"},"2011-11-18":{"1. open":"189.1700","2. high":"189.9700","3. low":"183.3900","4. close":"185.2400","5. volume":"25522100"},"2011-11-11":{"1. open":"186.2200","2. high":"187.8800","3. low":"181.1600","4. close":"187.3800","5. volume":"20903100"},"2011-11-04":{"1. open":"185.5900","2. high":"187.7800","3. low":"180.7400","4. close":"186.3800","5. volume":"22918900"},"2011-10-28":{"1. open":"181.5100","2. high":"188.0700","3. low":"179.0300","4. close":"187.4500","5. volume":"28719000"},"2011-10-21":{"1. open":"189.7100","2. high":"190.1600","3. low":"176.1700","4. close":"181.6300","5. volume":"46796000"},"2011-10-14":{"1. open":"183.0000","2. high":"190.5300","3. low":"182.9000","4. close":"190.5300","5. volume":"26220900"},"2011-10-07":{"1. open":"174.3600","2. high":"183.7200","3. low":"168.8800","4. close":"182.3900","5. volume":"38117800"},"2011-09-30":{"1. open":"170.9600","2. high":"180.9100","3. low":"169.8600","4. close":"174.8700","5. volume":"36868400"},"2011-09-23":{"1. open":"169.5000","2. high":"177.6700","3. low":"165.7600","4. close":"169.3400","5. volume":"31790500"},"2011-09-16":{"1. open":"159.6400","2. high":"172.9900","3. low":"158.7600","4. close":"172.9900","5. volume":"33464200"},"2011-09-09":{"1. open":"163.0600","2. high":"169.5800","3. low":"160.8100","4. close":"161.3700","5. volume":"25328900"},"2011-09-02":{"1. open":"170.5800","2. high":"173.7200","3. low":"166.0000","4. close":"166.9800","5. volume":"26288300"},"2011-08-26":{"1. open":"161.3500","2. high":"169.3300","3. low":"157.6200","4. close":"169.1400","5. volume":"33789200"},"2011-08-19":{"1. open":"171.3200","2. high":"174.0000","3. low":"157.1300","4. close":"157.5400","5. volume":"47511700"},"2011-08-12":{"1. open":"168.8300","2. high":"172.6100","3. low":"161.8500","4. close":"168.2000","5. volume":"56678700"},"2011-08-05":{"1. open":"182.6000","2. high":"183.6900","3. low":"166.5200","4. close":"172.9800","5. volume":"41229200"},"2011-07-29":{"1. open":"183.8900","2. high":"184.9600","3. low":"179.7300","4. close":"181.8500","5. volume":"26294400"},"2011-07-22":{"1. open":"174.7300","2. high":"185.6300","3. low":"173.5800","4. close":"185.1800","5. volume":"37500900"},"2011-07-15":{"1. open":"174.9000","2. high":"176.3200","3. low":"173.8400","4. close":"175.5400","5. volume":"23838300"},"2011-07-08":{"1. open":"173.5200","2. high":"177.7700","3. low":"173.5200","4. close":"176.4900","5. volume":"20777900"},"2011-07-01":{"1. open":"165.7400","2. high":"174.6500","3. low":"165.2100","4. close":"174.5400","5. volume":"23400700"},"2011-06-24":{"1. open":"163.7000","2. high":"166.8100","3. low":"163.5900","4. close":"165.0700","5. volume":"22978000"},"2011-06-17":{"1. open":"164.4400","2. high":"165.1000","3. low":"161.5200","4. close":"164.4400","5. volume":"29385600"},"2011-06-10":{"1. open":"164.7600","2. high":"165.9600","3. low":"162.8700","4. close":"163.1800","5. volume":"20640600"},"2011-06-03":{"1. open":"168.4400","2. high":"169.8900","3. low":"164.1300","4. close":"165.0500","5. volume":"23342600"},"2011-05-27":{"1. open":"168.5800","2. high":"168.6900","3. low":"165.9000","4. close":"167.5000","5. volume":"22718600"},"2011-05-20":{"1. open":"169.8100","2. high":"171.4100","3. low":"166.5300","4. close":"170.1600","5. volume":"25997900"},"2011-05-13":{"1. open":"168.3900","2. high":"172.7700","3. low":"167.8200","4. close":"169.9200","5. volume":"23498700"},"2011-05-06":{"1. open":"172.1100","2. high":"173.5400","3. low":"167.5000","4. close":"168.8900","5. volume":"29465600"},"2011-04-29":{"1. open":"167.6500","2. high":"173.0000","3. low":"167.2300","4. close":"170.5800","5. volume":"26858900"},"2011-04-21":{"1. open":"164.6400","2. high":"168.4500","3. low":"162.1900","4. close":"168.2800","5. volume":"29758000"},"2011-04-15":{"1. open":"163.4400","2. high":"166.3400","3. low":"162.3000","4. close":"166.2100","5. volume":"22168000"},"2011-04-08":{"1. open":"164.4200","2. high":"164.7500","3. low":"163.1600","4. close":"164.0500","5. volume":"17602700"},"2011-04-01":{"1. open":"161.5400","2. high":"164.4200","3. low":"161.1200","4. close":"164.2700","5. volume":"19066300"},"2011-03-25":{"1. open":"157.6400","2. high":"162.7400","3. low":"157.0700","4. close":"162.1800","5. volume":"25371800"},"2011-03-18":{"1. open":"161.1600","2. high":"161.9804","3. low":"151.7100","4. close":"155.8900","5. volume":"41798000"},"2011-03-11":{"1. open":"161.6000","2. high":"167.7200","3. low":"158.8500","4. close":"162.4300","5. volume":"31095800"},"2011-03-04":{"1. open":"162.3600","2. high":"164.3100","3. low":"159.4100","4. close":"161.8300","5. volume":"21537300"},"2011-02-25":{"1. open":"163.5700","2. high":"164.2600","3. low":"159.0300","4. close":"162.2800","5. volume":"21433300"},"2011-02-18":{"1. open":"164.1800","2. high":"164.8400","3. low":"162.5200","4. close":"164.8400","5. volume":"18590000"},"2011-02-11":{"1. open":"164.0800","2. high":"166.2500","3. low":"163.1800","4. close":"163.8500","5. volume":"26097300"},"2011-02-04":{"1. open":"159.1800","2. high":"164.2000","3. low":"158.6800","4. close":"164.0000","5. volume":"25371100"},"2011-01-28":{"1. open":"155.4200","2. high":"164.3500","3. low":"155.3300","4. close":"159.2100","5. volume":"32502900"},"2011-01-21":{"1. open":"149.8200","2. high":"156.7800","3. low":"149.3800","4. close":"155.5000","5. volume":"35766800"},"2011-01-14":{"1. open":"147.5800","2. high":"150.0000","3. low":"146.7500","4. close":"150.0000","5. volume":"19878500"},"2011-01-07":{"1. open":"147.2100","2. high":"148.8600","3. low":"146.6400","4. close":"147.9300","5. volume":"23486200"},"2010-12-31":{"1. open":"145.1200","2. high":"147.5000","3. low":"145.0000","4. close":"146.7600","5. volume":"14684300"},"2010-12-23":{"1. open":"145.3900","2. high":"146.4000","3. low":"144.3300","4. close":"145.8900","5. volume":"13585400"},"2010-12-17":{"1. open":"145.1400","2. high":"146.0100","3. low":"144.1500","4. close":"145.0000","5. volume":"28194800"},"2010-12-10":{"1. open":"144.5400","2. high":"146.2999","3. low":"143.5200","4. close":"144.8200","5. volume":"21020900"},"2010-12-03":{"1. open":"143.5300","2. high":"145.8500","3. low":"141.2800","4. close":"145.3800","5. volume":"28622500"},"2010-11-26":{"1. open":"144.0000","2. high":"146.4400","3. low":"142.3300","4. close":"143.9000","5. volume":"15256400"},"2010-11-19":{"1. open":"143.8900","2. high":"145.3500","3. low":"141.1800","4. close":"145.0500","5. volume":"24207800"},"2010-11-12":{"1. open":"145.3500","2. high":"147.5300","3. low":"143.3500","4. close":"143.7400","5. volume":"24816000"},"2010-11-05":{"1. open":"143.6400","2. high":"146.9300","3. low":"142.3200","4. close":"146.9200","5. volume":"27101400"},"2010-10-29":{"1. open":"140.4200","2. high":"144.0000","3. low":"138.5300","4. close":"143.6000","5. volume":"32583300"},"2010-10-22":{"1. open":"140.9000","2. high":"143.0300","3. low":"136.7000","4. close":"139.6700","5. volume":"41753800"},"2010-10-15":{"1. open":"138.7900","2. high":"142.1000","3. low":"138.2700","4. close":"141.0600","5. volume":"31299400"},"2010-10-08":{"1. open":"135.2300","2. high":"139.0900","3. low":"134.3900","4. close":"138.8500","5. volume":"26027000"},"2010-10-01":{"1. open":"133.5100","2. high":"136.2800","3. low":"133.5100","4. close":"135.6400","5. volume":"30834900"},"2010-09-24":{"1. open":"130.2400","2. high":"134.1500","3. low":"130.1100","4. close":"134.1100","5. volume":"28357000"},"2010-09-17":{"1. open":"128.6300","2. high":"130.6000","3. low":"128.4300","4. close":"130.1900","5. volume":"29966700"},"2010-09-10":{"1. open":"126.9900","2. high":"128.2900","3. low":"125.3900","4. close":"127.9900","5. volume":"16686200"},"2010-09-03":{"1. open":"125.0800","2. high":"127.6000","3. low":"122.2800","4. close":"127.5800","5. volume":"25097500"},"2010-08-27":{"1. open":"127.5700","2. high":"128.0300","3. low":"122.4200","4. close":"124.7300","5. volume":"28851700"},"2010-08-20":{"1. open":"127.4700","2. high":"130.1950","3. low":"126.9600","4. close":"127.5000","5. volume":"24839400"},"2010-08-13":{"1. open":"130.7900","2. high":"132.4900","3. low":"127.3300","4. close":"127.8700","5. volume":"27721100"},"2010-08-06":{"1. open":"129.2500","2. high":"131.9800","3. low":"128.7600","4. close":"130.1400","5. volume":"26753600"},"2010-07-30":{"1. open":"128.1800","2. high":"129.5000","3. low":"127.0400","4. close":"128.4000","5. volume":"29087100"},"2010-07-23":{"1. open":"128.6700","2. high":"130.3800","3. low":"122.9300","4. close":"128.3800","5. volume":"45328500"},"2010-07-16":{"1. open":"127.3700","2. high":"131.6000","3. low":"127.1600","4. close":"128.0300","5. volume":"30691500"},"2010-07-09":{"1. open":"123.5800","2. high":"128.2000","3. low":"122.1700","4. close":"127.9600","5. volume":"22776300"},"2010-07-02":{"1. open":"127.6500","2. high":"129.4700","3. low":"120.6100","4. close":"121.8600","5. volume":"39925900"},"2010-06-25":{"1. open":"131.4200","2. high":"131.9400","3. low":"127.1200","4. close":"127.1200","5. volume":"35729700"},"2010-06-18":{"1. open":"128.5000","2. high":"131.2500","3. low":"128.3400","4. close":"130.1500","5. volume":"34958900"},"2010-06-11":{"1. open":"125.5700","2. high":"128.8000","3. low":"122.8200","4. close":"128.4500","5. volume":"36446000"},"2010-06-04":{"1. open":"124.6900","2. high":"128.2200","3. low":"124.2000","4. close":"125.2800","5. volume":"31155200"},"2010-05-28":{"1. open":"125.2600","2. high":"126.3900","3. low":"121.4700","4. close":"125.2600","5. volume":"40594400"},"2010-05-21":{"1. open":"130.6800","2. high":"131.9900","3. low":"121.4000","4. close":"125.4200","5. volume":"52738700"},"2010-05-14":{"1. open":"126.2700","2. high":"133.1000","3. low":"125.0600","4. close":"131.1900","5. volume":"52007600"},"2010-05-07":{"1. open":"129.3900","2. high":"130.1400","3. low":"116.0000","4. close":"122.1000","5. volume":"43103500"},"2010-04-30":{"1. open":"129.7600","2. high":"132.0000","3. low":"128.7100","4. close":"129.0000","5. volume":"35378000"},"2010-04-23":{"1. open":"130.3800","2. high":"132.2800","3. low":"127.7700","4. close":"129.9900","5. volume":"46345200"},"2010-04-16":{"1. open":"128.5700","2. high":"132.1700","3. low":"127.8400","4. close":"130.6300","5. volume":"35328700"},"2010-04-09":{"1. open":"128.3800","2. high":"129.8000","3. low":"127.1200","4. close":"128.7600","5. volume":"24394000"},"2010-04-01":{"1. open":"129.3000","2. high":"129.9500","3. low":"127.5500","4. close":"128.2500","5. volume":"17954900"},"2010-03-26":{"1. open":"127.1100","2. high":"130.7300","3. low":"126.5700","4. close":"129.2600","5. volume":"31453700"},"2010-03-19":{"1. open":"127.4000","2. high":"128.9300","3. low":"126.7800","4. close":"127.7100","5. volume":"32679700"},"2010-03-12":{"1. open":"127.0600","2. high":"128.3700","3. low":"125.2000","4. close":"127.9400","5. volume":"33736000"},"2010-03-05":{"1. open":"127.5000","2. high":"129.0900","3. low":"125.4700","4. close":"127.2500","5. volume":"29153500"},"2010-02-26":{"1. open":"127.3000","2. high":"128.2700","3. low":"125.5700","4. close":"127.1600","5. volume":"23624900"},"2010-02-19":{"1. open":"124.9100","2. high":"128.0600","3. low":"124.1100","4. close":"127.1900","5. volume":"24433700"},"2010-02-12":{"1. open":"123.1500","2. high":"124.2000","3. low":"121.6100","4. close":"124.0000","5. volume":"30088800"},"2010-02-05":{"1. open":"123.2300","2. high":"126.0700","3. low":"121.8300","4. close":"122.9700","5. volume":"35063800"},"2010-01-29":{"1. open":"126.3300","2. high":"127.7500","3. low":"121.9000","4. close":"122.3900","5. volume":"42786400"},"2010-01-22":{"1. open":"131.6300","2. high":"134.2500","3. low":"125.3700","4. close":"125.5000","5. volume":"48810900"},"2010-01-15":{"1. open":"131.0600","2. high":"132.8900","3. low":"128.6700","4. close":"131.7800","5. volume":"35873500"},"2010-01-08":{"1. open":"131.1800","2. high":"132.9700","3. low":"128.9100","4. close":"130.8500","5. volume":"28639800"},"2009-12-31":{"1. open":"130.9900","2. high":"132.8500","3. low":"130.6800","4. close":"130.9000","5. volume":"18075000"},"2009-12-24":{"1. open":"127.8000","2. high":"130.5700","3. low":"127.6800","4. close":"130.5700","5. volume":"18700700"},"2009-12-18":{"1. open":"129.6500","2. high":"129.9800","3. low":"127.0000","4. close":"127.9100","5. volume":"34452500"},"2009-12-11":{"1. open":"126.8800","2. high":"129.7700","3. low":"126.1100","4. close":"129.6800","5. volume":"29242700"},"2009-12-04":{"1. open":"125.1200","2. high":"128.9000","3. low":"124.9200","4. close":"127.2500","5. volume":"30307700"},"2009-11-27":{"1. open":"127.7000","2. high":"128.9400","3. low":"124.2600","4. close":"125.7000","5. volume":"19106900"},"2009-11-20":{"1. open":"127.1700","2. high":"128.6550","3. low":"126.4600","4. close":"126.9600","5. volume":"23482700"},"2009-11-13":{"1. open":"123.9200","2. high":"127.8000","3. low":"123.4900","4. close":"127.0300","5. volume":"31065000"},"2009-11-06":{"1. open":"120.6100","2. high":"123.5000","3. low":"119.5000","4. close":"123.4900","5. volume":"30790900"},"2009-10-30":{"1. open":"120.6100","2. high":"124.3000","3. low":"119.1500","4. close":"120.6100","5. volume":"38785400"},"2009-10-23":{"1. open":"121.7600","2. high":"124.1100","3. low":"120.0000","4. close":"120.3600","5. volume":"36292000"},"2009-10-16":{"1. open":"125.4400","2. high":"128.6100","3. low":"121.2500","4. close":"121.6400","5. volume":"55978800"},"2009-10-09":{"1. open":"118.9000","2. high":"126.0000","3. low":"118.1300","4. close":"125.9300","5. volume":"37825500"},"2009-10-02":{"1. open":"120.5200","2. high":"122.0000","3. low":"117.2600","4. close":"119.0200","5. volume":"37380100"},"2009-09-25":{"1. open":"121.0300","2. high":"122.7400","3. low":"120.1000","4. close":"121.0800","5. volume":"26232600"},"2009-09-18":{"1. open":"117.0000","2. high":"122.8800","3. low":"116.9400","4. close":"122.1100","5. volume":"40859700"},"2009-09-11":{"1. open":"117.9400","2. high":"119.2500","3. low":"116.1600","4. close":"118.0500","5. volume":"21828700"},"2009-09-04":{"1. open":"117.1000","2. high":"118.9300","3. low":"115.1500","4. close":"117.4600","5. volume":"25309900"},"2009-08-28":{"1. open":"119.9200","2. high":"120.8800","3. low":"117.5100","4. close":"118.2200","5. volume":"26123700"},"2009-08-21":{"1. open":"116.6900","2. high":"120.0100","3. low":"116.1200","4. close":"119.9000","5. volume":"27622200"},"2009-08-14":{"1. open":"118.1700","2. high":"119.9600","3. low":"117.3200","4. close":"118.5700","5. volume":"25401100"},"2009-08-07":{"1. open":"118.8800","2. high":"119.9600","3. low":"116.7000","4. close":"119.3300","5. volume":"27893800"},"2009-07-31":{"1. open":"116.9500","2. high":"119.3700","3. low":"116.0500","4. close":"117.9300","5. volume":"28085700"},"2009-07-24":{"1. open":"114.5300","2. high":"118.1500","3. low":"114.3900","4. close":"117.6400","5. volume":"42520000"},"2009-07-17":{"1. open":"101.2800","2. high":"115.5300","3. low":"100.1900","4. close":"115.4200","5. volume":"58793700"},"2009-07-10":{"1. open":"101.5700","2. high":"102.7800","3. low":"99.5000","4. close":"100.8300","5. volume":"34208000"},"2009-07-02":{"1. open":"105.9900","2. high":"106.2700","3. low":"101.7300","4. close":"101.7300","5. volume":"24758400"},"2009-06-26":{"1. open":"105.1800","2. high":"106.7850","3. low":"103.5100","4. close":"105.6800","5. volume":"30871700"},"2009-06-19":{"1. open":"107.6300","2. high":"109.1400","3. low":"105.5000","4. close":"105.8900","5. volume":"42930700"},"2009-06-12":{"1. open":"106.6400","2. high":"110.6400","3. low":"105.5000","4. close":"108.2100","5. volume":"38913000"},"2009-06-05":{"1. open":"106.9400","2. high":"108.8000","3. low":"105.1100","4. close":"107.2400","5. volume":"35592300"},"2009-05-29":{"1. open":"101.3200","2. high":"106.5000","3. low":"101.0200","4. close":"106.2800","5. volume":"27330100"},"2009-05-22":{"1. open":"102.0000","2. high":"106.1200","3. low":"101.7400","4. close":"101.8900","5. volume":"34599500"},"2009-05-15":{"1. open":"101.0900","2. high":"104.3800","3. low":"100.5700","4. close":"101.3700","5. volume":"42229200"},"2009-05-08":{"1. open":"105.2600","2. high":"106.8200","3. low":"99.8300","4. close":"101.4900","5. volume":"42691700"},"2009-05-01":{"1. open":"99.6100","2. high":"106.0500","3. low":"99.2500","4. close":"104.6100","5. volume":"46394300"},"2009-04-24":{"1. open":"100.2900","2. high":"103.8600","3. low":"98.2000","4. close":"100.0800","5. volume":"59469300"},"2009-04-17":{"1. open":"100.2800","2. high":"102.0400","3. low":"96.4400","4. close":"101.2700","5. volume":"41711800"},"2009-04-09":{"1. open":"100.9000","2. high":"102.4500","3. low":"98.5200","4. close":"101.7000","5. volume":"32887100"},"2009-04-03":{"1. open":"92.0000","2. high":"102.6600","3. low":"91.8000","4. close":"102.2200","5. volume":"64912500"},"2009-03-27":{"1. open":"93.7000","2. high":"99.8600","3. low":"92.7500","4. close":"94.1500","5. volume":"60950700"},"2009-03-20":{"1. open":"91.3400","2. high":"95.0000","3. low":"89.4100","4. close":"92.5100","5. volume":"63330900"},"2009-03-13":{"1. open":"84.7000","2. high":"90.6500","3. low":"83.0200","4. close":"90.3600","5. volume":"61831600"},"2009-03-06":{"1. open":"91.1700","2. high":"91.9000","3. low":"83.8100","4. close":"85.8100","5. volume":"74483600"},"2009-02-27":{"1. open":"89.3000","2. high":"93.2800","3. low":"82.8500","4. close":"92.0300","5. volume":"77805700"},"2009-02-20":{"1. open":"91.7300","2. high":"92.4900","3. low":"87.3400","4. close":"88.7900","5. volume":"42419500"},"2009-02-13":{"1. open":"95.9300","2. high":"96.9800","3. low":"92.2000","4. close":"93.8400","5. volume":"49132900"},"2009-02-06":{"1. open":"90.6000","2. high":"97.1000","3. low":"89.6900","4. close":"96.1400","5. volume":"53659500"},"2009-01-30":{"1. open":"89.7700","2. high":"94.9400","3. low":"89.5200","4. close":"91.6500","5. volume":"50819300"},"2009-01-23":{"1. open":"84.7600","2. high":"91.6000","3. low":"81.7600","4. close":"89.4900","5. volume":"61309500"},"2009-01-16":{"1. open":"84.5700","2. high":"86.6000","3. low":"82.1100","4. close":"84.9200","5. volume":"48180000"},"2009-01-09":{"1. open":"86.4200","2. high":"90.4100","3. low":"84.2500","4. close":"84.7000","5. volume":"41092400"},"2009-01-02":{"1. open":"81.7200","2. high":"87.5900","3. low":"79.6800","4. close":"87.3700","5. volume":"26062900"},"2008-12-26":{"1. open":"83.2700","2. high":"83.4500","3. low":"79.9200","4. close":"81.3300","5. volume":"18974200"},"2008-12-19":{"1. open":"82.5100","2. high":"87.2700","3. low":"80.0000","4. close":"83.5200","5. volume":"50128100"},"2008-12-12":{"1. open":"82.5700","2. high":"85.8800","3. low":"78.0600","4. close":"82.2000","5. volume":"49785100"},"2008-12-05":{"1. open":"80.9500","2. high":"81.5000","3. low":"75.3100","4. close":"80.5900","5. volume":"51454000"},"2008-11-28":{"1. open":"75.7400","2. high":"82.4000","3. low":"75.0000","4. close":"81.6000","5. volume":"39691800"},"2008-11-21":{"1. open":"79.4000","2. high":"81.0000","3. low":"69.5000","4. close":"74.8800","5. volume":"73411500"},"2008-11-14":{"1. open":"87.9900","2. high":"88.1000","3. low":"75.4000","4. close":"80.3300","5. volume":"58194400"},"2008-11-07":{"1. open":"92.6400","2. high":"94.7600","3. low":"84.2500","4. close":"86.2700","5. volume":"47015300"},"2008-10-31":{"1. open":"80.2700","2. high":"94.1900","3. low":"79.0100","4. close":"92.9700","5. volume":"60537100"},"2008-10-24":{"1. open":"92.2100","2. high":"93.3100","3. low":"78.8200","4. close":"82.0700","5. volume":"58306900"},"2008-10-17":{"1. open":"90.4400","2. high":"99.0000","3. low":"84.3500","4. close":"90.7800","5. volume":"75048600"},"2008-10-10":{"1. open":"101.2100","2. high":"103.0000","3. low":"83.5100","4. close":"87.7500","5. volume":"86848900"},"2008-10-03":{"1. open":"117.4400","2. high":"118.4300","3. low":"103.0300","4. close":"103.4400","5. volume":"62809100"},"2008-09-26":{"1. open":"118.4500","2. high":"121.9900","3. low":"114.1400","4. close":"119.4200","5. volume":"34730600"},"2008-09-19":{"1. open":"115.3600","2. high":"124.0000","3. low":"110.6100","4. close":"118.8500","5. volume":"66307100"},"2008-09-12":{"1. open":"118.0000","2. high":"119.9500","3. low":"115.0000","4. close":"118.9700","5. volume":"46783800"},"2008-09-05":{"1. open":"122.8700","2. high":"124.0000","3. low":"113.1700","4. close":"114.3300","5. volume":"42011600"},"2008-08-29":{"1. open":"124.4800","2. high":"125.4500","3. low":"121.5000","4. close":"121.7300","5. volume":"30493600"},"2008-08-22":{"1. open":"126.4900","2. high":"127.0000","3. low":"121.5500","4. close":"124.9300","5. volume":"34457400"},"2008-08-15":{"1. open":"128.4300","2. high":"128.4300","3. low":"124.4000","4. close":"126.3600","5. volume":"32724200"},"2008-08-08":{"1. open":"126.7700","2. high":"129.9700","3. low":"126.2500","4. close":"128.8100","5. volume":"34413900"},"2008-08-01":{"1. open":"127.6900","2. high":"129.5000","3. low":"126.1300","4. close":"126.6400","5. volume":"28699300"},"2008-07-25":{"1. open":"129.8300","2. high":"130.9300","3. low":"127.2600","4. close":"128.5300","5. volume":"45950300"},"2008-07-18":{"1. open":"121.8000","2. high":"130.0000","3. low":"119.9000","4. close":"129.8900","5. volume":"59542700"},"2008-07-11":{"1. open":"119.6200","2. high":"124.5000","3. low":"119.6200","4. close":"122.1200","5. volume":"47346100"},"2008-07-03":{"1. open":"119.9900","2. high":"120.7800","3. low":"116.6000","4. close":"119.5400","5. volume":"32716800"},"2008-06-27":{"1. open":"123.0000","2. high":"125.8300","3. low":"118.2600","4. close":"120.0500","5. volume":"41907700"},"2008-06-20":{"1. open":"125.4600","2. high":"127.1400","3. low":"122.3600","4. close":"122.7400","5. volume":"35367900"},"2008-06-13":{"1. open":"125.3800","2. high":"126.7220","3. low":"122.8600","4. close":"126.1500","5. volume":"31303600"},"2008-06-06":{"1. open":"128.6700","2. high":"129.3700","3. low":"124.7400","4. close":"124.9400","5. volume":"35309300"},"2008-05-30":{"1. open":"124.0100","2. high":"129.9900","3. low":"124.0000","4. close":"129.4300","5. volume":"33079200"},"2008-05-23":{"1. open":"127.6800","2. high":"128.2100","3. low":"123.0200","4. close":"124.2000","5. volume":"31469600"},"2008-05-16":{"1. open":"123.8000","2. high":"128.8300","3. low":"123.5600","4. close":"127.8200","5. volume":"40848500"},"2008-05-09":{"1. open":"122.7600","2. high":"125.1700","3. low":"120.7800","4. close":"124.0600","5. volume":"38973400"},"2008-05-02":{"1. open":"122.9800","2. high":"124.4300","3. low":"120.5000","4. close":"123.1800","5. volume":"36106300"},"2008-04-25":{"1. open":"122.0500","2. high":"124.9000","3. low":"122.0500","4. close":"123.0800","5. volume":"32273700"},"2008-04-18":{"1. open":"116.2000","2. high":"125.0000","3. low":"115.5400","4. close":"124.4000","5. volume":"67195200"},"2008-04-11":{"1. open":"116.3700","2. high":"119.2200","3. low":"115.2800","4. close":"116.0000","5. volume":"38989700"},"2008-04-04":{"1. open":"113.9500","2. high":"118.3700","3. low":"113.3400","4. close":"115.7600","5. volume":"42376300"},"2008-03-28":{"1. open":"118.5700","2. high":"119.7900","3. low":"114.2100","4. close":"114.5700","5. volume":"41496800"},"2008-03-20":{"1. open":"113.0000","2. high":"118.5000","3. low":"113.0000","4. close":"118.3300","5. volume":"39979100"},"2008-03-14":{"1. open":"113.1200","2. high":"118.0000","3. low":"112.6900","4. close":"115.2301","5. volume":"48594600"},"2008-03-07":{"1. open":"114.0900","2. high":"116.4100","3. low":"111.8000","4. close":"113.9400","5. volume":"39506500"},"2008-02-29":{"1. open":"107.6800","2. high":"116.6300","3. low":"107.4300","4. close":"113.8600","5. volume":"54366700"},"2008-02-22":{"1. open":"106.7900","2. high":"109.6000","3. low":"104.5300","4. close":"108.0700","5. volume":"31292600"},"2008-02-15":{"1. open":"102.9000","2. high":"108.9300","3. low":"102.8700","4. close":"106.1600","5. volume":"33932900"},"2008-02-08":{"1. open":"108.4000","2. high":"109.0000","3. low":"100.6000","4. close":"103.2700","5. volume":"40641500"},"2008-02-01":{"1. open":"104.4100","2. high":"109.4000","3. low":"103.7000","4. close":"109.0800","5. volume":"39007500"},"2008-01-25":{"1. open":"99.1600","2. high":"107.7900","3. low":"98.5000","4. close":"104.5200","5. volume":"57768700"},"2008-01-18":{"1. open":"105.0000","2. high":"106.7200","3. low":"100.0500","4. close":"103.4000","5. volume":"78126300"},"2008-01-11":{"1. open":"100.3550","2. high":"101.0000","3. low":"97.0400","4. close":"97.6700","5. volume":"52601500"},"2008-01-04":{"1. open":"109.2500","2. high":"110.0000","3. low":"100.4800","4. close":"101.1300","5. volume":"33799300"},"2007-12-28":{"1. open":"111.2000","2. high":"112.1900","3. low":"109.1080","4. close":"110.0900","5. volume":"16539900"},"2007-12-21":{"1. open":"105.3700","2. high":"111.1600","3. low":"104.0000","4. close":"111.0500","5. volume":"43481700"},"2007-12-14":{"1. open":"109.0000","2. high":"110.4000","3. low":"104.1000","4. close":"105.7700","5. volume":"36725700"},"2007-12-07":{"1. open":"105.4500","2. high":"110.0000","3. low":"104.5800","4. close":"108.8600","5. volume":"31672000"},"2007-11-30":{"1. open":"104.4000","2. high":"109.1900","3. low":"101.5000","4. close":"105.1800","5. volume":"46569900"},"2007-11-23":{"1. open":"104.3400","2. high":"105.3900","3. low":"101.3400","4. close":"104.0500","5. volume":"27820500"},"2007-11-16":{"1. open":"101.8900","2. high":"106.4200","3. low":"100.7000","4. close":"104.7900","5. volume":"50102700"},"2007-11-09":{"1. open":"115.1100","2. high":"115.1100","3. low":"99.2700","4. close":"100.2542","5. volume":"62718300"},"2007-11-02":{"1. open":"113.9000","2. high":"116.2500","3. low":"113.2800","4. close":"114.5900","5. volume":"30044700"},"2007-10-26":{"1. open":"110.9700","2. high":"114.8000","3. low":"110.9600","4. close":"113.7300","5. volume":"32762600"},"2007-10-19":{"1. open":"117.9500","2. high":"119.9400","3. low":"111.8000","4. close":"112.2800","5. volume":"53958800"},"2007-10-12":{"1. open":"116.1000","2. high":"121.4600","3. low":"115.8800","4. close":"117.8100","5. volume":"35082300"},"2007-10-05":{"1. open":"117.6100","2. high":"119.6000","3. low":"115.0000","4. close":"116.3000","5. volume":"33529800"},"2007-09-28":{"1. open":"116.9000","2. high":"118.5000","3. low":"115.7900","4. close":"117.8000","5. volume":"33029400"},"2007-09-21":{"1. open":"114.7000","2. high":"118.1000","3. low":"114.3000","4. close":"116.7800","5. volume":"38076800"},"2007-09-14":{"1. open":"116.1500","2. high":"117.7800","3. low":"114.6500","4. close":"115.1300","5. volume":"32211300"},"2007-09-07":{"1. open":"116.3400","2. high":"118.8900","3. low":"115.3300","4. close":"115.5500","5. volume":"28916300"},"2007-08-31":{"1. open":"113.0000","2. high":"117.3500","3. low":"111.6300","4. close":"116.6900","5. volume":"32617900"},"2007-08-24":{"1. open":"110.9000","2. high":"113.2500","3. low":"108.0800","4. close":"113.2400","5. volume":"39957700"},"2007-08-17":{"1. open":"112.9900","2. high":"113.9500","3. low":"103.7000","4. close":"110.9000","5. volume":"55388900"},"2007-08-10":{"1. open":"111.9700","2. high":"114.6000","3. low":"109.7000","4. close":"112.6400","5. volume":"41626500"},"2007-08-03":{"1. open":"115.6200","2. high":"115.7500","3. low":"110.0200","4. close":"111.8900","5. volume":"66192100"},"2007-07-27":{"1. open":"114.8800","2. high":"118.8200","3. low":"114.8500","4. close":"115.6200","5. volume":"64841000"},"2007-07-20":{"1. open":"108.5700","2. high":"116.4800","3. low":"108.4200","4. close":"114.8100","5. volume":"55626100"},"2007-07-13":{"1. open":"108.7300","2. high":"109.6500","3. low":"108.1000","4. close":"108.6000","5. volume":"34811600"},"2007-07-06":{"1. open":"105.3900","2. high":"109.6600","3. low":"104.5800","4. close":"109.0300","5. volume":"24567300"},"2007-06-29":{"1. open":"104.7300","2. high":"106.9200","3. low":"104.1000","4. close":"105.2500","5. volume":"31559100"},"2007-06-22":{"1. open":"105.2700","2. high":"107.0200","3. low":"104.4400","4. close":"104.4400","5. volume":"35051000"},"2007-06-15":{"1. open":"102.8700","2. high":"105.1900","3. low":"102.1000","4. close":"105.0900","5. volume":"34517000"},"2007-06-08":{"1. open":"106.5000","2. high":"106.5900","3. low":"101.5600","4. close":"103.0700","5. volume":"63185700"},"2007-06-01":{"1. open":"105.5700","2. high":"107.6700","3. low":"105.2100","4. close":"106.5400","5. volume":"23208200"},"2007-05-25":{"1. open":"107.1500","2. high":"108.0000","3. low":"103.5700","4. close":"105.1800","5. volume":"30271700"},"2007-05-18":{"1. open":"105.8100","2. high":"108.0500","3. low":"104.5300","4. close":"107.9900","5. volume":"35014200"},"2007-05-11":{"1. open":"102.7600","2. high":"105.9900","3. low":"102.2100","4. close":"105.9800","5. volume":"34979100"},"2007-05-04":{"1. open":"101.1100","2. high":"103.1700","3. low":"100.9700","4. close":"102.9600","5. volume":"38307800"},"2007-04-27":{"1. open":"95.3500","2. high":"101.7000","3. low":"95.0500","4. close":"101.1700","5. volume":"58275300"},"2007-04-20":{"1. open":"94.9900","2. high":"97.6600","3. low":"93.9110","4. close":"94.5800","5. volume":"51786700"},"2007-04-13":{"1. open":"96.4300","2. high":"96.9400","3. low":"94.5300","4. close":"94.9300","5. volume":"27497000"},"2007-04-05":{"1. open":"94.5100","2. high":"96.7500","3. low":"94.0600","4. close":"96.5200","5. volume":"19197800"},"2007-03-30":{"1. open":"94.8400","2. high":"95.2500","3. low":"93.5700","4. close":"94.2600","5. volume":"34042800"},"2007-03-23":{"1. open":"93.9500","2. high":"95.8100","3. low":"93.3900","4. close":"95.0300","5. volume":"26906600"},"2007-03-16":{"1. open":"93.2900","2. high":"94.4700","3. low":"92.1000","4. close":"93.2500","5. volume":"36423000"},"2007-03-09":{"1. open":"90.2500","2. high":"94.8500","3. low":"90.1000","4. close":"93.2800","5. volume":"43505100"},"2007-03-02":{"1. open":"97.8600","2. high":"97.8600","3. low":"88.7700","4. close":"90.9000","5. volume":"52427400"},"2007-02-23":{"1. open":"98.6600","2. high":"99.5000","3. low":"97.4100","4. close":"97.7300","5. volume":"20682500"},"2007-02-16":{"1. open":"98.8000","2. high":"99.5200","3. low":"97.8000","4. close":"98.9900","5. volume":"27047900"},"2007-02-09":{"1. open":"99.1700","2. high":"100.4400","3. low":"97.8100","4. close":"98.5500","5. volume":"34668400"},"2007-02-02":{"1. open":"98.1000","2. high":"99.7300","3. low":"97.4500","4. close":"99.1700","5. volume":"34172300"},"2007-01-26":{"1. open":"96.4200","2. high":"97.9200","3. low":"96.1200","4. close":"97.4500","5. volume":"41549100"},"2007-01-19":{"1. open":"99.4000","2. high":"100.9000","3. low":"94.5500","4. close":"96.1700","5. volume":"58474800"},"2007-01-12":{"1. open":"98.5000","2. high":"100.3300","3. low":"97.9300","4. close":"99.3400","5. volume":"44830200"},"2007-01-05":{"1. open":"97.1700","2. high":"98.7900","3. low":"96.2600","4. close":"97.4200","5. volume":"26942600"},"2006-12-29":{"1. open":"95.0000","2. high":"97.8800","3. low":"94.9200","4. close":"97.1500","5. volume":"15807900"},"2006-12-22":{"1. open":"94.9500","2. high":"96.5000","3. low":"94.8000","4. close":"95.2500","5. volume":"24009800"},"2006-12-15":{"1. open":"93.7200","2. high":"95.8000","3. low":"93.3000","4. close":"95.3000","5. volume":"30414900"},"2006-12-08":{"1. open":"92.5000","2. high":"94.8700","3. low":"92.2500","4. close":"93.8600","5. volume":"28792200"},"2006-12-01":{"1. open":"92.7100","2. high":"93.2400","3. low":"90.4300","4. close":"91.2500","5. volume":"27785200"},"2006-11-24":{"1. open":"93.7700","2. high":"93.8000","3. low":"92.8000","4. close":"93.3500","5. volume":"13559900"},"2006-11-17":{"1. open":"91.7500","2. high":"94.0500","3. low":"91.4100","4. close":"93.8100","5. volume":"23826600"},"2006-11-10":{"1. open":"91.5000","2. high":"93.4000","3. low":"91.5000","4. close":"91.7600","5. volume":"29456500"},"2006-11-03":{"1. open":"90.3000","2. high":"92.6800","3. low":"89.8000","4. close":"91.4100","5. volume":"30108500"},"2006-10-27":{"1. open":"90.0500","2. high":"92.0000","3. low":"90.0100","4. close":"90.7600","5. volume":"35037300"},"2006-10-20":{"1. open":"86.0800","2. high":"92.0400","3. low":"85.7500","4. close":"90.4800","5. volume":"67866100"},"2006-10-13":{"1. open":"83.1400","2. high":"86.2100","3. low":"83.0000","4. close":"86.0800","5. volume":"26864000"},"2006-10-06":{"1. open":"81.7600","2. high":"83.7800","3. low":"81.5600","4. close":"83.1400","5. volume":"25738600"},"2006-09-29":{"1. open":"81.6400","2. high":"82.7900","3. low":"81.2800","4. close":"81.9400","5. volume":"25658300"},"2006-09-22":{"1. open":"82.5600","2. high":"83.7900","3. low":"81.0100","4. close":"81.2100","5. volume":"30290000"},"2006-09-15":{"1. open":"80.6000","2. high":"83.5900","3. low":"80.2500","4. close":"82.9400","5. volume":"27425800"},"2006-09-08":{"1. open":"81.1900","2. high":"81.5400","3. low":"79.3100","4. close":"80.6600","5. volume":"16108000"},"2006-09-01":{"1. open":"79.9100","2. high":"81.6800","3. low":"79.7600","4. close":"81.4100","5. volume":"22236900"},"2006-08-25":{"1. open":"79.5100","2. high":"80.0000","3. low":"78.4200","4. close":"79.8800","5. volume":"18060100"},"2006-08-18":{"1. open":"75.8500","2. high":"79.9700","3. low":"75.6000","4. close":"79.9000","5. volume":"29303900"},"2006-08-11":{"1. open":"75.6300","2. high":"76.2800","3. low":"75.0500","4. close":"75.4800","5. volume":"19054700"},"2006-08-04":{"1. open":"76.4400","2. high":"77.5000","3. low":"74.9000","4. close":"75.9100","5. volume":"20900500"},"2006-07-28":{"1. open":"74.9200","2. high":"77.3000","3. low":"74.9200","4. close":"76.9600","5. volume":"25666400"},"2006-07-21":{"1. open":"73.3400","2. high":"77.0600","3. low":"72.7300","4. close":"74.8600","5. volume":"50614500"},"2006-07-14":{"1. open":"76.1800","2. high":"76.8300","3. low":"73.3700","4. close":"73.5700","5. volume":"37325800"},"2006-07-07":{"1. open":"77.5400","2. high":"78.5300","3. low":"76.1200","4. close":"76.4200","5. volume":"18199800"},"2006-06-30":{"1. open":"77.0400","2. high":"77.9300","3. low":"76.0600","4. close":"76.8200","5. volume":"26797500"},"2006-06-23":{"1. open":"78.0600","2. high":"78.5600","3. low":"76.9400","4. close":"77.1000","5. volume":"27070000"},"2006-06-16":{"1. open":"77.6800","2. high":"78.7800","3. low":"76.8200","4. close":"77.9500","5. volume":"33150500"},"2006-06-09":{"1. open":"79.1000","2. high":"80.7400","3. low":"76.7500","4. close":"78.0100","5. volume":"40341000"},"2006-06-02":{"1. open":"80.3500","2. high":"80.9600","3. low":"79.1500","4. close":"79.5200","5. volume":"23532800"},"2006-05-26":{"1. open":"79.9400","2. high":"81.3000","3. low":"79.0000","4. close":"80.7500","5. volume":"26222700"},"2006-05-19":{"1. open":"81.8000","2. high":"83.2500","3. low":"79.5100","4. close":"80.2800","5. volume":"28629900"},"2006-05-12":{"1. open":"82.6000","2. high":"83.6900","3. low":"82.3000","4. close":"82.3900","5. volume":"22319900"},"2006-05-05":{"1. open":"82.5900","2. high":"83.5500","3. low":"82.0000","4. close":"82.9800","5. volume":"24540000"},"2006-04-28":{"1. open":"81.3000","2. high":"84.4000","3. low":"81.1000","4. close":"82.3400","5. volume":"36485300"},"2006-04-21":{"1. open":"81.7700","2. high":"84.0000","3. low":"81.2600","4. close":"81.6600","5. volume":"35449300"},"2006-04-13":{"1. open":"82.4900","2. high":"82.7400","3. low":"80.6300","4. close":"81.9800","5. volume":"18292300"},"2006-04-07":{"1. open":"82.7200","2. high":"84.4500","3. low":"82.4400","4. close":"82.4800","5. volume":"23780100"},"2006-03-31":{"1. open":"82.9800","2. high":"83.7000","3. low":"82.2000","4. close":"82.4700","5. volume":"23139800"},"2006-03-24":{"1. open":"83.1100","2. high":"84.9900","3. low":"82.9300","4. close":"83.3600","5. volume":"25547800"},"2006-03-17":{"1. open":"81.5600","2. high":"83.7600","3. low":"81.4500","4. close":"83.3000","5. volume":"25173700"},"2006-03-10":{"1. open":"80.0500","2. high":"82.2500","3. low":"79.8600","4. close":"81.5700","5. volume":"23708100"},"2006-03-03":{"1. open":"80.0000","2. high":"80.8900","3. low":"79.5100","4. close":"79.9600","5. volume":"23693200"},"2006-02-24":{"1. open":"80.1000","2. high":"81.6500","3. low":"79.8500","4. close":"80.1000","5. volume":"20014900"},"2006-02-17":{"1. open":"81.3300","2. high":"81.9100","3. low":"80.1300","4. close":"80.7100","5. volume":"26994200"},"2006-02-10":{"1. open":"79.9400","2. high":"81.4600","3. low":"78.9300","4. close":"81.3300","5. volume":"32826100"},"2006-02-03":{"1. open":"81.0200","2. high":"82.2400","3. low":"79.7200","4. close":"79.9700","5. volume":"33566000"},"2006-01-27":{"1. open":"81.3300","2. high":"82.1500","3. low":"80.5900","4. close":"81.0200","5. volume":"32471000"},"2006-01-20":{"1. open":"82.8000","2. high":"84.7000","3. low":"81.2500","4. close":"81.3600","5. volume":"34792500"},"2006-01-13":{"1. open":"83.9000","2. high":"84.8100","3. low":"82.5000","4. close":"83.1700","5. volume":"30173200"},"2006-01-06":{"1. open":"82.4500","2. high":"85.0300","3. low":"80.8100","4. close":"84.9500","5. volume":"36958200"},"2005-12-30":{"1. open":"83.4800","2. high":"84.5000","3. low":"81.5600","4. close":"82.2000","5. volume":"17622000"},"2005-12-23":{"1. open":"83.2300","2. high":"84.2000","3. low":"82.0600","4. close":"83.4800","5. volume":"27298200"},"2005-12-16":{"1. open":"87.0100","2. high":"87.3500","3. low":"82.7500","4. close":"83.3700","5. volume":"39305300"},"2005-12-09":{"1. open":"88.4000","2. high":"89.9200","3. low":"86.3300","4. close":"86.9700","5. volume":"26427900"},"2005-12-02":{"1. open":"88.8000","2. high":"89.9400","3. low":"88.3600","4. close":"88.6500","5. volume":"25765400"},"2005-11-25":{"1. open":"87.6000","2. high":"89.3900","3. low":"86.8800","4. close":"88.8000","5. volume":"18193100"},"2005-11-18":{"1. open":"84.2500","2. high":"88.0000","3. low":"84.0300","4. close":"87.7700","5. volume":"30719600"},"2005-11-11":{"1. open":"83.1000","2. high":"84.8400","3. low":"82.3000","4. close":"84.5500","5. volume":"21762600"},"2005-11-04":{"1. open":"81.5100","2. high":"83.3000","3. low":"80.6400","4. close":"83.0000","5. volume":"31154000"},"2005-10-28":{"1. open":"83.1500","2. high":"83.9500","3. low":"80.5000","4. close":"81.4200","5. volume":"25793400"},"2005-10-21":{"1. open":"82.3600","2. high":"84.6000","3. low":"81.9300","4. close":"83.3300","5. volume":"39286100"},"2005-10-14":{"1. open":"81.2400","2. high":"83.5200","3. low":"81.0800","4. close":"82.3500","5. volume":"36349300"},"2005-10-07":{"1. open":"80.2200","2. high":"81.4700","3. low":"78.7000","4. close":"80.5000","5. volume":"30921800"},"2005-09-30":{"1. open":"78.3100","2. high":"80.5500","3. low":"76.9300","4. close":"80.2200","5. volume":"30116700"},"2005-09-23":{"1. open":"79.7400","2. high":"79.9800","3. low":"77.3000","4. close":"78.0000","5. volume":"31701800"},"2005-09-16":{"1. open":"81.0300","2. high":"82.1100","3. low":"79.6700","4. close":"80.3300","5. volume":"25110400"},"2005-09-09":{"1. open":"79.7000","2. high":"81.5200","3. low":"79.7000","4. close":"81.4400","5. volume":"18681300"},"2005-09-02":{"1. open":"80.0000","2. high":"81.7500","3. low":"79.3400","4. close":"79.4600","5. volume":"25171500"},"2005-08-26":{"1. open":"82.7500","2. high":"83.3500","3. low":"80.2600","4. close":"80.3800","5. volume":"22210500"},"2005-08-19":{"1. open":"81.9000","2. high":"83.3000","3. low":"80.8000","4. close":"82.7600","5. volume":"22885800"},"2005-08-12":{"1. open":"83.4100","2. high":"84.0100","3. low":"81.6200","4. close":"82.1900","5. volume":"22568800"},"2005-08-05":{"1. open":"83.0000","2. high":"84.2000","3. low":"82.7300","4. close":"83.3600","5. volume":"22265700"},"2005-07-29":{"1. open":"83.9800","2. high":"84.5200","3. low":"82.8100","4. close":"83.4600","5. volume":"24382900"},"2005-07-22":{"1. open":"81.9900","2. high":"85.1100","3. low":"81.6800","4. close":"84.4400","5. volume":"45014200"},"2005-07-15":{"1. open":"79.4000","2. high":"82.7500","3. low":"78.5200","4. close":"82.3800","5. volume":"45662500"},"2005-07-08":{"1. open":"74.3800","2. high":"79.5200","3. low":"74.1600","4. close":"79.3000","5. volume":"37388800"},"2005-07-01":{"1. open":"74.0100","2. high":"75.6800","3. low":"73.4500","4. close":"74.6700","5. volume":"30677800"},"2005-06-24":{"1. open":"76.0300","2. high":"77.4900","3. low":"74.0000","4. close":"74.0100","5. volume":"33289800"},"2005-06-17":{"1. open":"74.5000","2. high":"77.7300","3. low":"74.4500","4. close":"76.3900","5. volume":"33568000"},"2005-06-10":{"1. open":"75.8000","2. high":"76.0900","3. low":"74.1000","4. close":"74.7700","5. volume":"24804200"},"2005-06-03":{"1. open":"76.6000","2. high":"77.5000","3. low":"75.5000","4. close":"75.7900","5. volume":"23975100"},"2005-05-27":{"1. open":"76.3000","2. high":"77.4100","3. low":"75.1700","4. close":"77.1000","5. volume":"24899800"},"2005-05-20":{"1. open":"73.0900","2. high":"77.6400","3. low":"73.0900","4. close":"76.4100","5. volume":"34306900"},"2005-05-13":{"1. open":"75.2600","2. high":"75.4600","3. low":"72.5000","4. close":"73.1600","5. volume":"33727100"},"2005-05-06":{"1. open":"76.8800","2. high":"78.1100","3. low":"74.9700","4. close":"75.2600","5. volume":"39063200"},"2005-04-29":{"1. open":"75.2400","2. high":"77.1800","3. low":"74.0500","4. close":"76.3800","5. volume":"51112000"},"2005-04-22":{"1. open":"77.1500","2. high":"77.7500","3. low":"71.8500","4. close":"74.2100","5. volume":"70090000"},"2005-04-15":{"1. open":"87.3500","2. high":"87.5600","3. low":"76.3300","4. close":"76.7000","5. volume":"62144400"},"2005-04-08":{"1. open":"90.0800","2. high":"90.6200","3. low":"87.5000","4. close":"87.6000","5. volume":"27677900"},"2005-04-01":{"1. open":"90.7100","2. high":"91.7600","3. low":"90.0400","4. close":"90.4400","5. volume":"25553000"},"2005-03-24":{"1. open":"89.4200","2. high":"91.5500","3. low":"89.2600","4. close":"90.7000","5. volume":"18904100"},"2005-03-18":{"1. open":"91.5000","2. high":"92.2700","3. low":"89.0900","4. close":"89.2800","5. volume":"25767500"},"2005-03-11":{"1. open":"92.3500","2. high":"93.0000","3. low":"91.2000","4. close":"91.5100","5. volume":"24562700"},"2005-03-04":{"1. open":"92.5300","2. high":"93.7300","3. low":"92.2000","4. close":"92.3700","5. volume":"22028900"},"2005-02-25":{"1. open":"92.6700","2. high":"93.5000","3. low":"91.5500","4. close":"92.8000","5. volume":"18680300"},"2005-02-18":{"1. open":"93.1600","2. high":"94.9700","3. low":"92.5500","4. close":"93.2700","5. volume":"20002800"},"2005-02-11":{"1. open":"94.3500","2. high":"94.9000","3. low":"92.3000","4. close":"93.3000","5. volume":"21103700"},"2005-02-04":{"1. open":"93.6500","2. high":"94.7400","3. low":"93.0000","4. close":"94.5100","5. volume":"19731000"},"2005-01-28":{"1. open":"92.7000","2. high":"93.5900","3. low":"91.4400","4. close":"92.8900","5. volume":"27667500"},"2005-01-21":{"1. open":"93.6500","2. high":"95.3400","3. low":"92.2300","4. close":"92.3800","5. volume":"28556000"},"2005-01-14":{"1. open":"95.7800","2. high":"96.2000","3. low":"93.5500","4. close":"94.1000","5. volume":"26060300"},"2005-01-07":{"1. open":"98.9700","2. high":"99.1000","3. low":"95.4700","4. close":"95.7800","5. volume":"27415300"},"2004-12-31":{"1. open":"97.6900","2. high":"99.0000","3. low":"97.3700","4. close":"98.5800","5. volume":"17501200"},"2004-12-23":{"1. open":"96.3500","2. high":"98.0000","3. low":"96.3500","4. close":"97.7200","5. volume":"18152400"},"2004-12-17":{"1. open":"96.8500","2. high":"98.1500","3. low":"96.0800","4. close":"96.2000","5. volume":"27720400"},"2004-12-10":{"1. open":"96.8800","2. high":"98.2500","3. low":"95.7100","4. close":"96.6700","5. volume":"26952800"},"2004-12-03":{"1. open":"94.9400","2. high":"97.6300","3. low":"94.2400","4. close":"97.0800","5. volume":"29413700"},"2004-11-26":{"1. open":"94.3000","2. high":"95.7900","3. low":"94.1600","4. close":"94.7200","5. volume":"17298900"},"2004-11-19":{"1. open":"95.0800","2. high":"96.6300","3. low":"94.2500","4. close":"94.4500","5. volume":"27259900"},"2004-11-12":{"1. open":"92.5000","2. high":"95.5000","3. low":"92.5000","4. close":"95.3200","5. volume":"28090600"},"2004-11-05":{"1. open":"89.3300","2. high":"93.5200","3. low":"89.2300","4. close":"93.2800","5. volume":"30762600"},"2004-10-29":{"1. open":"87.3600","2. high":"90.2700","3. low":"87.3100","4. close":"89.7500","5. volume":"27890400"},"2004-10-22":{"1. open":"84.3000","2. high":"89.7300","3. low":"84.2900","4. close":"87.3900","5. volume":"39927800"},"2004-10-15":{"1. open":"86.7700","2. high":"87.2000","3. low":"84.3000","4. close":"84.8500","5. volume":"24456500"},"2004-10-08":{"1. open":"87.0000","2. high":"88.1000","3. low":"86.5100","4. close":"86.7100","5. volume":"21303400"},"2004-10-01":{"1. open":"84.1000","2. high":"86.9800","3. low":"83.8800","4. close":"86.7200","5. volume":"22465000"},"2004-09-24":{"1. open":"85.4000","2. high":"86.4300","3. low":"83.2400","4. close":"84.4300","5. volume":"23167900"},"2004-09-17":{"1. open":"87.0000","2. high":"87.2800","3. low":"85.4400","4. close":"85.7400","5. volume":"23207800"},"2004-09-10":{"1. open":"84.7000","2. high":"87.0000","3. low":"84.6000","4. close":"86.7600","5. volume":"17994900"},"2004-09-03":{"1. open":"84.5700","2. high":"85.0900","3. low":"83.6500","4. close":"84.3900","5. volume":"17286100"},"2004-08-27":{"1. open":"85.2300","2. high":"85.4500","3. low":"84.3500","4. close":"84.9400","5. volume":"16955800"},"2004-08-20":{"1. open":"83.7000","2. high":"85.3500","3. low":"83.5100","4. close":"85.2500","5. volume":"21524300"},"2004-08-13":{"1. open":"83.4800","2. high":"84.9900","3. low":"81.9000","4. close":"83.9100","5. volume":"26196900"},"2004-08-06":{"1. open":"86.8700","2. high":"87.3900","3. low":"83.4200","4. close":"83.4800","5. volume":"20815300"},"2004-07-30":{"1. open":"84.8500","2. high":"87.4000","3. low":"84.5100","4. close":"87.0700","5. volume":"22923000"},"2004-07-23":{"1. open":"84.5000","2. high":"87.1100","3. low":"84.4000","4. close":"84.8500","5. volume":"28063300"},"2004-07-16":{"1. open":"84.0000","2. high":"86.4800","3. low":"83.4200","4. close":"84.2800","5. volume":"35836700"},"2004-07-09":{"1. open":"86.5000","2. high":"86.7300","3. low":"83.5100","4. close":"83.8900","5. volume":"26209600"},"2004-07-02":{"1. open":"89.7100","2. high":"89.9000","3. low":"86.5700","4. close":"87.0400","5. volume":"21510400"},"2004-06-25":{"1. open":"90.4000","2. high":"90.9200","3. low":"88.9400","4. close":"89.5500","5. volume":"22021500"},"2004-06-18":{"1. open":"90.0500","2. high":"91.2100","3. low":"89.6200","4. close":"90.0600","5. volume":"22426400"},"2004-06-10":{"1. open":"88.7500","2. high":"90.7500","3. low":"88.0100","4. close":"90.4600","5. volume":"18366900"},"2004-06-04":{"1. open":"88.0900","2. high":"88.6400","3. low":"87.3000","4. close":"87.5600","5. volume":"15611800"},"2004-05-28":{"1. open":"87.7500","2. high":"89.0800","3. low":"86.5500","4. close":"88.5900","5. volume":"20742800"},"2004-05-21":{"1. open":"85.3000","2. high":"88.8800","3. low":"85.1500","4. close":"87.1300","5. volume":"26694400"},"2004-05-14":{"1. open":"87.6000","2. high":"88.1500","3. low":"85.1200","4. close":"86.4100","5. volume":"31619400"},"2004-05-07":{"1. open":"88.1300","2. high":"89.7500","3. low":"87.2012","4. close":"88.1900","5. volume":"25650700"},"2004-04-30":{"1. open":"90.7500","2. high":"91.9900","3. low":"88.0100","4. close":"88.1700","5. volume":"26790300"},"2004-04-23":{"1. open":"91.9000","2. high":"92.4800","3. low":"89.7000","4. close":"91.2800","5. volume":"26094200"},"2004-04-16":{"1. open":"93.5000","2. high":"94.3600","3. low":"91.0400","4. close":"92.2800","5. volume":"31404700"},"2004-04-08":{"1. open":"93.9500","2. high":"94.3900","3. low":"92.5100","4. close":"93.1200","5. volume":"16201400"},"2004-04-02":{"1. open":"92.9900","2. high":"94.5500","3. low":"91.3500","4. close":"94.2000","5. volume":"25046900"},"2004-03-26":{"1. open":"91.2700","2. high":"93.2500","3. low":"90.2800","4. close":"92.7700","5. volume":"27482700"},"2004-03-19":{"1. open":"92.6000","2. high":"93.7900","3. low":"90.8800","4. close":"91.6200","5. volume":"27477500"},"2004-03-12":{"1. open":"96.4900","2. high":"96.8800","3. low":"91.1500","4. close":"93.3000","5. volume":"32862500"},"2004-03-05":{"1. open":"96.5000","2. high":"97.6000","3. low":"95.5600","4. close":"96.4500","5. volume":"21755500"},"2004-02-27":{"1. open":"97.4000","2. high":"97.5100","3. low":"95.2000","4. close":"96.5000","5. volume":"25680600"},"2004-02-20":{"1. open":"99.9900","2. high":"100.0000","3. low":"97.1900","4. close":"97.3100","5. volume":"19898100"},"2004-02-13":{"1. open":"99.3100","2. high":"100.3100","3. low":"98.4100","4. close":"99.7100","5. volume":"20479500"},"2004-02-06":{"1. open":"99.1500","2. high":"100.4300","3. low":"98.2500","4. close":"98.9400","5. volume":"31683700"},"2004-01-30":{"1. open":"97.9000","2. high":"99.8500","3. low":"96.5500","4. close":"99.2300","5. volume":"30864500"},"2004-01-23":{"1. open":"96.0000","2. high":"98.2100","3. low":"95.7300","4. close":"97.9000","5. volume":"25889600"},"2004-01-16":{"1. open":"91.2100","2. high":"95.6500","3. low":"89.0100","4. close":"95.3200","5. volume":"48592000"},"2004-01-09":{"1. open":"92.0000","2. high":"93.3800","3. low":"91.0000","4. close":"91.2100","5. volume":"28694600"},"2004-01-02":{"1. open":"93.1000","2. high":"93.7300","3. low":"91.2000","4. close":"91.5500","5. volume":"18092000"},"2003-12-26":{"1. open":"92.8300","2. high":"93.5000","3. low":"92.1800","4. close":"92.9000","5. volume":"11178100"},"2003-12-19":{"1. open":"93.4300","2. high":"94.1200","3. low":"91.8800","4. close":"93.1400","5. volume":"33482600"},"2003-12-12":{"1. open":"90.5200","2. high":"93.1600","3. low":"90.5200","4. close":"92.7100","5. volume":"30943400"},"2003-12-05":{"1. open":"90.9000","2. high":"91.4800","3. low":"90.0300","4. close":"90.6400","5. volume":"27735300"},"2003-11-28":{"1. open":"89.0300","2. high":"90.6800","3. low":"88.9500","4. close":"90.5400","5. volume":"15370200"},"2003-11-21":{"1. open":"89.9000","2. high":"90.1800","3. low":"88.2300","4. close":"88.6300","5. volume":"25235500"},"2003-11-14":{"1. open":"89.5500","2. high":"91.4800","3. low":"88.8900","4. close":"90.2500","5. volume":"28880700"},"2003-11-07":{"1. open":"89.9000","2. high":"90.8400","3. low":"87.7200","4. close":"88.2600","5. volume":"28479700"},"2003-10-31":{"1. open":"88.8000","2. high":"90.7100","3. low":"88.0500","4. close":"89.4800","5. volume":"28610800"},"2003-10-24":{"1. open":"89.3500","2. high":"89.4000","3. low":"87.5300","4. close":"88.4200","5. volume":"29376600"},"2003-10-17":{"1. open":"93.1000","2. high":"94.5400","3. low":"88.6600","4. close":"89.2300","5. volume":"47597600"},"2003-10-10":{"1. open":"90.7400","2. high":"93.6000","3. low":"90.4000","4. close":"92.6700","5. volume":"27727600"},"2003-10-03":{"1. open":"89.2500","2. high":"91.9500","3. low":"87.9000","4. close":"90.6400","5. volume":"35612700"},"2003-09-26":{"1. open":"92.2400","2. high":"92.2400","3. low":"89.0000","4. close":"89.0500","5. volume":"34494900"},"2003-09-19":{"1. open":"89.7000","2. high":"93.4700","3. low":"88.3900","4. close":"93.2800","5. volume":"42039300"},"2003-09-12":{"1. open":"88.4500","2. high":"89.9700","3. low":"86.4000","4. close":"88.7000","5. volume":"41601200"},"2003-09-05":{"1. open":"82.4000","2. high":"88.2900","3. low":"82.3000","4. close":"86.9500","5. volume":"41027800"},"2003-08-29":{"1. open":"82.8500","2. high":"83.0300","3. low":"81.2700","4. close":"82.0100","5. volume":"24293600"},"2003-08-22":{"1. open":"82.0500","2. high":"84.7200","3. low":"81.9000","4. close":"82.9700","5. volume":"30615500"},"2003-08-15":{"1. open":"80.8700","2. high":"82.1900","3. low":"80.2800","4. close":"81.7900","5. volume":"22220100"},"2003-08-08":{"1. open":"80.7500","2. high":"81.3600","3. low":"78.7300","4. close":"80.8800","5. volume":"30290600"},"2003-08-01":{"1. open":"83.6700","2. high":"83.7000","3. low":"80.0500","4. close":"81.2700","5. volume":"34886500"},"2003-07-25":{"1. open":"83.2000","2. high":"83.7400","3. low":"81.5100","4. close":"83.5500","5. volume":"33171000"},"2003-07-18":{"1. open":"86.0000","2. high":"87.0300","3. low":"82.5000","4. close":"83.7200","5. volume":"45286100"},"2003-07-11":{"1. open":"84.8000","2. high":"86.7500","3. low":"83.4700","4. close":"84.8900","5. volume":"32242400"},"2003-07-03":{"1. open":"83.9000","2. high":"84.8900","3. low":"81.4000","4. close":"83.9500","5. volume":"22755900"},"2003-06-27":{"1. open":"84.7900","2. high":"84.7900","3. low":"82.0900","4. close":"83.4200","5. volume":"27829700"},"2003-06-20":{"1. open":"83.1000","2. high":"85.2900","3. low":"82.5500","4. close":"84.9200","5. volume":"37484300"},"2003-06-13":{"1. open":"80.0000","2. high":"84.9800","3. low":"79.8100","4. close":"82.7500","5. volume":"41268000"},"2003-06-06":{"1. open":"89.0000","2. high":"89.0800","3. low":"79.8400","4. close":"80.0500","5. volume":"69955400"},"2003-05-30":{"1. open":"84.5100","2. high":"88.7000","3. low":"84.5100","4. close":"88.0400","5. volume":"26786400"},"2003-05-23":{"1. open":"88.0500","2. high":"88.4700","3. low":"84.8900","4. close":"85.2600","5. volume":"32835800"},"2003-05-16":{"1. open":"87.5500","2. high":"90.4000","3. low":"87.1000","4. close":"88.9900","5. volume":"38800700"},"2003-05-09":{"1. open":"87.2000","2. high":"88.3400","3. low":"85.7500","4. close":"87.5500","5. volume":"35257500"},"2003-05-02":{"1. open":"84.0500","2. high":"87.5700","3. low":"83.6200","4. close":"87.5700","5. volume":"39359000"},"2003-04-25":{"1. open":"84.4000","2. high":"86.0600","3. low":"82.6000","4. close":"83.8800","5. volume":"36064700"},"2003-04-17":{"1. open":"78.5000","2. high":"84.4000","3. low":"78.1600","4. close":"84.2600","5. volume":"42212300"},"2003-04-11":{"1. open":"82.6000","2. high":"82.9000","3. low":"78.1300","4. close":"78.7500","5. volume":"39935800"},"2003-04-04":{"1. open":"79.2600","2. high":"83.4800","3. low":"78.1200","4. close":"80.7900","5. volume":"46339300"},"2003-03-28":{"1. open":"82.4600","2. high":"84.0000","3. low":"80.5000","4. close":"80.8500","5. volume":"42576300"},"2003-03-21":{"1. open":"78.0000","2. high":"84.9000","3. low":"77.8400","4. close":"84.9000","5. volume":"58133300"},"2003-03-14":{"1. open":"77.4500","2. high":"79.4800","3. low":"73.1700","4. close":"79.0000","5. volume":"48104400"},"2003-03-07":{"1. open":"78.9000","2. high":"79.0000","3. low":"75.7100","4. close":"77.9000","5. volume":"32954000"},"2003-02-28":{"1. open":"79.7000","2. high":"79.9900","3. low":"76.7500","4. close":"77.9500","5. volume":"39649300"},"2003-02-21":{"1. open":"78.0200","2. high":"80.0500","3. low":"77.9100","4. close":"79.9500","5. volume":"26970500"},"2003-02-14":{"1. open":"77.1000","2. high":"78.9700","3. low":"74.3100","4. close":"77.4500","5. volume":"41674400"},"2003-02-07":{"1. open":"78.2000","2. high":"78.9000","3. low":"76.2500","4. close":"77.1000","5. volume":"37378500"},"2003-01-31":{"1. open":"77.9900","2. high":"81.3000","3. low":"77.0200","4. close":"78.2000","5. volume":"42173800"},"2003-01-24":{"1. open":"81.3000","2. high":"81.8500","3. low":"78.8200","4. close":"78.9900","5. volume":"34478700"},"2003-01-17":{"1. open":"88.3100","2. high":"88.9500","3. low":"81.1800","4. close":"81.3000","5. volume":"53450200"},"2003-01-10":{"1. open":"81.9000","2. high":"88.0400","3. low":"81.8100","4. close":"87.6800","5. volume":"50004000"},"2003-01-03":{"1. open":"77.0000","2. high":"81.6500","3. low":"75.6000","4. close":"81.6500","5. volume":"29764800"},"2002-12-27":{"1. open":"79.7500","2. high":"81.5000","3. low":"76.6100","4. close":"77.3600","5. volume":"20460800"},"2002-12-20":{"1. open":"79.6000","2. high":"81.7900","3. low":"78.2400","4. close":"79.7900","5. volume":"36539200"},"2002-12-13":{"1. open":"81.0000","2. high":"82.4800","3. low":"78.2700","4. close":"80.0000","5. volume":"37355200"},"2002-12-06":{"1. open":"88.6000","2. high":"89.4600","3. low":"81.0700","4. close":"82.3200","5. volume":"41270300"},"2002-11-29":{"1. open":"84.6300","2. high":"88.1100","3. low":"83.5200","4. close":"86.9200","5. volume":"28402500"},"2002-11-22":{"1. open":"80.8000","2. high":"85.1700","3. low":"77.8400","4. close":"84.4300","5. volume":"45101100"},"2002-11-15":{"1. open":"77.5900","2. high":"80.9900","3. low":"76.7000","4. close":"80.0100","5. volume":"49429400"},"2002-11-08":{"1. open":"81.9900","2. high":"83.8100","3. low":"77.2000","4. close":"77.5900","5. volume":"52109900"},"2002-11-01":{"1. open":"75.1500","2. high":"80.5000","3. low":"74.2000","4. close":"80.4000","5. volume":"56125400"},"2002-10-25":{"1. open":"73.6500","2. high":"75.9000","3. low":"71.7500","4. close":"74.5600","5. volume":"51727300"},"2002-10-18":{"1. open":"61.5400","2. high":"74.2500","3. low":"61.5400","4. close":"74.2500","5. volume":"72253200"},"2002-10-11":{"1. open":"56.6000","2. high":"63.9200","3. low":"54.0100","4. close":"63.9200","5. volume":"67066500"},"2002-10-04":{"1. open":"59.5500","2. high":"62.0000","3. low":"55.7700","4. close":"56.6000","5. volume":"60869200"},"2002-09-27":{"1. open":"63.7500","2. high":"64.8800","3. low":"59.5500","4. close":"60.3600","5. volume":"59368300"},"2002-09-20":{"1. open":"72.0000","2. high":"73.4500","3. low":"63.9000","4. close":"63.9200","5. volume":"59733100"},"2002-09-13":{"1. open":"72.4500","2. high":"77.5000","3. low":"71.3100","4. close":"72.5000","5. volume":"29374700"},"2002-09-06":{"1. open":"74.2000","2. high":"75.0000","3. low":"71.5000","4. close":"73.2000","5. volume":"24168200"},"2002-08-30":{"1. open":"80.4000","2. high":"80.8900","3. low":"75.1000","4. close":"75.3800","5. volume":"31535800"},"2002-08-23":{"1. open":"79.3500","2. high":"82.8500","3. low":"79.0100","4. close":"80.4000","5. volume":"37599000"},"2002-08-16":{"1. open":"71.0500","2. high":"79.9800","3. low":"70.6100","4. close":"79.3500","5. volume":"42544100"},"2002-08-09":{"1. open":"67.9400","2. high":"74.3000","3. low":"65.8500","4. close":"71.8300","5. volume":"38896400"},"2002-08-02":{"1. open":"70.3700","2. high":"72.7000","3. low":"67.1200","4. close":"67.8800","5. volume":"50523500"},"2002-07-26":{"1. open":"71.2500","2. high":"72.1900","3. low":"65.7000","4. close":"66.4000","5. volume":"64004300"},"2002-07-19":{"1. open":"68.4000","2. high":"74.2000","3. low":"66.6000","4. close":"72.0000","5. volume":"59368700"},"2002-07-12":{"1. open":"73.0000","2. high":"73.4800","3. low":"67.5500","4. close":"69.2100","5. volume":"50325700"},"2002-07-05":{"1. open":"72.0100","2. high":"73.9000","3. low":"67.1600","4. close":"73.5000","5. volume":"37781700"},"2002-06-28":{"1. open":"67.2500","2. high":"73.6200","3. low":"66.1000","4. close":"72.0000","5. volume":"56342200"},"2002-06-21":{"1. open":"76.1800","2. high":"77.7500","3. low":"68.1900","4. close":"68.7500","5. volume":"51132700"},"2002-06-14":{"1. open":"77.7500","2. high":"78.8000","3. low":"73.2500","4. close":"76.1700","5. volume":"45826900"},"2002-06-07":{"1. open":"80.7500","2. high":"80.9500","3. low":"77.0000","4. close":"78.3000","5. volume":"37678900"},"2002-05-31":{"1. open":"82.8000","2. high":"83.1100","3. low":"80.2200","4. close":"80.4500","5. volume":"21571900"},"2002-05-24":{"1. open":"85.4500","2. high":"85.4600","3. low":"82.5200","4. close":"83.1000","5. volume":"25012600"},"2002-05-17":{"1. open":"80.2500","2. high":"86.4900","3. low":"79.5000","4. close":"85.6900","5. volume":"37347700"},"2002-05-10":{"1. open":"81.7000","2. high":"83.0000","3. low":"75.9200","4. close":"79.6800","5. volume":"61363200"},"2002-05-03":{"1. open":"84.7100","2. high":"85.2300","3. low":"81.1100","4. close":"81.7800","5. volume":"42862500"},"2002-04-26":{"1. open":"88.9500","2. high":"89.0800","3. low":"84.7000","4. close":"84.7100","5. volume":"31976500"},"2002-04-19":{"1. open":"86.5000","2. high":"90.0300","3. low":"84.0000","4. close":"89.0000","5. volume":"51860900"},"2002-04-12":{"1. open":"87.5000","2. high":"89.9500","3. low":"83.3400","4. close":"85.6000","5. volume":"110897800"},"2002-04-05":{"1. open":"104.0000","2. high":"104.0000","3. low":"97.2500","4. close":"97.2500","5. volume":"36348600"},"2002-03-28":{"1. open":"105.8000","2. high":"106.6600","3. low":"102.3000","4. close":"104.0000","5. volume":"25371800"},"2002-03-22":{"1. open":"107.1000","2. high":"108.6400","3. low":"104.7000","4. close":"105.6000","5. volume":"25381100"},"2002-03-15":{"1. open":"104.3500","2. high":"108.8500","3. low":"103.6000","4. close":"106.7900","5. volume":"42307200"},"2002-03-08":{"1. open":"103.3500","2. high":"107.5000","3. low":"103.1300","4. close":"105.0900","5. volume":"47715500"},"2002-03-01":{"1. open":"98.4500","2. high":"103.1000","3. low":"95.9900","4. close":"103.0200","5. volume":"51947900"},"2002-02-22":{"1. open":"101.5000","2. high":"101.8000","3. low":"95.7600","4. close":"98.4500","5. volume":"48524400"},"2002-02-15":{"1. open":"105.0000","2. high":"109.1500","3. low":"101.7000","4. close":"102.8900","5. volume":"39939500"},"2002-02-08":{"1. open":"108.0000","2. high":"108.5000","3. low":"102.6100","4. close":"104.9900","5. volume":"35602600"},"2002-02-01":{"1. open":"109.5000","2. high":"110.2100","3. low":"101.0000","4. close":"108.0000","5. volume":"55992100"},"2002-01-25":{"1. open":"114.2500","2. high":"114.2600","3. low":"107.0000","4. close":"109.2800","5. volume":"38030400"},"2002-01-18":{"1. open":"120.0000","2. high":"120.5500","3. low":"112.8100","4. close":"114.2500","5. volume":"50634800"},"2002-01-11":{"1. open":"125.0000","2. high":"126.3900","3. low":"120.2800","4. close":"120.3100","5. volume":"31815400"},"2002-01-04":{"1. open":"122.7500","2. high":"125.6000","3. low":"119.8000","4. close":"125.6000","5. volume":"27402400"},"2001-12-28":{"1. open":"122.0500","2. high":"123.9300","3. low":"121.1000","4. close":"122.9000","5. volume":"13450200"},"2001-12-21":{"1. open":"120.1500","2. high":"124.7000","3. low":"120.1500","4. close":"122.0000","5. volume":"34859100"},"2001-12-14":{"1. open":"120.0000","2. high":"123.2100","3. low":"119.4100","4. close":"121.1000","5. volume":"36439000"},"2001-12-07":{"1. open":"114.8000","2. high":"121.9800","3. low":"113.2100","4. close":"120.4000","5. volume":"45132800"},"2001-11-30":{"1. open":"115.9000","2. high":"116.4000","3. low":"111.8100","4. close":"115.5900","5. volume":"29636100"},"2001-11-23":{"1. open":"114.7000","2. high":"116.8000","3. low":"113.0500","4. close":"115.3500","5. volume":"17282200"},"2001-11-16":{"1. open":"113.0000","2. high":"117.0000","3. low":"112.0500","4. close":"114.5000","5. volume":"36592100"},"2001-11-09":{"1. open":"109.9500","2. high":"115.5600","3. low":"109.0000","4. close":"114.0800","5. volume":"37385000"},"2001-11-02":{"1. open":"110.5000","2. high":"111.1200","3. low":"106.9000","4. close":"109.5000","5. volume":"37116500"},"2001-10-26":{"1. open":"102.6500","2. high":"112.1000","3. low":"101.9000","4. close":"111.1600","5. volume":"43172300"},"2001-10-19":{"1. open":"99.8500","2. high":"106.7000","3. low":"99.6600","4. close":"102.6500","5. volume":"63537500"},"2001-10-12":{"1. open":"98.0300","2. high":"101.0000","3. low":"94.9000","4. close":"100.8400","5. volume":"48258400"},"2001-10-05":{"1. open":"91.7200","2. high":"98.8800","3. low":"91.3400","4. close":"98.0200","5. volume":"46507700"},"2001-09-28":{"1. open":"91.8000","2. high":"96.0000","3. low":"87.4900","4. close":"91.7200","5. volume":"61809500"},"2001-09-21":{"1. open":"93.9000","2. high":"96.8500","3. low":"89.5000","4. close":"90.5000","5. volume":"75868900"},"2001-09-10":{"1. open":"96.0000","2. high":"97.4000","3. low":"95.5900","4. close":"96.4700","5. volume":"10311500"},"2001-09-07":{"1. open":"100.1500","2. high":"103.1300","3. low":"96.0000","4. close":"96.5900","5. volume":"41322600"},"2001-08-31":{"1. open":"106.9900","2. high":"108.2000","3. low":"98.8600","4. close":"99.9500","5. volume":"38331400"},"2001-08-24":{"1. open":"104.6800","2. high":"107.8000","3. low":"101.4000","4. close":"106.9900","5. volume":"33343800"},"2001-08-17":{"1. open":"105.0000","2. high":"106.8500","3. low":"103.6600","4. close":"104.5900","5. volume":"29688900"},"2001-08-10":{"1. open":"107.2500","2. high":"107.3700","3. low":"102.7000","4. close":"104.9500","5. volume":"26622100"},"2001-08-03":{"1. open":"104.9000","2. high":"110.0900","3. low":"104.7600","4. close":"108.1800","5. volume":"25049100"},"2001-07-27":{"1. open":"105.7000","2. high":"106.9500","3. low":"102.7300","4. close":"104.7000","5. volume":"32638300"},"2001-07-20":{"1. open":"108.5300","2. high":"109.3800","3. low":"103.0300","4. close":"105.7000","5. volume":"48299000"},"2001-07-13":{"1. open":"106.5000","2. high":"109.3000","3. low":"101.5600","4. close":"108.5300","5. volume":"45082800"},"2001-07-06":{"1. open":"113.5000","2. high":"115.4000","3. low":"105.8100","4. close":"106.5000","5. volume":"25362500"},"2001-06-29":{"1. open":"113.7500","2. high":"116.9500","3. low":"111.1000","4. close":"113.5000","5. volume":"35230300"},"2001-06-22":{"1. open":"113.9800","2. high":"117.2500","3. low":"111.3600","4. close":"112.8700","5. volume":"33926900"},"2001-06-15":{"1. open":"116.3000","2. high":"118.4700","3. low":"113.3800","4. close":"113.6000","5. volume":"39520000"},"2001-06-08":{"1. open":"113.2500","2. high":"119.0000","3. low":"112.8500","4. close":"116.1000","5. volume":"29113600"},"2001-06-01":{"1. open":"117.3500","2. high":"117.5900","3. low":"111.6400","4. close":"112.8900","5. volume":"27279700"},"2001-05-25":{"1. open":"117.9500","2. high":"119.9000","3. low":"117.1000","4. close":"117.8000","5. volume":"34172800"},"2001-05-18":{"1. open":"111.2000","2. high":"117.6800","3. low":"111.0000","4. close":"117.4400","5. volume":"32527500"},"2001-05-11":{"1. open":"116.2000","2. high":"118.9000","3. low":"110.9600","4. close":"111.8100","5. volume":"37758700"},"2001-05-04":{"1. open":"116.4000","2. high":"118.9500","3. low":"111.2000","4. close":"115.8600","5. volume":"40113600"},"2001-04-27":{"1. open":"114.0100","2. high":"116.9000","3. low":"111.6800","4. close":"116.2000","5. volume":"38874700"},"2001-04-20":{"1. open":"96.2000","2. high":"116.4000","3. low":"95.2000","4. close":"114.8300","5. volume":"77541600"},"2001-04-12":{"1. open":"98.5000","2. high":"101.9400","3. low":"93.8000","4. close":"96.2000","5. volume":"40874500"},"2001-04-06":{"1. open":"97.4500","2. high":"100.0000","3. low":"90.0500","4. close":"97.9500","5. volume":"61562900"},"2001-03-30":{"1. open":"95.2500","2. high":"100.0000","3. low":"93.7500","4. close":"96.1800","5. volume":"52337900"},"2001-03-23":{"1. open":"91.0000","2. high":"94.9900","3. low":"87.6500","4. close":"93.5100","5. volume":"56911400"},"2001-03-16":{"1. open":"97.9000","2. high":"98.9000","3. low":"88.2000","4. close":"90.1000","5. volume":"69318700"},"2001-03-09":{"1. open":"102.8100","2. high":"108.4000","3. low":"97.9000","4. close":"99.2900","5. volume":"46134500"},"2001-03-02":{"1. open":"105.8000","2. high":"107.6500","3. low":"97.5000","4. close":"102.3000","5. volume":"59912700"},"2001-02-23":{"1. open":"114.5500","2. high":"115.6000","3. low":"100.2500","4. close":"104.0000","5. volume":"42890800"},"2001-02-16":{"1. open":"110.5500","2. high":"118.6400","3. low":"110.3000","4. close":"115.0000","5. volume":"36127100"},"2001-02-09":{"1. open":"109.4000","2. high":"118.2000","3. low":"109.3000","4. close":"112.0000","5. volume":"36346600"},"2001-02-02":{"1. open":"112.5000","2. high":"116.7500","3. low":"109.6000","4. close":"110.2700","5. volume":"32690400"},"2001-01-26":{"1. open":"109.5000","2. high":"115.2500","3. low":"107.6200","4. close":"114.1900","5. volume":"40283600"},"2001-01-19":{"1. open":"93.7500","2. high":"113.9400","3. low":"91.8100","4. close":"111.2500","5. volume":"55406000"},"2001-01-12":{"1. open":"93.5000","2. high":"96.4400","3. low":"91.2500","4. close":"93.8100","5. volume":"37351000"},"2001-01-05":{"1. open":"84.5000","2. high":"99.7500","3. low":"83.7500","4. close":"94.0000","5. volume":"44240800"},"2000-12-29":{"1. open":"89.0000","2. high":"89.5600","3. low":"82.1200","4. close":"85.0000","5. volume":"31039700"},"2000-12-22":{"1. open":"88.3700","2. high":"94.4400","3. low":"80.0600","4. close":"89.0000","5. volume":"50218000"},"2000-12-15":{"1. open":"96.5000","2. high":"98.2500","3. low":"87.3100","4. close":"87.8100","5. volume":"41477400"},"2000-12-08":{"1. open":"96.0000","2. high":"104.7500","3. low":"93.1200","4. close":"97.0000","5. volume":"37530500"},"2000-12-01":{"1. open":"100.4400","2. high":"102.0000","3. low":"92.2500","4. close":"95.6200","5. volume":"32366400"},"2000-11-24":{"1. open":"101.5000","2. high":"104.3700","3. low":"98.3100","4. close":"99.9400","5. volume":"22641900"},"2000-11-17":{"1. open":"91.8100","2. high":"102.5000","3. low":"91.6200","4. close":"101.9400","5. volume":"29453200"},"2000-11-10":{"1. open":"99.8700","2. high":"103.7500","3. low":"93.0000","4. close":"93.0000","5. volume":"32715700"},"2000-11-03":{"1. open":"93.5000","2. high":"102.6200","3. low":"90.3100","4. close":"100.1200","5. volume":"39746400"},"2000-10-27":{"1. open":"94.7500","2. high":"95.0000","3. low":"86.9400","4. close":"93.6900","5. volume":"48790400"},"2000-10-20":{"1. open":"111.5000","2. high":"113.8700","3. low":"90.2500","4. close":"94.7500","5. volume":"73706800"},"2000-10-13":{"1. open":"115.9400","2. high":"119.3700","3. low":"103.1200","4. close":"109.0600","5. volume":"38085500"},"2000-10-06":{"1. open":"112.6200","2. high":"119.6200","3. low":"108.5600","4. close":"116.0000","5. volume":"43940700"},"2000-09-29":{"1. open":"124.5000","2. high":"126.6200","3. low":"110.2500","4. close":"112.6200","5. volume":"31360800"},"2000-09-22":{"1. open":"125.2500","2. high":"126.6900","3. low":"120.0000","4. close":"123.8700","5. volume":"22129500"},"2000-09-15":{"1. open":"127.8700","2. high":"129.1900","3. low":"122.7500","4. close":"125.0000","5. volume":"28000200"},"2000-09-08":{"1. open":"132.8100","2. high":"134.8800","3. low":"129.3800","4. close":"129.5000","5. volume":"20201600"},"2000-09-01":{"1. open":"129.8800","2. high":"134.9400","3. low":"129.5600","4. close":"133.6300","5. volume":"30751200"},"2000-08-25":{"1. open":"121.0600","2. high":"129.8800","3. low":"119.8700","4. close":"129.0000","5. volume":"24522100"},"2000-08-18":{"1. open":"120.0000","2. high":"123.6900","3. low":"119.3100","4. close":"120.4400","5. volume":"23739400"},"2000-08-11":{"1. open":"116.6200","2. high":"121.8100","3. low":"115.5600","4. close":"120.6200","5. volume":"29859300"},"2000-08-04":{"1. open":"110.5000","2. high":"116.5000","3. low":"110.0600","4. close":"115.8700","5. volume":"24015800"},"2000-07-28":{"1. open":"114.1200","2. high":"115.6200","3. low":"108.8700","4. close":"111.8100","5. volume":"28454700"},"2000-07-21":{"1. open":"104.4400","2. high":"117.8100","3. low":"101.0000","4. close":"114.7500","5. volume":"52881600"},"2000-07-14":{"1. open":"104.6900","2. high":"105.9400","3. low":"101.0000","4. close":"103.9400","5. volume":"25072200"},"2000-07-07":{"1. open":"108.7500","2. high":"109.8700","3. low":"100.0000","4. close":"105.0600","5. volume":"38608400"},"2000-06-30":{"1. open":"113.0000","2. high":"115.7500","3. low":"108.6200","4. close":"109.5600","5. volume":"32971500"},"2000-06-23":{"1. open":"113.5000","2. high":"120.6900","3. low":"110.8100","4. close":"111.8700","5. volume":"27864000"},"2000-06-16":{"1. open":"119.1200","2. high":"120.4400","3. low":"113.2500","4. close":"113.2500","5. volume":"26364000"},"2000-06-09":{"1. open":"108.4400","2. high":"122.3100","3. low":"108.4400","4. close":"119.6900","5. volume":"37831000"},"2000-06-02":{"1. open":"107.7500","2. high":"111.0000","3. low":"105.5000","4. close":"108.8100","5. volume":"18535800"},"2000-05-26":{"1. open":"106.0000","2. high":"112.2500","3. low":"103.4400","4. close":"106.9400","5. volume":"31197000"},"2000-05-19":{"1. open":"104.0000","2. high":"109.2500","3. low":"102.0000","4. close":"106.4400","5. volume":"29694500"},"2000-05-12":{"1. open":"108.0600","2. high":"110.6200","3. low":"102.0600","4. close":"104.4400","5. volume":"33410400"},"2000-05-05":{"1. open":"112.5000","2. high":"113.6200","3. low":"106.5000","4. close":"107.8700","5. volume":"22151300"},"2000-04-28":{"1. open":"102.0000","2. high":"113.9400","3. low":"101.2500","4. close":"111.5000","5. volume":"35488400"},"2000-04-20":{"1. open":"103.8700","2. high":"115.1200","3. low":"102.0600","4. close":"104.0000","5. volume":"43482800"},"2000-04-14":{"1. open":"124.7500","2. high":"125.3700","3. low":"102.8700","4. close":"105.0000","5. volume":"42149600"},"2000-04-07":{"1. open":"120.0000","2. high":"128.0000","3. low":"115.0600","4. close":"123.1200","5. volume":"47344000"},"2000-03-31":{"1. open":"125.0000","2. high":"128.2500","3. low":"117.0600","4. close":"118.3700","5. volume":"44498000"},"2000-03-24":{"1. open":"110.0000","2. high":"122.2500","3. low":"109.9400","4. close":"120.6200","5. volume":"38090900"},"2000-03-17":{"1. open":"104.0000","2. high":"111.6900","3. low":"102.5000","4. close":"110.0000","5. volume":"36990400"},"2000-03-10":{"1. open":"109.9400","2. high":"111.0000","3. low":"101.0000","4. close":"105.2500","5. volume":"42586200"},"2000-03-03":{"1. open":"104.6200","2. high":"110.0000","3. low":"99.5000","4. close":"108.0000","5. volume":"51128300"},"2000-02-25":{"1. open":"112.0000","2. high":"113.4400","3. low":"104.9400","4. close":"108.0000","5. volume":"34514300"},"2000-02-18":{"1. open":"116.0000","2. high":"118.8700","3. low":"111.5000","4. close":"112.5000","5. volume":"26599300"},"2000-02-11":{"1. open":"116.0000","2. high":"119.7500","3. low":"113.1200","4. close":"115.3700","5. volume":"26814500"},"2000-02-04":{"1. open":"111.3700","2. high":"118.4400","3. low":"109.1200","4. close":"115.6200","5. volume":"32834200"},"2000-01-28":{"1. open":"121.8700","2. high":"122.8700","3. low":"110.0600","4. close":"111.5600","5. volume":"33325200"},"2000-01-21":{"1. open":"119.6900","2. high":"124.7500","3. low":"112.6900","4. close":"121.5000","5. volume":"41930500"},"2000-01-14":{"1. open":"117.2500","2. high":"123.3100","3. low":"115.3700","4. close":"119.6200","5. volume":"42663900"},"2000-01-07":{"1. open":"112.4400","2. high":"119.7500","3. low":"110.6200","4. close":"113.5000","5. volume":"51137300"},"1999-12-31":{"1. open":"109.6900","2. high":"110.7500","3. low":"106.6200","4. close":"107.8700","5. volume":"16812500"},"1999-12-23":{"1. open":"109.0600","2. high":"110.4400","3. low":"107.7500","4. close":"108.6200","5. volume":"18144100"},"1999-12-17":{"1. open":"108.1200","2. high":"112.7500","3. low":"104.5000","4. close":"110.0000","5. volume":"38810100"},"1999-12-10":{"1. open":"113.0000","2. high":"122.1200","3. low":"107.5600","4. close":"109.0000","5. volume":"58626000"},"1999-12-03":{"1. open":"104.9400","2. high":"112.8700","3. low":"102.1200","4. close":"111.8700","5. volume":"37670000"},"1999-11-26":{"1. open":"105.5000","2. high":"109.8700","3. low":"101.8100","4. close":"105.0000","5. volume":"37165600"},"1999-11-19":{"1. open":"96.0000","2. high":"105.1200","3. low":"92.6200","4. close":"103.9400","5. volume":"61550800"},"1999-11-12":{"1. open":"90.5000","2. high":"97.5000","3. low":"90.5000","4. close":"95.8700","5. volume":"43569700"}}} \ No newline at end of file +{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file diff --git a/Backend/server.js b/Backend/server.js index 10fca96c..fb419432 100644 --- a/Backend/server.js +++ b/Backend/server.js @@ -29,7 +29,7 @@ const routes = require('./routes/routes.js')(app, fs, apiKey); const server = app.listen(3001, () => { setApiKey(); console.log('listening on port %s...', server.address().port); - updateIntradayData(); + }); //INFO WICHTIGER LINK für schedule @@ -40,7 +40,7 @@ const server = app.listen(3001, () => { // const updateApiKey = schedule.scheduleJob('* */3 * * *', setApiKey); // //Every hour new data are pulled from the API for Intraday - const updateIntraday = schedule.scheduleJob('* */1 * * *', updateIntradayData); + const updateIntraday = schedule.scheduleJob('0 */1 * * *', updateIntradayData); // //Always at 0:10 the daily data is pulled from the API const updateDaily = schedule.scheduleJob('30 0 * * *', updateDailyData); From f4b5e8435c75a1de9daaa5ca2909146f84d45838 Mon Sep 17 00:00:00 2001 From: Steffen Kruschina Date: Wed, 30 Mar 2022 19:44:03 +0200 Subject: [PATCH 4/5] fix problems problems time control update time control add some more JSON Data --- Backend/data/daily_ABC.json | 2 +- Backend/data/daily_ABR.json | 1 + Backend/data/daily_ABT.json | 2 +- Backend/data/daily_ACA.json | 1 + Backend/data/daily_AXS.json | 1 - Backend/data/daily_IBM.json | 2 +- Backend/data/intraday_ABC.json | 2 +- Backend/data/intraday_ABR.json | 1 + Backend/data/intraday_ABT.json | 2 +- Backend/data/intraday_ACA.json | 1 + Backend/data/intraday_IBM.json | 2 +- Backend/data/monthly_ABC.json | 2 +- Backend/data/monthly_ABR.json | 1 + Backend/data/monthly_ABT.json | 2 +- Backend/data/monthly_ACA.json | 1 + Backend/data/monthly_IBM.json | 2 +- Backend/data/symbols.txt | 3 +- Backend/data/weekly_ABC.json | 2 +- Backend/data/weekly_ABR.json | 1 + Backend/data/weekly_ABT.json | 2 +- Backend/data/weekly_ACA.json | 1 + Backend/data/weekly_IBM.json | 2 +- Backend/module/updateDataFromAPI.js | 6 +- Backend/server.js | 143 +++++++++++++++++++++++----- 24 files changed, 146 insertions(+), 39 deletions(-) create mode 100644 Backend/data/daily_ABR.json create mode 100644 Backend/data/daily_ACA.json delete mode 100644 Backend/data/daily_AXS.json create mode 100644 Backend/data/intraday_ABR.json create mode 100644 Backend/data/intraday_ACA.json create mode 100644 Backend/data/monthly_ABR.json create mode 100644 Backend/data/monthly_ACA.json create mode 100644 Backend/data/weekly_ABR.json create mode 100644 Backend/data/weekly_ACA.json diff --git a/Backend/data/daily_ABC.json b/Backend/data/daily_ABC.json index dbd43884..af54a317 100644 --- a/Backend/data/daily_ABC.json +++ b/Backend/data/daily_ABC.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"ABC","3. Last Refreshed":"2022-03-24","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-24":{"1. open":"152.4800","2. high":"152.8700","3. low":"151.2900","4. close":"152.6100","5. volume":"696764"},"2022-03-23":{"1. open":"152.0100","2. high":"152.5600","3. low":"150.5400","4. close":"151.5300","5. volume":"1038349"},"2022-03-22":{"1. open":"153.8100","2. high":"154.6700","3. low":"151.6100","4. close":"152.1100","5. volume":"1057456"},"2022-03-21":{"1. open":"152.6000","2. high":"155.7600","3. low":"152.4500","4. close":"153.1800","5. volume":"1049168"},"2022-03-18":{"1. open":"152.2100","2. high":"152.4500","3. low":"150.1100","4. close":"152.0000","5. volume":"2034634"},"2022-03-17":{"1. open":"150.0300","2. high":"152.4000","3. low":"149.6900","4. close":"152.2000","5. volume":"1291316"},"2022-03-16":{"1. open":"151.6800","2. high":"153.0548","3. low":"148.3200","4. close":"150.5000","5. volume":"1002392"},"2022-03-15":{"1. open":"146.9700","2. high":"151.5500","3. low":"146.5300","4. close":"151.3900","5. volume":"1843023"},"2022-03-14":{"1. open":"145.9900","2. high":"146.3500","3. low":"143.1900","4. close":"146.1500","5. volume":"1033529"},"2022-03-11":{"1. open":"146.0900","2. high":"147.5300","3. low":"144.4600","4. close":"144.5600","5. volume":"1041283"},"2022-03-10":{"1. open":"145.1000","2. high":"147.6500","3. low":"144.4000","4. close":"146.1700","5. volume":"1311414"},"2022-03-09":{"1. open":"146.4500","2. high":"147.1700","3. low":"145.0000","4. close":"145.8300","5. volume":"1458253"},"2022-03-08":{"1. open":"144.4300","2. high":"146.4865","3. low":"143.1300","4. close":"144.4100","5. volume":"1282625"},"2022-03-07":{"1. open":"146.8900","2. high":"148.4200","3. low":"144.7900","4. close":"144.8400","5. volume":"1411547"},"2022-03-04":{"1. open":"143.5000","2. high":"147.5100","3. low":"143.0900","4. close":"147.3000","5. volume":"1059443"},"2022-03-03":{"1. open":"143.6200","2. high":"145.7300","3. low":"143.4700","4. close":"145.4700","5. volume":"721092"},"2022-03-02":{"1. open":"142.6500","2. high":"144.1100","3. low":"142.1800","4. close":"143.0000","5. volume":"1008228"},"2022-03-01":{"1. open":"142.4400","2. high":"143.3300","3. low":"140.3401","4. close":"141.9700","5. volume":"952564"},"2022-02-28":{"1. open":"139.3100","2. high":"142.7100","3. low":"138.3900","4. close":"142.5300","5. volume":"1241223"},"2022-02-25":{"1. open":"139.2300","2. high":"142.3500","3. low":"139.2300","4. close":"141.9200","5. volume":"1082041"},"2022-02-24":{"1. open":"137.5700","2. high":"137.9300","3. low":"134.7000","4. close":"137.8600","5. volume":"1807873"},"2022-02-23":{"1. open":"141.2300","2. high":"141.7300","3. low":"139.2200","4. close":"139.4700","5. volume":"1095234"},"2022-02-22":{"1. open":"141.6400","2. high":"141.9950","3. low":"139.1500","4. close":"140.5600","5. volume":"976085"},"2022-02-18":{"1. open":"142.1000","2. high":"144.2200","3. low":"141.0100","4. close":"141.5000","5. volume":"1099296"},"2022-02-17":{"1. open":"142.1000","2. high":"143.3300","3. low":"141.3900","4. close":"142.1100","5. volume":"1344016"},"2022-02-16":{"1. open":"140.9900","2. high":"143.0300","3. low":"140.7700","4. close":"142.7300","5. volume":"1433005"},"2022-02-15":{"1. open":"141.5500","2. high":"144.1000","3. low":"140.8400","4. close":"141.4800","5. volume":"1105311"},"2022-02-14":{"1. open":"140.0000","2. high":"140.9300","3. low":"137.7000","4. close":"140.1800","5. volume":"1248204"},"2022-02-11":{"1. open":"141.6800","2. high":"141.9700","3. low":"140.1700","4. close":"140.2400","5. volume":"1250087"},"2022-02-10":{"1. open":"142.0700","2. high":"143.6100","3. low":"140.8800","4. close":"141.5400","5. volume":"1359203"},"2022-02-09":{"1. open":"142.4800","2. high":"143.5600","3. low":"141.0300","4. close":"142.9200","5. volume":"1506066"},"2022-02-08":{"1. open":"139.5700","2. high":"142.9800","3. low":"138.9150","4. close":"142.2400","5. volume":"2163104"},"2022-02-07":{"1. open":"137.0200","2. high":"140.2400","3. low":"135.3900","4. close":"139.4100","5. volume":"1737687"},"2022-02-04":{"1. open":"136.2200","2. high":"137.7900","3. low":"134.6250","4. close":"136.6100","5. volume":"1357829"},"2022-02-03":{"1. open":"137.0900","2. high":"139.3150","3. low":"135.2500","4. close":"137.8800","5. volume":"1114438"},"2022-02-02":{"1. open":"134.3300","2. high":"137.9900","3. low":"132.0000","4. close":"136.0800","5. volume":"1849995"},"2022-02-01":{"1. open":"135.9400","2. high":"137.6900","3. low":"135.3500","4. close":"137.6600","5. volume":"1853844"},"2022-01-31":{"1. open":"135.8500","2. high":"136.6300","3. low":"134.4800","4. close":"136.2000","5. volume":"1102851"},"2022-01-28":{"1. open":"134.5500","2. high":"136.8800","3. low":"132.7500","4. close":"136.8000","5. volume":"858901"},"2022-01-27":{"1. open":"131.0300","2. high":"135.1000","3. low":"131.0300","4. close":"134.6900","5. volume":"1266206"},"2022-01-26":{"1. open":"130.7500","2. high":"132.3093","3. low":"129.0950","4. close":"130.5500","5. volume":"813698"},"2022-01-25":{"1. open":"130.6000","2. high":"131.7500","3. low":"127.9800","4. close":"131.0600","5. volume":"699917"},"2022-01-24":{"1. open":"130.0800","2. high":"132.0000","3. low":"127.9400","4. close":"131.5500","5. volume":"1353920"},"2022-01-21":{"1. open":"133.6200","2. high":"134.1100","3. low":"131.0000","4. close":"131.5200","5. volume":"715886"},"2022-01-20":{"1. open":"132.4600","2. high":"134.9800","3. low":"132.3700","4. close":"132.8800","5. volume":"635660"},"2022-01-19":{"1. open":"133.8000","2. high":"135.2300","3. low":"132.1200","4. close":"132.3900","5. volume":"809621"},"2022-01-18":{"1. open":"135.9300","2. high":"135.9500","3. low":"132.8000","4. close":"133.8100","5. volume":"700483"},"2022-01-14":{"1. open":"134.7500","2. high":"136.3050","3. low":"133.3300","4. close":"136.2000","5. volume":"926949"},"2022-01-13":{"1. open":"135.5000","2. high":"136.2600","3. low":"134.5700","4. close":"134.8900","5. volume":"883617"},"2022-01-12":{"1. open":"135.8400","2. high":"135.8700","3. low":"133.8300","4. close":"135.7100","5. volume":"937283"},"2022-01-11":{"1. open":"135.0000","2. high":"136.9450","3. low":"134.8000","4. close":"136.4500","5. volume":"1557999"},"2022-01-10":{"1. open":"131.3000","2. high":"134.7700","3. low":"130.0500","4. close":"134.6400","5. volume":"1197300"},"2022-01-07":{"1. open":"131.1100","2. high":"133.4800","3. low":"128.9000","4. close":"133.1200","5. volume":"1106632"},"2022-01-06":{"1. open":"132.6700","2. high":"132.9950","3. low":"130.1600","4. close":"130.4500","5. volume":"668303"},"2022-01-05":{"1. open":"131.6900","2. high":"135.1000","3. low":"131.6900","4. close":"132.5000","5. volume":"913666"},"2022-01-04":{"1. open":"132.7800","2. high":"133.2800","3. low":"130.5408","4. close":"131.3600","5. volume":"1111402"},"2022-01-03":{"1. open":"132.5800","2. high":"132.9200","3. low":"130.8700","4. close":"132.6200","5. volume":"977916"},"2021-12-31":{"1. open":"133.8300","2. high":"134.1700","3. low":"132.8400","4. close":"132.8900","5. volume":"580999"},"2021-12-30":{"1. open":"134.0000","2. high":"135.2600","3. low":"133.3500","4. close":"133.7700","5. volume":"540123"},"2021-12-29":{"1. open":"132.3600","2. high":"133.6650","3. low":"132.1900","4. close":"133.3400","5. volume":"787708"},"2021-12-28":{"1. open":"131.7600","2. high":"132.8500","3. low":"131.5000","4. close":"132.3600","5. volume":"602175"},"2021-12-27":{"1. open":"129.9200","2. high":"132.1500","3. low":"129.6001","4. close":"131.9000","5. volume":"497696"},"2021-12-23":{"1. open":"128.3000","2. high":"129.9200","3. low":"127.7500","4. close":"129.5300","5. volume":"717817"},"2021-12-22":{"1. open":"127.3500","2. high":"128.6550","3. low":"126.6100","4. close":"127.8100","5. volume":"602694"},"2021-12-21":{"1. open":"126.8400","2. high":"129.5000","3. low":"126.7450","4. close":"127.6100","5. volume":"1324973"},"2021-12-20":{"1. open":"124.7100","2. high":"126.2900","3. low":"123.2050","4. close":"126.0100","5. volume":"766247"},"2021-12-17":{"1. open":"124.6600","2. high":"126.3599","3. low":"123.6100","4. close":"125.1800","5. volume":"1434968"},"2021-12-16":{"1. open":"124.3300","2. high":"125.9900","3. low":"123.5200","4. close":"123.9800","5. volume":"840326"},"2021-12-15":{"1. open":"123.1700","2. high":"124.0500","3. low":"122.4700","4. close":"123.7700","5. volume":"776688"},"2021-12-14":{"1. open":"122.2300","2. high":"125.1500","3. low":"122.2300","4. close":"123.3000","5. volume":"999311"},"2021-12-13":{"1. open":"123.1300","2. high":"123.5100","3. low":"121.0000","4. close":"122.5200","5. volume":"541719"},"2021-12-10":{"1. open":"122.3000","2. high":"123.4994","3. low":"121.7500","4. close":"123.1300","5. volume":"1229071"},"2021-12-09":{"1. open":"120.3200","2. high":"122.3600","3. low":"119.8350","4. close":"121.6900","5. volume":"1025252"},"2021-12-08":{"1. open":"120.4100","2. high":"121.4900","3. low":"119.4400","4. close":"120.8500","5. volume":"868114"},"2021-12-07":{"1. open":"119.3400","2. high":"120.6400","3. low":"118.4600","4. close":"119.5200","5. volume":"846716"},"2021-12-06":{"1. open":"118.4500","2. high":"120.5819","3. low":"117.7700","4. close":"118.9000","5. volume":"1116217"},"2021-12-03":{"1. open":"116.8800","2. high":"118.8050","3. low":"115.7900","4. close":"116.7600","5. volume":"1251239"},"2021-12-02":{"1. open":"114.5100","2. high":"116.5300","3. low":"113.6800","4. close":"115.8000","5. volume":"1348975"},"2021-12-01":{"1. open":"116.4200","2. high":"117.1400","3. low":"114.0300","4. close":"114.0800","5. volume":"1198322"},"2021-11-30":{"1. open":"119.6500","2. high":"120.0150","3. low":"115.4100","4. close":"115.7500","5. volume":"3201344"},"2021-11-29":{"1. open":"120.7500","2. high":"121.6300","3. low":"119.6400","4. close":"120.2300","5. volume":"896299"},"2021-11-26":{"1. open":"121.9200","2. high":"123.6400","3. low":"119.9300","4. close":"120.2300","5. volume":"613655"},"2021-11-24":{"1. open":"123.2300","2. high":"124.9600","3. low":"122.7900","4. close":"123.4400","5. volume":"577037"},"2021-11-23":{"1. open":"121.2700","2. high":"124.2400","3. low":"120.9900","4. close":"123.6600","5. volume":"1288760"},"2021-11-22":{"1. open":"120.3400","2. high":"122.5900","3. low":"119.7900","4. close":"121.1200","5. volume":"1032983"},"2021-11-19":{"1. open":"125.4900","2. high":"126.1500","3. low":"120.3900","4. close":"120.5200","5. volume":"1533821"},"2021-11-18":{"1. open":"125.0300","2. high":"125.0300","3. low":"123.7300","4. close":"124.4900","5. volume":"592691"},"2021-11-17":{"1. open":"123.8100","2. high":"125.0900","3. low":"123.0700","4. close":"124.6700","5. volume":"1298083"},"2021-11-16":{"1. open":"124.3500","2. high":"125.3300","3. low":"123.8100","4. close":"123.8600","5. volume":"849665"},"2021-11-15":{"1. open":"125.3400","2. high":"125.6800","3. low":"124.0200","4. close":"124.4200","5. volume":"663540"},"2021-11-12":{"1. open":"126.2300","2. high":"127.1400","3. low":"124.8100","4. close":"125.3400","5. volume":"733720"},"2021-11-11":{"1. open":"125.1000","2. high":"125.8850","3. low":"123.8700","4. close":"125.6900","5. volume":"529718"},"2021-11-10":{"1. open":"125.0300","2. high":"126.1400","3. low":"124.9300","4. close":"125.6800","5. volume":"601943"},"2021-11-09":{"1. open":"125.6300","2. high":"126.3800","3. low":"124.5300","4. close":"124.6700","5. volume":"940253"},"2021-11-08":{"1. open":"127.3800","2. high":"128.0000","3. low":"125.7600","4. close":"125.9800","5. volume":"974197"},"2021-11-05":{"1. open":"126.5400","2. high":"129.5450","3. low":"126.1700","4. close":"127.5700","5. volume":"762788"},"2021-11-04":{"1. open":"126.0000","2. high":"128.0900","3. low":"123.2000","4. close":"126.7800","5. volume":"974246"},"2021-11-03":{"1. open":"124.8200","2. high":"128.6200","3. low":"124.5800","4. close":"128.2900","5. volume":"1138020"},"2021-11-02":{"1. open":"124.4900","2. high":"126.4800","3. low":"122.7400","4. close":"125.2000","5. volume":"1210625"},"2021-11-01":{"1. open":"122.4200","2. high":"123.7450","3. low":"122.2000","4. close":"122.8100","5. volume":"685897"}}} \ No newline at end of file +{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"ABC","3. Last Refreshed":"2022-03-28","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-28":{"1. open":"154.0500","2. high":"154.8000","3. low":"152.5100","4. close":"154.7300","5. volume":"676494"},"2022-03-25":{"1. open":"152.8400","2. high":"155.3400","3. low":"152.7050","4. close":"154.6900","5. volume":"758620"},"2022-03-24":{"1. open":"152.4800","2. high":"152.8700","3. low":"151.2900","4. close":"152.6100","5. volume":"696764"},"2022-03-23":{"1. open":"152.0100","2. high":"152.5600","3. low":"150.5400","4. close":"151.5300","5. volume":"1038349"},"2022-03-22":{"1. open":"153.8100","2. high":"154.6700","3. low":"151.6100","4. close":"152.1100","5. volume":"1057456"},"2022-03-21":{"1. open":"152.6000","2. high":"155.7600","3. low":"152.4500","4. close":"153.1800","5. volume":"1049168"},"2022-03-18":{"1. open":"152.2100","2. high":"152.4500","3. low":"150.1100","4. close":"152.0000","5. volume":"2034634"},"2022-03-17":{"1. open":"150.0300","2. high":"152.4000","3. low":"149.6900","4. close":"152.2000","5. volume":"1291316"},"2022-03-16":{"1. open":"151.6800","2. high":"153.0548","3. low":"148.3200","4. close":"150.5000","5. volume":"1002392"},"2022-03-15":{"1. open":"146.9700","2. high":"151.5500","3. low":"146.5300","4. close":"151.3900","5. volume":"1843023"},"2022-03-14":{"1. open":"145.9900","2. high":"146.3500","3. low":"143.1900","4. close":"146.1500","5. volume":"1033529"},"2022-03-11":{"1. open":"146.0900","2. high":"147.5300","3. low":"144.4600","4. close":"144.5600","5. volume":"1041283"},"2022-03-10":{"1. open":"145.1000","2. high":"147.6500","3. low":"144.4000","4. close":"146.1700","5. volume":"1311414"},"2022-03-09":{"1. open":"146.4500","2. high":"147.1700","3. low":"145.0000","4. close":"145.8300","5. volume":"1458253"},"2022-03-08":{"1. open":"144.4300","2. high":"146.4865","3. low":"143.1300","4. close":"144.4100","5. volume":"1282625"},"2022-03-07":{"1. open":"146.8900","2. high":"148.4200","3. low":"144.7900","4. close":"144.8400","5. volume":"1411547"},"2022-03-04":{"1. open":"143.5000","2. high":"147.5100","3. low":"143.0900","4. close":"147.3000","5. volume":"1059443"},"2022-03-03":{"1. open":"143.6200","2. high":"145.7300","3. low":"143.4700","4. close":"145.4700","5. volume":"721092"},"2022-03-02":{"1. open":"142.6500","2. high":"144.1100","3. low":"142.1800","4. close":"143.0000","5. volume":"1008228"},"2022-03-01":{"1. open":"142.4400","2. high":"143.3300","3. low":"140.3401","4. close":"141.9700","5. volume":"952564"},"2022-02-28":{"1. open":"139.3100","2. high":"142.7100","3. low":"138.3900","4. close":"142.5300","5. volume":"1241223"},"2022-02-25":{"1. open":"139.2300","2. high":"142.3500","3. low":"139.2300","4. close":"141.9200","5. volume":"1082041"},"2022-02-24":{"1. open":"137.5700","2. high":"137.9300","3. low":"134.7000","4. close":"137.8600","5. volume":"1807873"},"2022-02-23":{"1. open":"141.2300","2. high":"141.7300","3. low":"139.2200","4. close":"139.4700","5. volume":"1095234"},"2022-02-22":{"1. open":"141.6400","2. high":"141.9950","3. low":"139.1500","4. close":"140.5600","5. volume":"976085"},"2022-02-18":{"1. open":"142.1000","2. high":"144.2200","3. low":"141.0100","4. close":"141.5000","5. volume":"1099296"},"2022-02-17":{"1. open":"142.1000","2. high":"143.3300","3. low":"141.3900","4. close":"142.1100","5. volume":"1344016"},"2022-02-16":{"1. open":"140.9900","2. high":"143.0300","3. low":"140.7700","4. close":"142.7300","5. volume":"1433005"},"2022-02-15":{"1. open":"141.5500","2. high":"144.1000","3. low":"140.8400","4. close":"141.4800","5. volume":"1105311"},"2022-02-14":{"1. open":"140.0000","2. high":"140.9300","3. low":"137.7000","4. close":"140.1800","5. volume":"1248204"},"2022-02-11":{"1. open":"141.6800","2. high":"141.9700","3. low":"140.1700","4. close":"140.2400","5. volume":"1250087"},"2022-02-10":{"1. open":"142.0700","2. high":"143.6100","3. low":"140.8800","4. close":"141.5400","5. volume":"1359203"},"2022-02-09":{"1. open":"142.4800","2. high":"143.5600","3. low":"141.0300","4. close":"142.9200","5. volume":"1506066"},"2022-02-08":{"1. open":"139.5700","2. high":"142.9800","3. low":"138.9150","4. close":"142.2400","5. volume":"2163104"},"2022-02-07":{"1. open":"137.0200","2. high":"140.2400","3. low":"135.3900","4. close":"139.4100","5. volume":"1737687"},"2022-02-04":{"1. open":"136.2200","2. high":"137.7900","3. low":"134.6250","4. close":"136.6100","5. volume":"1357829"},"2022-02-03":{"1. open":"137.0900","2. high":"139.3150","3. low":"135.2500","4. close":"137.8800","5. volume":"1114438"},"2022-02-02":{"1. open":"134.3300","2. high":"137.9900","3. low":"132.0000","4. close":"136.0800","5. volume":"1849995"},"2022-02-01":{"1. open":"135.9400","2. high":"137.6900","3. low":"135.3500","4. close":"137.6600","5. volume":"1853844"},"2022-01-31":{"1. open":"135.8500","2. high":"136.6300","3. low":"134.4800","4. close":"136.2000","5. volume":"1102851"},"2022-01-28":{"1. open":"134.5500","2. high":"136.8800","3. low":"132.7500","4. close":"136.8000","5. volume":"858901"},"2022-01-27":{"1. open":"131.0300","2. high":"135.1000","3. low":"131.0300","4. close":"134.6900","5. volume":"1266206"},"2022-01-26":{"1. open":"130.7500","2. high":"132.3093","3. low":"129.0950","4. close":"130.5500","5. volume":"813698"},"2022-01-25":{"1. open":"130.6000","2. high":"131.7500","3. low":"127.9800","4. close":"131.0600","5. volume":"699917"},"2022-01-24":{"1. open":"130.0800","2. high":"132.0000","3. low":"127.9400","4. close":"131.5500","5. volume":"1353920"},"2022-01-21":{"1. open":"133.6200","2. high":"134.1100","3. low":"131.0000","4. close":"131.5200","5. volume":"715886"},"2022-01-20":{"1. open":"132.4600","2. high":"134.9800","3. low":"132.3700","4. close":"132.8800","5. volume":"635660"},"2022-01-19":{"1. open":"133.8000","2. high":"135.2300","3. low":"132.1200","4. close":"132.3900","5. volume":"809621"},"2022-01-18":{"1. open":"135.9300","2. high":"135.9500","3. low":"132.8000","4. close":"133.8100","5. volume":"700483"},"2022-01-14":{"1. open":"134.7500","2. high":"136.3050","3. low":"133.3300","4. close":"136.2000","5. volume":"926949"},"2022-01-13":{"1. open":"135.5000","2. high":"136.2600","3. low":"134.5700","4. close":"134.8900","5. volume":"883617"},"2022-01-12":{"1. open":"135.8400","2. high":"135.8700","3. low":"133.8300","4. close":"135.7100","5. volume":"937283"},"2022-01-11":{"1. open":"135.0000","2. high":"136.9450","3. low":"134.8000","4. close":"136.4500","5. volume":"1557999"},"2022-01-10":{"1. open":"131.3000","2. high":"134.7700","3. low":"130.0500","4. close":"134.6400","5. volume":"1197300"},"2022-01-07":{"1. open":"131.1100","2. high":"133.4800","3. low":"128.9000","4. close":"133.1200","5. volume":"1106632"},"2022-01-06":{"1. open":"132.6700","2. high":"132.9950","3. low":"130.1600","4. close":"130.4500","5. volume":"668303"},"2022-01-05":{"1. open":"131.6900","2. high":"135.1000","3. low":"131.6900","4. close":"132.5000","5. volume":"913666"},"2022-01-04":{"1. open":"132.7800","2. high":"133.2800","3. low":"130.5408","4. close":"131.3600","5. volume":"1111402"},"2022-01-03":{"1. open":"132.5800","2. high":"132.9200","3. low":"130.8700","4. close":"132.6200","5. volume":"977916"},"2021-12-31":{"1. open":"133.8300","2. high":"134.1700","3. low":"132.8400","4. close":"132.8900","5. volume":"580999"},"2021-12-30":{"1. open":"134.0000","2. high":"135.2600","3. low":"133.3500","4. close":"133.7700","5. volume":"540123"},"2021-12-29":{"1. open":"132.3600","2. high":"133.6650","3. low":"132.1900","4. close":"133.3400","5. volume":"787708"},"2021-12-28":{"1. open":"131.7600","2. high":"132.8500","3. low":"131.5000","4. close":"132.3600","5. volume":"602175"},"2021-12-27":{"1. open":"129.9200","2. high":"132.1500","3. low":"129.6001","4. close":"131.9000","5. volume":"497696"},"2021-12-23":{"1. open":"128.3000","2. high":"129.9200","3. low":"127.7500","4. close":"129.5300","5. volume":"717817"},"2021-12-22":{"1. open":"127.3500","2. high":"128.6550","3. low":"126.6100","4. close":"127.8100","5. volume":"602694"},"2021-12-21":{"1. open":"126.8400","2. high":"129.5000","3. low":"126.7450","4. close":"127.6100","5. volume":"1324973"},"2021-12-20":{"1. open":"124.7100","2. high":"126.2900","3. low":"123.2050","4. close":"126.0100","5. volume":"766247"},"2021-12-17":{"1. open":"124.6600","2. high":"126.3599","3. low":"123.6100","4. close":"125.1800","5. volume":"1434968"},"2021-12-16":{"1. open":"124.3300","2. high":"125.9900","3. low":"123.5200","4. close":"123.9800","5. volume":"840326"},"2021-12-15":{"1. open":"123.1700","2. high":"124.0500","3. low":"122.4700","4. close":"123.7700","5. volume":"776688"},"2021-12-14":{"1. open":"122.2300","2. high":"125.1500","3. low":"122.2300","4. close":"123.3000","5. volume":"999311"},"2021-12-13":{"1. open":"123.1300","2. high":"123.5100","3. low":"121.0000","4. close":"122.5200","5. volume":"541719"},"2021-12-10":{"1. open":"122.3000","2. high":"123.4994","3. low":"121.7500","4. close":"123.1300","5. volume":"1229071"},"2021-12-09":{"1. open":"120.3200","2. high":"122.3600","3. low":"119.8350","4. close":"121.6900","5. volume":"1025252"},"2021-12-08":{"1. open":"120.4100","2. high":"121.4900","3. low":"119.4400","4. close":"120.8500","5. volume":"868114"},"2021-12-07":{"1. open":"119.3400","2. high":"120.6400","3. low":"118.4600","4. close":"119.5200","5. volume":"846716"},"2021-12-06":{"1. open":"118.4500","2. high":"120.5819","3. low":"117.7700","4. close":"118.9000","5. volume":"1116217"},"2021-12-03":{"1. open":"116.8800","2. high":"118.8050","3. low":"115.7900","4. close":"116.7600","5. volume":"1251239"},"2021-12-02":{"1. open":"114.5100","2. high":"116.5300","3. low":"113.6800","4. close":"115.8000","5. volume":"1348975"},"2021-12-01":{"1. open":"116.4200","2. high":"117.1400","3. low":"114.0300","4. close":"114.0800","5. volume":"1198322"},"2021-11-30":{"1. open":"119.6500","2. high":"120.0150","3. low":"115.4100","4. close":"115.7500","5. volume":"3201344"},"2021-11-29":{"1. open":"120.7500","2. high":"121.6300","3. low":"119.6400","4. close":"120.2300","5. volume":"896299"},"2021-11-26":{"1. open":"121.9200","2. high":"123.6400","3. low":"119.9300","4. close":"120.2300","5. volume":"613655"},"2021-11-24":{"1. open":"123.2300","2. high":"124.9600","3. low":"122.7900","4. close":"123.4400","5. volume":"577037"},"2021-11-23":{"1. open":"121.2700","2. high":"124.2400","3. low":"120.9900","4. close":"123.6600","5. volume":"1288760"},"2021-11-22":{"1. open":"120.3400","2. high":"122.5900","3. low":"119.7900","4. close":"121.1200","5. volume":"1032983"},"2021-11-19":{"1. open":"125.4900","2. high":"126.1500","3. low":"120.3900","4. close":"120.5200","5. volume":"1533821"},"2021-11-18":{"1. open":"125.0300","2. high":"125.0300","3. low":"123.7300","4. close":"124.4900","5. volume":"592691"},"2021-11-17":{"1. open":"123.8100","2. high":"125.0900","3. low":"123.0700","4. close":"124.6700","5. volume":"1298083"},"2021-11-16":{"1. open":"124.3500","2. high":"125.3300","3. low":"123.8100","4. close":"123.8600","5. volume":"849665"},"2021-11-15":{"1. open":"125.3400","2. high":"125.6800","3. low":"124.0200","4. close":"124.4200","5. volume":"663540"},"2021-11-12":{"1. open":"126.2300","2. high":"127.1400","3. low":"124.8100","4. close":"125.3400","5. volume":"733720"},"2021-11-11":{"1. open":"125.1000","2. high":"125.8850","3. low":"123.8700","4. close":"125.6900","5. volume":"529718"},"2021-11-10":{"1. open":"125.0300","2. high":"126.1400","3. low":"124.9300","4. close":"125.6800","5. volume":"601943"},"2021-11-09":{"1. open":"125.6300","2. high":"126.3800","3. low":"124.5300","4. close":"124.6700","5. volume":"940253"},"2021-11-08":{"1. open":"127.3800","2. high":"128.0000","3. low":"125.7600","4. close":"125.9800","5. volume":"974197"},"2021-11-05":{"1. open":"126.5400","2. high":"129.5450","3. low":"126.1700","4. close":"127.5700","5. volume":"762788"},"2021-11-04":{"1. open":"126.0000","2. high":"128.0900","3. low":"123.2000","4. close":"126.7800","5. volume":"974246"},"2021-11-03":{"1. open":"124.8200","2. high":"128.6200","3. low":"124.5800","4. close":"128.2900","5. volume":"1138020"}}} \ No newline at end of file diff --git a/Backend/data/daily_ABR.json b/Backend/data/daily_ABR.json new file mode 100644 index 00000000..a2746478 --- /dev/null +++ b/Backend/data/daily_ABR.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"ABR","3. Last Refreshed":"2022-03-28","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-28":{"1. open":"17.1800","2. high":"17.3000","3. low":"17.0900","4. close":"17.1900","5. volume":"1526730"},"2022-03-25":{"1. open":"17.2300","2. high":"17.3500","3. low":"17.0700","4. close":"17.1700","5. volume":"1830322"},"2022-03-24":{"1. open":"16.9700","2. high":"17.3000","3. low":"16.9100","4. close":"17.2200","5. volume":"1709315"},"2022-03-23":{"1. open":"17.1500","2. high":"17.3600","3. low":"16.9600","4. close":"16.9600","5. volume":"2447604"},"2022-03-22":{"1. open":"17.0900","2. high":"17.4100","3. low":"17.0900","4. close":"17.1500","5. volume":"3677680"},"2022-03-21":{"1. open":"17.3500","2. high":"17.4100","3. low":"17.0100","4. close":"17.0100","5. volume":"3377156"},"2022-03-18":{"1. open":"17.1800","2. high":"17.5500","3. low":"17.1300","4. close":"17.2700","5. volume":"6420461"},"2022-03-17":{"1. open":"17.5400","2. high":"17.7700","3. low":"17.5200","4. close":"17.6300","5. volume":"2560704"},"2022-03-16":{"1. open":"17.3400","2. high":"17.5800","3. low":"17.2200","4. close":"17.5200","5. volume":"2547446"},"2022-03-15":{"1. open":"17.3000","2. high":"17.4900","3. low":"17.1900","4. close":"17.2600","5. volume":"2755598"},"2022-03-14":{"1. open":"17.6600","2. high":"17.7500","3. low":"17.2450","4. close":"17.2700","5. volume":"2084064"},"2022-03-11":{"1. open":"17.6900","2. high":"17.8873","3. low":"17.4800","4. close":"17.4900","5. volume":"1635712"},"2022-03-10":{"1. open":"17.4000","2. high":"17.6300","3. low":"17.2700","4. close":"17.6300","5. volume":"1401018"},"2022-03-09":{"1. open":"17.8300","2. high":"17.9100","3. low":"17.4600","4. close":"17.4800","5. volume":"1739164"},"2022-03-08":{"1. open":"17.4000","2. high":"17.7500","3. low":"17.3267","4. close":"17.5200","5. volume":"2508595"},"2022-03-07":{"1. open":"17.7100","2. high":"17.7700","3. low":"17.3400","4. close":"17.3400","5. volume":"2230998"},"2022-03-04":{"1. open":"17.5000","2. high":"17.7300","3. low":"17.4100","4. close":"17.6900","5. volume":"1987528"},"2022-03-03":{"1. open":"17.8000","2. high":"17.9000","3. low":"17.3400","4. close":"17.6100","5. volume":"2304274"},"2022-03-02":{"1. open":"17.8000","2. high":"18.0900","3. low":"17.7700","4. close":"18.0600","5. volume":"2217813"},"2022-03-01":{"1. open":"18.0100","2. high":"18.0400","3. low":"17.4100","4. close":"17.7500","5. volume":"2478692"},"2022-02-28":{"1. open":"17.7300","2. high":"18.0800","3. low":"17.6893","4. close":"18.0000","5. volume":"3565843"},"2022-02-25":{"1. open":"17.7000","2. high":"17.9100","3. low":"17.5700","4. close":"17.8800","5. volume":"2238670"},"2022-02-24":{"1. open":"16.9300","2. high":"17.7000","3. low":"16.7500","4. close":"17.5900","5. volume":"2577052"},"2022-02-23":{"1. open":"17.4900","2. high":"17.6700","3. low":"17.2645","4. close":"17.3300","5. volume":"2037457"},"2022-02-22":{"1. open":"17.3500","2. high":"17.5800","3. low":"17.1500","4. close":"17.4100","5. volume":"2583344"},"2022-02-18":{"1. open":"17.0700","2. high":"17.4700","3. low":"17.0000","4. close":"17.3300","5. volume":"2287533"},"2022-02-17":{"1. open":"16.9900","2. high":"17.0000","3. low":"16.7200","4. close":"16.7300","5. volume":"1764996"},"2022-02-16":{"1. open":"17.0000","2. high":"17.1200","3. low":"16.9100","4. close":"17.0400","5. volume":"1350864"},"2022-02-15":{"1. open":"16.9050","2. high":"17.0700","3. low":"16.9050","4. close":"17.0300","5. volume":"990191"},"2022-02-14":{"1. open":"17.0000","2. high":"17.2000","3. low":"16.6850","4. close":"16.7500","5. volume":"1648226"},"2022-02-11":{"1. open":"17.1200","2. high":"17.3500","3. low":"16.8700","4. close":"17.0700","5. volume":"1682567"},"2022-02-10":{"1. open":"17.2900","2. high":"17.6297","3. low":"17.0600","4. close":"17.1100","5. volume":"1952613"},"2022-02-09":{"1. open":"17.4400","2. high":"17.6050","3. low":"17.4000","4. close":"17.4700","5. volume":"1569223"},"2022-02-08":{"1. open":"17.1100","2. high":"17.3700","3. low":"17.0900","4. close":"17.2100","5. volume":"1831029"},"2022-02-07":{"1. open":"17.1500","2. high":"17.4400","3. low":"17.1170","4. close":"17.2000","5. volume":"1103639"},"2022-02-04":{"1. open":"17.0400","2. high":"17.2300","3. low":"16.8450","4. close":"17.0600","5. volume":"1678813"},"2022-02-03":{"1. open":"17.2200","2. high":"17.3500","3. low":"17.0600","4. close":"17.0600","5. volume":"2037122"},"2022-02-02":{"1. open":"17.5700","2. high":"17.5800","3. low":"17.1600","4. close":"17.3400","5. volume":"1662316"},"2022-02-01":{"1. open":"17.5400","2. high":"17.6000","3. low":"17.2100","4. close":"17.5700","5. volume":"1531704"},"2022-01-31":{"1. open":"17.0000","2. high":"17.5200","3. low":"17.0000","4. close":"17.5100","5. volume":"1422489"},"2022-01-28":{"1. open":"17.0000","2. high":"17.0700","3. low":"16.5400","4. close":"17.0600","5. volume":"1720627"},"2022-01-27":{"1. open":"17.4500","2. high":"17.5500","3. low":"16.8200","4. close":"16.9900","5. volume":"2017719"},"2022-01-26":{"1. open":"17.5300","2. high":"17.7250","3. low":"17.1100","4. close":"17.2600","5. volume":"2041753"},"2022-01-25":{"1. open":"16.8400","2. high":"17.4300","3. low":"16.6550","4. close":"17.3100","5. volume":"1772102"},"2022-01-24":{"1. open":"16.5000","2. high":"17.0800","3. low":"16.1100","4. close":"17.0500","5. volume":"4378424"},"2022-01-21":{"1. open":"17.4900","2. high":"17.5600","3. low":"17.0100","4. close":"17.0200","5. volume":"2896014"},"2022-01-20":{"1. open":"18.0000","2. high":"18.1300","3. low":"17.6350","4. close":"17.6500","5. volume":"1826381"},"2022-01-19":{"1. open":"18.2500","2. high":"18.3100","3. low":"17.9800","4. close":"18.0100","5. volume":"1275866"},"2022-01-18":{"1. open":"18.3800","2. high":"18.4900","3. low":"18.2200","4. close":"18.2500","5. volume":"1034380"},"2022-01-14":{"1. open":"18.5000","2. high":"18.5200","3. low":"18.3017","4. close":"18.4800","5. volume":"1242342"},"2022-01-13":{"1. open":"18.7500","2. high":"18.8500","3. low":"18.6200","4. close":"18.6800","5. volume":"1244125"},"2022-01-12":{"1. open":"18.8300","2. high":"18.8608","3. low":"18.6100","4. close":"18.7000","5. volume":"1429704"},"2022-01-11":{"1. open":"18.7500","2. high":"18.8700","3. low":"18.6199","4. close":"18.7600","5. volume":"1130837"},"2022-01-10":{"1. open":"18.7400","2. high":"18.7600","3. low":"18.5100","4. close":"18.7200","5. volume":"1363654"},"2022-01-07":{"1. open":"18.6800","2. high":"18.8799","3. low":"18.6350","4. close":"18.7400","5. volume":"1021245"},"2022-01-06":{"1. open":"18.5700","2. high":"18.7950","3. low":"18.5000","4. close":"18.6600","5. volume":"1102240"},"2022-01-05":{"1. open":"18.7400","2. high":"18.8200","3. low":"18.4200","4. close":"18.4500","5. volume":"1467131"},"2022-01-04":{"1. open":"18.7100","2. high":"18.8800","3. low":"18.6200","4. close":"18.7400","5. volume":"1561199"},"2022-01-03":{"1. open":"18.4000","2. high":"18.7000","3. low":"18.4000","4. close":"18.5900","5. volume":"1414413"},"2021-12-31":{"1. open":"18.4300","2. high":"18.5100","3. low":"18.2500","4. close":"18.3200","5. volume":"1059237"},"2021-12-30":{"1. open":"18.4700","2. high":"18.6684","3. low":"18.4000","4. close":"18.4300","5. volume":"1145944"},"2021-12-29":{"1. open":"18.4300","2. high":"18.5200","3. low":"18.2500","4. close":"18.4900","5. volume":"767544"},"2021-12-28":{"1. open":"18.2500","2. high":"18.5150","3. low":"18.2301","4. close":"18.3300","5. volume":"1007317"},"2021-12-27":{"1. open":"18.1700","2. high":"18.2600","3. low":"17.9700","4. close":"18.2500","5. volume":"1245830"},"2021-12-23":{"1. open":"18.0100","2. high":"18.2400","3. low":"17.9700","4. close":"18.1200","5. volume":"1090156"},"2021-12-22":{"1. open":"17.5000","2. high":"18.0250","3. low":"17.4500","4. close":"17.9600","5. volume":"1529060"},"2021-12-21":{"1. open":"16.9400","2. high":"17.5100","3. low":"16.8500","4. close":"17.4200","5. volume":"1932271"},"2021-12-20":{"1. open":"16.8200","2. high":"16.8400","3. low":"16.1900","4. close":"16.7000","5. volume":"3167624"},"2021-12-17":{"1. open":"17.3100","2. high":"17.3500","3. low":"16.8700","4. close":"17.0700","5. volume":"5129861"},"2021-12-16":{"1. open":"17.8100","2. high":"17.8800","3. low":"17.3700","4. close":"17.4000","5. volume":"1374256"},"2021-12-15":{"1. open":"17.5000","2. high":"17.7100","3. low":"17.3100","4. close":"17.6100","5. volume":"1663129"},"2021-12-14":{"1. open":"17.8700","2. high":"18.0000","3. low":"17.4600","4. close":"17.4900","5. volume":"1676324"},"2021-12-13":{"1. open":"18.1100","2. high":"18.1400","3. low":"17.8200","4. close":"17.8900","5. volume":"1503820"},"2021-12-10":{"1. open":"18.2700","2. high":"18.4500","3. low":"18.0800","4. close":"18.1600","5. volume":"1336409"},"2021-12-09":{"1. open":"18.3000","2. high":"18.3150","3. low":"18.0800","4. close":"18.1000","5. volume":"662729"},"2021-12-08":{"1. open":"18.2600","2. high":"18.4700","3. low":"18.1700","4. close":"18.3600","5. volume":"1207835"},"2021-12-07":{"1. open":"17.9900","2. high":"18.3400","3. low":"17.9800","4. close":"18.2600","5. volume":"1612091"},"2021-12-06":{"1. open":"17.5800","2. high":"17.9870","3. low":"17.4750","4. close":"17.8800","5. volume":"1654723"},"2021-12-03":{"1. open":"17.7600","2. high":"17.8200","3. low":"17.3950","4. close":"17.4200","5. volume":"1445774"},"2021-12-02":{"1. open":"17.4000","2. high":"17.7900","3. low":"17.2100","4. close":"17.6700","5. volume":"1694742"},"2021-12-01":{"1. open":"17.8700","2. high":"18.1500","3. low":"17.3200","4. close":"17.3500","5. volume":"2422221"},"2021-11-30":{"1. open":"18.0300","2. high":"18.1600","3. low":"17.5500","4. close":"17.5500","5. volume":"2908664"},"2021-11-29":{"1. open":"18.3400","2. high":"18.3700","3. low":"17.8500","4. close":"18.0600","5. volume":"1448334"},"2021-11-26":{"1. open":"18.1000","2. high":"18.1600","3. low":"17.8100","4. close":"18.1100","5. volume":"1361103"},"2021-11-24":{"1. open":"18.3100","2. high":"18.5800","3. low":"18.2000","4. close":"18.5000","5. volume":"717110"},"2021-11-23":{"1. open":"18.0900","2. high":"18.4350","3. low":"18.0600","4. close":"18.3900","5. volume":"1434751"},"2021-11-22":{"1. open":"18.4100","2. high":"18.5800","3. low":"18.0800","4. close":"18.1000","5. volume":"1731080"},"2021-11-19":{"1. open":"18.3500","2. high":"18.4700","3. low":"18.2700","4. close":"18.4000","5. volume":"1323121"},"2021-11-18":{"1. open":"18.8000","2. high":"18.8800","3. low":"18.2700","4. close":"18.3900","5. volume":"1728696"},"2021-11-17":{"1. open":"19.0000","2. high":"19.0456","3. low":"18.6100","4. close":"18.7400","5. volume":"1712895"},"2021-11-16":{"1. open":"19.2000","2. high":"19.2100","3. low":"19.0350","4. close":"19.0700","5. volume":"923972"},"2021-11-15":{"1. open":"19.2100","2. high":"19.3200","3. low":"19.1200","4. close":"19.2000","5. volume":"1150489"},"2021-11-12":{"1. open":"19.5100","2. high":"19.5400","3. low":"19.2000","4. close":"19.2100","5. volume":"2062547"},"2021-11-11":{"1. open":"19.7000","2. high":"19.9600","3. low":"19.6800","4. close":"19.9200","5. volume":"1248206"},"2021-11-10":{"1. open":"19.7100","2. high":"19.8800","3. low":"19.5900","4. close":"19.6800","5. volume":"1357277"},"2021-11-09":{"1. open":"19.8700","2. high":"19.9600","3. low":"19.7100","4. close":"19.7700","5. volume":"1581086"},"2021-11-08":{"1. open":"19.7500","2. high":"19.9300","3. low":"19.7100","4. close":"19.7500","5. volume":"1965902"},"2021-11-05":{"1. open":"19.7500","2. high":"19.8400","3. low":"19.5800","4. close":"19.6300","5. volume":"1469736"},"2021-11-04":{"1. open":"19.7500","2. high":"19.7600","3. low":"19.4800","4. close":"19.6400","5. volume":"1387431"},"2021-11-03":{"1. open":"19.6000","2. high":"19.7500","3. low":"19.3700","4. close":"19.6000","5. volume":"3589088"}}} \ No newline at end of file diff --git a/Backend/data/daily_ABT.json b/Backend/data/daily_ABT.json index 74d71a1b..b07cc9b2 100644 --- a/Backend/data/daily_ABT.json +++ b/Backend/data/daily_ABT.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"ABT","3. Last Refreshed":"2022-03-24","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-24":{"1. open":"117.3800","2. high":"117.8800","3. low":"116.6100","4. close":"117.8200","5. volume":"4505761"},"2022-03-23":{"1. open":"121.1100","2. high":"121.2400","3. low":"116.7350","4. close":"116.9200","5. volume":"5656038"},"2022-03-22":{"1. open":"121.8900","2. high":"122.5300","3. low":"121.2600","4. close":"121.8900","5. volume":"4287642"},"2022-03-21":{"1. open":"121.9300","2. high":"123.0962","3. low":"121.1600","4. close":"121.7600","5. volume":"4092450"},"2022-03-18":{"1. open":"121.7400","2. high":"122.6700","3. low":"120.6800","4. close":"122.4500","5. volume":"7677471"},"2022-03-17":{"1. open":"119.0000","2. high":"121.2400","3. low":"118.7300","4. close":"121.2000","5. volume":"3998929"},"2022-03-16":{"1. open":"118.2100","2. high":"119.5400","3. low":"116.9600","4. close":"119.4800","5. volume":"4441833"},"2022-03-15":{"1. open":"117.5000","2. high":"117.7900","3. low":"116.2200","4. close":"117.4800","5. volume":"5041193"},"2022-03-14":{"1. open":"114.9000","2. high":"117.2100","3. low":"114.5800","4. close":"115.5200","5. volume":"5527517"},"2022-03-11":{"1. open":"117.4400","2. high":"118.0600","3. low":"113.8800","4. close":"114.0200","5. volume":"8012571"},"2022-03-10":{"1. open":"117.1800","2. high":"117.8100","3. low":"115.7300","4. close":"117.0000","5. volume":"4377620"},"2022-03-09":{"1. open":"117.9000","2. high":"119.2000","3. low":"116.4400","4. close":"118.3900","5. volume":"5004766"},"2022-03-08":{"1. open":"117.9100","2. high":"119.0200","3. low":"115.7100","4. close":"116.1100","5. volume":"6694194"},"2022-03-07":{"1. open":"120.5400","2. high":"120.8900","3. low":"117.2600","4. close":"118.8600","5. volume":"6632006"},"2022-03-04":{"1. open":"119.9300","2. high":"121.7600","3. low":"119.0100","4. close":"121.4100","5. volume":"5911494"},"2022-03-03":{"1. open":"120.8000","2. high":"122.0700","3. low":"120.4900","4. close":"120.9700","5. volume":"5223115"},"2022-03-02":{"1. open":"118.6200","2. high":"121.0500","3. low":"118.2600","4. close":"120.3600","5. volume":"6419829"},"2022-03-01":{"1. open":"120.3100","2. high":"121.1600","3. low":"117.3800","4. close":"118.1700","5. volume":"6697813"},"2022-02-28":{"1. open":"121.0500","2. high":"121.0582","3. low":"119.1500","4. close":"120.6200","5. volume":"6828353"},"2022-02-25":{"1. open":"118.7200","2. high":"122.9300","3. low":"118.5000","4. close":"122.4100","5. volume":"5837687"},"2022-02-24":{"1. open":"115.0000","2. high":"118.9150","3. low":"114.4275","4. close":"118.7200","5. volume":"6252741"},"2022-02-23":{"1. open":"118.0000","2. high":"118.8399","3. low":"116.9900","4. close":"117.2500","5. volume":"5184241"},"2022-02-22":{"1. open":"116.5400","2. high":"119.3300","3. low":"116.1000","4. close":"117.5100","5. volume":"6584991"},"2022-02-18":{"1. open":"120.0000","2. high":"120.3100","3. low":"114.8400","4. close":"116.7900","5. volume":"12376135"},"2022-02-17":{"1. open":"122.9900","2. high":"123.1800","3. low":"120.4700","4. close":"120.5800","5. volume":"3688344"},"2022-02-16":{"1. open":"123.4500","2. high":"124.1100","3. low":"121.5600","4. close":"123.6800","5. volume":"5078173"},"2022-02-15":{"1. open":"124.1870","2. high":"125.4199","3. low":"123.4131","4. close":"123.9800","5. volume":"5297968"},"2022-02-14":{"1. open":"125.0000","2. high":"125.5700","3. low":"121.9800","4. close":"122.7800","5. volume":"7433877"},"2022-02-11":{"1. open":"127.7800","2. high":"128.9200","3. low":"125.1500","4. close":"125.4900","5. volume":"4803244"},"2022-02-10":{"1. open":"128.5700","2. high":"129.9200","3. low":"127.1700","4. close":"127.7600","5. volume":"5917727"},"2022-02-09":{"1. open":"129.5200","2. high":"130.7900","3. low":"129.4200","4. close":"130.4900","5. volume":"3434199"},"2022-02-08":{"1. open":"127.5300","2. high":"128.9400","3. low":"127.1600","4. close":"128.6500","5. volume":"3890854"},"2022-02-07":{"1. open":"129.8700","2. high":"129.9500","3. low":"127.6800","4. close":"128.0500","5. volume":"4035240"},"2022-02-04":{"1. open":"129.5600","2. high":"130.5200","3. low":"128.6000","4. close":"129.7100","5. volume":"4149683"},"2022-02-03":{"1. open":"128.6300","2. high":"130.9350","3. low":"128.2573","4. close":"130.1100","5. volume":"5613547"},"2022-02-02":{"1. open":"128.2500","2. high":"130.7400","3. low":"127.8600","4. close":"130.0400","5. volume":"7450501"},"2022-02-01":{"1. open":"127.3700","2. high":"127.6600","3. low":"126.2400","4. close":"127.2000","5. volume":"5602013"},"2022-01-31":{"1. open":"125.5200","2. high":"127.9600","3. low":"125.1300","4. close":"127.4600","5. volume":"7210140"},"2022-01-28":{"1. open":"120.7700","2. high":"125.5300","3. low":"119.6100","4. close":"125.3500","5. volume":"8286467"},"2022-01-27":{"1. open":"120.9800","2. high":"123.1700","3. low":"119.7400","4. close":"120.4400","5. volume":"9180134"},"2022-01-26":{"1. open":"119.1900","2. high":"121.6800","3. low":"119.0000","4. close":"120.0700","5. volume":"14753096"},"2022-01-25":{"1. open":"123.0800","2. high":"124.6217","3. low":"121.5900","4. close":"123.2700","5. volume":"9126620"},"2022-01-24":{"1. open":"124.0100","2. high":"124.5000","3. low":"120.6800","4. close":"123.8200","5. volume":"10868714"},"2022-01-21":{"1. open":"126.8100","2. high":"127.0900","3. low":"124.8600","4. close":"125.8300","5. volume":"10132682"},"2022-01-20":{"1. open":"126.2400","2. high":"127.9100","3. low":"124.6100","4. close":"124.7100","5. volume":"8652569"},"2022-01-19":{"1. open":"126.7500","2. high":"127.5800","3. low":"125.8300","4. close":"126.0500","5. volume":"3994939"},"2022-01-18":{"1. open":"127.4000","2. high":"127.9300","3. low":"125.5500","4. close":"126.5700","5. volume":"5802335"},"2022-01-14":{"1. open":"130.4900","2. high":"130.5900","3. low":"127.0200","4. close":"128.1600","5. volume":"9256873"},"2022-01-13":{"1. open":"132.3900","2. high":"132.8300","3. low":"129.4300","4. close":"129.6500","5. volume":"7174538"},"2022-01-12":{"1. open":"134.8900","2. high":"135.7000","3. low":"132.5300","4. close":"133.7200","5. volume":"8416010"},"2022-01-11":{"1. open":"135.2300","2. high":"135.9700","3. low":"134.0400","4. close":"135.7000","5. volume":"5703412"},"2022-01-10":{"1. open":"134.7900","2. high":"135.5000","3. low":"133.9200","4. close":"135.2600","5. volume":"5975633"},"2022-01-07":{"1. open":"134.8800","2. high":"136.1800","3. low":"134.3800","4. close":"135.5600","5. volume":"4367483"},"2022-01-06":{"1. open":"135.0000","2. high":"136.2100","3. low":"133.8800","4. close":"135.1400","5. volume":"5710227"},"2022-01-05":{"1. open":"135.1500","2. high":"137.0300","3. low":"135.0700","4. close":"135.1600","5. volume":"5948372"},"2022-01-04":{"1. open":"139.5000","2. high":"139.6500","3. low":"134.7600","4. close":"135.7700","5. volume":"8241222"},"2022-01-03":{"1. open":"139.4300","2. high":"139.8301","3. low":"137.2100","4. close":"139.0400","5. volume":"6692433"},"2021-12-31":{"1. open":"141.0000","2. high":"141.7700","3. low":"140.7200","4. close":"140.7400","5. volume":"3146605"},"2021-12-30":{"1. open":"141.4100","2. high":"141.7450","3. low":"140.5900","4. close":"141.0000","5. volume":"2809120"},"2021-12-29":{"1. open":"140.4700","2. high":"141.6600","3. low":"139.3300","4. close":"141.1900","5. volume":"2848992"},"2021-12-28":{"1. open":"141.5800","2. high":"141.7100","3. low":"140.1300","4. close":"140.4700","5. volume":"3298743"},"2021-12-27":{"1. open":"139.8200","2. high":"142.6000","3. low":"139.4300","4. close":"141.4600","5. volume":"3802592"},"2021-12-23":{"1. open":"139.6500","2. high":"140.2300","3. low":"138.7200","4. close":"139.1600","5. volume":"3492052"},"2021-12-22":{"1. open":"135.8800","2. high":"139.0200","3. low":"135.7900","4. close":"138.9900","5. volume":"6768868"},"2021-12-21":{"1. open":"136.0200","2. high":"137.1767","3. low":"133.4000","4. close":"135.2700","5. volume":"7153827"},"2021-12-20":{"1. open":"136.2000","2. high":"137.8100","3. low":"134.2200","4. close":"134.9800","5. volume":"6501433"},"2021-12-17":{"1. open":"137.5400","2. high":"139.2700","3. low":"136.8900","4. close":"137.1100","5. volume":"12156222"},"2021-12-16":{"1. open":"135.4400","2. high":"136.6100","3. low":"134.6000","4. close":"136.0900","5. volume":"6984050"},"2021-12-15":{"1. open":"133.5400","2. high":"135.6700","3. low":"132.9000","4. close":"135.5600","5. volume":"6422458"},"2021-12-14":{"1. open":"135.9300","2. high":"136.0000","3. low":"132.0000","4. close":"132.9400","5. volume":"8193321"},"2021-12-13":{"1. open":"134.5000","2. high":"137.0000","3. low":"134.5000","4. close":"135.9600","5. volume":"5094833"},"2021-12-10":{"1. open":"133.4200","2. high":"134.5000","3. low":"132.8700","4. close":"134.3700","5. volume":"4371797"},"2021-12-09":{"1. open":"132.5000","2. high":"133.1100","3. low":"131.4800","4. close":"132.5300","5. volume":"2663411"},"2021-12-08":{"1. open":"132.8000","2. high":"133.4500","3. low":"131.1200","4. close":"132.3700","5. volume":"5389410"},"2021-12-07":{"1. open":"134.0000","2. high":"134.0800","3. low":"131.8000","4. close":"132.4200","5. volume":"5143597"},"2021-12-06":{"1. open":"130.7600","2. high":"133.2800","3. low":"130.6100","4. close":"132.4700","5. volume":"6601840"},"2021-12-03":{"1. open":"128.8750","2. high":"130.4550","3. low":"128.0300","4. close":"130.2700","5. volume":"5254610"},"2021-12-02":{"1. open":"126.2900","2. high":"129.8500","3. low":"126.2900","4. close":"128.3800","5. volume":"5090982"},"2021-12-01":{"1. open":"126.4800","2. high":"128.4800","3. low":"125.1200","4. close":"126.7400","5. volume":"4816874"},"2021-11-30":{"1. open":"128.2000","2. high":"128.7900","3. low":"125.3400","4. close":"125.7700","5. volume":"7270172"},"2021-11-29":{"1. open":"126.3500","2. high":"128.9400","3. low":"125.3600","4. close":"128.0300","5. volume":"5648325"},"2021-11-26":{"1. open":"127.8100","2. high":"129.7500","3. low":"125.4400","4. close":"125.8800","5. volume":"4671350"},"2021-11-24":{"1. open":"124.0650","2. high":"125.2818","3. low":"124.0000","4. close":"125.0700","5. volume":"3729581"},"2021-11-23":{"1. open":"124.5100","2. high":"124.8900","3. low":"123.2200","4. close":"124.4800","5. volume":"4873730"},"2021-11-22":{"1. open":"126.7800","2. high":"126.8000","3. low":"124.6800","4. close":"125.2600","5. volume":"4205655"},"2021-11-19":{"1. open":"128.4100","2. high":"128.5300","3. low":"126.4600","4. close":"126.8400","5. volume":"6867681"},"2021-11-18":{"1. open":"129.3100","2. high":"129.4300","3. low":"127.4700","4. close":"127.6400","5. volume":"4467001"},"2021-11-17":{"1. open":"130.6100","2. high":"130.7000","3. low":"128.5400","4. close":"128.6200","5. volume":"4759890"},"2021-11-16":{"1. open":"129.6400","2. high":"131.6050","3. low":"129.6400","4. close":"130.8900","5. volume":"4141322"},"2021-11-15":{"1. open":"128.7700","2. high":"130.1950","3. low":"128.2600","4. close":"129.4400","5. volume":"4565941"},"2021-11-12":{"1. open":"127.9400","2. high":"128.8500","3. low":"127.1200","4. close":"128.4500","5. volume":"6441487"},"2021-11-11":{"1. open":"127.9700","2. high":"128.9600","3. low":"127.2400","4. close":"127.2500","5. volume":"5054821"},"2021-11-10":{"1. open":"126.1900","2. high":"128.1100","3. low":"126.0500","4. close":"127.8200","5. volume":"5358931"},"2021-11-09":{"1. open":"126.7000","2. high":"127.5000","3. low":"126.2500","4. close":"126.4300","5. volume":"5112082"},"2021-11-08":{"1. open":"124.0000","2. high":"127.2300","3. low":"123.8100","4. close":"126.8000","5. volume":"4929976"},"2021-11-05":{"1. open":"127.0800","2. high":"127.3200","3. low":"123.9300","4. close":"124.3700","5. volume":"7989929"},"2021-11-04":{"1. open":"128.9500","2. high":"129.4900","3. low":"128.1900","4. close":"129.0900","5. volume":"4675894"},"2021-11-03":{"1. open":"127.3800","2. high":"128.7400","3. low":"126.9700","4. close":"128.7000","5. volume":"5110642"},"2021-11-02":{"1. open":"129.3300","2. high":"129.5300","3. low":"127.2900","4. close":"127.7100","5. volume":"7742234"},"2021-11-01":{"1. open":"128.6350","2. high":"129.5300","3. low":"128.2900","4. close":"128.9400","5. volume":"3481457"}}} \ No newline at end of file +{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"ABT","3. Last Refreshed":"2022-03-28","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-28":{"1. open":"119.3800","2. high":"120.0000","3. low":"118.7100","4. close":"119.9900","5. volume":"5350889"},"2022-03-25":{"1. open":"118.6500","2. high":"119.3100","3. low":"117.7399","4. close":"118.9500","5. volume":"2871275"},"2022-03-24":{"1. open":"117.3800","2. high":"117.8800","3. low":"116.6100","4. close":"117.8200","5. volume":"4505761"},"2022-03-23":{"1. open":"121.1100","2. high":"121.2400","3. low":"116.7350","4. close":"116.9200","5. volume":"5656038"},"2022-03-22":{"1. open":"121.8900","2. high":"122.5300","3. low":"121.2600","4. close":"121.8900","5. volume":"4287642"},"2022-03-21":{"1. open":"121.9300","2. high":"123.0962","3. low":"121.1600","4. close":"121.7600","5. volume":"4092450"},"2022-03-18":{"1. open":"121.7400","2. high":"122.6700","3. low":"120.6800","4. close":"122.4500","5. volume":"7677471"},"2022-03-17":{"1. open":"119.0000","2. high":"121.2400","3. low":"118.7300","4. close":"121.2000","5. volume":"3998929"},"2022-03-16":{"1. open":"118.2100","2. high":"119.5400","3. low":"116.9600","4. close":"119.4800","5. volume":"4441833"},"2022-03-15":{"1. open":"117.5000","2. high":"117.7900","3. low":"116.2200","4. close":"117.4800","5. volume":"5041193"},"2022-03-14":{"1. open":"114.9000","2. high":"117.2100","3. low":"114.5800","4. close":"115.5200","5. volume":"5527517"},"2022-03-11":{"1. open":"117.4400","2. high":"118.0600","3. low":"113.8800","4. close":"114.0200","5. volume":"8012571"},"2022-03-10":{"1. open":"117.1800","2. high":"117.8100","3. low":"115.7300","4. close":"117.0000","5. volume":"4377620"},"2022-03-09":{"1. open":"117.9000","2. high":"119.2000","3. low":"116.4400","4. close":"118.3900","5. volume":"5004766"},"2022-03-08":{"1. open":"117.9100","2. high":"119.0200","3. low":"115.7100","4. close":"116.1100","5. volume":"6694194"},"2022-03-07":{"1. open":"120.5400","2. high":"120.8900","3. low":"117.2600","4. close":"118.8600","5. volume":"6632006"},"2022-03-04":{"1. open":"119.9300","2. high":"121.7600","3. low":"119.0100","4. close":"121.4100","5. volume":"5911494"},"2022-03-03":{"1. open":"120.8000","2. high":"122.0700","3. low":"120.4900","4. close":"120.9700","5. volume":"5223115"},"2022-03-02":{"1. open":"118.6200","2. high":"121.0500","3. low":"118.2600","4. close":"120.3600","5. volume":"6419829"},"2022-03-01":{"1. open":"120.3100","2. high":"121.1600","3. low":"117.3800","4. close":"118.1700","5. volume":"6697813"},"2022-02-28":{"1. open":"121.0500","2. high":"121.0582","3. low":"119.1500","4. close":"120.6200","5. volume":"6828353"},"2022-02-25":{"1. open":"118.7200","2. high":"122.9300","3. low":"118.5000","4. close":"122.4100","5. volume":"5837687"},"2022-02-24":{"1. open":"115.0000","2. high":"118.9150","3. low":"114.4275","4. close":"118.7200","5. volume":"6252741"},"2022-02-23":{"1. open":"118.0000","2. high":"118.8399","3. low":"116.9900","4. close":"117.2500","5. volume":"5184241"},"2022-02-22":{"1. open":"116.5400","2. high":"119.3300","3. low":"116.1000","4. close":"117.5100","5. volume":"6584991"},"2022-02-18":{"1. open":"120.0000","2. high":"120.3100","3. low":"114.8400","4. close":"116.7900","5. volume":"12376135"},"2022-02-17":{"1. open":"122.9900","2. high":"123.1800","3. low":"120.4700","4. close":"120.5800","5. volume":"3688344"},"2022-02-16":{"1. open":"123.4500","2. high":"124.1100","3. low":"121.5600","4. close":"123.6800","5. volume":"5078173"},"2022-02-15":{"1. open":"124.1870","2. high":"125.4199","3. low":"123.4131","4. close":"123.9800","5. volume":"5297968"},"2022-02-14":{"1. open":"125.0000","2. high":"125.5700","3. low":"121.9800","4. close":"122.7800","5. volume":"7433877"},"2022-02-11":{"1. open":"127.7800","2. high":"128.9200","3. low":"125.1500","4. close":"125.4900","5. volume":"4803244"},"2022-02-10":{"1. open":"128.5700","2. high":"129.9200","3. low":"127.1700","4. close":"127.7600","5. volume":"5917727"},"2022-02-09":{"1. open":"129.5200","2. high":"130.7900","3. low":"129.4200","4. close":"130.4900","5. volume":"3434199"},"2022-02-08":{"1. open":"127.5300","2. high":"128.9400","3. low":"127.1600","4. close":"128.6500","5. volume":"3890854"},"2022-02-07":{"1. open":"129.8700","2. high":"129.9500","3. low":"127.6800","4. close":"128.0500","5. volume":"4035240"},"2022-02-04":{"1. open":"129.5600","2. high":"130.5200","3. low":"128.6000","4. close":"129.7100","5. volume":"4149683"},"2022-02-03":{"1. open":"128.6300","2. high":"130.9350","3. low":"128.2573","4. close":"130.1100","5. volume":"5613547"},"2022-02-02":{"1. open":"128.2500","2. high":"130.7400","3. low":"127.8600","4. close":"130.0400","5. volume":"7450501"},"2022-02-01":{"1. open":"127.3700","2. high":"127.6600","3. low":"126.2400","4. close":"127.2000","5. volume":"5602013"},"2022-01-31":{"1. open":"125.5200","2. high":"127.9600","3. low":"125.1300","4. close":"127.4600","5. volume":"7210140"},"2022-01-28":{"1. open":"120.7700","2. high":"125.5300","3. low":"119.6100","4. close":"125.3500","5. volume":"8286467"},"2022-01-27":{"1. open":"120.9800","2. high":"123.1700","3. low":"119.7400","4. close":"120.4400","5. volume":"9180134"},"2022-01-26":{"1. open":"119.1900","2. high":"121.6800","3. low":"119.0000","4. close":"120.0700","5. volume":"14753096"},"2022-01-25":{"1. open":"123.0800","2. high":"124.6217","3. low":"121.5900","4. close":"123.2700","5. volume":"9126620"},"2022-01-24":{"1. open":"124.0100","2. high":"124.5000","3. low":"120.6800","4. close":"123.8200","5. volume":"10868714"},"2022-01-21":{"1. open":"126.8100","2. high":"127.0900","3. low":"124.8600","4. close":"125.8300","5. volume":"10132682"},"2022-01-20":{"1. open":"126.2400","2. high":"127.9100","3. low":"124.6100","4. close":"124.7100","5. volume":"8652569"},"2022-01-19":{"1. open":"126.7500","2. high":"127.5800","3. low":"125.8300","4. close":"126.0500","5. volume":"3994939"},"2022-01-18":{"1. open":"127.4000","2. high":"127.9300","3. low":"125.5500","4. close":"126.5700","5. volume":"5802335"},"2022-01-14":{"1. open":"130.4900","2. high":"130.5900","3. low":"127.0200","4. close":"128.1600","5. volume":"9256873"},"2022-01-13":{"1. open":"132.3900","2. high":"132.8300","3. low":"129.4300","4. close":"129.6500","5. volume":"7174538"},"2022-01-12":{"1. open":"134.8900","2. high":"135.7000","3. low":"132.5300","4. close":"133.7200","5. volume":"8416010"},"2022-01-11":{"1. open":"135.2300","2. high":"135.9700","3. low":"134.0400","4. close":"135.7000","5. volume":"5703412"},"2022-01-10":{"1. open":"134.7900","2. high":"135.5000","3. low":"133.9200","4. close":"135.2600","5. volume":"5975633"},"2022-01-07":{"1. open":"134.8800","2. high":"136.1800","3. low":"134.3800","4. close":"135.5600","5. volume":"4367483"},"2022-01-06":{"1. open":"135.0000","2. high":"136.2100","3. low":"133.8800","4. close":"135.1400","5. volume":"5710227"},"2022-01-05":{"1. open":"135.1500","2. high":"137.0300","3. low":"135.0700","4. close":"135.1600","5. volume":"5948372"},"2022-01-04":{"1. open":"139.5000","2. high":"139.6500","3. low":"134.7600","4. close":"135.7700","5. volume":"8241222"},"2022-01-03":{"1. open":"139.4300","2. high":"139.8301","3. low":"137.2100","4. close":"139.0400","5. volume":"6692433"},"2021-12-31":{"1. open":"141.0000","2. high":"141.7700","3. low":"140.7200","4. close":"140.7400","5. volume":"3146605"},"2021-12-30":{"1. open":"141.4100","2. high":"141.7450","3. low":"140.5900","4. close":"141.0000","5. volume":"2809120"},"2021-12-29":{"1. open":"140.4700","2. high":"141.6600","3. low":"139.3300","4. close":"141.1900","5. volume":"2848992"},"2021-12-28":{"1. open":"141.5800","2. high":"141.7100","3. low":"140.1300","4. close":"140.4700","5. volume":"3298743"},"2021-12-27":{"1. open":"139.8200","2. high":"142.6000","3. low":"139.4300","4. close":"141.4600","5. volume":"3802592"},"2021-12-23":{"1. open":"139.6500","2. high":"140.2300","3. low":"138.7200","4. close":"139.1600","5. volume":"3492052"},"2021-12-22":{"1. open":"135.8800","2. high":"139.0200","3. low":"135.7900","4. close":"138.9900","5. volume":"6768868"},"2021-12-21":{"1. open":"136.0200","2. high":"137.1767","3. low":"133.4000","4. close":"135.2700","5. volume":"7153827"},"2021-12-20":{"1. open":"136.2000","2. high":"137.8100","3. low":"134.2200","4. close":"134.9800","5. volume":"6501433"},"2021-12-17":{"1. open":"137.5400","2. high":"139.2700","3. low":"136.8900","4. close":"137.1100","5. volume":"12156222"},"2021-12-16":{"1. open":"135.4400","2. high":"136.6100","3. low":"134.6000","4. close":"136.0900","5. volume":"6984050"},"2021-12-15":{"1. open":"133.5400","2. high":"135.6700","3. low":"132.9000","4. close":"135.5600","5. volume":"6422458"},"2021-12-14":{"1. open":"135.9300","2. high":"136.0000","3. low":"132.0000","4. close":"132.9400","5. volume":"8193321"},"2021-12-13":{"1. open":"134.5000","2. high":"137.0000","3. low":"134.5000","4. close":"135.9600","5. volume":"5094833"},"2021-12-10":{"1. open":"133.4200","2. high":"134.5000","3. low":"132.8700","4. close":"134.3700","5. volume":"4371797"},"2021-12-09":{"1. open":"132.5000","2. high":"133.1100","3. low":"131.4800","4. close":"132.5300","5. volume":"2663411"},"2021-12-08":{"1. open":"132.8000","2. high":"133.4500","3. low":"131.1200","4. close":"132.3700","5. volume":"5389410"},"2021-12-07":{"1. open":"134.0000","2. high":"134.0800","3. low":"131.8000","4. close":"132.4200","5. volume":"5143597"},"2021-12-06":{"1. open":"130.7600","2. high":"133.2800","3. low":"130.6100","4. close":"132.4700","5. volume":"6601840"},"2021-12-03":{"1. open":"128.8750","2. high":"130.4550","3. low":"128.0300","4. close":"130.2700","5. volume":"5254610"},"2021-12-02":{"1. open":"126.2900","2. high":"129.8500","3. low":"126.2900","4. close":"128.3800","5. volume":"5090982"},"2021-12-01":{"1. open":"126.4800","2. high":"128.4800","3. low":"125.1200","4. close":"126.7400","5. volume":"4816874"},"2021-11-30":{"1. open":"128.2000","2. high":"128.7900","3. low":"125.3400","4. close":"125.7700","5. volume":"7270172"},"2021-11-29":{"1. open":"126.3500","2. high":"128.9400","3. low":"125.3600","4. close":"128.0300","5. volume":"5648325"},"2021-11-26":{"1. open":"127.8100","2. high":"129.7500","3. low":"125.4400","4. close":"125.8800","5. volume":"4671350"},"2021-11-24":{"1. open":"124.0650","2. high":"125.2818","3. low":"124.0000","4. close":"125.0700","5. volume":"3729581"},"2021-11-23":{"1. open":"124.5100","2. high":"124.8900","3. low":"123.2200","4. close":"124.4800","5. volume":"4873730"},"2021-11-22":{"1. open":"126.7800","2. high":"126.8000","3. low":"124.6800","4. close":"125.2600","5. volume":"4205655"},"2021-11-19":{"1. open":"128.4100","2. high":"128.5300","3. low":"126.4600","4. close":"126.8400","5. volume":"6867681"},"2021-11-18":{"1. open":"129.3100","2. high":"129.4300","3. low":"127.4700","4. close":"127.6400","5. volume":"4467001"},"2021-11-17":{"1. open":"130.6100","2. high":"130.7000","3. low":"128.5400","4. close":"128.6200","5. volume":"4759890"},"2021-11-16":{"1. open":"129.6400","2. high":"131.6050","3. low":"129.6400","4. close":"130.8900","5. volume":"4141322"},"2021-11-15":{"1. open":"128.7700","2. high":"130.1950","3. low":"128.2600","4. close":"129.4400","5. volume":"4565941"},"2021-11-12":{"1. open":"127.9400","2. high":"128.8500","3. low":"127.1200","4. close":"128.4500","5. volume":"6441487"},"2021-11-11":{"1. open":"127.9700","2. high":"128.9600","3. low":"127.2400","4. close":"127.2500","5. volume":"5054821"},"2021-11-10":{"1. open":"126.1900","2. high":"128.1100","3. low":"126.0500","4. close":"127.8200","5. volume":"5358931"},"2021-11-09":{"1. open":"126.7000","2. high":"127.5000","3. low":"126.2500","4. close":"126.4300","5. volume":"5112082"},"2021-11-08":{"1. open":"124.0000","2. high":"127.2300","3. low":"123.8100","4. close":"126.8000","5. volume":"4929976"},"2021-11-05":{"1. open":"127.0800","2. high":"127.3200","3. low":"123.9300","4. close":"124.3700","5. volume":"7989929"},"2021-11-04":{"1. open":"128.9500","2. high":"129.4900","3. low":"128.1900","4. close":"129.0900","5. volume":"4675894"},"2021-11-03":{"1. open":"127.3800","2. high":"128.7400","3. low":"126.9700","4. close":"128.7000","5. volume":"5110642"}}} \ No newline at end of file diff --git a/Backend/data/daily_ACA.json b/Backend/data/daily_ACA.json new file mode 100644 index 00000000..698460d2 --- /dev/null +++ b/Backend/data/daily_ACA.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"ACA","3. Last Refreshed":"2022-03-28","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-28":{"1. open":"57.8900","2. high":"58.1000","3. low":"57.3300","4. close":"57.9300","5. volume":"169219"},"2022-03-25":{"1. open":"57.5800","2. high":"58.2400","3. low":"57.1500","4. close":"58.1400","5. volume":"208995"},"2022-03-24":{"1. open":"56.7900","2. high":"57.4800","3. low":"56.2300","4. close":"57.4800","5. volume":"263488"},"2022-03-23":{"1. open":"57.3200","2. high":"57.8650","3. low":"56.7100","4. close":"56.9400","5. volume":"142770"},"2022-03-22":{"1. open":"58.6100","2. high":"58.6500","3. low":"57.0500","4. close":"57.9500","5. volume":"317625"},"2022-03-21":{"1. open":"57.3500","2. high":"59.1000","3. low":"57.3500","4. close":"58.3900","5. volume":"221274"},"2022-03-18":{"1. open":"58.0100","2. high":"58.0100","3. low":"56.9550","4. close":"57.4800","5. volume":"510142"},"2022-03-17":{"1. open":"57.6200","2. high":"58.6750","3. low":"57.6200","4. close":"57.9800","5. volume":"199056"},"2022-03-16":{"1. open":"57.4400","2. high":"58.7900","3. low":"57.4400","4. close":"58.2600","5. volume":"508708"},"2022-03-15":{"1. open":"57.4400","2. high":"57.7100","3. low":"55.6900","4. close":"57.0600","5. volume":"241042"},"2022-03-14":{"1. open":"57.7100","2. high":"57.8800","3. low":"57.0500","4. close":"57.2900","5. volume":"305904"},"2022-03-11":{"1. open":"57.8000","2. high":"58.5100","3. low":"56.8100","4. close":"57.5100","5. volume":"438441"},"2022-03-10":{"1. open":"56.2800","2. high":"57.8200","3. low":"55.3000","4. close":"57.7900","5. volume":"273196"},"2022-03-09":{"1. open":"56.9100","2. high":"57.7400","3. low":"56.3500","4. close":"57.3400","5. volume":"340691"},"2022-03-08":{"1. open":"54.5000","2. high":"57.5000","3. low":"54.4000","4. close":"56.1700","5. volume":"459502"},"2022-03-07":{"1. open":"54.5200","2. high":"55.2700","3. low":"53.6500","4. close":"54.7100","5. volume":"580750"},"2022-03-04":{"1. open":"53.7200","2. high":"55.1900","3. low":"53.0200","4. close":"54.4800","5. volume":"264191"},"2022-03-03":{"1. open":"54.9800","2. high":"55.0500","3. low":"53.6800","4. close":"54.5000","5. volume":"271461"},"2022-03-02":{"1. open":"52.1700","2. high":"54.8600","3. low":"51.9500","4. close":"54.5200","5. volume":"307376"},"2022-03-01":{"1. open":"52.8000","2. high":"53.0800","3. low":"51.3175","4. close":"52.0200","5. volume":"297173"},"2022-02-28":{"1. open":"50.7100","2. high":"53.3975","3. low":"50.7100","4. close":"52.6700","5. volume":"356475"},"2022-02-25":{"1. open":"49.3000","2. high":"51.5300","3. low":"49.3000","4. close":"51.5000","5. volume":"268941"},"2022-02-24":{"1. open":"48.7100","2. high":"49.9200","3. low":"45.3600","4. close":"49.2300","5. volume":"419834"},"2022-02-23":{"1. open":"47.0600","2. high":"47.2600","3. low":"45.8000","4. close":"46.0600","5. volume":"201719"},"2022-02-22":{"1. open":"47.0800","2. high":"47.7800","3. low":"46.3800","4. close":"46.7000","5. volume":"148988"},"2022-02-18":{"1. open":"47.6200","2. high":"48.1700","3. low":"46.9100","4. close":"47.3200","5. volume":"227921"},"2022-02-17":{"1. open":"47.2400","2. high":"48.4200","3. low":"46.9500","4. close":"48.0300","5. volume":"305435"},"2022-02-16":{"1. open":"46.3700","2. high":"48.0300","3. low":"46.3700","4. close":"47.9000","5. volume":"188346"},"2022-02-15":{"1. open":"46.0100","2. high":"47.0000","3. low":"45.9800","4. close":"46.7000","5. volume":"118118"},"2022-02-14":{"1. open":"44.3900","2. high":"45.6500","3. low":"43.9500","4. close":"45.3200","5. volume":"518913"},"2022-02-11":{"1. open":"43.9100","2. high":"44.8800","3. low":"43.5500","4. close":"44.1700","5. volume":"213486"},"2022-02-10":{"1. open":"45.0900","2. high":"45.5000","3. low":"43.4200","4. close":"43.6600","5. volume":"233351"},"2022-02-09":{"1. open":"45.3200","2. high":"46.2100","3. low":"45.1100","4. close":"45.6100","5. volume":"480456"},"2022-02-08":{"1. open":"44.5200","2. high":"45.3600","3. low":"44.5200","4. close":"44.9200","5. volume":"250317"},"2022-02-07":{"1. open":"44.0000","2. high":"45.0300","3. low":"43.8400","4. close":"44.4000","5. volume":"131291"},"2022-02-04":{"1. open":"44.7600","2. high":"44.7600","3. low":"43.4900","4. close":"44.1100","5. volume":"184637"},"2022-02-03":{"1. open":"44.5700","2. high":"45.3800","3. low":"44.5300","4. close":"44.8400","5. volume":"163695"},"2022-02-02":{"1. open":"46.5000","2. high":"46.9200","3. low":"45.0550","4. close":"45.4200","5. volume":"185313"},"2022-02-01":{"1. open":"46.6400","2. high":"46.9300","3. low":"45.9200","4. close":"46.4900","5. volume":"200755"},"2022-01-31":{"1. open":"45.4900","2. high":"46.8000","3. low":"45.4900","4. close":"46.6600","5. volume":"221484"},"2022-01-28":{"1. open":"45.0000","2. high":"45.9500","3. low":"43.8500","4. close":"45.9100","5. volume":"232668"},"2022-01-27":{"1. open":"47.0300","2. high":"48.0700","3. low":"44.5200","4. close":"44.8100","5. volume":"315140"},"2022-01-26":{"1. open":"49.1400","2. high":"49.9900","3. low":"46.5100","4. close":"46.9900","5. volume":"152126"},"2022-01-25":{"1. open":"48.2300","2. high":"49.1700","3. low":"46.7000","4. close":"48.4800","5. volume":"168715"},"2022-01-24":{"1. open":"47.1400","2. high":"49.3800","3. low":"46.3400","4. close":"49.1200","5. volume":"184812"},"2022-01-21":{"1. open":"48.4300","2. high":"49.7600","3. low":"47.4800","4. close":"47.8600","5. volume":"186609"},"2022-01-20":{"1. open":"51.1500","2. high":"51.5200","3. low":"48.3700","4. close":"48.4500","5. volume":"275789"},"2022-01-19":{"1. open":"52.7500","2. high":"52.8000","3. low":"50.4150","4. close":"50.9000","5. volume":"223215"},"2022-01-18":{"1. open":"51.8300","2. high":"52.7200","3. low":"51.3200","4. close":"52.6400","5. volume":"269512"},"2022-01-14":{"1. open":"51.7300","2. high":"52.4600","3. low":"51.5650","4. close":"52.4100","5. volume":"265664"},"2022-01-13":{"1. open":"50.3100","2. high":"52.2600","3. low":"50.1400","4. close":"52.2500","5. volume":"247373"},"2022-01-12":{"1. open":"50.7600","2. high":"51.0775","3. low":"49.5050","4. close":"49.9500","5. volume":"183835"},"2022-01-11":{"1. open":"50.7500","2. high":"50.9400","3. low":"49.6400","4. close":"50.6200","5. volume":"110688"},"2022-01-10":{"1. open":"51.2100","2. high":"51.2100","3. low":"49.9700","4. close":"50.6300","5. volume":"173845"},"2022-01-07":{"1. open":"52.4000","2. high":"52.8773","3. low":"51.3100","4. close":"51.3600","5. volume":"170366"},"2022-01-06":{"1. open":"53.3400","2. high":"53.5300","3. low":"52.3750","4. close":"52.6700","5. volume":"116579"},"2022-01-05":{"1. open":"54.7800","2. high":"55.6800","3. low":"53.2500","4. close":"53.3400","5. volume":"113204"},"2022-01-04":{"1. open":"54.0000","2. high":"55.3800","3. low":"53.6200","4. close":"54.9500","5. volume":"155724"},"2022-01-03":{"1. open":"53.2400","2. high":"54.2700","3. low":"52.6600","4. close":"53.5500","5. volume":"178776"},"2021-12-31":{"1. open":"51.9400","2. high":"52.9200","3. low":"51.8100","4. close":"52.7000","5. volume":"159234"},"2021-12-30":{"1. open":"52.7700","2. high":"53.3100","3. low":"52.0100","4. close":"52.0500","5. volume":"147699"},"2021-12-29":{"1. open":"52.2500","2. high":"53.3500","3. low":"51.9200","4. close":"52.9400","5. volume":"120911"},"2021-12-28":{"1. open":"52.5400","2. high":"52.8900","3. low":"52.0700","4. close":"52.2300","5. volume":"84838"},"2021-12-27":{"1. open":"51.9500","2. high":"52.6600","3. low":"51.2501","4. close":"52.6300","5. volume":"112686"},"2021-12-23":{"1. open":"51.9500","2. high":"52.5700","3. low":"51.8250","4. close":"51.8900","5. volume":"94546"},"2021-12-22":{"1. open":"51.0800","2. high":"52.0200","3. low":"50.9000","4. close":"51.7300","5. volume":"169440"},"2021-12-21":{"1. open":"49.3900","2. high":"51.3550","3. low":"49.3900","4. close":"51.2000","5. volume":"171422"},"2021-12-20":{"1. open":"50.4200","2. high":"50.4950","3. low":"47.6500","4. close":"48.5900","5. volume":"332160"},"2021-12-17":{"1. open":"52.1900","2. high":"53.1900","3. low":"50.9200","4. close":"51.5000","5. volume":"1432594"},"2021-12-16":{"1. open":"54.3400","2. high":"55.0600","3. low":"52.4700","4. close":"52.4700","5. volume":"243148"},"2021-12-15":{"1. open":"53.7600","2. high":"54.2900","3. low":"51.9600","4. close":"53.9200","5. volume":"406438"},"2021-12-14":{"1. open":"54.6900","2. high":"55.4100","3. low":"53.8300","4. close":"53.8900","5. volume":"227814"},"2021-12-13":{"1. open":"54.8100","2. high":"55.7650","3. low":"54.6760","4. close":"54.7400","5. volume":"250065"},"2021-12-10":{"1. open":"55.5300","2. high":"55.9700","3. low":"54.7300","4. close":"55.0500","5. volume":"113354"},"2021-12-09":{"1. open":"56.0700","2. high":"56.7200","3. low":"55.0500","4. close":"55.0600","5. volume":"144579"},"2021-12-08":{"1. open":"55.1800","2. high":"57.0400","3. low":"55.1500","4. close":"56.7800","5. volume":"241182"},"2021-12-07":{"1. open":"56.5500","2. high":"56.5700","3. low":"55.2000","4. close":"55.2700","5. volume":"199944"},"2021-12-06":{"1. open":"54.5200","2. high":"56.4200","3. low":"54.2400","4. close":"55.4900","5. volume":"208895"},"2021-12-03":{"1. open":"51.9500","2. high":"53.5800","3. low":"51.3700","4. close":"53.4900","5. volume":"301690"},"2021-12-02":{"1. open":"51.2300","2. high":"52.4050","3. low":"50.8700","4. close":"51.8400","5. volume":"186959"},"2021-12-01":{"1. open":"52.8700","2. high":"53.2800","3. low":"50.6500","4. close":"50.6600","5. volume":"173931"},"2021-11-30":{"1. open":"53.4000","2. high":"53.4000","3. low":"51.0900","4. close":"51.1700","5. volume":"303424"},"2021-11-29":{"1. open":"55.2500","2. high":"55.2500","3. low":"53.7601","4. close":"53.9600","5. volume":"186285"},"2021-11-26":{"1. open":"55.2500","2. high":"55.8100","3. low":"53.7000","4. close":"54.5000","5. volume":"120276"},"2021-11-24":{"1. open":"57.5200","2. high":"57.6700","3. low":"57.0000","4. close":"57.2300","5. volume":"85120"},"2021-11-23":{"1. open":"58.2200","2. high":"58.7800","3. low":"57.1400","4. close":"57.8500","5. volume":"180825"},"2021-11-22":{"1. open":"57.9900","2. high":"58.9600","3. low":"57.0100","4. close":"58.2000","5. volume":"179076"},"2021-11-19":{"1. open":"56.0300","2. high":"57.7200","3. low":"55.9950","4. close":"57.4300","5. volume":"158054"},"2021-11-18":{"1. open":"56.6500","2. high":"56.8800","3. low":"55.9050","4. close":"56.5800","5. volume":"233826"},"2021-11-17":{"1. open":"57.2300","2. high":"57.9200","3. low":"55.4000","4. close":"56.5500","5. volume":"250999"},"2021-11-16":{"1. open":"55.6000","2. high":"57.7200","3. low":"54.9500","4. close":"57.6600","5. volume":"402314"},"2021-11-15":{"1. open":"55.8700","2. high":"55.9000","3. low":"55.1500","4. close":"55.6900","5. volume":"295778"},"2021-11-12":{"1. open":"55.3000","2. high":"55.7400","3. low":"54.7250","4. close":"55.4000","5. volume":"207512"},"2021-11-11":{"1. open":"55.5500","2. high":"56.1100","3. low":"55.1201","4. close":"55.3500","5. volume":"108397"},"2021-11-10":{"1. open":"55.6900","2. high":"56.5400","3. low":"55.0100","4. close":"55.5800","5. volume":"155555"},"2021-11-09":{"1. open":"55.9100","2. high":"56.7600","3. low":"55.2900","4. close":"55.6800","5. volume":"180903"},"2021-11-08":{"1. open":"55.7200","2. high":"57.0550","3. low":"55.2900","4. close":"55.9100","5. volume":"238307"},"2021-11-05":{"1. open":"52.7200","2. high":"55.4000","3. low":"52.4100","4. close":"55.0500","5. volume":"215370"},"2021-11-04":{"1. open":"52.4200","2. high":"53.8200","3. low":"50.7450","4. close":"52.3000","5. volume":"329411"},"2021-11-03":{"1. open":"53.9000","2. high":"55.2400","3. low":"52.7900","4. close":"54.7400","5. volume":"174567"}}} \ No newline at end of file diff --git a/Backend/data/daily_AXS.json b/Backend/data/daily_AXS.json deleted file mode 100644 index f6306470..00000000 --- a/Backend/data/daily_AXS.json +++ /dev/null @@ -1 +0,0 @@ -{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"AXS","3. Last Refreshed":"2022-03-25 16:00:01","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-25":{"1. open":"57.4900","2. high":"57.9000","3. low":"57.0600","4. close":"57.8400","5. volume":"408965"},"2022-03-24":{"1. open":"57.0000","2. high":"57.4000","3. low":"56.6700","4. close":"57.3700","5. volume":"540450"},"2022-03-23":{"1. open":"56.8500","2. high":"57.2225","3. low":"56.4100","4. close":"56.9000","5. volume":"552782"},"2022-03-22":{"1. open":"56.5900","2. high":"57.4700","3. low":"56.4600","4. close":"56.9300","5. volume":"813655"},"2022-03-21":{"1. open":"56.0000","2. high":"56.6600","3. low":"55.3900","4. close":"56.1600","5. volume":"447825"},"2022-03-18":{"1. open":"54.0900","2. high":"55.5900","3. low":"54.0900","4. close":"55.4700","5. volume":"1520068"},"2022-03-17":{"1. open":"53.8200","2. high":"54.5400","3. low":"53.4600","4. close":"54.5200","5. volume":"525260"},"2022-03-16":{"1. open":"53.7700","2. high":"54.4600","3. low":"53.2500","4. close":"54.2400","5. volume":"547855"},"2022-03-15":{"1. open":"52.6100","2. high":"53.5300","3. low":"52.5500","4. close":"53.2100","5. volume":"488162"},"2022-03-14":{"1. open":"52.3200","2. high":"53.1200","3. low":"51.7600","4. close":"52.2900","5. volume":"388818"},"2022-03-11":{"1. open":"52.0200","2. high":"52.4000","3. low":"51.2900","4. close":"51.6300","5. volume":"416145"},"2022-03-10":{"1. open":"51.5100","2. high":"52.1500","3. low":"51.0600","4. close":"51.5700","5. volume":"457273"},"2022-03-09":{"1. open":"52.0700","2. high":"52.7500","3. low":"51.6800","4. close":"52.4100","5. volume":"504647"},"2022-03-08":{"1. open":"51.5800","2. high":"51.8550","3. low":"49.7600","4. close":"50.8600","5. volume":"584812"},"2022-03-07":{"1. open":"52.9000","2. high":"52.9000","3. low":"51.0000","4. close":"51.0400","5. volume":"675681"},"2022-03-04":{"1. open":"53.8400","2. high":"54.3000","3. low":"53.1000","4. close":"53.6000","5. volume":"526695"},"2022-03-03":{"1. open":"55.2800","2. high":"55.5000","3. low":"54.5100","4. close":"55.0200","5. volume":"508358"},"2022-03-02":{"1. open":"53.1300","2. high":"55.3600","3. low":"53.0200","4. close":"55.2300","5. volume":"760852"},"2022-03-01":{"1. open":"54.1500","2. high":"54.4600","3. low":"52.0950","4. close":"52.9200","5. volume":"729872"},"2022-02-28":{"1. open":"54.6600","2. high":"55.0800","3. low":"54.0400","4. close":"54.6200","5. volume":"786219"},"2022-02-25":{"1. open":"53.8100","2. high":"55.8400","3. low":"53.7300","4. close":"55.8000","5. volume":"816663"},"2022-02-24":{"1. open":"54.8000","2. high":"54.9800","3. low":"52.3800","4. close":"53.5000","5. volume":"1510037"},"2022-02-23":{"1. open":"56.6300","2. high":"57.0143","3. low":"55.6400","4. close":"55.8500","5. volume":"484263"},"2022-02-22":{"1. open":"57.3800","2. high":"57.8300","3. low":"56.1100","4. close":"56.5000","5. volume":"410133"},"2022-02-18":{"1. open":"57.4100","2. high":"58.1200","3. low":"57.0900","4. close":"57.6800","5. volume":"315590"},"2022-02-17":{"1. open":"57.0900","2. high":"57.9200","3. low":"56.4100","4. close":"57.5400","5. volume":"533814"},"2022-02-16":{"1. open":"56.5900","2. high":"57.6550","3. low":"56.3900","4. close":"57.4000","5. volume":"353673"},"2022-02-15":{"1. open":"56.3000","2. high":"56.9100","3. low":"56.0100","4. close":"56.6000","5. volume":"338682"},"2022-02-14":{"1. open":"56.0000","2. high":"56.6000","3. low":"55.4600","4. close":"56.0900","5. volume":"403972"},"2022-02-11":{"1. open":"55.8500","2. high":"56.8800","3. low":"55.4500","4. close":"56.1400","5. volume":"486972"},"2022-02-10":{"1. open":"56.4800","2. high":"57.0600","3. low":"55.7650","4. close":"55.9800","5. volume":"347400"},"2022-02-09":{"1. open":"56.9000","2. high":"57.1000","3. low":"55.9800","4. close":"56.5600","5. volume":"542885"},"2022-02-08":{"1. open":"55.9800","2. high":"56.8800","3. low":"55.5405","4. close":"56.8400","5. volume":"612983"},"2022-02-07":{"1. open":"56.2900","2. high":"56.7600","3. low":"55.7907","4. close":"56.3000","5. volume":"403228"},"2022-02-04":{"1. open":"56.4300","2. high":"56.8000","3. low":"55.6200","4. close":"56.1700","5. volume":"390522"},"2022-02-03":{"1. open":"56.8000","2. high":"57.7000","3. low":"56.2833","4. close":"56.6300","5. volume":"500713"},"2022-02-02":{"1. open":"57.1100","2. high":"57.7500","3. low":"56.3400","4. close":"57.0000","5. volume":"823249"},"2022-02-01":{"1. open":"57.0000","2. high":"57.3600","3. low":"56.1400","4. close":"57.3400","5. volume":"480941"},"2022-01-31":{"1. open":"56.5900","2. high":"56.9800","3. low":"55.4300","4. close":"56.9800","5. volume":"535611"},"2022-01-28":{"1. open":"55.1100","2. high":"56.9200","3. low":"55.0000","4. close":"56.9200","5. volume":"1016090"},"2022-01-27":{"1. open":"55.9000","2. high":"57.9700","3. low":"52.0801","4. close":"54.4300","5. volume":"1287706"},"2022-01-26":{"1. open":"56.2100","2. high":"57.3000","3. low":"55.3100","4. close":"55.8400","5. volume":"753182"},"2022-01-25":{"1. open":"55.7500","2. high":"56.5400","3. low":"54.1900","4. close":"56.0800","5. volume":"450373"},"2022-01-24":{"1. open":"55.1800","2. high":"56.2300","3. low":"54.3300","4. close":"56.0100","5. volume":"533457"},"2022-01-21":{"1. open":"56.4100","2. high":"56.7900","3. low":"55.4100","4. close":"55.7800","5. volume":"614453"},"2022-01-20":{"1. open":"56.6300","2. high":"57.7400","3. low":"56.2400","4. close":"56.5000","5. volume":"406869"},"2022-01-19":{"1. open":"57.2600","2. high":"57.2600","3. low":"55.9100","4. close":"56.1600","5. volume":"322097"},"2022-01-18":{"1. open":"56.9300","2. high":"57.3000","3. low":"56.4500","4. close":"56.6400","5. volume":"295546"},"2022-01-14":{"1. open":"56.3900","2. high":"57.0800","3. low":"55.7600","4. close":"57.0000","5. volume":"295232"},"2022-01-13":{"1. open":"56.1600","2. high":"56.8700","3. low":"55.9950","4. close":"56.5700","5. volume":"262340"},"2022-01-12":{"1. open":"56.3200","2. high":"56.3500","3. low":"55.4250","4. close":"55.9900","5. volume":"416679"},"2022-01-11":{"1. open":"55.8400","2. high":"56.2800","3. low":"55.1350","4. close":"56.0800","5. volume":"445209"},"2022-01-10":{"1. open":"55.7600","2. high":"55.9100","3. low":"54.7400","4. close":"55.3800","5. volume":"357967"},"2022-01-07":{"1. open":"55.7400","2. high":"55.7400","3. low":"54.9250","4. close":"55.4300","5. volume":"301451"},"2022-01-06":{"1. open":"54.8600","2. high":"55.7150","3. low":"54.2900","4. close":"55.5000","5. volume":"511577"},"2022-01-05":{"1. open":"55.3400","2. high":"55.7850","3. low":"54.1900","4. close":"54.2400","5. volume":"647027"},"2022-01-04":{"1. open":"55.1100","2. high":"55.4300","3. low":"54.6100","4. close":"54.8000","5. volume":"666553"},"2022-01-03":{"1. open":"54.6300","2. high":"55.0700","3. low":"53.8500","4. close":"54.0500","5. volume":"415290"},"2021-12-31":{"1. open":"54.2200","2. high":"54.9800","3. low":"54.2200","4. close":"54.4700","5. volume":"199521"},"2021-12-30":{"1. open":"54.5600","2. high":"54.7800","3. low":"54.0950","4. close":"54.2200","5. volume":"357049"},"2021-12-29":{"1. open":"53.6300","2. high":"54.4300","3. low":"53.4900","4. close":"54.3900","5. volume":"243914"},"2021-12-28":{"1. open":"52.8900","2. high":"54.0200","3. low":"52.8900","4. close":"53.9800","5. volume":"267349"},"2021-12-27":{"1. open":"51.9000","2. high":"52.9800","3. low":"51.5401","4. close":"52.8700","5. volume":"223548"},"2021-12-23":{"1. open":"51.5500","2. high":"52.3000","3. low":"51.2700","4. close":"52.0800","5. volume":"211711"},"2021-12-22":{"1. open":"51.0400","2. high":"51.4950","3. low":"50.5600","4. close":"51.1300","5. volume":"368749"},"2021-12-21":{"1. open":"51.0200","2. high":"52.0100","3. low":"50.9800","4. close":"51.1200","5. volume":"238234"},"2021-12-20":{"1. open":"50.8500","2. high":"51.1250","3. low":"49.7800","4. close":"50.6900","5. volume":"314787"},"2021-12-17":{"1. open":"52.2200","2. high":"52.4300","3. low":"51.4000","4. close":"51.5600","5. volume":"544432"},"2021-12-16":{"1. open":"52.2000","2. high":"52.7250","3. low":"51.8750","4. close":"52.2000","5. volume":"303341"},"2021-12-15":{"1. open":"51.6400","2. high":"52.4400","3. low":"51.4400","4. close":"51.9900","5. volume":"316142"},"2021-12-14":{"1. open":"51.6200","2. high":"52.7200","3. low":"51.6050","4. close":"51.7000","5. volume":"288345"},"2021-12-13":{"1. open":"51.8500","2. high":"52.2100","3. low":"51.1700","4. close":"51.4800","5. volume":"273265"},"2021-12-10":{"1. open":"52.7900","2. high":"52.9700","3. low":"51.8300","4. close":"52.2400","5. volume":"258448"},"2021-12-09":{"1. open":"51.7400","2. high":"52.7499","3. low":"51.7400","4. close":"52.3300","5. volume":"218561"},"2021-12-08":{"1. open":"52.2100","2. high":"52.4150","3. low":"51.7700","4. close":"52.2000","5. volume":"198347"},"2021-12-07":{"1. open":"52.5500","2. high":"52.9200","3. low":"52.0300","4. close":"52.2100","5. volume":"428777"},"2021-12-06":{"1. open":"52.4700","2. high":"53.0600","3. low":"52.1700","4. close":"52.5000","5. volume":"578818"},"2021-12-03":{"1. open":"52.6300","2. high":"52.9150","3. low":"51.8500","4. close":"51.9100","5. volume":"532941"},"2021-12-02":{"1. open":"49.9700","2. high":"51.9600","3. low":"49.9700","4. close":"51.6400","5. volume":"304553"},"2021-12-01":{"1. open":"50.4500","2. high":"51.2500","3. low":"49.7100","4. close":"49.7400","5. volume":"277052"},"2021-11-30":{"1. open":"50.2300","2. high":"50.7800","3. low":"49.5000","4. close":"49.6800","5. volume":"544924"},"2021-11-29":{"1. open":"51.8400","2. high":"51.8400","3. low":"50.3700","4. close":"50.7900","5. volume":"383781"},"2021-11-26":{"1. open":"50.6900","2. high":"51.3700","3. low":"49.9300","4. close":"50.9900","5. volume":"263311"},"2021-11-24":{"1. open":"53.7200","2. high":"53.7200","3. low":"52.4800","4. close":"52.5800","5. volume":"314158"},"2021-11-23":{"1. open":"53.0900","2. high":"53.8000","3. low":"52.9750","4. close":"53.6900","5. volume":"298468"},"2021-11-22":{"1. open":"51.8300","2. high":"53.1100","3. low":"51.7700","4. close":"52.6700","5. volume":"281971"},"2021-11-19":{"1. open":"52.1500","2. high":"52.4000","3. low":"51.4000","4. close":"51.5500","5. volume":"326093"},"2021-11-18":{"1. open":"53.2300","2. high":"53.3600","3. low":"52.1000","4. close":"52.1200","5. volume":"233109"},"2021-11-17":{"1. open":"52.9600","2. high":"53.4500","3. low":"52.5833","4. close":"53.2000","5. volume":"302100"},"2021-11-16":{"1. open":"53.3900","2. high":"53.7300","3. low":"53.1800","4. close":"53.2600","5. volume":"314015"},"2021-11-15":{"1. open":"52.8700","2. high":"53.3800","3. low":"52.5900","4. close":"53.3100","5. volume":"265603"},"2021-11-12":{"1. open":"52.7100","2. high":"52.8500","3. low":"52.1100","4. close":"52.6000","5. volume":"168901"},"2021-11-11":{"1. open":"52.6150","2. high":"52.8900","3. low":"52.3000","4. close":"52.4800","5. volume":"162487"},"2021-11-10":{"1. open":"52.4100","2. high":"52.8200","3. low":"52.2100","4. close":"52.4700","5. volume":"187495"},"2021-11-09":{"1. open":"52.7400","2. high":"52.8800","3. low":"52.2000","4. close":"52.4000","5. volume":"201218"},"2021-11-08":{"1. open":"53.2200","2. high":"53.5700","3. low":"52.8300","4. close":"52.9000","5. volume":"224539"},"2021-11-05":{"1. open":"52.2300","2. high":"53.1900","3. low":"52.2300","4. close":"53.1200","5. volume":"184878"},"2021-11-04":{"1. open":"53.0300","2. high":"53.0300","3. low":"51.4500","4. close":"51.8400","5. volume":"330913"},"2021-11-03":{"1. open":"52.6600","2. high":"53.4700","3. low":"52.6000","4. close":"52.9800","5. volume":"458253"},"2021-11-02":{"1. open":"53.7500","2. high":"53.8200","3. low":"52.6000","4. close":"53.0500","5. volume":"330963"}}} \ No newline at end of file diff --git a/Backend/data/daily_IBM.json b/Backend/data/daily_IBM.json index cf35a8d0..d596a379 100644 --- a/Backend/data/daily_IBM.json +++ b/Backend/data/daily_IBM.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"IBM","3. Last Refreshed":"2022-03-24","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-24":{"1. open":"128.3300","2. high":"129.3700","3. low":"127.8000","4. close":"129.2500","5. volume":"2971075"},"2022-03-23":{"1. open":"129.0800","2. high":"129.3200","3. low":"128.2500","4. close":"128.3000","5. volume":"2924535"},"2022-03-22":{"1. open":"128.5000","2. high":"129.3000","3. low":"127.8500","4. close":"129.0600","5. volume":"2649026"},"2022-03-21":{"1. open":"129.0000","2. high":"129.7400","3. low":"127.4000","4. close":"128.1000","5. volume":"3379393"},"2022-03-18":{"1. open":"127.3800","2. high":"128.9300","3. low":"126.3700","4. close":"128.7600","5. volume":"7400216"},"2022-03-17":{"1. open":"127.1000","2. high":"128.2900","3. low":"126.5300","4. close":"127.9600","5. volume":"3671903"},"2022-03-16":{"1. open":"126.5000","2. high":"127.2842","3. low":"124.7100","4. close":"127.0400","5. volume":"4292845"},"2022-03-15":{"1. open":"124.0000","2. high":"125.9398","3. low":"123.2200","4. close":"125.6400","5. volume":"4021228"},"2022-03-14":{"1. open":"124.4500","2. high":"125.1600","3. low":"122.6850","4. close":"123.9400","5. volume":"3289440"},"2022-03-11":{"1. open":"125.0000","2. high":"126.7700","3. low":"123.9100","4. close":"123.9600","5. volume":"4119630"},"2022-03-10":{"1. open":"125.7500","2. high":"126.0300","3. low":"123.1250","4. close":"124.3500","5. volume":"5326835"},"2022-03-09":{"1. open":"127.4100","2. high":"128.1000","3. low":"125.9100","4. close":"126.2200","5. volume":"4403499"},"2022-03-08":{"1. open":"126.6200","2. high":"128.3450","3. low":"124.8200","4. close":"125.6800","5. volume":"4887565"},"2022-03-07":{"1. open":"126.4700","2. high":"127.9050","3. low":"125.6200","4. close":"126.0700","5. volume":"5047358"},"2022-03-04":{"1. open":"124.4000","2. high":"127.3500","3. low":"124.2103","4. close":"126.6200","5. volume":"4402911"},"2022-03-03":{"1. open":"124.9600","2. high":"126.6650","3. low":"124.2351","4. close":"125.9300","5. volume":"5206649"},"2022-03-02":{"1. open":"122.5900","2. high":"124.6400","3. low":"121.8000","4. close":"123.8600","5. volume":"4891435"},"2022-03-01":{"1. open":"122.6700","2. high":"123.3900","3. low":"120.7000","4. close":"121.3500","5. volume":"4873331"},"2022-02-28":{"1. open":"122.2100","2. high":"123.3851","3. low":"121.0388","4. close":"122.5100","5. volume":"6757332"},"2022-02-25":{"1. open":"122.0500","2. high":"124.2625","3. low":"121.4500","4. close":"124.1800","5. volume":"4460904"},"2022-02-24":{"1. open":"120.0000","2. high":"122.1000","3. low":"118.8100","4. close":"121.9700","5. volume":"6563202"},"2022-02-23":{"1. open":"124.3800","2. high":"124.7000","3. low":"121.8700","4. close":"122.0700","5. volume":"4086367"},"2022-02-22":{"1. open":"124.2000","2. high":"125.0000","3. low":"122.6800","4. close":"123.9200","5. volume":"5306688"},"2022-02-18":{"1. open":"124.9400","2. high":"125.4400","3. low":"123.6100","4. close":"124.3500","5. volume":"4609212"},"2022-02-17":{"1. open":"128.0500","2. high":"128.5000","3. low":"124.8500","4. close":"124.9700","5. volume":"6796997"},"2022-02-16":{"1. open":"129.4500","2. high":"130.4400","3. low":"128.2600","4. close":"129.1800","5. volume":"4875612"},"2022-02-15":{"1. open":"130.6400","2. high":"131.6800","3. low":"129.6100","4. close":"129.9400","5. volume":"4395714"},"2022-02-14":{"1. open":"132.5900","2. high":"132.6500","3. low":"129.0700","4. close":"130.1500","5. volume":"5345289"},"2022-02-11":{"1. open":"133.9000","2. high":"134.7099","3. low":"132.3800","4. close":"132.6900","5. volume":"4176155"},"2022-02-10":{"1. open":"135.4700","2. high":"136.5600","3. low":"133.1700","4. close":"133.5200","5. volume":"5978640"},"2022-02-09":{"1. open":"137.8400","2. high":"138.3500","3. low":"136.8300","4. close":"137.7900","5. volume":"5393478"},"2022-02-08":{"1. open":"137.2300","2. high":"137.5200","3. low":"135.7800","4. close":"137.0200","5. volume":"4181825"},"2022-02-07":{"1. open":"137.4500","2. high":"137.8223","3. low":"136.2700","4. close":"137.2400","5. volume":"3759046"},"2022-02-04":{"1. open":"137.8600","2. high":"138.8200","3. low":"136.2150","4. close":"137.1500","5. volume":"4142045"},"2022-02-03":{"1. open":"137.0000","2. high":"138.7600","3. low":"135.8310","4. close":"137.7800","5. volume":"6100777"},"2022-02-02":{"1. open":"135.7000","2. high":"137.5550","3. low":"135.2600","4. close":"137.2500","5. volume":"5357237"},"2022-02-01":{"1. open":"133.7600","2. high":"135.9600","3. low":"132.5000","4. close":"135.5300","5. volume":"6206448"},"2022-01-31":{"1. open":"134.0900","2. high":"134.0900","3. low":"132.3000","4. close":"133.5700","5. volume":"5859043"},"2022-01-28":{"1. open":"133.1900","2. high":"134.5300","3. low":"131.7900","4. close":"134.5000","5. volume":"5471497"},"2022-01-27":{"1. open":"133.6600","2. high":"134.7500","3. low":"132.0800","4. close":"132.5200","5. volume":"5499566"},"2022-01-26":{"1. open":"136.4700","2. high":"137.0700","3. low":"133.1300","4. close":"134.2600","5. volume":"8335992"},"2022-01-25":{"1. open":"129.1400","2. high":"137.3361","3. low":"128.3000","4. close":"136.1000","5. volume":"19715698"},"2022-01-24":{"1. open":"127.9900","2. high":"129.1500","3. low":"124.1930","4. close":"128.8200","5. volume":"13777648"},"2022-01-21":{"1. open":"131.6500","2. high":"131.8700","3. low":"129.2700","4. close":"129.3500","5. volume":"5906950"},"2022-01-20":{"1. open":"131.2600","2. high":"132.8800","3. low":"130.5705","4. close":"130.8200","5. volume":"5278244"},"2022-01-19":{"1. open":"132.9000","2. high":"133.9000","3. low":"131.5000","4. close":"131.5800","5. volume":"4099035"},"2022-01-18":{"1. open":"132.9500","2. high":"133.8900","3. low":"131.7800","4. close":"132.9400","5. volume":"5236258"},"2022-01-14":{"1. open":"134.5500","2. high":"135.1400","3. low":"133.3000","4. close":"134.2100","5. volume":"5310305"},"2022-01-13":{"1. open":"133.9000","2. high":"136.0500","3. low":"133.5600","4. close":"134.7600","5. volume":"4868349"},"2022-01-12":{"1. open":"133.2500","2. high":"134.4700","3. low":"131.3700","4. close":"133.5900","5. volume":"5352014"},"2022-01-11":{"1. open":"130.5200","2. high":"133.2500","3. low":"127.9700","4. close":"132.8700","5. volume":"11081210"},"2022-01-10":{"1. open":"134.4700","2. high":"136.2000","3. low":"133.3800","4. close":"135.0300","5. volume":"5432807"},"2022-01-07":{"1. open":"134.9000","2. high":"135.6618","3. low":"133.5111","4. close":"134.8300","5. volume":"5238099"},"2022-01-06":{"1. open":"138.2000","2. high":"138.4099","3. low":"132.5100","4. close":"135.3400","5. volume":"9908081"},"2022-01-05":{"1. open":"138.3100","2. high":"142.2000","3. low":"137.8800","4. close":"138.2200","5. volume":"8956910"},"2022-01-04":{"1. open":"136.1000","2. high":"139.9500","3. low":"135.9000","4. close":"138.0200","5. volume":"7300011"},"2022-01-03":{"1. open":"134.0700","2. high":"136.2950","3. low":"133.6300","4. close":"136.0400","5. volume":"4610665"},"2021-12-31":{"1. open":"134.0000","2. high":"134.9900","3. low":"133.6100","4. close":"133.6600","5. volume":"3315313"},"2021-12-30":{"1. open":"133.7500","2. high":"134.3700","3. low":"133.3300","4. close":"133.9100","5. volume":"3158111"},"2021-12-29":{"1. open":"132.4000","2. high":"134.2100","3. low":"132.3000","4. close":"133.3500","5. volume":"4239935"},"2021-12-28":{"1. open":"131.6000","2. high":"133.2200","3. low":"131.5900","4. close":"132.6300","5. volume":"3447079"},"2021-12-27":{"1. open":"130.6300","2. high":"131.6500","3. low":"129.9500","4. close":"131.6200","5. volume":"4294499"},"2021-12-23":{"1. open":"130.0000","2. high":"130.9600","3. low":"129.5200","4. close":"130.6300","5. volume":"3649044"},"2021-12-22":{"1. open":"129.0600","2. high":"129.7900","3. low":"127.6000","4. close":"129.7500","5. volume":"3923198"},"2021-12-21":{"1. open":"127.6600","2. high":"129.3356","3. low":"127.6600","4. close":"128.9700","5. volume":"4855972"},"2021-12-20":{"1. open":"125.7200","2. high":"127.2000","3. low":"124.7000","4. close":"127.0600","5. volume":"4941411"},"2021-12-17":{"1. open":"125.8700","2. high":"128.6400","3. low":"125.2093","4. close":"127.4000","5. volume":"10382693"},"2021-12-16":{"1. open":"123.5100","2. high":"126.6399","3. low":"123.4750","4. close":"125.9300","5. volume":"7280537"},"2021-12-15":{"1. open":"123.8000","2. high":"124.8150","3. low":"122.1800","4. close":"123.1100","5. volume":"4990028"},"2021-12-14":{"1. open":"122.3500","2. high":"125.0300","3. low":"122.3000","4. close":"123.7600","5. volume":"5716124"},"2021-12-13":{"1. open":"123.7600","2. high":"124.3554","3. low":"120.7900","4. close":"122.5800","5. volume":"6847468"},"2021-12-10":{"1. open":"124.3000","2. high":"125.3300","3. low":"123.3600","4. close":"124.0900","5. volume":"4966921"},"2021-12-09":{"1. open":"122.1500","2. high":"123.9500","3. low":"121.7900","4. close":"123.5700","5. volume":"4601092"},"2021-12-08":{"1. open":"122.0000","2. high":"123.3800","3. low":"121.5200","4. close":"123.0200","5. volume":"5483948"},"2021-12-07":{"1. open":"120.4750","2. high":"122.0800","3. low":"120.0700","4. close":"121.5800","5. volume":"5193991"},"2021-12-06":{"1. open":"119.4000","2. high":"121.1500","3. low":"119.4000","4. close":"119.9100","5. volume":"4785560"},"2021-12-03":{"1. open":"117.3600","2. high":"119.3600","3. low":"117.3600","4. close":"118.8400","5. volume":"6630139"},"2021-12-02":{"1. open":"117.3700","2. high":"117.9800","3. low":"116.5600","4. close":"116.9000","5. volume":"5267149"},"2021-12-01":{"1. open":"118.2500","2. high":"118.9300","3. low":"116.8500","4. close":"116.9200","5. volume":"5959867"},"2021-11-30":{"1. open":"117.5000","2. high":"119.2399","3. low":"116.4500","4. close":"117.1000","5. volume":"9252701"},"2021-11-29":{"1. open":"118.6200","2. high":"119.6100","3. low":"117.5300","4. close":"118.5000","5. volume":"8949795"},"2021-11-26":{"1. open":"115.0000","2. high":"116.3350","3. low":"114.5600","4. close":"115.8100","5. volume":"3322012"},"2021-11-24":{"1. open":"116.1600","2. high":"117.2700","3. low":"116.0800","4. close":"116.7300","5. volume":"3220802"},"2021-11-23":{"1. open":"116.7900","2. high":"117.9400","3. low":"116.0400","4. close":"116.7900","5. volume":"4914995"},"2021-11-22":{"1. open":"116.0000","2. high":"118.8100","3. low":"115.1900","4. close":"116.4700","5. volume":"6417218"},"2021-11-19":{"1. open":"116.4900","2. high":"116.5600","3. low":"115.2700","4. close":"116.0500","5. volume":"5384548"},"2021-11-18":{"1. open":"118.3600","2. high":"118.3600","3. low":"116.3100","4. close":"116.6600","5. volume":"5047879"},"2021-11-17":{"1. open":"118.3800","2. high":"119.3300","3. low":"117.7800","4. close":"118.0600","5. volume":"4043289"},"2021-11-16":{"1. open":"118.9200","2. high":"119.9000","3. low":"118.4200","4. close":"118.4600","5. volume":"4750760"},"2021-11-15":{"1. open":"119.5400","2. high":"120.1600","3. low":"118.3100","4. close":"118.8700","5. volume":"5046321"},"2021-11-12":{"1. open":"120.0000","2. high":"120.6400","3. low":"118.7800","4. close":"118.9600","5. volume":"5376966"},"2021-11-11":{"1. open":"120.9000","2. high":"121.7894","3. low":"120.0800","4. close":"120.2700","5. volume":"4643257"},"2021-11-10":{"1. open":"121.0000","2. high":"122.4300","3. low":"119.9320","4. close":"120.2200","5. volume":"6268961"},"2021-11-09":{"1. open":"122.5600","2. high":"122.9000","3. low":"120.2600","4. close":"120.8500","5. volume":"7195453"},"2021-11-08":{"1. open":"123.9850","2. high":"124.7800","3. low":"123.5300","4. close":"124.5400","5. volume":"5625275"},"2021-11-05":{"1. open":"121.4300","2. high":"123.7700","3. low":"121.4300","4. close":"123.6100","5. volume":"6790478"},"2021-11-04":{"1. open":"123.0500","2. high":"123.3400","3. low":"119.9000","4. close":"120.8500","5. volume":"7208736"},"2021-11-03":{"1. open":"126.2300","2. high":"127.2900","3. low":"125.6800","4. close":"127.1300","5. volume":"5421406"},"2021-11-02":{"1. open":"126.3000","2. high":"127.1700","3. low":"124.9100","4. close":"126.1800","5. volume":"4496393"},"2021-11-01":{"1. open":"125.0500","2. high":"126.3100","3. low":"123.8375","4. close":"126.2800","5. volume":"5874767"}}} \ No newline at end of file +{"Meta Data":{"1. Information":"Daily Prices (open, high, low, close) and Volumes","2. Symbol":"IBM","3. Last Refreshed":"2022-03-28","4. Output Size":"Compact","5. Time Zone":"US/Eastern"},"Time Series (Daily)":{"2022-03-28":{"1. open":"130.8200","2. high":"131.5000","3. low":"129.6000","4. close":"131.4700","5. volume":"2483492"},"2022-03-25":{"1. open":"129.5000","2. high":"131.4000","3. low":"129.3100","4. close":"131.3500","5. volume":"3516923"},"2022-03-24":{"1. open":"128.3300","2. high":"129.3700","3. low":"127.8000","4. close":"129.2500","5. volume":"2971075"},"2022-03-23":{"1. open":"129.0800","2. high":"129.3200","3. low":"128.2500","4. close":"128.3000","5. volume":"2924535"},"2022-03-22":{"1. open":"128.5000","2. high":"129.3000","3. low":"127.8500","4. close":"129.0600","5. volume":"2649026"},"2022-03-21":{"1. open":"129.0000","2. high":"129.7400","3. low":"127.4000","4. close":"128.1000","5. volume":"3379393"},"2022-03-18":{"1. open":"127.3800","2. high":"128.9300","3. low":"126.3700","4. close":"128.7600","5. volume":"7400216"},"2022-03-17":{"1. open":"127.1000","2. high":"128.2900","3. low":"126.5300","4. close":"127.9600","5. volume":"3671903"},"2022-03-16":{"1. open":"126.5000","2. high":"127.2842","3. low":"124.7100","4. close":"127.0400","5. volume":"4292845"},"2022-03-15":{"1. open":"124.0000","2. high":"125.9398","3. low":"123.2200","4. close":"125.6400","5. volume":"4021228"},"2022-03-14":{"1. open":"124.4500","2. high":"125.1600","3. low":"122.6850","4. close":"123.9400","5. volume":"3289440"},"2022-03-11":{"1. open":"125.0000","2. high":"126.7700","3. low":"123.9100","4. close":"123.9600","5. volume":"4119630"},"2022-03-10":{"1. open":"125.7500","2. high":"126.0300","3. low":"123.1250","4. close":"124.3500","5. volume":"5326835"},"2022-03-09":{"1. open":"127.4100","2. high":"128.1000","3. low":"125.9100","4. close":"126.2200","5. volume":"4403499"},"2022-03-08":{"1. open":"126.6200","2. high":"128.3450","3. low":"124.8200","4. close":"125.6800","5. volume":"4887565"},"2022-03-07":{"1. open":"126.4700","2. high":"127.9050","3. low":"125.6200","4. close":"126.0700","5. volume":"5047358"},"2022-03-04":{"1. open":"124.4000","2. high":"127.3500","3. low":"124.2103","4. close":"126.6200","5. volume":"4402911"},"2022-03-03":{"1. open":"124.9600","2. high":"126.6650","3. low":"124.2351","4. close":"125.9300","5. volume":"5206649"},"2022-03-02":{"1. open":"122.5900","2. high":"124.6400","3. low":"121.8000","4. close":"123.8600","5. volume":"4891435"},"2022-03-01":{"1. open":"122.6700","2. high":"123.3900","3. low":"120.7000","4. close":"121.3500","5. volume":"4873331"},"2022-02-28":{"1. open":"122.2100","2. high":"123.3851","3. low":"121.0388","4. close":"122.5100","5. volume":"6757332"},"2022-02-25":{"1. open":"122.0500","2. high":"124.2625","3. low":"121.4500","4. close":"124.1800","5. volume":"4460904"},"2022-02-24":{"1. open":"120.0000","2. high":"122.1000","3. low":"118.8100","4. close":"121.9700","5. volume":"6563202"},"2022-02-23":{"1. open":"124.3800","2. high":"124.7000","3. low":"121.8700","4. close":"122.0700","5. volume":"4086367"},"2022-02-22":{"1. open":"124.2000","2. high":"125.0000","3. low":"122.6800","4. close":"123.9200","5. volume":"5306688"},"2022-02-18":{"1. open":"124.9400","2. high":"125.4400","3. low":"123.6100","4. close":"124.3500","5. volume":"4609212"},"2022-02-17":{"1. open":"128.0500","2. high":"128.5000","3. low":"124.8500","4. close":"124.9700","5. volume":"6796997"},"2022-02-16":{"1. open":"129.4500","2. high":"130.4400","3. low":"128.2600","4. close":"129.1800","5. volume":"4875612"},"2022-02-15":{"1. open":"130.6400","2. high":"131.6800","3. low":"129.6100","4. close":"129.9400","5. volume":"4395714"},"2022-02-14":{"1. open":"132.5900","2. high":"132.6500","3. low":"129.0700","4. close":"130.1500","5. volume":"5345289"},"2022-02-11":{"1. open":"133.9000","2. high":"134.7099","3. low":"132.3800","4. close":"132.6900","5. volume":"4176155"},"2022-02-10":{"1. open":"135.4700","2. high":"136.5600","3. low":"133.1700","4. close":"133.5200","5. volume":"5978640"},"2022-02-09":{"1. open":"137.8400","2. high":"138.3500","3. low":"136.8300","4. close":"137.7900","5. volume":"5393478"},"2022-02-08":{"1. open":"137.2300","2. high":"137.5200","3. low":"135.7800","4. close":"137.0200","5. volume":"4181825"},"2022-02-07":{"1. open":"137.4500","2. high":"137.8223","3. low":"136.2700","4. close":"137.2400","5. volume":"3759046"},"2022-02-04":{"1. open":"137.8600","2. high":"138.8200","3. low":"136.2150","4. close":"137.1500","5. volume":"4142045"},"2022-02-03":{"1. open":"137.0000","2. high":"138.7600","3. low":"135.8310","4. close":"137.7800","5. volume":"6100777"},"2022-02-02":{"1. open":"135.7000","2. high":"137.5550","3. low":"135.2600","4. close":"137.2500","5. volume":"5357237"},"2022-02-01":{"1. open":"133.7600","2. high":"135.9600","3. low":"132.5000","4. close":"135.5300","5. volume":"6206448"},"2022-01-31":{"1. open":"134.0900","2. high":"134.0900","3. low":"132.3000","4. close":"133.5700","5. volume":"5859043"},"2022-01-28":{"1. open":"133.1900","2. high":"134.5300","3. low":"131.7900","4. close":"134.5000","5. volume":"5471497"},"2022-01-27":{"1. open":"133.6600","2. high":"134.7500","3. low":"132.0800","4. close":"132.5200","5. volume":"5499566"},"2022-01-26":{"1. open":"136.4700","2. high":"137.0700","3. low":"133.1300","4. close":"134.2600","5. volume":"8335992"},"2022-01-25":{"1. open":"129.1400","2. high":"137.3361","3. low":"128.3000","4. close":"136.1000","5. volume":"19715698"},"2022-01-24":{"1. open":"127.9900","2. high":"129.1500","3. low":"124.1930","4. close":"128.8200","5. volume":"13777648"},"2022-01-21":{"1. open":"131.6500","2. high":"131.8700","3. low":"129.2700","4. close":"129.3500","5. volume":"5906950"},"2022-01-20":{"1. open":"131.2600","2. high":"132.8800","3. low":"130.5705","4. close":"130.8200","5. volume":"5278244"},"2022-01-19":{"1. open":"132.9000","2. high":"133.9000","3. low":"131.5000","4. close":"131.5800","5. volume":"4099035"},"2022-01-18":{"1. open":"132.9500","2. high":"133.8900","3. low":"131.7800","4. close":"132.9400","5. volume":"5236258"},"2022-01-14":{"1. open":"134.5500","2. high":"135.1400","3. low":"133.3000","4. close":"134.2100","5. volume":"5310305"},"2022-01-13":{"1. open":"133.9000","2. high":"136.0500","3. low":"133.5600","4. close":"134.7600","5. volume":"4868349"},"2022-01-12":{"1. open":"133.2500","2. high":"134.4700","3. low":"131.3700","4. close":"133.5900","5. volume":"5352014"},"2022-01-11":{"1. open":"130.5200","2. high":"133.2500","3. low":"127.9700","4. close":"132.8700","5. volume":"11081210"},"2022-01-10":{"1. open":"134.4700","2. high":"136.2000","3. low":"133.3800","4. close":"135.0300","5. volume":"5432807"},"2022-01-07":{"1. open":"134.9000","2. high":"135.6618","3. low":"133.5111","4. close":"134.8300","5. volume":"5238099"},"2022-01-06":{"1. open":"138.2000","2. high":"138.4099","3. low":"132.5100","4. close":"135.3400","5. volume":"9908081"},"2022-01-05":{"1. open":"138.3100","2. high":"142.2000","3. low":"137.8800","4. close":"138.2200","5. volume":"8956910"},"2022-01-04":{"1. open":"136.1000","2. high":"139.9500","3. low":"135.9000","4. close":"138.0200","5. volume":"7300011"},"2022-01-03":{"1. open":"134.0700","2. high":"136.2950","3. low":"133.6300","4. close":"136.0400","5. volume":"4610665"},"2021-12-31":{"1. open":"134.0000","2. high":"134.9900","3. low":"133.6100","4. close":"133.6600","5. volume":"3315313"},"2021-12-30":{"1. open":"133.7500","2. high":"134.3700","3. low":"133.3300","4. close":"133.9100","5. volume":"3158111"},"2021-12-29":{"1. open":"132.4000","2. high":"134.2100","3. low":"132.3000","4. close":"133.3500","5. volume":"4239935"},"2021-12-28":{"1. open":"131.6000","2. high":"133.2200","3. low":"131.5900","4. close":"132.6300","5. volume":"3447079"},"2021-12-27":{"1. open":"130.6300","2. high":"131.6500","3. low":"129.9500","4. close":"131.6200","5. volume":"4294499"},"2021-12-23":{"1. open":"130.0000","2. high":"130.9600","3. low":"129.5200","4. close":"130.6300","5. volume":"3649044"},"2021-12-22":{"1. open":"129.0600","2. high":"129.7900","3. low":"127.6000","4. close":"129.7500","5. volume":"3923198"},"2021-12-21":{"1. open":"127.6600","2. high":"129.3356","3. low":"127.6600","4. close":"128.9700","5. volume":"4855972"},"2021-12-20":{"1. open":"125.7200","2. high":"127.2000","3. low":"124.7000","4. close":"127.0600","5. volume":"4941411"},"2021-12-17":{"1. open":"125.8700","2. high":"128.6400","3. low":"125.2093","4. close":"127.4000","5. volume":"10382693"},"2021-12-16":{"1. open":"123.5100","2. high":"126.6399","3. low":"123.4750","4. close":"125.9300","5. volume":"7280537"},"2021-12-15":{"1. open":"123.8000","2. high":"124.8150","3. low":"122.1800","4. close":"123.1100","5. volume":"4990028"},"2021-12-14":{"1. open":"122.3500","2. high":"125.0300","3. low":"122.3000","4. close":"123.7600","5. volume":"5716124"},"2021-12-13":{"1. open":"123.7600","2. high":"124.3554","3. low":"120.7900","4. close":"122.5800","5. volume":"6847468"},"2021-12-10":{"1. open":"124.3000","2. high":"125.3300","3. low":"123.3600","4. close":"124.0900","5. volume":"4966921"},"2021-12-09":{"1. open":"122.1500","2. high":"123.9500","3. low":"121.7900","4. close":"123.5700","5. volume":"4601092"},"2021-12-08":{"1. open":"122.0000","2. high":"123.3800","3. low":"121.5200","4. close":"123.0200","5. volume":"5483948"},"2021-12-07":{"1. open":"120.4750","2. high":"122.0800","3. low":"120.0700","4. close":"121.5800","5. volume":"5193991"},"2021-12-06":{"1. open":"119.4000","2. high":"121.1500","3. low":"119.4000","4. close":"119.9100","5. volume":"4785560"},"2021-12-03":{"1. open":"117.3600","2. high":"119.3600","3. low":"117.3600","4. close":"118.8400","5. volume":"6630139"},"2021-12-02":{"1. open":"117.3700","2. high":"117.9800","3. low":"116.5600","4. close":"116.9000","5. volume":"5267149"},"2021-12-01":{"1. open":"118.2500","2. high":"118.9300","3. low":"116.8500","4. close":"116.9200","5. volume":"5959867"},"2021-11-30":{"1. open":"117.5000","2. high":"119.2399","3. low":"116.4500","4. close":"117.1000","5. volume":"9252701"},"2021-11-29":{"1. open":"118.6200","2. high":"119.6100","3. low":"117.5300","4. close":"118.5000","5. volume":"8949795"},"2021-11-26":{"1. open":"115.0000","2. high":"116.3350","3. low":"114.5600","4. close":"115.8100","5. volume":"3322012"},"2021-11-24":{"1. open":"116.1600","2. high":"117.2700","3. low":"116.0800","4. close":"116.7300","5. volume":"3220802"},"2021-11-23":{"1. open":"116.7900","2. high":"117.9400","3. low":"116.0400","4. close":"116.7900","5. volume":"4914995"},"2021-11-22":{"1. open":"116.0000","2. high":"118.8100","3. low":"115.1900","4. close":"116.4700","5. volume":"6417218"},"2021-11-19":{"1. open":"116.4900","2. high":"116.5600","3. low":"115.2700","4. close":"116.0500","5. volume":"5384548"},"2021-11-18":{"1. open":"118.3600","2. high":"118.3600","3. low":"116.3100","4. close":"116.6600","5. volume":"5047879"},"2021-11-17":{"1. open":"118.3800","2. high":"119.3300","3. low":"117.7800","4. close":"118.0600","5. volume":"4043289"},"2021-11-16":{"1. open":"118.9200","2. high":"119.9000","3. low":"118.4200","4. close":"118.4600","5. volume":"4750760"},"2021-11-15":{"1. open":"119.5400","2. high":"120.1600","3. low":"118.3100","4. close":"118.8700","5. volume":"5046321"},"2021-11-12":{"1. open":"120.0000","2. high":"120.6400","3. low":"118.7800","4. close":"118.9600","5. volume":"5376966"},"2021-11-11":{"1. open":"120.9000","2. high":"121.7894","3. low":"120.0800","4. close":"120.2700","5. volume":"4643257"},"2021-11-10":{"1. open":"121.0000","2. high":"122.4300","3. low":"119.9320","4. close":"120.2200","5. volume":"6268961"},"2021-11-09":{"1. open":"122.5600","2. high":"122.9000","3. low":"120.2600","4. close":"120.8500","5. volume":"7195453"},"2021-11-08":{"1. open":"123.9850","2. high":"124.7800","3. low":"123.5300","4. close":"124.5400","5. volume":"5625275"},"2021-11-05":{"1. open":"121.4300","2. high":"123.7700","3. low":"121.4300","4. close":"123.6100","5. volume":"6790478"},"2021-11-04":{"1. open":"123.0500","2. high":"123.3400","3. low":"119.9000","4. close":"120.8500","5. volume":"7208736"},"2021-11-03":{"1. open":"126.2300","2. high":"127.2900","3. low":"125.6800","4. close":"127.1300","5. volume":"5421406"}}} \ No newline at end of file diff --git a/Backend/data/intraday_ABC.json b/Backend/data/intraday_ABC.json index 0196d2a7..39c3eb23 100644 --- a/Backend/data/intraday_ABC.json +++ b/Backend/data/intraday_ABC.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"ABC","3. Last Refreshed":"2022-03-24 16:30:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-24 16:30:00":{"1. open":"152.6100","2. high":"152.6100","3. low":"152.6100","4. close":"152.6100","5. volume":"18709"},"2022-03-24 16:00:00":{"1. open":"152.2100","2. high":"152.6400","3. low":"152.1700","4. close":"152.6100","5. volume":"111479"},"2022-03-24 15:30:00":{"1. open":"152.0400","2. high":"152.3600","3. low":"151.9650","4. close":"152.2400","5. volume":"43565"},"2022-03-24 15:00:00":{"1. open":"151.7450","2. high":"152.0950","3. low":"151.6600","4. close":"152.0200","5. volume":"42138"},"2022-03-24 14:30:00":{"1. open":"152.2700","2. high":"152.2700","3. low":"151.7100","4. close":"151.7100","5. volume":"39337"},"2022-03-24 14:00:00":{"1. open":"151.8900","2. high":"152.3490","3. low":"151.8400","4. close":"152.2300","5. volume":"36029"},"2022-03-24 13:30:00":{"1. open":"152.2250","2. high":"152.2300","3. low":"151.8600","4. close":"151.8800","5. volume":"60373"},"2022-03-24 13:00:00":{"1. open":"151.8400","2. high":"152.2200","3. low":"151.7800","4. close":"152.2200","5. volume":"52305"},"2022-03-24 12:30:00":{"1. open":"152.3700","2. high":"152.5200","3. low":"151.7600","4. close":"151.9000","5. volume":"20209"},"2022-03-24 12:00:00":{"1. open":"152.7600","2. high":"152.7600","3. low":"152.0300","4. close":"152.2900","5. volume":"28198"},"2022-03-24 11:30:00":{"1. open":"152.3900","2. high":"152.7900","3. low":"152.3900","4. close":"152.7200","5. volume":"32144"},"2022-03-24 11:00:00":{"1. open":"152.3900","2. high":"152.6900","3. low":"152.1100","4. close":"152.3029","5. volume":"35631"},"2022-03-24 10:30:00":{"1. open":"151.9800","2. high":"152.8700","3. low":"151.9800","4. close":"152.4000","5. volume":"42202"},"2022-03-24 10:00:00":{"1. open":"152.4800","2. high":"152.4800","3. low":"151.2900","4. close":"152.0500","5. volume":"56356"},"2022-03-23 17:00:00":{"1. open":"151.5300","2. high":"151.5300","3. low":"151.5300","4. close":"151.5300","5. volume":"1135"},"2022-03-23 16:30:00":{"1. open":"151.5300","2. high":"151.5300","3. low":"151.5300","4. close":"151.5300","5. volume":"34943"},"2022-03-23 16:00:00":{"1. open":"151.9600","2. high":"152.0350","3. low":"151.5100","4. close":"151.5200","5. volume":"177924"},"2022-03-23 15:30:00":{"1. open":"151.9700","2. high":"152.3000","3. low":"151.9500","4. close":"152.0100","5. volume":"65254"},"2022-03-23 15:00:00":{"1. open":"151.9750","2. high":"152.2000","3. low":"151.9200","4. close":"151.9600","5. volume":"68352"},"2022-03-23 14:30:00":{"1. open":"151.8800","2. high":"152.2100","3. low":"151.8000","4. close":"151.9750","5. volume":"71872"},"2022-03-23 14:00:00":{"1. open":"151.3000","2. high":"151.9900","3. low":"151.1800","4. close":"151.8700","5. volume":"57053"},"2022-03-23 13:30:00":{"1. open":"151.3450","2. high":"151.5400","3. low":"151.3200","4. close":"151.3900","5. volume":"38980"},"2022-03-23 13:00:00":{"1. open":"150.6800","2. high":"151.3700","3. low":"150.5400","4. close":"151.3400","5. volume":"65369"},"2022-03-23 12:30:00":{"1. open":"151.0200","2. high":"151.1500","3. low":"150.6300","4. close":"150.6400","5. volume":"46781"},"2022-03-23 12:00:00":{"1. open":"151.7500","2. high":"151.7500","3. low":"150.8800","4. close":"151.0300","5. volume":"50201"},"2022-03-23 11:30:00":{"1. open":"151.2700","2. high":"151.8250","3. low":"151.2200","4. close":"151.7300","5. volume":"49361"},"2022-03-23 11:00:00":{"1. open":"151.9200","2. high":"151.9500","3. low":"151.1300","4. close":"151.2300","5. volume":"61698"},"2022-03-23 10:30:00":{"1. open":"151.6800","2. high":"152.2900","3. low":"151.2000","4. close":"151.9200","5. volume":"45779"},"2022-03-23 10:00:00":{"1. open":"152.0100","2. high":"152.5600","3. low":"151.4200","4. close":"151.6650","5. volume":"54488"},"2022-03-22 16:30:00":{"1. open":"152.1100","2. high":"152.1100","3. low":"152.1100","4. close":"152.1100","5. volume":"14327"},"2022-03-22 16:00:00":{"1. open":"152.3400","2. high":"152.6200","3. low":"151.9800","4. close":"152.1700","5. volume":"184529"},"2022-03-22 15:30:00":{"1. open":"152.2800","2. high":"152.5800","3. low":"152.2800","4. close":"152.3800","5. volume":"43497"},"2022-03-22 15:00:00":{"1. open":"152.3400","2. high":"152.5700","3. low":"152.2757","4. close":"152.2800","5. volume":"35903"},"2022-03-22 14:30:00":{"1. open":"152.4300","2. high":"152.5000","3. low":"152.2200","4. close":"152.4000","5. volume":"28846"},"2022-03-22 14:00:00":{"1. open":"152.6400","2. high":"152.6600","3. low":"152.3800","4. close":"152.4300","5. volume":"24568"},"2022-03-22 13:30:00":{"1. open":"152.5200","2. high":"152.6600","3. low":"152.3900","4. close":"152.6050","5. volume":"33386"},"2022-03-22 13:00:00":{"1. open":"152.3200","2. high":"152.6395","3. low":"152.1800","4. close":"152.5000","5. volume":"24631"},"2022-03-22 12:30:00":{"1. open":"152.5099","2. high":"152.6000","3. low":"152.2300","4. close":"152.3207","5. volume":"21184"},"2022-03-22 12:00:00":{"1. open":"151.7600","2. high":"152.6600","3. low":"151.6100","4. close":"152.4500","5. volume":"32443"},"2022-03-22 11:30:00":{"1. open":"152.6000","2. high":"152.6000","3. low":"151.6900","4. close":"151.8100","5. volume":"50692"},"2022-03-22 11:00:00":{"1. open":"152.3300","2. high":"152.8224","3. low":"152.1900","4. close":"152.5100","5. volume":"48400"},"2022-03-22 10:30:00":{"1. open":"152.5100","2. high":"152.5800","3. low":"151.7700","4. close":"152.2500","5. volume":"62732"},"2022-03-22 10:00:00":{"1. open":"153.8100","2. high":"154.6700","3. low":"152.3100","4. close":"152.5850","5. volume":"68126"},"2022-03-21 16:30:00":{"1. open":"153.1800","2. high":"153.1800","3. low":"153.1800","4. close":"153.1800","5. volume":"8275"},"2022-03-21 16:00:00":{"1. open":"153.1700","2. high":"153.5000","3. low":"152.9600","4. close":"153.2000","5. volume":"232452"},"2022-03-21 15:30:00":{"1. open":"152.6000","2. high":"153.2200","3. low":"152.6000","4. close":"153.1700","5. volume":"43051"},"2022-03-21 15:00:00":{"1. open":"153.0078","2. high":"153.3100","3. low":"152.6000","4. close":"152.6000","5. volume":"39316"},"2022-03-21 14:30:00":{"1. open":"152.9200","2. high":"153.2650","3. low":"152.7100","4. close":"153.0600","5. volume":"32597"},"2022-03-21 14:00:00":{"1. open":"152.7700","2. high":"153.3959","3. low":"152.7700","4. close":"152.9170","5. volume":"43488"},"2022-03-21 13:30:00":{"1. open":"152.7606","2. high":"153.0100","3. low":"152.5100","4. close":"152.6700","5. volume":"30003"},"2022-03-21 13:00:00":{"1. open":"152.7500","2. high":"153.0200","3. low":"152.5000","4. close":"152.7700","5. volume":"24267"},"2022-03-21 12:30:00":{"1. open":"152.9200","2. high":"153.3000","3. low":"152.8400","4. close":"152.8900","5. volume":"25819"},"2022-03-21 12:00:00":{"1. open":"153.2400","2. high":"153.4100","3. low":"152.7300","4. close":"152.9500","5. volume":"40736"},"2022-03-21 11:30:00":{"1. open":"153.9700","2. high":"154.1200","3. low":"153.0200","4. close":"153.1400","5. volume":"63586"},"2022-03-21 11:00:00":{"1. open":"154.4750","2. high":"154.6100","3. low":"153.2500","4. close":"153.9200","5. volume":"51331"},"2022-03-21 10:30:00":{"1. open":"154.6750","2. high":"154.9500","3. low":"154.0500","4. close":"154.4850","5. volume":"65816"},"2022-03-21 10:00:00":{"1. open":"152.6000","2. high":"155.7600","3. low":"152.4500","4. close":"154.6500","5. volume":"84565"},"2022-03-18 16:30:00":{"1. open":"152.0000","2. high":"152.0000","3. low":"152.0000","4. close":"152.0000","5. volume":"65798"},"2022-03-18 16:00:00":{"1. open":"151.2650","2. high":"152.3700","3. low":"151.2300","4. close":"151.9300","5. volume":"343863"},"2022-03-18 15:30:00":{"1. open":"150.6400","2. high":"151.4500","3. low":"150.6200","4. close":"151.2700","5. volume":"52830"},"2022-03-18 15:00:00":{"1. open":"150.8600","2. high":"150.9450","3. low":"150.4900","4. close":"150.6705","5. volume":"55205"},"2022-03-18 14:30:00":{"1. open":"151.2450","2. high":"151.4000","3. low":"150.7800","4. close":"150.8050","5. volume":"56697"},"2022-03-18 14:00:00":{"1. open":"151.4400","2. high":"151.5600","3. low":"151.0250","4. close":"151.2200","5. volume":"55112"},"2022-03-18 13:30:00":{"1. open":"150.9700","2. high":"151.5400","3. low":"150.8900","4. close":"151.5400","5. volume":"26521"},"2022-03-18 13:00:00":{"1. open":"150.8400","2. high":"150.9700","3. low":"150.7600","4. close":"150.9000","5. volume":"26250"},"2022-03-18 12:30:00":{"1. open":"150.3700","2. high":"150.9300","3. low":"150.2900","4. close":"150.8850","5. volume":"37450"},"2022-03-18 12:00:00":{"1. open":"150.3000","2. high":"150.8250","3. low":"150.1800","4. close":"150.4140","5. volume":"47539"},"2022-03-18 11:30:00":{"1. open":"150.4900","2. high":"150.8000","3. low":"150.2200","4. close":"150.3200","5. volume":"50284"},"2022-03-18 11:00:00":{"1. open":"151.0300","2. high":"151.3800","3. low":"150.1100","4. close":"150.3400","5. volume":"26839"},"2022-03-18 10:30:00":{"1. open":"151.0000","2. high":"151.9700","3. low":"150.7000","4. close":"151.2500","5. volume":"50863"},"2022-03-18 10:00:00":{"1. open":"152.2100","2. high":"152.4500","3. low":"150.7011","4. close":"151.0900","5. volume":"142118"},"2022-03-17 16:30:00":{"1. open":"152.2000","2. high":"152.2000","3. low":"152.2000","4. close":"152.2000","5. volume":"8416"},"2022-03-17 16:00:00":{"1. open":"151.6100","2. high":"152.2600","3. low":"151.5550","4. close":"152.2400","5. volume":"210166"},"2022-03-17 15:30:00":{"1. open":"151.8850","2. high":"151.9100","3. low":"151.4700","4. close":"151.6300","5. volume":"42609"},"2022-03-17 15:00:00":{"1. open":"151.8950","2. high":"152.1250","3. low":"151.6500","4. close":"151.7800","5. volume":"74080"},"2022-03-17 14:30:00":{"1. open":"152.2634","2. high":"152.4000","3. low":"151.9300","4. close":"151.9600","5. volume":"51623"},"2022-03-17 14:00:00":{"1. open":"151.8800","2. high":"152.3100","3. low":"151.8200","4. close":"152.2650","5. volume":"27177"},"2022-03-17 13:30:00":{"1. open":"151.4600","2. high":"151.9150","3. low":"151.3000","4. close":"151.8900","5. volume":"56493"},"2022-03-17 13:00:00":{"1. open":"151.8800","2. high":"152.1100","3. low":"151.4500","4. close":"151.5200","5. volume":"103102"},"2022-03-17 12:30:00":{"1. open":"151.8100","2. high":"151.9400","3. low":"151.4100","4. close":"151.8550","5. volume":"59424"},"2022-03-17 12:00:00":{"1. open":"151.2800","2. high":"152.0400","3. low":"151.2075","4. close":"151.8200","5. volume":"34462"},"2022-03-17 11:30:00":{"1. open":"152.3700","2. high":"152.3700","3. low":"150.8900","4. close":"151.2450","5. volume":"55867"},"2022-03-17 11:00:00":{"1. open":"151.8800","2. high":"152.3200","3. low":"151.3700","4. close":"152.3100","5. volume":"71413"},"2022-03-17 10:30:00":{"1. open":"150.6100","2. high":"152.2000","3. low":"150.0300","4. close":"151.8954","5. volume":"88011"},"2022-03-17 10:00:00":{"1. open":"150.0300","2. high":"151.2700","3. low":"149.6900","4. close":"150.4400","5. volume":"100678"},"2022-03-16 20:00:00":{"1. open":"150.4000","2. high":"150.4000","3. low":"150.4000","4. close":"150.4000","5. volume":"200"},"2022-03-16 16:30:00":{"1. open":"150.5000","2. high":"150.5000","3. low":"150.5000","4. close":"150.5000","5. volume":"13102"},"2022-03-16 16:00:00":{"1. open":"150.0000","2. high":"150.5600","3. low":"149.5580","4. close":"150.5200","5. volume":"153677"},"2022-03-16 15:30:00":{"1. open":"148.7300","2. high":"150.1750","3. low":"148.7200","4. close":"150.0000","5. volume":"39419"},"2022-03-16 15:00:00":{"1. open":"148.4800","2. high":"149.3520","3. low":"148.3200","4. close":"148.6100","5. volume":"36455"},"2022-03-16 14:30:00":{"1. open":"149.5100","2. high":"149.6800","3. low":"148.5300","4. close":"148.5300","5. volume":"54438"},"2022-03-16 14:00:00":{"1. open":"149.8250","2. high":"149.9300","3. low":"149.4600","4. close":"149.7400","5. volume":"25814"},"2022-03-16 13:30:00":{"1. open":"149.4200","2. high":"149.9800","3. low":"149.0700","4. close":"149.7700","5. volume":"39531"},"2022-03-16 13:00:00":{"1. open":"150.0800","2. high":"150.1900","3. low":"149.1900","4. close":"149.4700","5. volume":"50601"},"2022-03-16 12:30:00":{"1. open":"150.5650","2. high":"150.5700","3. low":"149.9200","4. close":"150.0800","5. volume":"38296"},"2022-03-16 12:00:00":{"1. open":"150.0100","2. high":"150.7200","3. low":"149.8000","4. close":"150.5650","5. volume":"62787"},"2022-03-16 11:30:00":{"1. open":"150.1100","2. high":"150.3000","3. low":"149.7800","4. close":"149.9600","5. volume":"33511"},"2022-03-16 11:00:00":{"1. open":"149.3650","2. high":"150.5300","3. low":"149.3650","4. close":"150.3200","5. volume":"51729"},"2022-03-16 10:30:00":{"1. open":"151.5200","2. high":"151.5200","3. low":"149.4900","4. close":"149.5400","5. volume":"50746"},"2022-03-16 10:00:00":{"1. open":"151.6800","2. high":"153.0548","3. low":"151.1750","4. close":"151.4100","5. volume":"68155"}}} \ No newline at end of file +{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"ABC","3. Last Refreshed":"2022-03-28 16:30:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-28 16:30:00":{"1. open":"154.7300","2. high":"154.7300","3. low":"154.7300","4. close":"154.7300","5. volume":"17162"},"2022-03-28 16:00:00":{"1. open":"154.1300","2. high":"154.8000","3. low":"154.0800","4. close":"154.7800","5. volume":"135991"},"2022-03-28 15:30:00":{"1. open":"153.6000","2. high":"154.2300","3. low":"153.5200","4. close":"154.1250","5. volume":"80054"},"2022-03-28 15:00:00":{"1. open":"153.5300","2. high":"153.6800","3. low":"153.3300","4. close":"153.6200","5. volume":"32822"},"2022-03-28 14:30:00":{"1. open":"153.4200","2. high":"153.6200","3. low":"153.1900","4. close":"153.5000","5. volume":"40354"},"2022-03-28 14:00:00":{"1. open":"153.4400","2. high":"153.4500","3. low":"153.1300","4. close":"153.3900","5. volume":"23100"},"2022-03-28 13:30:00":{"1. open":"153.8019","2. high":"153.8500","3. low":"153.3400","4. close":"153.4400","5. volume":"23417"},"2022-03-28 13:00:00":{"1. open":"153.7500","2. high":"153.8700","3. low":"153.6600","4. close":"153.8000","5. volume":"26583"},"2022-03-28 12:30:00":{"1. open":"153.8200","2. high":"153.8400","3. low":"153.6600","4. close":"153.7200","5. volume":"18154"},"2022-03-28 12:00:00":{"1. open":"153.9000","2. high":"154.0007","3. low":"153.7700","4. close":"153.7750","5. volume":"22096"},"2022-03-28 11:30:00":{"1. open":"154.1100","2. high":"154.1300","3. low":"153.7500","4. close":"153.8700","5. volume":"33538"},"2022-03-28 11:00:00":{"1. open":"153.7400","2. high":"154.1700","3. low":"153.5200","4. close":"154.1200","5. volume":"43669"},"2022-03-28 10:30:00":{"1. open":"152.9300","2. high":"153.8400","3. low":"152.7100","4. close":"153.6650","5. volume":"30612"},"2022-03-28 10:00:00":{"1. open":"154.0500","2. high":"154.0500","3. low":"152.5100","4. close":"153.0400","5. volume":"46739"},"2022-03-28 09:30:00":{"1. open":"154.1100","2. high":"154.1100","3. low":"154.1100","4. close":"154.1100","5. volume":"310"},"2022-03-28 08:00:00":{"1. open":"155.8300","2. high":"155.8300","3. low":"155.8300","4. close":"155.8300","5. volume":"184"},"2022-03-25 16:30:00":{"1. open":"154.6900","2. high":"154.6900","3. low":"154.6900","4. close":"154.6900","5. volume":"5728"},"2022-03-25 16:00:00":{"1. open":"153.9700","2. high":"154.7600","3. low":"153.8500","4. close":"154.6900","5. volume":"140038"},"2022-03-25 15:30:00":{"1. open":"154.1500","2. high":"154.3200","3. low":"153.8600","4. close":"153.9700","5. volume":"40769"},"2022-03-25 15:00:00":{"1. open":"154.2300","2. high":"154.2450","3. low":"154.0100","4. close":"154.1500","5. volume":"33172"},"2022-03-25 14:30:00":{"1. open":"153.8600","2. high":"154.2800","3. low":"153.8200","4. close":"154.1000","5. volume":"28466"},"2022-03-25 14:00:00":{"1. open":"154.0200","2. high":"154.0200","3. low":"153.5950","4. close":"153.9050","5. volume":"26433"},"2022-03-25 13:30:00":{"1. open":"153.8700","2. high":"154.0000","3. low":"153.6200","4. close":"153.9400","5. volume":"28320"},"2022-03-25 13:00:00":{"1. open":"153.3700","2. high":"153.9600","3. low":"153.3700","4. close":"153.8300","5. volume":"23963"},"2022-03-25 12:30:00":{"1. open":"154.0100","2. high":"154.1550","3. low":"153.2700","4. close":"153.3300","5. volume":"44265"},"2022-03-25 12:00:00":{"1. open":"154.4300","2. high":"154.8600","3. low":"153.9400","4. close":"153.9900","5. volume":"94282"},"2022-03-25 11:30:00":{"1. open":"155.1100","2. high":"155.3400","3. low":"154.2000","4. close":"154.3150","5. volume":"45662"},"2022-03-25 11:00:00":{"1. open":"155.0000","2. high":"155.2900","3. low":"154.8300","4. close":"155.1000","5. volume":"61492"},"2022-03-25 10:30:00":{"1. open":"154.2600","2. high":"155.1100","3. low":"154.2600","4. close":"155.0000","5. volume":"39536"},"2022-03-25 10:00:00":{"1. open":"152.8400","2. high":"154.2200","3. low":"152.7050","4. close":"154.1900","5. volume":"54765"},"2022-03-24 16:30:00":{"1. open":"152.6100","2. high":"152.6100","3. low":"152.6100","4. close":"152.6100","5. volume":"18709"},"2022-03-24 16:00:00":{"1. open":"152.2100","2. high":"152.6400","3. low":"152.1700","4. close":"152.6100","5. volume":"111479"},"2022-03-24 15:30:00":{"1. open":"152.0400","2. high":"152.3600","3. low":"151.9650","4. close":"152.2400","5. volume":"43565"},"2022-03-24 15:00:00":{"1. open":"151.7450","2. high":"152.0950","3. low":"151.6600","4. close":"152.0200","5. volume":"42138"},"2022-03-24 14:30:00":{"1. open":"152.2700","2. high":"152.2700","3. low":"151.7100","4. close":"151.7100","5. volume":"39337"},"2022-03-24 14:00:00":{"1. open":"151.8900","2. high":"152.3490","3. low":"151.8400","4. close":"152.2300","5. volume":"36029"},"2022-03-24 13:30:00":{"1. open":"152.2250","2. high":"152.2300","3. low":"151.8600","4. close":"151.8800","5. volume":"60373"},"2022-03-24 13:00:00":{"1. open":"151.8400","2. high":"152.2200","3. low":"151.7800","4. close":"152.2200","5. volume":"52305"},"2022-03-24 12:30:00":{"1. open":"152.3700","2. high":"152.5200","3. low":"151.7600","4. close":"151.9000","5. volume":"20209"},"2022-03-24 12:00:00":{"1. open":"152.7600","2. high":"152.7600","3. low":"152.0300","4. close":"152.2900","5. volume":"28198"},"2022-03-24 11:30:00":{"1. open":"152.3900","2. high":"152.7900","3. low":"152.3900","4. close":"152.7200","5. volume":"32144"},"2022-03-24 11:00:00":{"1. open":"152.3900","2. high":"152.6900","3. low":"152.1100","4. close":"152.3029","5. volume":"35631"},"2022-03-24 10:30:00":{"1. open":"151.9800","2. high":"152.8700","3. low":"151.9800","4. close":"152.4000","5. volume":"42202"},"2022-03-24 10:00:00":{"1. open":"152.4800","2. high":"152.4800","3. low":"151.2900","4. close":"152.0500","5. volume":"56356"},"2022-03-23 17:00:00":{"1. open":"151.5300","2. high":"151.5300","3. low":"151.5300","4. close":"151.5300","5. volume":"1135"},"2022-03-23 16:30:00":{"1. open":"151.5300","2. high":"151.5300","3. low":"151.5300","4. close":"151.5300","5. volume":"34943"},"2022-03-23 16:00:00":{"1. open":"151.9600","2. high":"152.0350","3. low":"151.5100","4. close":"151.5200","5. volume":"177924"},"2022-03-23 15:30:00":{"1. open":"151.9700","2. high":"152.3000","3. low":"151.9500","4. close":"152.0100","5. volume":"65254"},"2022-03-23 15:00:00":{"1. open":"151.9750","2. high":"152.2000","3. low":"151.9200","4. close":"151.9600","5. volume":"68352"},"2022-03-23 14:30:00":{"1. open":"151.8800","2. high":"152.2100","3. low":"151.8000","4. close":"151.9750","5. volume":"71872"},"2022-03-23 14:00:00":{"1. open":"151.3000","2. high":"151.9900","3. low":"151.1800","4. close":"151.8700","5. volume":"57053"},"2022-03-23 13:30:00":{"1. open":"151.3450","2. high":"151.5400","3. low":"151.3200","4. close":"151.3900","5. volume":"38980"},"2022-03-23 13:00:00":{"1. open":"150.6800","2. high":"151.3700","3. low":"150.5400","4. close":"151.3400","5. volume":"65369"},"2022-03-23 12:30:00":{"1. open":"151.0200","2. high":"151.1500","3. low":"150.6300","4. close":"150.6400","5. volume":"46781"},"2022-03-23 12:00:00":{"1. open":"151.7500","2. high":"151.7500","3. low":"150.8800","4. close":"151.0300","5. volume":"50201"},"2022-03-23 11:30:00":{"1. open":"151.2700","2. high":"151.8250","3. low":"151.2200","4. close":"151.7300","5. volume":"49361"},"2022-03-23 11:00:00":{"1. open":"151.9200","2. high":"151.9500","3. low":"151.1300","4. close":"151.2300","5. volume":"61698"},"2022-03-23 10:30:00":{"1. open":"151.6800","2. high":"152.2900","3. low":"151.2000","4. close":"151.9200","5. volume":"45779"},"2022-03-23 10:00:00":{"1. open":"152.0100","2. high":"152.5600","3. low":"151.4200","4. close":"151.6650","5. volume":"54488"},"2022-03-22 16:30:00":{"1. open":"152.1100","2. high":"152.1100","3. low":"152.1100","4. close":"152.1100","5. volume":"14327"},"2022-03-22 16:00:00":{"1. open":"152.3400","2. high":"152.6200","3. low":"151.9800","4. close":"152.1700","5. volume":"184529"},"2022-03-22 15:30:00":{"1. open":"152.2800","2. high":"152.5800","3. low":"152.2800","4. close":"152.3800","5. volume":"43497"},"2022-03-22 15:00:00":{"1. open":"152.3400","2. high":"152.5700","3. low":"152.2757","4. close":"152.2800","5. volume":"35903"},"2022-03-22 14:30:00":{"1. open":"152.4300","2. high":"152.5000","3. low":"152.2200","4. close":"152.4000","5. volume":"28846"},"2022-03-22 14:00:00":{"1. open":"152.6400","2. high":"152.6600","3. low":"152.3800","4. close":"152.4300","5. volume":"24568"},"2022-03-22 13:30:00":{"1. open":"152.5200","2. high":"152.6600","3. low":"152.3900","4. close":"152.6050","5. volume":"33386"},"2022-03-22 13:00:00":{"1. open":"152.3200","2. high":"152.6395","3. low":"152.1800","4. close":"152.5000","5. volume":"24631"},"2022-03-22 12:30:00":{"1. open":"152.5099","2. high":"152.6000","3. low":"152.2300","4. close":"152.3207","5. volume":"21184"},"2022-03-22 12:00:00":{"1. open":"151.7600","2. high":"152.6600","3. low":"151.6100","4. close":"152.4500","5. volume":"32443"},"2022-03-22 11:30:00":{"1. open":"152.6000","2. high":"152.6000","3. low":"151.6900","4. close":"151.8100","5. volume":"50692"},"2022-03-22 11:00:00":{"1. open":"152.3300","2. high":"152.8224","3. low":"152.1900","4. close":"152.5100","5. volume":"48400"},"2022-03-22 10:30:00":{"1. open":"152.5100","2. high":"152.5800","3. low":"151.7700","4. close":"152.2500","5. volume":"62732"},"2022-03-22 10:00:00":{"1. open":"153.8100","2. high":"154.6700","3. low":"152.3100","4. close":"152.5850","5. volume":"68126"},"2022-03-21 16:30:00":{"1. open":"153.1800","2. high":"153.1800","3. low":"153.1800","4. close":"153.1800","5. volume":"8275"},"2022-03-21 16:00:00":{"1. open":"153.1700","2. high":"153.5000","3. low":"152.9600","4. close":"153.2000","5. volume":"232452"},"2022-03-21 15:30:00":{"1. open":"152.6000","2. high":"153.2200","3. low":"152.6000","4. close":"153.1700","5. volume":"43051"},"2022-03-21 15:00:00":{"1. open":"153.0078","2. high":"153.3100","3. low":"152.6000","4. close":"152.6000","5. volume":"39316"},"2022-03-21 14:30:00":{"1. open":"152.9200","2. high":"153.2650","3. low":"152.7100","4. close":"153.0600","5. volume":"32597"},"2022-03-21 14:00:00":{"1. open":"152.7700","2. high":"153.3959","3. low":"152.7700","4. close":"152.9170","5. volume":"43488"},"2022-03-21 13:30:00":{"1. open":"152.7606","2. high":"153.0100","3. low":"152.5100","4. close":"152.6700","5. volume":"30003"},"2022-03-21 13:00:00":{"1. open":"152.7500","2. high":"153.0200","3. low":"152.5000","4. close":"152.7700","5. volume":"24267"},"2022-03-21 12:30:00":{"1. open":"152.9200","2. high":"153.3000","3. low":"152.8400","4. close":"152.8900","5. volume":"25819"},"2022-03-21 12:00:00":{"1. open":"153.2400","2. high":"153.4100","3. low":"152.7300","4. close":"152.9500","5. volume":"40736"},"2022-03-21 11:30:00":{"1. open":"153.9700","2. high":"154.1200","3. low":"153.0200","4. close":"153.1400","5. volume":"63586"},"2022-03-21 11:00:00":{"1. open":"154.4750","2. high":"154.6100","3. low":"153.2500","4. close":"153.9200","5. volume":"51331"},"2022-03-21 10:30:00":{"1. open":"154.6750","2. high":"154.9500","3. low":"154.0500","4. close":"154.4850","5. volume":"65816"},"2022-03-21 10:00:00":{"1. open":"152.6000","2. high":"155.7600","3. low":"152.4500","4. close":"154.6500","5. volume":"84565"},"2022-03-18 16:30:00":{"1. open":"152.0000","2. high":"152.0000","3. low":"152.0000","4. close":"152.0000","5. volume":"65798"},"2022-03-18 16:00:00":{"1. open":"151.2650","2. high":"152.3700","3. low":"151.2300","4. close":"151.9300","5. volume":"343863"},"2022-03-18 15:30:00":{"1. open":"150.6400","2. high":"151.4500","3. low":"150.6200","4. close":"151.2700","5. volume":"52830"},"2022-03-18 15:00:00":{"1. open":"150.8600","2. high":"150.9450","3. low":"150.4900","4. close":"150.6705","5. volume":"55205"},"2022-03-18 14:30:00":{"1. open":"151.2450","2. high":"151.4000","3. low":"150.7800","4. close":"150.8050","5. volume":"56697"},"2022-03-18 14:00:00":{"1. open":"151.4400","2. high":"151.5600","3. low":"151.0250","4. close":"151.2200","5. volume":"55112"},"2022-03-18 13:30:00":{"1. open":"150.9700","2. high":"151.5400","3. low":"150.8900","4. close":"151.5400","5. volume":"26521"},"2022-03-18 13:00:00":{"1. open":"150.8400","2. high":"150.9700","3. low":"150.7600","4. close":"150.9000","5. volume":"26250"},"2022-03-18 12:30:00":{"1. open":"150.3700","2. high":"150.9300","3. low":"150.2900","4. close":"150.8850","5. volume":"37450"},"2022-03-18 12:00:00":{"1. open":"150.3000","2. high":"150.8250","3. low":"150.1800","4. close":"150.4140","5. volume":"47539"},"2022-03-18 11:30:00":{"1. open":"150.4900","2. high":"150.8000","3. low":"150.2200","4. close":"150.3200","5. volume":"50284"},"2022-03-18 11:00:00":{"1. open":"151.0300","2. high":"151.3800","3. low":"150.1100","4. close":"150.3400","5. volume":"26839"},"2022-03-18 10:30:00":{"1. open":"151.0000","2. high":"151.9700","3. low":"150.7000","4. close":"151.2500","5. volume":"50863"}}} \ No newline at end of file diff --git a/Backend/data/intraday_ABR.json b/Backend/data/intraday_ABR.json new file mode 100644 index 00000000..de641f1d --- /dev/null +++ b/Backend/data/intraday_ABR.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"ABR","3. Last Refreshed":"2022-03-28 16:30:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-28 16:30:00":{"1. open":"17.1900","2. high":"17.1999","3. low":"17.1800","4. close":"17.1800","5. volume":"10241"},"2022-03-28 16:00:00":{"1. open":"17.1600","2. high":"17.1950","3. low":"17.1417","4. close":"17.1900","5. volume":"228146"},"2022-03-28 15:30:00":{"1. open":"17.1500","2. high":"17.1600","3. low":"17.1200","4. close":"17.1600","5. volume":"94196"},"2022-03-28 15:00:00":{"1. open":"17.1200","2. high":"17.1500","3. low":"17.0900","4. close":"17.1500","5. volume":"100590"},"2022-03-28 14:30:00":{"1. open":"17.1500","2. high":"17.1500","3. low":"17.1146","4. close":"17.1200","5. volume":"56631"},"2022-03-28 14:00:00":{"1. open":"17.1500","2. high":"17.1600","3. low":"17.1300","4. close":"17.1450","5. volume":"57379"},"2022-03-28 13:30:00":{"1. open":"17.1800","2. high":"17.1900","3. low":"17.1250","4. close":"17.1400","5. volume":"42544"},"2022-03-28 13:00:00":{"1. open":"17.1200","2. high":"17.1650","3. low":"17.1150","4. close":"17.1650","5. volume":"64296"},"2022-03-28 12:30:00":{"1. open":"17.1550","2. high":"17.1800","3. low":"17.1100","4. close":"17.1150","5. volume":"73689"},"2022-03-28 12:00:00":{"1. open":"17.1900","2. high":"17.1900","3. low":"17.1117","4. close":"17.1550","5. volume":"207735"},"2022-03-28 11:30:00":{"1. open":"17.2000","2. high":"17.2100","3. low":"17.1500","4. close":"17.1950","5. volume":"89376"},"2022-03-28 11:00:00":{"1. open":"17.2400","2. high":"17.2550","3. low":"17.1800","4. close":"17.2000","5. volume":"85689"},"2022-03-28 10:30:00":{"1. open":"17.2000","2. high":"17.3000","3. low":"17.1800","4. close":"17.2400","5. volume":"117102"},"2022-03-28 10:00:00":{"1. open":"17.1800","2. high":"17.2500","3. low":"17.1650","4. close":"17.2000","5. volume":"220940"},"2022-03-28 09:30:00":{"1. open":"17.1900","2. high":"17.2000","3. low":"17.1900","4. close":"17.2000","5. volume":"555"},"2022-03-28 09:00:00":{"1. open":"17.2000","2. high":"17.2000","3. low":"17.2000","4. close":"17.2000","5. volume":"600"},"2022-03-28 08:30:00":{"1. open":"17.2500","2. high":"17.2500","3. low":"17.1800","4. close":"17.1800","5. volume":"2272"},"2022-03-28 07:30:00":{"1. open":"17.2500","2. high":"17.2500","3. low":"17.2500","4. close":"17.2500","5. volume":"435"},"2022-03-25 17:30:00":{"1. open":"17.1500","2. high":"17.2700","3. low":"17.1500","4. close":"17.1600","5. volume":"1110"},"2022-03-25 17:00:00":{"1. open":"17.1500","2. high":"17.1500","3. low":"17.1500","4. close":"17.1500","5. volume":"390"},"2022-03-25 16:30:00":{"1. open":"17.1700","2. high":"17.1700","3. low":"17.1500","4. close":"17.1500","5. volume":"30367"},"2022-03-25 16:00:00":{"1. open":"17.1300","2. high":"17.1850","3. low":"17.0700","4. close":"17.1700","5. volume":"671069"},"2022-03-25 15:30:00":{"1. open":"17.1664","2. high":"17.1664","3. low":"17.1100","4. close":"17.1350","5. volume":"180295"},"2022-03-25 15:00:00":{"1. open":"17.2000","2. high":"17.2100","3. low":"17.1600","4. close":"17.1600","5. volume":"68125"},"2022-03-25 14:30:00":{"1. open":"17.1900","2. high":"17.2250","3. low":"17.1900","4. close":"17.2000","5. volume":"56239"},"2022-03-25 14:00:00":{"1. open":"17.2000","2. high":"17.2250","3. low":"17.1800","4. close":"17.1900","5. volume":"67498"},"2022-03-25 13:30:00":{"1. open":"17.2050","2. high":"17.2300","3. low":"17.1850","4. close":"17.1900","5. volume":"59367"},"2022-03-25 13:00:00":{"1. open":"17.1950","2. high":"17.2050","3. low":"17.1750","4. close":"17.2050","5. volume":"52871"},"2022-03-25 12:30:00":{"1. open":"17.1700","2. high":"17.2100","3. low":"17.1700","4. close":"17.2000","5. volume":"59493"},"2022-03-25 12:00:00":{"1. open":"17.1694","2. high":"17.2000","3. low":"17.1400","4. close":"17.1700","5. volume":"119115"},"2022-03-25 11:30:00":{"1. open":"17.2800","2. high":"17.2850","3. low":"17.1550","4. close":"17.1650","5. volume":"67675"},"2022-03-25 11:00:00":{"1. open":"17.2400","2. high":"17.3099","3. low":"17.2400","4. close":"17.2800","5. volume":"83773"},"2022-03-25 10:30:00":{"1. open":"17.2650","2. high":"17.2750","3. low":"17.2100","4. close":"17.2500","5. volume":"53207"},"2022-03-25 10:00:00":{"1. open":"17.2300","2. high":"17.3500","3. low":"17.2000","4. close":"17.2600","5. volume":"100675"},"2022-03-25 09:30:00":{"1. open":"17.2101","2. high":"17.2200","3. low":"17.2101","4. close":"17.2200","5. volume":"359"},"2022-03-25 09:00:00":{"1. open":"17.3100","2. high":"17.3100","3. low":"17.2800","4. close":"17.2800","5. volume":"384"},"2022-03-25 08:30:00":{"1. open":"17.2300","2. high":"17.2900","3. low":"17.2300","4. close":"17.2900","5. volume":"500"},"2022-03-24 19:30:00":{"1. open":"17.1700","2. high":"17.2300","3. low":"17.1700","4. close":"17.2300","5. volume":"1035"},"2022-03-24 18:00:00":{"1. open":"17.2900","2. high":"17.2900","3. low":"17.2900","4. close":"17.2900","5. volume":"300"},"2022-03-24 17:00:00":{"1. open":"17.1600","2. high":"17.1600","3. low":"17.1600","4. close":"17.1600","5. volume":"600"},"2022-03-24 16:30:00":{"1. open":"17.3000","2. high":"17.3000","3. low":"17.3000","4. close":"17.3000","5. volume":"145"},"2022-03-24 16:00:00":{"1. open":"17.2900","2. high":"17.2900","3. low":"17.2000","4. close":"17.2200","5. volume":"260585"},"2022-03-24 15:30:00":{"1. open":"17.2800","2. high":"17.3000","3. low":"17.2750","4. close":"17.2850","5. volume":"102359"},"2022-03-24 15:00:00":{"1. open":"17.2701","2. high":"17.2950","3. low":"17.2600","4. close":"17.2800","5. volume":"79880"},"2022-03-24 14:30:00":{"1. open":"17.2800","2. high":"17.2900","3. low":"17.2450","4. close":"17.2800","5. volume":"113438"},"2022-03-24 14:00:00":{"1. open":"17.2300","2. high":"17.2800","3. low":"17.2150","4. close":"17.2800","5. volume":"78260"},"2022-03-24 13:30:00":{"1. open":"17.2150","2. high":"17.2400","3. low":"17.2000","4. close":"17.2200","5. volume":"93137"},"2022-03-24 13:00:00":{"1. open":"17.1800","2. high":"17.2300","3. low":"17.1650","4. close":"17.2150","5. volume":"70106"},"2022-03-24 12:30:00":{"1. open":"17.1670","2. high":"17.2100","3. low":"17.1537","4. close":"17.1800","5. volume":"100623"},"2022-03-24 12:00:00":{"1. open":"17.1400","2. high":"17.1850","3. low":"17.1136","4. close":"17.1700","5. volume":"90242"},"2022-03-24 11:30:00":{"1. open":"17.0700","2. high":"17.1500","3. low":"17.0600","4. close":"17.1350","5. volume":"128366"},"2022-03-24 11:00:00":{"1. open":"17.0350","2. high":"17.0850","3. low":"17.0029","4. close":"17.0650","5. volume":"79239"},"2022-03-24 10:30:00":{"1. open":"16.9500","2. high":"17.0650","3. low":"16.9100","4. close":"17.0350","5. volume":"181986"},"2022-03-24 10:00:00":{"1. open":"16.9700","2. high":"16.9900","3. low":"16.9150","4. close":"16.9600","5. volume":"189234"},"2022-03-24 09:30:00":{"1. open":"17.0900","2. high":"17.0900","3. low":"16.9900","4. close":"16.9900","5. volume":"2275"},"2022-03-24 08:30:00":{"1. open":"17.0900","2. high":"17.1000","3. low":"17.0900","4. close":"17.1000","5. volume":"2204"},"2022-03-24 08:00:00":{"1. open":"17.0600","2. high":"17.0600","3. low":"17.0600","4. close":"17.0600","5. volume":"313"},"2022-03-23 16:30:00":{"1. open":"16.9600","2. high":"16.9600","3. low":"16.9600","4. close":"16.9600","5. volume":"11770"},"2022-03-23 16:00:00":{"1. open":"17.0750","2. high":"17.0800","3. low":"16.9600","4. close":"16.9600","5. volume":"462977"},"2022-03-23 15:30:00":{"1. open":"17.0450","2. high":"17.0950","3. low":"17.0440","4. close":"17.0800","5. volume":"165604"},"2022-03-23 15:00:00":{"1. open":"17.0550","2. high":"17.0650","3. low":"17.0350","4. close":"17.0500","5. volume":"113052"},"2022-03-23 14:30:00":{"1. open":"17.0850","2. high":"17.0950","3. low":"17.0350","4. close":"17.0550","5. volume":"161888"},"2022-03-23 14:00:00":{"1. open":"17.0400","2. high":"17.1050","3. low":"17.0300","4. close":"17.0900","5. volume":"83620"},"2022-03-23 13:30:00":{"1. open":"17.0600","2. high":"17.0600","3. low":"17.0300","4. close":"17.0400","5. volume":"100786"},"2022-03-23 13:00:00":{"1. open":"17.0250","2. high":"17.0650","3. low":"17.0125","4. close":"17.0577","5. volume":"89729"},"2022-03-23 12:30:00":{"1. open":"17.0400","2. high":"17.0750","3. low":"17.0050","4. close":"17.0250","5. volume":"135390"},"2022-03-23 12:00:00":{"1. open":"17.0900","2. high":"17.0950","3. low":"17.0400","4. close":"17.0400","5. volume":"73114"},"2022-03-23 11:30:00":{"1. open":"17.0950","2. high":"17.1200","3. low":"17.0700","4. close":"17.0950","5. volume":"144578"},"2022-03-23 11:00:00":{"1. open":"17.0499","2. high":"17.1100","3. low":"17.0400","4. close":"17.0950","5. volume":"180185"},"2022-03-23 10:30:00":{"1. open":"17.1100","2. high":"17.1167","3. low":"16.9900","4. close":"17.0400","5. volume":"260000"},"2022-03-23 10:00:00":{"1. open":"17.1500","2. high":"17.3600","3. low":"17.1000","4. close":"17.1150","5. volume":"291505"},"2022-03-23 09:30:00":{"1. open":"17.1800","2. high":"17.1800","3. low":"17.1800","4. close":"17.1800","5. volume":"728"},"2022-03-23 09:00:00":{"1. open":"17.1900","2. high":"17.1900","3. low":"17.1900","4. close":"17.1900","5. volume":"1200"},"2022-03-23 08:00:00":{"1. open":"17.2500","2. high":"17.2500","3. low":"17.2200","4. close":"17.2200","5. volume":"401"},"2022-03-23 07:30:00":{"1. open":"17.1700","2. high":"17.2300","3. low":"17.1700","4. close":"17.2300","5. volume":"1151"},"2022-03-22 18:30:00":{"1. open":"17.1600","2. high":"17.1600","3. low":"17.1600","4. close":"17.1600","5. volume":"100"},"2022-03-22 17:00:00":{"1. open":"17.1500","2. high":"17.1500","3. low":"17.1500","4. close":"17.1500","5. volume":"500"},"2022-03-22 16:30:00":{"1. open":"17.1500","2. high":"17.1600","3. low":"17.1000","4. close":"17.1500","5. volume":"48843"},"2022-03-22 16:00:00":{"1. open":"17.2950","2. high":"17.3250","3. low":"17.1200","4. close":"17.1500","5. volume":"981980"},"2022-03-22 15:30:00":{"1. open":"17.3150","2. high":"17.3300","3. low":"17.2700","4. close":"17.3000","5. volume":"161210"},"2022-03-22 15:00:00":{"1. open":"17.2700","2. high":"17.3250","3. low":"17.2523","4. close":"17.3150","5. volume":"143685"},"2022-03-22 14:30:00":{"1. open":"17.3100","2. high":"17.3200","3. low":"17.2550","4. close":"17.2700","5. volume":"161547"},"2022-03-22 14:00:00":{"1. open":"17.3550","2. high":"17.3550","3. low":"17.2900","4. close":"17.3050","5. volume":"211375"},"2022-03-22 13:30:00":{"1. open":"17.3950","2. high":"17.4100","3. low":"17.3500","4. close":"17.3541","5. volume":"158765"},"2022-03-22 13:00:00":{"1. open":"17.2800","2. high":"17.4000","3. low":"17.2700","4. close":"17.3920","5. volume":"155107"},"2022-03-22 12:30:00":{"1. open":"17.3000","2. high":"17.3100","3. low":"17.2650","4. close":"17.2842","5. volume":"71789"},"2022-03-22 12:00:00":{"1. open":"17.2350","2. high":"17.3250","3. low":"17.2300","4. close":"17.2900","5. volume":"167591"},"2022-03-22 11:30:00":{"1. open":"17.2100","2. high":"17.2450","3. low":"17.1800","4. close":"17.2300","5. volume":"98571"},"2022-03-22 11:00:00":{"1. open":"17.1850","2. high":"17.2191","3. low":"17.1400","4. close":"17.2150","5. volume":"116221"},"2022-03-22 10:30:00":{"1. open":"17.2700","2. high":"17.2850","3. low":"17.1600","4. close":"17.1801","5. volume":"119311"},"2022-03-22 10:00:00":{"1. open":"17.0900","2. high":"17.3100","3. low":"17.0900","4. close":"17.2700","5. volume":"308311"},"2022-03-22 09:30:00":{"1. open":"17.1200","2. high":"17.1200","3. low":"17.1000","4. close":"17.1000","5. volume":"806"},"2022-03-22 08:30:00":{"1. open":"17.1200","2. high":"17.1200","3. low":"17.1200","4. close":"17.1200","5. volume":"500"},"2022-03-22 08:00:00":{"1. open":"17.1500","2. high":"17.1500","3. low":"17.1500","4. close":"17.1500","5. volume":"400"},"2022-03-22 07:30:00":{"1. open":"17.1000","2. high":"17.1000","3. low":"17.1000","4. close":"17.1000","5. volume":"100"},"2022-03-21 18:30:00":{"1. open":"17.1900","2. high":"17.1900","3. low":"17.1900","4. close":"17.1900","5. volume":"300"},"2022-03-21 16:30:00":{"1. open":"17.0100","2. high":"17.0100","3. low":"17.0100","4. close":"17.0100","5. volume":"22997"},"2022-03-21 16:00:00":{"1. open":"17.0750","2. high":"17.1300","3. low":"17.0100","4. close":"17.0200","5. volume":"887558"},"2022-03-21 15:30:00":{"1. open":"17.0850","2. high":"17.1100","3. low":"17.0500","4. close":"17.0750","5. volume":"143628"},"2022-03-21 15:00:00":{"1. open":"17.0850","2. high":"17.1250","3. low":"17.0450","4. close":"17.0900","5. volume":"153662"}}} \ No newline at end of file diff --git a/Backend/data/intraday_ABT.json b/Backend/data/intraday_ABT.json index f102e804..5206df3e 100644 --- a/Backend/data/intraday_ABT.json +++ b/Backend/data/intraday_ABT.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"ABT","3. Last Refreshed":"2022-03-24 20:00:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-24 20:00:00":{"1. open":"117.9400","2. high":"117.9400","3. low":"117.9400","4. close":"117.9400","5. volume":"260"},"2022-03-24 17:30:00":{"1. open":"117.9100","2. high":"117.9100","3. low":"117.9100","4. close":"117.9100","5. volume":"100"},"2022-03-24 17:00:00":{"1. open":"117.8200","2. high":"117.8200","3. low":"117.5800","4. close":"117.5800","5. volume":"1647"},"2022-03-24 16:30:00":{"1. open":"117.8200","2. high":"117.8200","3. low":"117.8200","4. close":"117.8200","5. volume":"101360"},"2022-03-24 16:00:00":{"1. open":"117.5000","2. high":"117.8800","3. low":"117.1900","4. close":"117.8200","5. volume":"1197950"},"2022-03-24 15:30:00":{"1. open":"117.1912","2. high":"117.5700","3. low":"117.1500","4. close":"117.5100","5. volume":"274661"},"2022-03-24 15:00:00":{"1. open":"117.1200","2. high":"117.2700","3. low":"117.0000","4. close":"117.2100","5. volume":"127652"},"2022-03-24 14:30:00":{"1. open":"117.1400","2. high":"117.4000","3. low":"117.0950","4. close":"117.1150","5. volume":"180414"},"2022-03-24 14:00:00":{"1. open":"117.2300","2. high":"117.3100","3. low":"117.1300","4. close":"117.1420","5. volume":"145884"},"2022-03-24 13:30:00":{"1. open":"117.2500","2. high":"117.3350","3. low":"117.0785","4. close":"117.2000","5. volume":"151641"},"2022-03-24 13:00:00":{"1. open":"116.9800","2. high":"117.2300","3. low":"116.8497","4. close":"117.2300","5. volume":"123282"},"2022-03-24 12:30:00":{"1. open":"117.1200","2. high":"117.2665","3. low":"116.8900","4. close":"116.9997","5. volume":"147829"},"2022-03-24 12:00:00":{"1. open":"117.2000","2. high":"117.5200","3. low":"117.1100","4. close":"117.1100","5. volume":"180739"},"2022-03-24 11:30:00":{"1. open":"116.8000","2. high":"117.2176","3. low":"116.7100","4. close":"117.1850","5. volume":"293791"},"2022-03-24 11:00:00":{"1. open":"116.6300","2. high":"117.1000","3. low":"116.6200","4. close":"116.7800","5. volume":"242480"},"2022-03-24 10:30:00":{"1. open":"117.0500","2. high":"117.2000","3. low":"116.6100","4. close":"116.6150","5. volume":"294743"},"2022-03-24 10:00:00":{"1. open":"117.3800","2. high":"117.6400","3. low":"116.9000","4. close":"117.0500","5. volume":"318216"},"2022-03-24 07:30:00":{"1. open":"117.5000","2. high":"117.5000","3. low":"117.5000","4. close":"117.5000","5. volume":"1314"},"2022-03-23 20:00:00":{"1. open":"117.0000","2. high":"117.0000","3. low":"117.0000","4. close":"117.0000","5. volume":"127"},"2022-03-23 19:30:00":{"1. open":"117.0000","2. high":"117.0000","3. low":"117.0000","4. close":"117.0000","5. volume":"258"},"2022-03-23 19:00:00":{"1. open":"117.0000","2. high":"117.0000","3. low":"117.0000","4. close":"117.0000","5. volume":"242"},"2022-03-23 17:30:00":{"1. open":"116.7900","2. high":"116.7900","3. low":"116.7500","4. close":"116.7500","5. volume":"1115"},"2022-03-23 17:00:00":{"1. open":"116.9200","2. high":"116.9200","3. low":"116.9200","4. close":"116.9200","5. volume":"16003"},"2022-03-23 16:30:00":{"1. open":"116.9200","2. high":"117.0000","3. low":"116.9200","4. close":"116.9200","5. volume":"115465"},"2022-03-23 16:00:00":{"1. open":"116.9800","2. high":"117.3100","3. low":"116.7350","4. close":"116.9300","5. volume":"959825"},"2022-03-23 15:30:00":{"1. open":"117.1650","2. high":"117.3200","3. low":"116.8800","4. close":"116.9900","5. volume":"368726"},"2022-03-23 15:00:00":{"1. open":"117.6400","2. high":"117.6800","3. low":"117.1500","4. close":"117.1500","5. volume":"248180"},"2022-03-23 14:30:00":{"1. open":"117.7600","2. high":"117.7800","3. low":"117.3900","4. close":"117.6300","5. volume":"249673"},"2022-03-23 14:00:00":{"1. open":"117.4400","2. high":"117.7700","3. low":"117.3300","4. close":"117.7500","5. volume":"236084"},"2022-03-23 13:30:00":{"1. open":"117.9500","2. high":"118.0300","3. low":"117.4250","4. close":"117.4800","5. volume":"228910"},"2022-03-23 13:00:00":{"1. open":"118.1900","2. high":"118.3400","3. low":"117.8910","4. close":"117.9500","5. volume":"214258"},"2022-03-23 12:30:00":{"1. open":"118.4600","2. high":"118.6700","3. low":"117.9600","4. close":"118.1600","5. volume":"271765"},"2022-03-23 12:00:00":{"1. open":"119.0900","2. high":"119.1000","3. low":"118.4450","4. close":"118.4700","5. volume":"212661"},"2022-03-23 11:30:00":{"1. open":"118.7700","2. high":"119.2600","3. low":"118.6700","4. close":"119.0900","5. volume":"380846"},"2022-03-23 11:00:00":{"1. open":"119.9400","2. high":"119.9600","3. low":"118.6900","4. close":"118.7700","5. volume":"407069"},"2022-03-23 10:30:00":{"1. open":"119.5300","2. high":"119.9500","3. low":"119.1800","4. close":"119.9500","5. volume":"243373"},"2022-03-23 10:00:00":{"1. open":"121.1100","2. high":"121.2400","3. low":"119.2700","4. close":"119.5300","5. volume":"405245"},"2022-03-23 09:30:00":{"1. open":"121.2500","2. high":"121.6906","3. low":"121.1500","4. close":"121.2500","5. volume":"1471"},"2022-03-22 17:30:00":{"1. open":"121.6500","2. high":"121.9000","3. low":"121.6500","4. close":"121.9000","5. volume":"1228"},"2022-03-22 17:00:00":{"1. open":"121.8900","2. high":"122.0900","3. low":"121.5600","4. close":"121.5601","5. volume":"1858"},"2022-03-22 16:30:00":{"1. open":"121.8900","2. high":"121.8900","3. low":"121.8900","4. close":"121.8900","5. volume":"328755"},"2022-03-22 16:00:00":{"1. open":"121.8400","2. high":"122.1500","3. low":"121.6800","4. close":"121.8900","5. volume":"603381"},"2022-03-22 15:30:00":{"1. open":"121.5300","2. high":"121.9100","3. low":"121.5300","4. close":"121.8500","5. volume":"178508"},"2022-03-22 15:00:00":{"1. open":"121.4800","2. high":"121.6000","3. low":"121.2600","4. close":"121.5500","5. volume":"317025"},"2022-03-22 14:30:00":{"1. open":"121.7700","2. high":"121.8150","3. low":"121.4200","4. close":"121.4700","5. volume":"152501"},"2022-03-22 14:00:00":{"1. open":"121.9300","2. high":"121.9800","3. low":"121.6200","4. close":"121.7300","5. volume":"305552"},"2022-03-22 13:30:00":{"1. open":"122.4700","2. high":"122.5300","3. low":"121.8600","4. close":"121.9300","5. volume":"221296"},"2022-03-22 13:00:00":{"1. open":"122.2700","2. high":"122.5000","3. low":"122.1900","4. close":"122.4900","5. volume":"134984"},"2022-03-22 12:30:00":{"1. open":"122.4700","2. high":"122.4800","3. low":"122.1550","4. close":"122.2546","5. volume":"132125"},"2022-03-22 12:00:00":{"1. open":"122.3300","2. high":"122.5100","3. low":"122.1600","4. close":"122.4600","5. volume":"113670"},"2022-03-22 11:30:00":{"1. open":"122.2900","2. high":"122.4200","3. low":"121.9616","4. close":"122.3100","5. volume":"145703"},"2022-03-22 11:00:00":{"1. open":"122.0600","2. high":"122.3400","3. low":"122.0100","4. close":"122.2800","5. volume":"253185"},"2022-03-22 10:30:00":{"1. open":"121.7900","2. high":"122.0400","3. low":"121.5900","4. close":"122.0300","5. volume":"223197"},"2022-03-22 10:00:00":{"1. open":"121.8900","2. high":"122.0400","3. low":"121.3300","4. close":"121.7400","5. volume":"266839"},"2022-03-22 09:00:00":{"1. open":"122.0100","2. high":"122.0100","3. low":"122.0000","4. close":"122.0000","5. volume":"1179"},"2022-03-21 18:30:00":{"1. open":"121.8100","2. high":"121.8100","3. low":"121.8100","4. close":"121.8100","5. volume":"132"},"2022-03-21 16:30:00":{"1. open":"121.7600","2. high":"121.7600","3. low":"121.7600","4. close":"121.7600","5. volume":"630680"},"2022-03-21 16:00:00":{"1. open":"121.8800","2. high":"121.8800","3. low":"121.3000","4. close":"121.7700","5. volume":"682065"},"2022-03-21 15:30:00":{"1. open":"121.4000","2. high":"121.8400","3. low":"121.3500","4. close":"121.8400","5. volume":"152048"},"2022-03-21 15:00:00":{"1. open":"121.6900","2. high":"121.8800","3. low":"121.3600","4. close":"121.3700","5. volume":"178219"},"2022-03-21 14:30:00":{"1. open":"121.4900","2. high":"121.7300","3. low":"121.2200","4. close":"121.7200","5. volume":"131988"},"2022-03-21 14:00:00":{"1. open":"121.2300","2. high":"121.5200","3. low":"121.2050","4. close":"121.4900","5. volume":"223141"},"2022-03-21 13:30:00":{"1. open":"121.3100","2. high":"121.5600","3. low":"121.2500","4. close":"121.2750","5. volume":"131445"},"2022-03-21 13:00:00":{"1. open":"121.7600","2. high":"121.7600","3. low":"121.1600","4. close":"121.3550","5. volume":"163002"},"2022-03-21 12:30:00":{"1. open":"121.6300","2. high":"121.8100","3. low":"121.4800","4. close":"121.7450","5. volume":"162884"},"2022-03-21 12:00:00":{"1. open":"121.7500","2. high":"122.0300","3. low":"121.5300","4. close":"121.6000","5. volume":"140960"},"2022-03-21 11:30:00":{"1. open":"122.1601","2. high":"122.2300","3. low":"121.6350","4. close":"121.7700","5. volume":"165940"},"2022-03-21 11:00:00":{"1. open":"122.3900","2. high":"122.4150","3. low":"121.8800","4. close":"122.1500","5. volume":"184998"},"2022-03-21 10:30:00":{"1. open":"122.1700","2. high":"122.4900","3. low":"121.8200","4. close":"122.4000","5. volume":"143582"},"2022-03-21 10:00:00":{"1. open":"121.9300","2. high":"123.0962","3. low":"121.8100","4. close":"122.1400","5. volume":"277677"},"2022-03-21 09:30:00":{"1. open":"123.0100","2. high":"123.0100","3. low":"123.0100","4. close":"123.0100","5. volume":"100"},"2022-03-21 09:00:00":{"1. open":"122.2600","2. high":"122.2600","3. low":"122.2600","4. close":"122.2600","5. volume":"110"},"2022-03-21 08:30:00":{"1. open":"122.4499","2. high":"122.4500","3. low":"122.4499","4. close":"122.4500","5. volume":"665"},"2022-03-18 19:00:00":{"1. open":"122.7000","2. high":"122.7000","3. low":"122.7000","4. close":"122.7000","5. volume":"700"},"2022-03-18 18:30:00":{"1. open":"122.7000","2. high":"122.7000","3. low":"122.7000","4. close":"122.7000","5. volume":"295"},"2022-03-18 16:30:00":{"1. open":"122.4500","2. high":"122.6100","3. low":"122.4500","4. close":"122.4500","5. volume":"346186"},"2022-03-18 16:00:00":{"1. open":"122.3300","2. high":"122.6700","3. low":"122.1300","4. close":"122.4200","5. volume":"1191907"},"2022-03-18 15:30:00":{"1. open":"122.1250","2. high":"122.4200","3. low":"121.9900","4. close":"122.3350","5. volume":"704467"},"2022-03-18 15:00:00":{"1. open":"121.8500","2. high":"122.1700","3. low":"121.6200","4. close":"122.1250","5. volume":"297592"},"2022-03-18 14:30:00":{"1. open":"121.8100","2. high":"121.9500","3. low":"121.7000","4. close":"121.8300","5. volume":"169990"},"2022-03-18 14:00:00":{"1. open":"121.9500","2. high":"121.9600","3. low":"121.7000","4. close":"121.8100","5. volume":"173916"},"2022-03-18 13:30:00":{"1. open":"121.6100","2. high":"121.9800","3. low":"121.5950","4. close":"121.9700","5. volume":"127827"},"2022-03-18 13:00:00":{"1. open":"121.9000","2. high":"121.9700","3. low":"121.6100","4. close":"121.6100","5. volume":"101836"},"2022-03-18 12:30:00":{"1. open":"121.6400","2. high":"122.0000","3. low":"121.5392","4. close":"121.8850","5. volume":"116650"},"2022-03-18 12:00:00":{"1. open":"121.5300","2. high":"121.8000","3. low":"121.1000","4. close":"121.6100","5. volume":"155010"},"2022-03-18 11:30:00":{"1. open":"121.7600","2. high":"121.9700","3. low":"121.4100","4. close":"121.5600","5. volume":"155833"},"2022-03-18 11:00:00":{"1. open":"121.8500","2. high":"122.1200","3. low":"121.6550","4. close":"121.7900","5. volume":"226612"},"2022-03-18 10:30:00":{"1. open":"121.5150","2. high":"122.1100","3. low":"121.4500","4. close":"121.8400","5. volume":"192435"},"2022-03-18 10:00:00":{"1. open":"121.7400","2. high":"121.9900","3. low":"120.6800","4. close":"121.5500","5. volume":"1337410"},"2022-03-18 09:30:00":{"1. open":"121.3000","2. high":"121.7400","3. low":"121.3000","4. close":"121.7400","5. volume":"1924"},"2022-03-17 17:00:00":{"1. open":"121.2000","2. high":"121.2000","3. low":"121.2000","4. close":"121.2000","5. volume":"1610"},"2022-03-17 16:30:00":{"1. open":"121.2000","2. high":"121.2000","3. low":"121.2000","4. close":"121.2000","5. volume":"75585"},"2022-03-17 16:00:00":{"1. open":"120.6650","2. high":"121.2400","3. low":"120.5800","4. close":"121.2400","5. volume":"625347"},"2022-03-17 15:30:00":{"1. open":"120.8600","2. high":"120.9102","3. low":"120.4600","4. close":"120.6600","5. volume":"260011"},"2022-03-17 15:00:00":{"1. open":"120.6950","2. high":"120.9970","3. low":"120.6900","4. close":"120.8400","5. volume":"144105"},"2022-03-17 14:30:00":{"1. open":"121.1050","2. high":"121.1200","3. low":"120.6900","4. close":"120.6946","5. volume":"170072"},"2022-03-17 14:00:00":{"1. open":"120.8900","2. high":"121.2300","3. low":"120.8350","4. close":"121.0900","5. volume":"124154"},"2022-03-17 13:30:00":{"1. open":"120.8300","2. high":"120.9350","3. low":"120.5900","4. close":"120.8900","5. volume":"105714"},"2022-03-17 13:00:00":{"1. open":"120.8300","2. high":"120.9300","3. low":"120.6222","4. close":"120.8500","5. volume":"114851"},"2022-03-17 12:30:00":{"1. open":"120.4000","2. high":"120.8600","3. low":"120.1400","4. close":"120.8216","5. volume":"125783"}}} \ No newline at end of file +{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"ABT","3. Last Refreshed":"2022-03-28 20:00:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-28 20:00:00":{"1. open":"120.0000","2. high":"120.0000","3. low":"120.0000","4. close":"120.0000","5. volume":"150"},"2022-03-28 19:00:00":{"1. open":"119.5500","2. high":"119.5500","3. low":"119.5500","4. close":"119.5500","5. volume":"100"},"2022-03-28 18:00:00":{"1. open":"120.0100","2. high":"120.0100","3. low":"120.0100","4. close":"120.0100","5. volume":"127"},"2022-03-28 17:30:00":{"1. open":"120.1900","2. high":"120.1900","3. low":"120.1900","4. close":"120.1900","5. volume":"950"},"2022-03-28 17:00:00":{"1. open":"119.9900","2. high":"120.1900","3. low":"119.7500","4. close":"120.1900","5. volume":"6397"},"2022-03-28 16:30:00":{"1. open":"119.7500","2. high":"120.0200","3. low":"119.7500","4. close":"120.0200","5. volume":"551708"},"2022-03-28 16:00:00":{"1. open":"119.2800","2. high":"120.0000","3. low":"119.2600","4. close":"119.9800","5. volume":"825661"},"2022-03-28 15:30:00":{"1. open":"119.3000","2. high":"119.4000","3. low":"119.0600","4. close":"119.2800","5. volume":"384919"},"2022-03-28 15:00:00":{"1. open":"119.1200","2. high":"119.3900","3. low":"119.0200","4. close":"119.2600","5. volume":"231698"},"2022-03-28 14:30:00":{"1. open":"119.1550","2. high":"119.3800","3. low":"118.8700","4. close":"119.1400","5. volume":"245072"},"2022-03-28 14:00:00":{"1. open":"119.2200","2. high":"119.3023","3. low":"119.0300","4. close":"119.1650","5. volume":"219511"},"2022-03-28 13:30:00":{"1. open":"118.8000","2. high":"119.2500","3. low":"118.7500","4. close":"119.2200","5. volume":"156371"},"2022-03-28 13:00:00":{"1. open":"118.8962","2. high":"119.0700","3. low":"118.7100","4. close":"118.8059","5. volume":"219404"},"2022-03-28 12:30:00":{"1. open":"118.7400","2. high":"119.0900","3. low":"118.7150","4. close":"118.9200","5. volume":"337144"},"2022-03-28 12:00:00":{"1. open":"119.4600","2. high":"119.5450","3. low":"118.7400","4. close":"118.7600","5. volume":"276979"},"2022-03-28 11:30:00":{"1. open":"119.7500","2. high":"119.7700","3. low":"119.2500","4. close":"119.4600","5. volume":"176628"},"2022-03-28 11:00:00":{"1. open":"119.5200","2. high":"119.7900","3. low":"119.2300","4. close":"119.7900","5. volume":"162156"},"2022-03-28 10:30:00":{"1. open":"119.9100","2. high":"119.9289","3. low":"119.3750","4. close":"119.5500","5. volume":"136528"},"2022-03-28 10:00:00":{"1. open":"119.3800","2. high":"119.9000","3. low":"118.8900","4. close":"119.8900","5. volume":"293504"},"2022-03-28 09:30:00":{"1. open":"119.3000","2. high":"119.3000","3. low":"119.1800","4. close":"119.1800","5. volume":"1563"},"2022-03-25 17:00:00":{"1. open":"118.9500","2. high":"118.9500","3. low":"118.9500","4. close":"118.9500","5. volume":"4434"},"2022-03-25 16:30:00":{"1. open":"118.9500","2. high":"118.9500","3. low":"118.9500","4. close":"118.9500","5. volume":"129890"},"2022-03-25 16:00:00":{"1. open":"118.3100","2. high":"119.0000","3. low":"118.2400","4. close":"118.9500","5. volume":"455195"},"2022-03-25 15:30:00":{"1. open":"118.5900","2. high":"118.6950","3. low":"118.2900","4. close":"118.3100","5. volume":"174988"},"2022-03-25 15:00:00":{"1. open":"118.6550","2. high":"118.7400","3. low":"118.5000","4. close":"118.6100","5. volume":"114517"},"2022-03-25 14:30:00":{"1. open":"118.5200","2. high":"118.7200","3. low":"118.4700","4. close":"118.6500","5. volume":"128652"},"2022-03-25 14:00:00":{"1. open":"118.3100","2. high":"118.5500","3. low":"118.2500","4. close":"118.5200","5. volume":"80511"},"2022-03-25 13:30:00":{"1. open":"118.2800","2. high":"118.4200","3. low":"118.1000","4. close":"118.3100","5. volume":"106692"},"2022-03-25 13:00:00":{"1. open":"118.4900","2. high":"118.4900","3. low":"118.0682","4. close":"118.3000","5. volume":"96981"},"2022-03-25 12:30:00":{"1. open":"118.2400","2. high":"118.6000","3. low":"118.2100","4. close":"118.4600","5. volume":"120253"},"2022-03-25 12:00:00":{"1. open":"117.8900","2. high":"118.3100","3. low":"117.7399","4. close":"118.2100","5. volume":"168583"},"2022-03-25 11:30:00":{"1. open":"119.0000","2. high":"119.0300","3. low":"117.8400","4. close":"117.8800","5. volume":"184450"},"2022-03-25 11:00:00":{"1. open":"119.1400","2. high":"119.3100","3. low":"118.9000","4. close":"118.9800","5. volume":"166117"},"2022-03-25 10:30:00":{"1. open":"118.7850","2. high":"119.1300","3. low":"118.6800","4. close":"119.1200","5. volume":"154796"},"2022-03-25 10:00:00":{"1. open":"118.6500","2. high":"119.2150","3. low":"118.4600","4. close":"118.7800","5. volume":"285742"},"2022-03-25 09:30:00":{"1. open":"118.4100","2. high":"118.4300","3. low":"118.4100","4. close":"118.4300","5. volume":"1464"},"2022-03-25 09:00:00":{"1. open":"118.1600","2. high":"118.1600","3. low":"118.1600","4. close":"118.1600","5. volume":"483"},"2022-03-25 07:30:00":{"1. open":"118.2000","2. high":"118.2000","3. low":"118.2000","4. close":"118.2000","5. volume":"358"},"2022-03-24 20:00:00":{"1. open":"117.9400","2. high":"117.9400","3. low":"117.9400","4. close":"117.9400","5. volume":"260"},"2022-03-24 17:30:00":{"1. open":"117.9100","2. high":"117.9100","3. low":"117.9100","4. close":"117.9100","5. volume":"100"},"2022-03-24 17:00:00":{"1. open":"117.8200","2. high":"117.8200","3. low":"117.5800","4. close":"117.5800","5. volume":"1647"},"2022-03-24 16:30:00":{"1. open":"117.8200","2. high":"117.8200","3. low":"117.8200","4. close":"117.8200","5. volume":"101360"},"2022-03-24 16:00:00":{"1. open":"117.5000","2. high":"117.8800","3. low":"117.1900","4. close":"117.8200","5. volume":"1197950"},"2022-03-24 15:30:00":{"1. open":"117.1912","2. high":"117.5700","3. low":"117.1500","4. close":"117.5100","5. volume":"274661"},"2022-03-24 15:00:00":{"1. open":"117.1200","2. high":"117.2700","3. low":"117.0000","4. close":"117.2100","5. volume":"127652"},"2022-03-24 14:30:00":{"1. open":"117.1400","2. high":"117.4000","3. low":"117.0950","4. close":"117.1150","5. volume":"180414"},"2022-03-24 14:00:00":{"1. open":"117.2300","2. high":"117.3100","3. low":"117.1300","4. close":"117.1420","5. volume":"145884"},"2022-03-24 13:30:00":{"1. open":"117.2500","2. high":"117.3350","3. low":"117.0785","4. close":"117.2000","5. volume":"151641"},"2022-03-24 13:00:00":{"1. open":"116.9800","2. high":"117.2300","3. low":"116.8497","4. close":"117.2300","5. volume":"123282"},"2022-03-24 12:30:00":{"1. open":"117.1200","2. high":"117.2665","3. low":"116.8900","4. close":"116.9997","5. volume":"147829"},"2022-03-24 12:00:00":{"1. open":"117.2000","2. high":"117.5200","3. low":"117.1100","4. close":"117.1100","5. volume":"180739"},"2022-03-24 11:30:00":{"1. open":"116.8000","2. high":"117.2176","3. low":"116.7100","4. close":"117.1850","5. volume":"293791"},"2022-03-24 11:00:00":{"1. open":"116.6300","2. high":"117.1000","3. low":"116.6200","4. close":"116.7800","5. volume":"242480"},"2022-03-24 10:30:00":{"1. open":"117.0500","2. high":"117.2000","3. low":"116.6100","4. close":"116.6150","5. volume":"294743"},"2022-03-24 10:00:00":{"1. open":"117.3800","2. high":"117.6400","3. low":"116.9000","4. close":"117.0500","5. volume":"318216"},"2022-03-24 07:30:00":{"1. open":"117.5000","2. high":"117.5000","3. low":"117.5000","4. close":"117.5000","5. volume":"1314"},"2022-03-23 20:00:00":{"1. open":"117.0000","2. high":"117.0000","3. low":"117.0000","4. close":"117.0000","5. volume":"127"},"2022-03-23 19:30:00":{"1. open":"117.0000","2. high":"117.0000","3. low":"117.0000","4. close":"117.0000","5. volume":"258"},"2022-03-23 19:00:00":{"1. open":"117.0000","2. high":"117.0000","3. low":"117.0000","4. close":"117.0000","5. volume":"242"},"2022-03-23 17:30:00":{"1. open":"116.7900","2. high":"116.7900","3. low":"116.7500","4. close":"116.7500","5. volume":"1115"},"2022-03-23 17:00:00":{"1. open":"116.9200","2. high":"116.9200","3. low":"116.9200","4. close":"116.9200","5. volume":"16003"},"2022-03-23 16:30:00":{"1. open":"116.9200","2. high":"117.0000","3. low":"116.9200","4. close":"116.9200","5. volume":"115465"},"2022-03-23 16:00:00":{"1. open":"116.9800","2. high":"117.3100","3. low":"116.7350","4. close":"116.9300","5. volume":"959825"},"2022-03-23 15:30:00":{"1. open":"117.1650","2. high":"117.3200","3. low":"116.8800","4. close":"116.9900","5. volume":"368726"},"2022-03-23 15:00:00":{"1. open":"117.6400","2. high":"117.6800","3. low":"117.1500","4. close":"117.1500","5. volume":"248180"},"2022-03-23 14:30:00":{"1. open":"117.7600","2. high":"117.7800","3. low":"117.3900","4. close":"117.6300","5. volume":"249673"},"2022-03-23 14:00:00":{"1. open":"117.4400","2. high":"117.7700","3. low":"117.3300","4. close":"117.7500","5. volume":"236084"},"2022-03-23 13:30:00":{"1. open":"117.9500","2. high":"118.0300","3. low":"117.4250","4. close":"117.4800","5. volume":"228910"},"2022-03-23 13:00:00":{"1. open":"118.1900","2. high":"118.3400","3. low":"117.8910","4. close":"117.9500","5. volume":"214258"},"2022-03-23 12:30:00":{"1. open":"118.4600","2. high":"118.6700","3. low":"117.9600","4. close":"118.1600","5. volume":"271765"},"2022-03-23 12:00:00":{"1. open":"119.0900","2. high":"119.1000","3. low":"118.4450","4. close":"118.4700","5. volume":"212661"},"2022-03-23 11:30:00":{"1. open":"118.7700","2. high":"119.2600","3. low":"118.6700","4. close":"119.0900","5. volume":"380846"},"2022-03-23 11:00:00":{"1. open":"119.9400","2. high":"119.9600","3. low":"118.6900","4. close":"118.7700","5. volume":"407069"},"2022-03-23 10:30:00":{"1. open":"119.5300","2. high":"119.9500","3. low":"119.1800","4. close":"119.9500","5. volume":"243373"},"2022-03-23 10:00:00":{"1. open":"121.1100","2. high":"121.2400","3. low":"119.2700","4. close":"119.5300","5. volume":"405245"},"2022-03-23 09:30:00":{"1. open":"121.2500","2. high":"121.6906","3. low":"121.1500","4. close":"121.2500","5. volume":"1471"},"2022-03-22 17:30:00":{"1. open":"121.6500","2. high":"121.9000","3. low":"121.6500","4. close":"121.9000","5. volume":"1228"},"2022-03-22 17:00:00":{"1. open":"121.8900","2. high":"122.0900","3. low":"121.5600","4. close":"121.5601","5. volume":"1858"},"2022-03-22 16:30:00":{"1. open":"121.8900","2. high":"121.8900","3. low":"121.8900","4. close":"121.8900","5. volume":"328755"},"2022-03-22 16:00:00":{"1. open":"121.8400","2. high":"122.1500","3. low":"121.6800","4. close":"121.8900","5. volume":"603381"},"2022-03-22 15:30:00":{"1. open":"121.5300","2. high":"121.9100","3. low":"121.5300","4. close":"121.8500","5. volume":"178508"},"2022-03-22 15:00:00":{"1. open":"121.4800","2. high":"121.6000","3. low":"121.2600","4. close":"121.5500","5. volume":"317025"},"2022-03-22 14:30:00":{"1. open":"121.7700","2. high":"121.8150","3. low":"121.4200","4. close":"121.4700","5. volume":"152501"},"2022-03-22 14:00:00":{"1. open":"121.9300","2. high":"121.9800","3. low":"121.6200","4. close":"121.7300","5. volume":"305552"},"2022-03-22 13:30:00":{"1. open":"122.4700","2. high":"122.5300","3. low":"121.8600","4. close":"121.9300","5. volume":"221296"},"2022-03-22 13:00:00":{"1. open":"122.2700","2. high":"122.5000","3. low":"122.1900","4. close":"122.4900","5. volume":"134984"},"2022-03-22 12:30:00":{"1. open":"122.4700","2. high":"122.4800","3. low":"122.1550","4. close":"122.2546","5. volume":"132125"},"2022-03-22 12:00:00":{"1. open":"122.3300","2. high":"122.5100","3. low":"122.1600","4. close":"122.4600","5. volume":"113670"},"2022-03-22 11:30:00":{"1. open":"122.2900","2. high":"122.4200","3. low":"121.9616","4. close":"122.3100","5. volume":"145703"},"2022-03-22 11:00:00":{"1. open":"122.0600","2. high":"122.3400","3. low":"122.0100","4. close":"122.2800","5. volume":"253185"},"2022-03-22 10:30:00":{"1. open":"121.7900","2. high":"122.0400","3. low":"121.5900","4. close":"122.0300","5. volume":"223197"},"2022-03-22 10:00:00":{"1. open":"121.8900","2. high":"122.0400","3. low":"121.3300","4. close":"121.7400","5. volume":"266839"},"2022-03-22 09:00:00":{"1. open":"122.0100","2. high":"122.0100","3. low":"122.0000","4. close":"122.0000","5. volume":"1179"},"2022-03-21 18:30:00":{"1. open":"121.8100","2. high":"121.8100","3. low":"121.8100","4. close":"121.8100","5. volume":"132"},"2022-03-21 16:30:00":{"1. open":"121.7600","2. high":"121.7600","3. low":"121.7600","4. close":"121.7600","5. volume":"630680"},"2022-03-21 16:00:00":{"1. open":"121.8800","2. high":"121.8800","3. low":"121.3000","4. close":"121.7700","5. volume":"682065"},"2022-03-21 15:30:00":{"1. open":"121.4000","2. high":"121.8400","3. low":"121.3500","4. close":"121.8400","5. volume":"152048"},"2022-03-21 15:00:00":{"1. open":"121.6900","2. high":"121.8800","3. low":"121.3600","4. close":"121.3700","5. volume":"178219"},"2022-03-21 14:30:00":{"1. open":"121.4900","2. high":"121.7300","3. low":"121.2200","4. close":"121.7200","5. volume":"131988"},"2022-03-21 14:00:00":{"1. open":"121.2300","2. high":"121.5200","3. low":"121.2050","4. close":"121.4900","5. volume":"223141"}}} \ No newline at end of file diff --git a/Backend/data/intraday_ACA.json b/Backend/data/intraday_ACA.json new file mode 100644 index 00000000..85125168 --- /dev/null +++ b/Backend/data/intraday_ACA.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"ACA","3. Last Refreshed":"2022-03-28 16:30:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-28 16:30:00":{"1. open":"57.9300","2. high":"57.9300","3. low":"57.9300","4. close":"57.9300","5. volume":"1442"},"2022-03-28 16:00:00":{"1. open":"57.7850","2. high":"57.9850","3. low":"57.7300","4. close":"57.9600","5. volume":"43156"},"2022-03-28 15:30:00":{"1. open":"57.7000","2. high":"57.8200","3. low":"57.6300","4. close":"57.7600","5. volume":"9013"},"2022-03-28 15:00:00":{"1. open":"57.4750","2. high":"57.6900","3. low":"57.4100","4. close":"57.6900","5. volume":"5282"},"2022-03-28 14:30:00":{"1. open":"57.4400","2. high":"57.5200","3. low":"57.3300","4. close":"57.4400","5. volume":"8063"},"2022-03-28 14:00:00":{"1. open":"57.4700","2. high":"57.5550","3. low":"57.4100","4. close":"57.4800","5. volume":"3775"},"2022-03-28 13:30:00":{"1. open":"57.7300","2. high":"57.7300","3. low":"57.4000","4. close":"57.4000","5. volume":"18807"},"2022-03-28 13:00:00":{"1. open":"57.5100","2. high":"57.7300","3. low":"57.4600","4. close":"57.7300","5. volume":"4765"},"2022-03-28 12:30:00":{"1. open":"57.5100","2. high":"57.5664","3. low":"57.4200","4. close":"57.5000","5. volume":"2585"},"2022-03-28 12:00:00":{"1. open":"57.9150","2. high":"57.9700","3. low":"57.4100","4. close":"57.4600","5. volume":"20771"},"2022-03-28 11:30:00":{"1. open":"57.9500","2. high":"57.9500","3. low":"57.7300","4. close":"57.9100","5. volume":"8933"},"2022-03-28 11:00:00":{"1. open":"57.8000","2. high":"58.0000","3. low":"57.7900","4. close":"57.9500","5. volume":"4551"},"2022-03-28 10:30:00":{"1. open":"57.6150","2. high":"58.1000","3. low":"57.5347","4. close":"58.0000","5. volume":"3118"},"2022-03-28 10:00:00":{"1. open":"57.8900","2. high":"57.9600","3. low":"57.4000","4. close":"57.6750","5. volume":"4195"},"2022-03-28 09:30:00":{"1. open":"58.4200","2. high":"58.4200","3. low":"58.4200","4. close":"58.4200","5. volume":"100"},"2022-03-25 16:30:00":{"1. open":"58.1400","2. high":"58.1400","3. low":"58.1400","4. close":"58.1400","5. volume":"1141"},"2022-03-25 16:00:00":{"1. open":"57.7450","2. high":"58.1600","3. low":"57.6500","4. close":"58.1400","5. volume":"35485"},"2022-03-25 15:30:00":{"1. open":"58.0000","2. high":"58.0200","3. low":"57.6900","4. close":"57.7000","5. volume":"16258"},"2022-03-25 15:00:00":{"1. open":"57.9950","2. high":"58.0200","3. low":"57.8300","4. close":"58.0000","5. volume":"10371"},"2022-03-25 14:30:00":{"1. open":"57.9200","2. high":"58.0200","3. low":"57.8900","4. close":"57.9950","5. volume":"14096"},"2022-03-25 14:00:00":{"1. open":"57.7990","2. high":"57.8800","3. low":"57.6600","4. close":"57.8750","5. volume":"4630"},"2022-03-25 13:30:00":{"1. open":"57.6400","2. high":"57.8500","3. low":"57.6200","4. close":"57.8300","5. volume":"7410"},"2022-03-25 13:00:00":{"1. open":"57.8300","2. high":"57.9100","3. low":"57.6550","4. close":"57.7700","5. volume":"3887"},"2022-03-25 12:30:00":{"1. open":"57.8800","2. high":"58.0500","3. low":"57.7800","4. close":"57.9300","5. volume":"24069"},"2022-03-25 12:00:00":{"1. open":"57.7200","2. high":"57.8600","3. low":"57.7200","4. close":"57.8200","5. volume":"4480"},"2022-03-25 11:30:00":{"1. open":"58.2000","2. high":"58.2000","3. low":"57.4750","4. close":"57.4750","5. volume":"5930"},"2022-03-25 11:00:00":{"1. open":"57.7800","2. high":"58.2400","3. low":"57.7785","4. close":"58.2400","5. volume":"31321"},"2022-03-25 10:30:00":{"1. open":"57.4350","2. high":"58.0100","3. low":"57.4300","4. close":"57.9300","5. volume":"13249"},"2022-03-25 10:00:00":{"1. open":"57.5800","2. high":"57.7950","3. low":"57.1500","4. close":"57.5900","5. volume":"6089"},"2022-03-24 16:30:00":{"1. open":"57.4800","2. high":"57.4800","3. low":"57.4800","4. close":"57.4800","5. volume":"788"},"2022-03-24 16:00:00":{"1. open":"57.3600","2. high":"57.4800","3. low":"57.2200","4. close":"57.4800","5. volume":"39269"},"2022-03-24 15:30:00":{"1. open":"57.0100","2. high":"57.3600","3. low":"57.0100","4. close":"57.3500","5. volume":"17914"},"2022-03-24 15:00:00":{"1. open":"57.0600","2. high":"57.1500","3. low":"56.9400","4. close":"57.0050","5. volume":"14072"},"2022-03-24 14:30:00":{"1. open":"57.0900","2. high":"57.3700","3. low":"56.9950","4. close":"56.9950","5. volume":"26132"},"2022-03-24 14:00:00":{"1. open":"56.8900","2. high":"57.3200","3. low":"56.8900","4. close":"57.0900","5. volume":"28829"},"2022-03-24 13:30:00":{"1. open":"57.0600","2. high":"57.1600","3. low":"56.8900","4. close":"56.8900","5. volume":"6850"},"2022-03-24 13:00:00":{"1. open":"56.9000","2. high":"57.1000","3. low":"56.8750","4. close":"57.0800","5. volume":"9509"},"2022-03-24 12:30:00":{"1. open":"56.9500","2. high":"57.0700","3. low":"56.8300","4. close":"56.9000","5. volume":"12379"},"2022-03-24 12:00:00":{"1. open":"56.9400","2. high":"57.0400","3. low":"56.5900","4. close":"57.0000","5. volume":"26966"},"2022-03-24 11:30:00":{"1. open":"56.8500","2. high":"56.9850","3. low":"56.5250","4. close":"56.9200","5. volume":"15593"},"2022-03-24 11:00:00":{"1. open":"56.6100","2. high":"57.0000","3. low":"56.3600","4. close":"56.7900","5. volume":"12665"},"2022-03-24 10:30:00":{"1. open":"56.6900","2. high":"56.7800","3. low":"56.2300","4. close":"56.5900","5. volume":"19526"},"2022-03-24 10:00:00":{"1. open":"56.7900","2. high":"56.9000","3. low":"56.4800","4. close":"56.7100","5. volume":"8489"},"2022-03-23 16:30:00":{"1. open":"56.9400","2. high":"56.9400","3. low":"56.9400","4. close":"56.9400","5. volume":"2715"},"2022-03-23 16:00:00":{"1. open":"56.9800","2. high":"57.2000","3. low":"56.7900","4. close":"56.9400","5. volume":"33977"},"2022-03-23 15:30:00":{"1. open":"56.9300","2. high":"57.0000","3. low":"56.8735","4. close":"56.9400","5. volume":"4670"},"2022-03-23 15:00:00":{"1. open":"56.8800","2. high":"56.9150","3. low":"56.8500","4. close":"56.8500","5. volume":"1733"},"2022-03-23 14:30:00":{"1. open":"57.1500","2. high":"57.2200","3. low":"56.8900","4. close":"57.0200","5. volume":"11660"},"2022-03-23 14:00:00":{"1. open":"57.3300","2. high":"57.3300","3. low":"57.0900","4. close":"57.1900","5. volume":"9103"},"2022-03-23 13:30:00":{"1. open":"57.4100","2. high":"57.4800","3. low":"57.3100","4. close":"57.3300","5. volume":"4223"},"2022-03-23 13:00:00":{"1. open":"57.4650","2. high":"57.5700","3. low":"57.3635","4. close":"57.4800","5. volume":"4683"},"2022-03-23 12:30:00":{"1. open":"57.7800","2. high":"57.7800","3. low":"57.3900","4. close":"57.6050","5. volume":"1843"},"2022-03-23 12:00:00":{"1. open":"57.6500","2. high":"57.7800","3. low":"57.6000","4. close":"57.7700","5. volume":"3209"},"2022-03-23 11:30:00":{"1. open":"57.5600","2. high":"57.8650","3. low":"57.3100","4. close":"57.5850","5. volume":"3389"},"2022-03-23 11:00:00":{"1. open":"57.2750","2. high":"57.4300","3. low":"57.2750","4. close":"57.3281","5. volume":"1583"},"2022-03-23 10:30:00":{"1. open":"56.9100","2. high":"57.3300","3. low":"56.9100","4. close":"57.2100","5. volume":"2035"},"2022-03-23 10:00:00":{"1. open":"57.3200","2. high":"57.3200","3. low":"56.7100","4. close":"56.7100","5. volume":"2341"},"2022-03-22 16:30:00":{"1. open":"57.9500","2. high":"57.9500","3. low":"57.9500","4. close":"57.9500","5. volume":"858"},"2022-03-22 16:00:00":{"1. open":"57.5200","2. high":"57.9500","3. low":"57.5050","4. close":"57.9500","5. volume":"50084"},"2022-03-22 15:30:00":{"1. open":"57.5000","2. high":"57.6400","3. low":"57.4850","4. close":"57.5300","5. volume":"10166"},"2022-03-22 15:00:00":{"1. open":"57.4900","2. high":"57.8100","3. low":"57.4400","4. close":"57.5900","5. volume":"11390"},"2022-03-22 14:30:00":{"1. open":"57.7000","2. high":"57.8000","3. low":"57.5100","4. close":"57.5100","5. volume":"8718"},"2022-03-22 14:00:00":{"1. open":"57.6000","2. high":"57.6400","3. low":"57.3700","4. close":"57.6400","5. volume":"10800"},"2022-03-22 13:30:00":{"1. open":"57.5500","2. high":"57.6000","3. low":"57.5150","4. close":"57.5600","5. volume":"4542"},"2022-03-22 13:00:00":{"1. open":"57.4530","2. high":"57.6800","3. low":"57.3900","4. close":"57.5300","5. volume":"5612"},"2022-03-22 12:30:00":{"1. open":"57.3200","2. high":"57.4900","3. low":"57.1500","4. close":"57.4900","5. volume":"9349"},"2022-03-22 12:00:00":{"1. open":"57.1100","2. high":"57.4700","3. low":"57.0500","4. close":"57.4300","5. volume":"7208"},"2022-03-22 11:30:00":{"1. open":"57.8100","2. high":"57.8100","3. low":"57.1800","4. close":"57.1800","5. volume":"4610"},"2022-03-22 11:00:00":{"1. open":"58.0600","2. high":"58.0600","3. low":"57.5700","4. close":"57.7100","5. volume":"3015"},"2022-03-22 10:30:00":{"1. open":"58.4400","2. high":"58.4400","3. low":"58.0800","4. close":"58.2200","5. volume":"1311"},"2022-03-22 10:00:00":{"1. open":"58.6100","2. high":"58.6500","3. low":"58.4900","4. close":"58.4900","5. volume":"145509"},"2022-03-21 16:30:00":{"1. open":"58.3900","2. high":"58.3900","3. low":"58.3900","4. close":"58.3900","5. volume":"2999"},"2022-03-21 16:00:00":{"1. open":"58.3400","2. high":"58.5500","3. low":"58.2500","4. close":"58.3900","5. volume":"51109"},"2022-03-21 15:30:00":{"1. open":"58.2000","2. high":"58.3900","3. low":"58.2000","4. close":"58.3800","5. volume":"7094"},"2022-03-21 15:00:00":{"1. open":"58.4400","2. high":"58.5150","3. low":"58.2800","4. close":"58.2800","5. volume":"8290"},"2022-03-21 14:30:00":{"1. open":"58.6000","2. high":"58.6800","3. low":"58.4300","4. close":"58.4950","5. volume":"7529"},"2022-03-21 14:00:00":{"1. open":"58.4500","2. high":"58.5950","3. low":"58.2700","4. close":"58.5950","5. volume":"6225"},"2022-03-21 13:30:00":{"1. open":"58.3400","2. high":"58.4000","3. low":"58.2300","4. close":"58.3900","5. volume":"10666"},"2022-03-21 13:00:00":{"1. open":"58.5900","2. high":"58.5900","3. low":"58.2150","4. close":"58.3700","5. volume":"12209"},"2022-03-21 12:30:00":{"1. open":"58.6000","2. high":"58.6450","3. low":"58.4600","4. close":"58.6450","5. volume":"6863"},"2022-03-21 12:00:00":{"1. open":"58.3400","2. high":"58.7000","3. low":"58.3000","4. close":"58.7000","5. volume":"2830"},"2022-03-21 11:30:00":{"1. open":"58.5600","2. high":"58.6900","3. low":"58.3400","4. close":"58.3400","5. volume":"6996"},"2022-03-21 11:00:00":{"1. open":"58.7200","2. high":"58.9300","3. low":"58.4600","4. close":"58.5800","5. volume":"9007"},"2022-03-21 10:30:00":{"1. open":"58.2400","2. high":"59.1000","3. low":"58.0600","4. close":"58.7500","5. volume":"43826"},"2022-03-21 10:00:00":{"1. open":"57.3500","2. high":"58.3900","3. low":"57.3500","4. close":"58.2400","5. volume":"4927"},"2022-03-18 16:30:00":{"1. open":"57.4800","2. high":"57.4800","3. low":"57.4800","4. close":"57.4800","5. volume":"2678"},"2022-03-18 16:00:00":{"1. open":"57.6000","2. high":"57.6850","3. low":"57.3600","4. close":"57.4600","5. volume":"57272"},"2022-03-18 15:30:00":{"1. open":"57.5550","2. high":"57.6500","3. low":"57.5300","4. close":"57.6100","5. volume":"9552"},"2022-03-18 15:00:00":{"1. open":"57.6900","2. high":"57.8200","3. low":"57.5400","4. close":"57.5800","5. volume":"8345"},"2022-03-18 14:30:00":{"1. open":"57.5700","2. high":"57.7450","3. low":"57.5150","4. close":"57.7300","5. volume":"6546"},"2022-03-18 14:00:00":{"1. open":"57.6350","2. high":"57.6800","3. low":"57.5500","4. close":"57.5700","5. volume":"5212"},"2022-03-18 13:30:00":{"1. open":"57.7250","2. high":"57.7700","3. low":"57.4400","4. close":"57.5650","5. volume":"5454"},"2022-03-18 13:00:00":{"1. open":"57.4400","2. high":"57.7700","3. low":"57.4150","4. close":"57.7350","5. volume":"4459"},"2022-03-18 12:30:00":{"1. open":"57.0200","2. high":"57.4250","3. low":"57.0200","4. close":"57.4250","5. volume":"6671"},"2022-03-18 12:00:00":{"1. open":"57.0800","2. high":"57.1300","3. low":"56.9700","4. close":"57.0800","5. volume":"5626"},"2022-03-18 11:30:00":{"1. open":"57.2850","2. high":"57.3000","3. low":"56.9550","4. close":"57.0400","5. volume":"7477"},"2022-03-18 11:00:00":{"1. open":"57.8850","2. high":"57.8850","3. low":"57.2300","4. close":"57.2300","5. volume":"6794"},"2022-03-18 10:30:00":{"1. open":"57.4500","2. high":"57.9050","3. low":"57.4500","4. close":"57.8700","5. volume":"3426"},"2022-03-18 10:00:00":{"1. open":"58.0100","2. high":"58.0100","3. low":"57.1100","4. close":"57.5550","5. volume":"76701"},"2022-03-17 16:30:00":{"1. open":"57.9800","2. high":"57.9800","3. low":"57.9800","4. close":"57.9800","5. volume":"2089"}}} \ No newline at end of file diff --git a/Backend/data/intraday_IBM.json b/Backend/data/intraday_IBM.json index 34a3ae2e..2ef61472 100644 --- a/Backend/data/intraday_IBM.json +++ b/Backend/data/intraday_IBM.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"IBM","3. Last Refreshed":"2022-03-24 20:00:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-24 20:00:00":{"1. open":"129.2000","2. high":"129.2400","3. low":"129.2000","4. close":"129.2400","5. volume":"3188"},"2022-03-24 18:00:00":{"1. open":"129.3100","2. high":"129.4500","3. low":"129.2085","4. close":"129.2085","5. volume":"728"},"2022-03-24 17:00:00":{"1. open":"129.3400","2. high":"129.5100","3. low":"129.2500","4. close":"129.3800","5. volume":"3746"},"2022-03-24 16:30:00":{"1. open":"129.2500","2. high":"129.2500","3. low":"129.2500","4. close":"129.2500","5. volume":"59543"},"2022-03-24 16:00:00":{"1. open":"129.1100","2. high":"129.3700","3. low":"128.9450","4. close":"129.2500","5. volume":"414352"},"2022-03-24 15:30:00":{"1. open":"128.7300","2. high":"129.1500","3. low":"128.6600","4. close":"129.1000","5. volume":"117162"},"2022-03-24 15:00:00":{"1. open":"128.7900","2. high":"128.8600","3. low":"128.6700","4. close":"128.7450","5. volume":"97515"},"2022-03-24 14:30:00":{"1. open":"128.8898","2. high":"129.0600","3. low":"128.7400","4. close":"128.7900","5. volume":"98531"},"2022-03-24 14:00:00":{"1. open":"128.9500","2. high":"129.0400","3. low":"128.8600","4. close":"128.8898","5. volume":"111341"},"2022-03-24 13:30:00":{"1. open":"129.0350","2. high":"129.1600","3. low":"128.9450","4. close":"128.9450","5. volume":"184141"},"2022-03-24 13:00:00":{"1. open":"128.8700","2. high":"129.1000","3. low":"128.8200","4. close":"129.0300","5. volume":"292893"},"2022-03-24 12:30:00":{"1. open":"129.0850","2. high":"129.3300","3. low":"128.8200","4. close":"128.8450","5. volume":"164537"},"2022-03-24 12:00:00":{"1. open":"129.0000","2. high":"129.1800","3. low":"128.8401","4. close":"129.0750","5. volume":"158298"},"2022-03-24 11:30:00":{"1. open":"128.5300","2. high":"129.0100","3. low":"128.4500","4. close":"129.0000","5. volume":"216492"},"2022-03-24 11:00:00":{"1. open":"128.6600","2. high":"128.8400","3. low":"128.4400","4. close":"128.5000","5. volume":"120456"},"2022-03-24 10:30:00":{"1. open":"128.2100","2. high":"128.9400","3. low":"128.1250","4. close":"128.6600","5. volume":"174513"},"2022-03-24 10:00:00":{"1. open":"128.3300","2. high":"128.4900","3. low":"127.8000","4. close":"128.1900","5. volume":"255258"},"2022-03-24 09:30:00":{"1. open":"128.8500","2. high":"129.0000","3. low":"128.8500","4. close":"128.8800","5. volume":"1860"},"2022-03-24 09:00:00":{"1. open":"128.4500","2. high":"128.6300","3. low":"128.4500","4. close":"128.6300","5. volume":"590"},"2022-03-23 20:00:00":{"1. open":"128.3000","2. high":"128.3000","3. low":"128.3000","4. close":"128.3000","5. volume":"338"},"2022-03-23 19:30:00":{"1. open":"128.1100","2. high":"128.1100","3. low":"128.1100","4. close":"128.1100","5. volume":"100"},"2022-03-23 18:00:00":{"1. open":"128.1500","2. high":"128.3100","3. low":"128.1500","4. close":"128.3000","5. volume":"400"},"2022-03-23 17:30:00":{"1. open":"128.1100","2. high":"128.1100","3. low":"128.1100","4. close":"128.1100","5. volume":"203"},"2022-03-23 17:00:00":{"1. open":"128.2800","2. high":"128.2800","3. low":"128.0400","4. close":"128.1300","5. volume":"1855"},"2022-03-23 16:30:00":{"1. open":"128.3000","2. high":"128.3000","3. low":"128.2700","4. close":"128.2700","5. volume":"103126"},"2022-03-23 16:00:00":{"1. open":"128.8800","2. high":"128.8800","3. low":"128.2500","4. close":"128.2700","5. volume":"469395"},"2022-03-23 15:30:00":{"1. open":"129.0900","2. high":"129.2200","3. low":"128.8500","4. close":"128.9000","5. volume":"132891"},"2022-03-23 15:00:00":{"1. open":"129.0500","2. high":"129.1650","3. low":"128.7800","4. close":"129.0750","5. volume":"177736"},"2022-03-23 14:30:00":{"1. open":"128.7200","2. high":"129.0600","3. low":"128.7000","4. close":"129.0500","5. volume":"133309"},"2022-03-23 14:00:00":{"1. open":"128.6600","2. high":"128.7400","3. low":"128.3900","4. close":"128.7200","5. volume":"131738"},"2022-03-23 13:30:00":{"1. open":"128.9000","2. high":"128.9700","3. low":"128.6200","4. close":"128.6800","5. volume":"126103"},"2022-03-23 13:00:00":{"1. open":"128.6980","2. high":"128.9300","3. low":"128.5000","4. close":"128.9150","5. volume":"121675"},"2022-03-23 12:30:00":{"1. open":"128.5200","2. high":"128.8050","3. low":"128.3500","4. close":"128.6700","5. volume":"123216"},"2022-03-23 12:00:00":{"1. open":"128.8400","2. high":"128.8600","3. low":"128.4100","4. close":"128.5200","5. volume":"108019"},"2022-03-23 11:30:00":{"1. open":"128.6300","2. high":"129.0400","3. low":"128.6300","4. close":"128.8281","5. volume":"172139"},"2022-03-23 11:00:00":{"1. open":"128.9000","2. high":"129.0000","3. low":"128.5706","4. close":"128.6600","5. volume":"152780"},"2022-03-23 10:30:00":{"1. open":"128.9300","2. high":"129.1400","3. low":"128.7500","4. close":"128.9300","5. volume":"140847"},"2022-03-23 10:00:00":{"1. open":"129.0800","2. high":"129.3200","3. low":"128.5300","4. close":"128.9300","5. volume":"313168"},"2022-03-23 08:30:00":{"1. open":"128.4100","2. high":"129.0000","3. low":"128.4100","4. close":"129.0000","5. volume":"362"},"2022-03-23 07:30:00":{"1. open":"129.0000","2. high":"129.0000","3. low":"129.0000","4. close":"129.0000","5. volume":"355"},"2022-03-23 07:00:00":{"1. open":"128.5800","2. high":"128.5800","3. low":"128.5800","4. close":"128.5800","5. volume":"233"},"2022-03-23 04:30:00":{"1. open":"128.5100","2. high":"129.3700","3. low":"128.5100","4. close":"129.3700","5. volume":"570"},"2022-03-22 20:00:00":{"1. open":"129.2500","2. high":"129.3000","3. low":"129.0600","4. close":"129.0600","5. volume":"2039"},"2022-03-22 16:30:00":{"1. open":"129.0600","2. high":"129.1400","3. low":"129.0600","4. close":"129.1400","5. volume":"40593"},"2022-03-22 16:00:00":{"1. open":"128.8850","2. high":"129.3000","3. low":"128.8400","4. close":"129.0800","5. volume":"499217"},"2022-03-22 15:30:00":{"1. open":"128.7800","2. high":"129.0100","3. low":"128.7000","4. close":"128.8700","5. volume":"192117"},"2022-03-22 15:00:00":{"1. open":"128.7350","2. high":"128.8500","3. low":"128.6900","4. close":"128.7800","5. volume":"98957"},"2022-03-22 14:30:00":{"1. open":"128.9300","2. high":"128.9500","3. low":"128.7200","4. close":"128.7442","5. volume":"96796"},"2022-03-22 14:00:00":{"1. open":"128.8600","2. high":"128.9900","3. low":"128.7100","4. close":"128.9200","5. volume":"97168"},"2022-03-22 13:30:00":{"1. open":"129.0600","2. high":"129.0800","3. low":"128.7300","4. close":"128.8400","5. volume":"85029"},"2022-03-22 13:00:00":{"1. open":"128.5500","2. high":"129.0500","3. low":"128.4900","4. close":"129.0400","5. volume":"147795"},"2022-03-22 12:30:00":{"1. open":"128.4650","2. high":"128.6200","3. low":"128.3400","4. close":"128.5600","5. volume":"160563"},"2022-03-22 12:00:00":{"1. open":"128.3550","2. high":"128.4785","3. low":"127.9800","4. close":"128.4600","5. volume":"123362"},"2022-03-22 11:30:00":{"1. open":"128.1500","2. high":"128.3900","3. low":"128.0300","4. close":"128.3470","5. volume":"114599"},"2022-03-22 11:00:00":{"1. open":"128.2200","2. high":"128.5079","3. low":"127.9101","4. close":"128.1500","5. volume":"151215"},"2022-03-22 10:30:00":{"1. open":"128.4700","2. high":"128.4900","3. low":"127.9900","4. close":"128.2000","5. volume":"184792"},"2022-03-22 10:00:00":{"1. open":"128.5000","2. high":"129.1699","3. low":"127.8500","4. close":"128.4700","5. volume":"234944"},"2022-03-22 09:30:00":{"1. open":"128.5500","2. high":"128.5500","3. low":"128.5500","4. close":"128.5500","5. volume":"777"},"2022-03-22 09:00:00":{"1. open":"128.1000","2. high":"128.1000","3. low":"128.1000","4. close":"128.1000","5. volume":"400"},"2022-03-22 08:30:00":{"1. open":"128.5400","2. high":"128.5400","3. low":"128.3000","4. close":"128.3000","5. volume":"2845"},"2022-03-22 06:30:00":{"1. open":"128.6900","2. high":"128.6900","3. low":"128.6900","4. close":"128.6900","5. volume":"210"},"2022-03-21 19:00:00":{"1. open":"128.1100","2. high":"128.4400","3. low":"128.1100","4. close":"128.4400","5. volume":"651"},"2022-03-21 17:00:00":{"1. open":"128.3600","2. high":"128.3600","3. low":"128.3600","4. close":"128.3600","5. volume":"390"},"2022-03-21 16:30:00":{"1. open":"128.1000","2. high":"128.5500","3. low":"128.1000","4. close":"128.5500","5. volume":"60113"},"2022-03-21 16:00:00":{"1. open":"127.8900","2. high":"128.1400","3. low":"127.7400","4. close":"128.1000","5. volume":"501818"},"2022-03-21 15:30:00":{"1. open":"127.6600","2. high":"127.9300","3. low":"127.5200","4. close":"127.8700","5. volume":"170920"},"2022-03-21 15:00:00":{"1. open":"127.8390","2. high":"128.0200","3. low":"127.6300","4. close":"127.6500","5. volume":"137183"},"2022-03-21 14:30:00":{"1. open":"127.8500","2. high":"127.9100","3. low":"127.5200","4. close":"127.8400","5. volume":"161663"},"2022-03-21 14:00:00":{"1. open":"127.6500","2. high":"127.9000","3. low":"127.6200","4. close":"127.8400","5. volume":"122019"},"2022-03-21 13:30:00":{"1. open":"127.7200","2. high":"127.7200","3. low":"127.4000","4. close":"127.6700","5. volume":"176554"},"2022-03-21 13:00:00":{"1. open":"128.1400","2. high":"128.1500","3. low":"127.6200","4. close":"127.7300","5. volume":"198804"},"2022-03-21 12:30:00":{"1. open":"128.0000","2. high":"128.3895","3. low":"127.8900","4. close":"128.1500","5. volume":"164863"},"2022-03-21 12:00:00":{"1. open":"128.2050","2. high":"128.2700","3. low":"127.7500","4. close":"128.0000","5. volume":"143826"},"2022-03-21 11:30:00":{"1. open":"128.5800","2. high":"128.6400","3. low":"128.0800","4. close":"128.2000","5. volume":"189457"},"2022-03-21 11:00:00":{"1. open":"129.0000","2. high":"129.0027","3. low":"128.2100","4. close":"128.5750","5. volume":"185721"},"2022-03-21 10:30:00":{"1. open":"128.7900","2. high":"129.0500","3. low":"128.3800","4. close":"129.0300","5. volume":"201710"},"2022-03-21 10:00:00":{"1. open":"129.0000","2. high":"129.7400","3. low":"128.5400","4. close":"128.8530","5. volume":"314031"},"2022-03-21 09:00:00":{"1. open":"128.5000","2. high":"128.5000","3. low":"128.5000","4. close":"128.5000","5. volume":"100"},"2022-03-21 08:30:00":{"1. open":"128.8000","2. high":"128.8000","3. low":"128.1700","4. close":"128.1700","5. volume":"1009"},"2022-03-21 07:30:00":{"1. open":"128.5100","2. high":"128.5100","3. low":"128.5100","4. close":"128.5100","5. volume":"239"},"2022-03-21 04:30:00":{"1. open":"128.6800","2. high":"128.6800","3. low":"128.6800","4. close":"128.6800","5. volume":"200"},"2022-03-18 19:30:00":{"1. open":"128.6001","2. high":"128.6100","3. low":"128.6001","4. close":"128.6100","5. volume":"272"},"2022-03-18 18:00:00":{"1. open":"128.5538","2. high":"128.5538","3. low":"128.5538","4. close":"128.5538","5. volume":"999"},"2022-03-18 17:00:00":{"1. open":"128.5000","2. high":"129.0200","3. low":"128.5000","4. close":"129.0000","5. volume":"2774"},"2022-03-18 16:30:00":{"1. open":"128.7600","2. high":"129.0000","3. low":"128.4600","4. close":"128.7600","5. volume":"564116"},"2022-03-18 16:00:00":{"1. open":"128.6400","2. high":"128.9300","3. low":"128.5010","4. close":"128.7400","5. volume":"765912"},"2022-03-18 15:30:00":{"1. open":"128.2000","2. high":"128.6700","3. low":"128.1800","4. close":"128.6350","5. volume":"248110"},"2022-03-18 15:00:00":{"1. open":"128.0400","2. high":"128.3900","3. low":"127.9200","4. close":"128.2000","5. volume":"209427"},"2022-03-18 14:30:00":{"1. open":"127.5050","2. high":"128.0600","3. low":"127.4000","4. close":"128.0400","5. volume":"201227"},"2022-03-18 14:00:00":{"1. open":"127.9500","2. high":"127.9800","3. low":"127.3900","4. close":"127.4800","5. volume":"204780"},"2022-03-18 13:30:00":{"1. open":"127.5200","2. high":"128.0400","3. low":"127.5200","4. close":"127.9540","5. volume":"132377"},"2022-03-18 13:00:00":{"1. open":"127.3100","2. high":"127.6300","3. low":"127.2700","4. close":"127.5050","5. volume":"163625"},"2022-03-18 12:30:00":{"1. open":"126.7900","2. high":"127.3300","3. low":"126.6300","4. close":"127.3100","5. volume":"175417"},"2022-03-18 12:00:00":{"1. open":"126.7485","2. high":"127.0200","3. low":"126.6700","4. close":"126.8000","5. volume":"188326"},"2022-03-18 11:30:00":{"1. open":"126.6000","2. high":"127.1600","3. low":"126.5800","4. close":"126.7600","5. volume":"167244"},"2022-03-18 11:00:00":{"1. open":"126.6100","2. high":"126.8600","3. low":"126.5300","4. close":"126.5700","5. volume":"179061"},"2022-03-18 10:30:00":{"1. open":"126.8870","2. high":"127.2800","3. low":"126.3700","4. close":"126.6594","5. volume":"181711"},"2022-03-18 10:00:00":{"1. open":"127.3800","2. high":"127.6000","3. low":"126.3800","4. close":"126.8500","5. volume":"1056122"},"2022-03-18 09:30:00":{"1. open":"127.4200","2. high":"128.0000","3. low":"127.4200","4. close":"127.8900","5. volume":"1662"},"2022-03-18 08:30:00":{"1. open":"127.8200","2. high":"127.8200","3. low":"127.6000","4. close":"127.6000","5. volume":"451"}}} \ No newline at end of file +{"Meta Data":{"1. Information":"Intraday (30min) open, high, low, close prices and volume","2. Symbol":"IBM","3. Last Refreshed":"2022-03-28 20:00:00","4. Interval":"30min","5. Output Size":"Compact","6. Time Zone":"US/Eastern"},"Time Series (30min)":{"2022-03-28 20:00:00":{"1. open":"131.2501","2. high":"131.2501","3. low":"131.2501","4. close":"131.2501","5. volume":"200"},"2022-03-28 17:30:00":{"1. open":"131.0577","2. high":"131.5000","3. low":"131.0577","4. close":"131.5000","5. volume":"1204"},"2022-03-28 17:00:00":{"1. open":"131.5000","2. high":"131.5000","3. low":"131.5000","4. close":"131.5000","5. volume":"776"},"2022-03-28 16:30:00":{"1. open":"131.4700","2. high":"131.4700","3. low":"130.0276","4. close":"130.0276","5. volume":"59386"},"2022-03-28 16:00:00":{"1. open":"131.1900","2. high":"131.5000","3. low":"131.1283","4. close":"131.4200","5. volume":"432676"},"2022-03-28 15:30:00":{"1. open":"131.1500","2. high":"131.2500","3. low":"130.9350","4. close":"131.2000","5. volume":"145136"},"2022-03-28 15:00:00":{"1. open":"130.7800","2. high":"131.2100","3. low":"130.7800","4. close":"131.1588","5. volume":"104707"},"2022-03-28 14:30:00":{"1. open":"130.6500","2. high":"130.8200","3. low":"130.6400","4. close":"130.7800","5. volume":"76973"},"2022-03-28 14:00:00":{"1. open":"130.8600","2. high":"130.8800","3. low":"130.6200","4. close":"130.6550","5. volume":"76906"},"2022-03-28 13:30:00":{"1. open":"131.0850","2. high":"131.0850","3. low":"130.7200","4. close":"130.8700","5. volume":"83479"},"2022-03-28 13:00:00":{"1. open":"130.7200","2. high":"131.1500","3. low":"130.7200","4. close":"131.0800","5. volume":"93128"},"2022-03-28 12:30:00":{"1. open":"130.6695","2. high":"130.9100","3. low":"130.6550","4. close":"130.6950","5. volume":"83977"},"2022-03-28 12:00:00":{"1. open":"130.8000","2. high":"130.9300","3. low":"130.6404","4. close":"130.6800","5. volume":"111762"},"2022-03-28 11:30:00":{"1. open":"130.8300","2. high":"130.9200","3. low":"130.5599","4. close":"130.7500","5. volume":"167941"},"2022-03-28 11:00:00":{"1. open":"131.1700","2. high":"131.1700","3. low":"130.6500","4. close":"130.7900","5. volume":"147700"},"2022-03-28 10:30:00":{"1. open":"130.7000","2. high":"131.2550","3. low":"130.2200","4. close":"131.1204","5. volume":"186424"},"2022-03-28 10:00:00":{"1. open":"130.8200","2. high":"130.8400","3. low":"129.6000","4. close":"130.6800","5. volume":"373756"},"2022-03-28 09:30:00":{"1. open":"131.7900","2. high":"131.7900","3. low":"130.8100","4. close":"130.9600","5. volume":"5007"},"2022-03-28 09:00:00":{"1. open":"131.3600","2. high":"131.4300","3. low":"131.3500","4. close":"131.4300","5. volume":"869"},"2022-03-28 08:30:00":{"1. open":"131.3500","2. high":"131.3600","3. low":"131.3500","4. close":"131.3600","5. volume":"412"},"2022-03-28 08:00:00":{"1. open":"131.3900","2. high":"131.3900","3. low":"131.3900","4. close":"131.3900","5. volume":"320"},"2022-03-28 07:30:00":{"1. open":"131.1700","2. high":"131.1700","3. low":"131.0300","4. close":"131.0300","5. volume":"631"},"2022-03-28 05:00:00":{"1. open":"131.1700","2. high":"131.1700","3. low":"131.1700","4. close":"131.1700","5. volume":"333"},"2022-03-25 19:30:00":{"1. open":"131.3000","2. high":"131.3000","3. low":"131.3000","4. close":"131.3000","5. volume":"1000"},"2022-03-25 18:00:00":{"1. open":"131.3000","2. high":"131.3000","3. low":"131.3000","4. close":"131.3000","5. volume":"100"},"2022-03-25 17:00:00":{"1. open":"131.3260","2. high":"131.3500","3. low":"131.3260","4. close":"131.3500","5. volume":"2753"},"2022-03-25 16:30:00":{"1. open":"131.3500","2. high":"131.4000","3. low":"131.3500","4. close":"131.4000","5. volume":"56109"},"2022-03-25 16:00:00":{"1. open":"130.6800","2. high":"131.4000","3. low":"130.6300","4. close":"131.3500","5. volume":"738407"},"2022-03-25 15:30:00":{"1. open":"131.1000","2. high":"131.1100","3. low":"130.6800","4. close":"130.6900","5. volume":"203124"},"2022-03-25 15:00:00":{"1. open":"130.9600","2. high":"131.1300","3. low":"130.8800","4. close":"131.1000","5. volume":"170839"},"2022-03-25 14:30:00":{"1. open":"130.7950","2. high":"130.9700","3. low":"130.7600","4. close":"130.9500","5. volume":"177648"},"2022-03-25 14:00:00":{"1. open":"130.6071","2. high":"130.8500","3. low":"130.5701","4. close":"130.7800","5. volume":"137767"},"2022-03-25 13:30:00":{"1. open":"130.6055","2. high":"130.6600","3. low":"130.4000","4. close":"130.5950","5. volume":"108496"},"2022-03-25 13:00:00":{"1. open":"130.4600","2. high":"130.6700","3. low":"130.3100","4. close":"130.6200","5. volume":"108663"},"2022-03-25 12:30:00":{"1. open":"130.4450","2. high":"130.6105","3. low":"130.3400","4. close":"130.4500","5. volume":"146365"},"2022-03-25 12:00:00":{"1. open":"130.0800","2. high":"130.8400","3. low":"130.0600","4. close":"130.4300","5. volume":"233382"},"2022-03-25 11:30:00":{"1. open":"130.7000","2. high":"130.8600","3. low":"129.9800","4. close":"130.0600","5. volume":"193709"},"2022-03-25 11:00:00":{"1. open":"130.9200","2. high":"131.0250","3. low":"130.5750","4. close":"130.6900","5. volume":"180819"},"2022-03-25 10:30:00":{"1. open":"131.1500","2. high":"131.3750","3. low":"130.6600","4. close":"130.9200","5. volume":"290786"},"2022-03-25 10:00:00":{"1. open":"129.5000","2. high":"131.2894","3. low":"129.3100","4. close":"131.1950","5. volume":"396515"},"2022-03-25 09:30:00":{"1. open":"129.6000","2. high":"129.6000","3. low":"129.3100","4. close":"129.3100","5. volume":"398"},"2022-03-25 09:00:00":{"1. open":"129.7616","2. high":"129.7616","3. low":"129.7616","4. close":"129.7616","5. volume":"206"},"2022-03-25 08:30:00":{"1. open":"129.2400","2. high":"129.2400","3. low":"129.2400","4. close":"129.2400","5. volume":"102"},"2022-03-25 07:00:00":{"1. open":"129.2900","2. high":"129.2900","3. low":"129.2900","4. close":"129.2900","5. volume":"501"},"2022-03-24 20:00:00":{"1. open":"129.2000","2. high":"129.2400","3. low":"129.2000","4. close":"129.2400","5. volume":"3188"},"2022-03-24 18:00:00":{"1. open":"129.3100","2. high":"129.4500","3. low":"129.2085","4. close":"129.2085","5. volume":"728"},"2022-03-24 17:00:00":{"1. open":"129.3400","2. high":"129.5100","3. low":"129.2500","4. close":"129.3800","5. volume":"3746"},"2022-03-24 16:30:00":{"1. open":"129.2500","2. high":"129.2500","3. low":"129.2500","4. close":"129.2500","5. volume":"59543"},"2022-03-24 16:00:00":{"1. open":"129.1100","2. high":"129.3700","3. low":"128.9450","4. close":"129.2500","5. volume":"414352"},"2022-03-24 15:30:00":{"1. open":"128.7300","2. high":"129.1500","3. low":"128.6600","4. close":"129.1000","5. volume":"117162"},"2022-03-24 15:00:00":{"1. open":"128.7900","2. high":"128.8600","3. low":"128.6700","4. close":"128.7450","5. volume":"97515"},"2022-03-24 14:30:00":{"1. open":"128.8898","2. high":"129.0600","3. low":"128.7400","4. close":"128.7900","5. volume":"98531"},"2022-03-24 14:00:00":{"1. open":"128.9500","2. high":"129.0400","3. low":"128.8600","4. close":"128.8898","5. volume":"111341"},"2022-03-24 13:30:00":{"1. open":"129.0350","2. high":"129.1600","3. low":"128.9450","4. close":"128.9450","5. volume":"184141"},"2022-03-24 13:00:00":{"1. open":"128.8700","2. high":"129.1000","3. low":"128.8200","4. close":"129.0300","5. volume":"292893"},"2022-03-24 12:30:00":{"1. open":"129.0850","2. high":"129.3300","3. low":"128.8200","4. close":"128.8450","5. volume":"164537"},"2022-03-24 12:00:00":{"1. open":"129.0000","2. high":"129.1800","3. low":"128.8401","4. close":"129.0750","5. volume":"158298"},"2022-03-24 11:30:00":{"1. open":"128.5300","2. high":"129.0100","3. low":"128.4500","4. close":"129.0000","5. volume":"216492"},"2022-03-24 11:00:00":{"1. open":"128.6600","2. high":"128.8400","3. low":"128.4400","4. close":"128.5000","5. volume":"120456"},"2022-03-24 10:30:00":{"1. open":"128.2100","2. high":"128.9400","3. low":"128.1250","4. close":"128.6600","5. volume":"174513"},"2022-03-24 10:00:00":{"1. open":"128.3300","2. high":"128.4900","3. low":"127.8000","4. close":"128.1900","5. volume":"255258"},"2022-03-24 09:30:00":{"1. open":"128.8500","2. high":"129.0000","3. low":"128.8500","4. close":"128.8800","5. volume":"1860"},"2022-03-24 09:00:00":{"1. open":"128.4500","2. high":"128.6300","3. low":"128.4500","4. close":"128.6300","5. volume":"590"},"2022-03-23 20:00:00":{"1. open":"128.3000","2. high":"128.3000","3. low":"128.3000","4. close":"128.3000","5. volume":"338"},"2022-03-23 19:30:00":{"1. open":"128.1100","2. high":"128.1100","3. low":"128.1100","4. close":"128.1100","5. volume":"100"},"2022-03-23 18:00:00":{"1. open":"128.1500","2. high":"128.3100","3. low":"128.1500","4. close":"128.3000","5. volume":"400"},"2022-03-23 17:30:00":{"1. open":"128.1100","2. high":"128.1100","3. low":"128.1100","4. close":"128.1100","5. volume":"203"},"2022-03-23 17:00:00":{"1. open":"128.2800","2. high":"128.2800","3. low":"128.0400","4. close":"128.1300","5. volume":"1855"},"2022-03-23 16:30:00":{"1. open":"128.3000","2. high":"128.3000","3. low":"128.2700","4. close":"128.2700","5. volume":"103126"},"2022-03-23 16:00:00":{"1. open":"128.8800","2. high":"128.8800","3. low":"128.2500","4. close":"128.2700","5. volume":"469395"},"2022-03-23 15:30:00":{"1. open":"129.0900","2. high":"129.2200","3. low":"128.8500","4. close":"128.9000","5. volume":"132891"},"2022-03-23 15:00:00":{"1. open":"129.0500","2. high":"129.1650","3. low":"128.7800","4. close":"129.0750","5. volume":"177736"},"2022-03-23 14:30:00":{"1. open":"128.7200","2. high":"129.0600","3. low":"128.7000","4. close":"129.0500","5. volume":"133309"},"2022-03-23 14:00:00":{"1. open":"128.6600","2. high":"128.7400","3. low":"128.3900","4. close":"128.7200","5. volume":"131738"},"2022-03-23 13:30:00":{"1. open":"128.9000","2. high":"128.9700","3. low":"128.6200","4. close":"128.6800","5. volume":"126103"},"2022-03-23 13:00:00":{"1. open":"128.6980","2. high":"128.9300","3. low":"128.5000","4. close":"128.9150","5. volume":"121675"},"2022-03-23 12:30:00":{"1. open":"128.5200","2. high":"128.8050","3. low":"128.3500","4. close":"128.6700","5. volume":"123216"},"2022-03-23 12:00:00":{"1. open":"128.8400","2. high":"128.8600","3. low":"128.4100","4. close":"128.5200","5. volume":"108019"},"2022-03-23 11:30:00":{"1. open":"128.6300","2. high":"129.0400","3. low":"128.6300","4. close":"128.8281","5. volume":"172139"},"2022-03-23 11:00:00":{"1. open":"128.9000","2. high":"129.0000","3. low":"128.5706","4. close":"128.6600","5. volume":"152780"},"2022-03-23 10:30:00":{"1. open":"128.9300","2. high":"129.1400","3. low":"128.7500","4. close":"128.9300","5. volume":"140847"},"2022-03-23 10:00:00":{"1. open":"129.0800","2. high":"129.3200","3. low":"128.5300","4. close":"128.9300","5. volume":"313168"},"2022-03-23 08:30:00":{"1. open":"128.4100","2. high":"129.0000","3. low":"128.4100","4. close":"129.0000","5. volume":"362"},"2022-03-23 07:30:00":{"1. open":"129.0000","2. high":"129.0000","3. low":"129.0000","4. close":"129.0000","5. volume":"355"},"2022-03-23 07:00:00":{"1. open":"128.5800","2. high":"128.5800","3. low":"128.5800","4. close":"128.5800","5. volume":"233"},"2022-03-23 04:30:00":{"1. open":"128.5100","2. high":"129.3700","3. low":"128.5100","4. close":"129.3700","5. volume":"570"},"2022-03-22 20:00:00":{"1. open":"129.2500","2. high":"129.3000","3. low":"129.0600","4. close":"129.0600","5. volume":"2039"},"2022-03-22 16:30:00":{"1. open":"129.0600","2. high":"129.1400","3. low":"129.0600","4. close":"129.1400","5. volume":"40593"},"2022-03-22 16:00:00":{"1. open":"128.8850","2. high":"129.3000","3. low":"128.8400","4. close":"129.0800","5. volume":"499217"},"2022-03-22 15:30:00":{"1. open":"128.7800","2. high":"129.0100","3. low":"128.7000","4. close":"128.8700","5. volume":"192117"},"2022-03-22 15:00:00":{"1. open":"128.7350","2. high":"128.8500","3. low":"128.6900","4. close":"128.7800","5. volume":"98957"},"2022-03-22 14:30:00":{"1. open":"128.9300","2. high":"128.9500","3. low":"128.7200","4. close":"128.7442","5. volume":"96796"},"2022-03-22 14:00:00":{"1. open":"128.8600","2. high":"128.9900","3. low":"128.7100","4. close":"128.9200","5. volume":"97168"},"2022-03-22 13:30:00":{"1. open":"129.0600","2. high":"129.0800","3. low":"128.7300","4. close":"128.8400","5. volume":"85029"},"2022-03-22 13:00:00":{"1. open":"128.5500","2. high":"129.0500","3. low":"128.4900","4. close":"129.0400","5. volume":"147795"},"2022-03-22 12:30:00":{"1. open":"128.4650","2. high":"128.6200","3. low":"128.3400","4. close":"128.5600","5. volume":"160563"},"2022-03-22 12:00:00":{"1. open":"128.3550","2. high":"128.4785","3. low":"127.9800","4. close":"128.4600","5. volume":"123362"},"2022-03-22 11:30:00":{"1. open":"128.1500","2. high":"128.3900","3. low":"128.0300","4. close":"128.3470","5. volume":"114599"},"2022-03-22 11:00:00":{"1. open":"128.2200","2. high":"128.5079","3. low":"127.9101","4. close":"128.1500","5. volume":"151215"},"2022-03-22 10:30:00":{"1. open":"128.4700","2. high":"128.4900","3. low":"127.9900","4. close":"128.2000","5. volume":"184792"}}} \ No newline at end of file diff --git a/Backend/data/monthly_ABC.json b/Backend/data/monthly_ABC.json index 94c4c6dd..b59e59ce 100644 --- a/Backend/data/monthly_ABC.json +++ b/Backend/data/monthly_ABC.json @@ -1 +1 @@ -{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file +{"Meta Data":{"1. Information":"Monthly Prices (open, high, low, close) and Volumes","2. Symbol":"ABC","3. Last Refreshed":"2022-03-28","4. Time Zone":"US/Eastern"},"Monthly Time Series":{"2022-03-28":{"1. open":"142.4400","2. high":"155.7600","3. low":"140.3401","4. close":"154.7300","5. volume":"22728194"},"2022-02-28":{"1. open":"135.9400","2. high":"144.2200","3. low":"132.0000","4. close":"142.5300","5. volume":"26624541"},"2022-01-31":{"1. open":"132.5800","2. high":"136.9450","3. low":"127.9400","4. close":"136.2000","5. volume":"19238210"},"2021-12-31":{"1. open":"116.4200","2. high":"135.2600","3. low":"113.6800","4. close":"132.8900","5. volume":"19897350"},"2021-11-30":{"1. open":"122.4200","2. high":"129.5450","3. low":"115.4100","4. close":"115.7500","5. volume":"21099285"},"2021-10-29":{"1. open":"119.8600","2. high":"123.9600","3. low":"114.7400","4. close":"122.0200","5. volume":"15160728"},"2021-09-30":{"1. open":"122.1500","2. high":"126.9700","3. low":"119.4400","4. close":"119.4500","5. volume":"15118425"},"2021-08-31":{"1. open":"122.2800","2. high":"128.8700","3. low":"115.8100","4. close":"122.2100","5. volume":"18896901"},"2021-07-30":{"1. open":"114.9000","2. high":"123.2400","3. low":"111.3400","4. close":"122.1700","5. volume":"17794071"},"2021-06-30":{"1. open":"114.5400","2. high":"121.3200","3. low":"113.4700","4. close":"114.4900","5. volume":"18959807"},"2021-05-28":{"1. open":"121.5200","2. high":"125.8600","3. low":"112.6800","4. close":"114.7400","5. volume":"28324490"},"2021-04-30":{"1. open":"117.9400","2. high":"122.0943","3. low":"114.7200","4. close":"120.8000","5. volume":"18776260"},"2021-03-31":{"1. open":"101.9200","2. high":"120.5400","3. low":"101.8400","4. close":"118.0700","5. volume":"24431787"},"2021-02-26":{"1. open":"104.8600","2. high":"112.8800","3. low":"100.7100","4. close":"101.2200","5. volume":"21365578"},"2021-01-29":{"1. open":"97.8500","2. high":"112.4800","3. low":"94.8900","4. close":"104.2000","5. volume":"28583960"},"2020-12-31":{"1. open":"103.8500","2. high":"104.4300","3. low":"95.7650","4. close":"97.7600","5. volume":"19413758"},"2020-11-30":{"1. open":"97.3600","2. high":"111.2500","3. low":"95.7100","4. close":"103.1100","5. volume":"22773551"},"2020-10-30":{"1. open":"97.3200","2. high":"100.7150","3. low":"92.2350","4. close":"96.0700","5. volume":"19362275"},"2020-09-30":{"1. open":"97.4500","2. high":"100.0900","3. low":"92.0000","4. close":"96.9200","5. volume":"20048330"},"2020-08-31":{"1. open":"100.8100","2. high":"106.4500","3. low":"96.2650","4. close":"97.0300","5. volume":"17337731"},"2020-07-31":{"1. open":"100.9500","2. high":"105.0800","3. low":"94.7600","4. close":"100.1900","5. volume":"20268711"},"2020-06-30":{"1. open":"94.8400","2. high":"103.3700","3. low":"92.5700","4. close":"100.7700","5. volume":"30032154"},"2020-05-29":{"1. open":"88.3500","2. high":"96.4900","3. low":"81.5100","4. close":"95.3400","5. volume":"26820080"},"2020-04-30":{"1. open":"88.2100","2. high":"92.0800","3. low":"80.0000","4. close":"89.6600","5. volume":"31240058"},"2020-03-31":{"1. open":"84.5300","2. high":"90.7600","3. low":"72.0600","4. close":"88.5000","5. volume":"59837738"},"2020-02-28":{"1. open":"85.9400","2. high":"97.5000","3. low":"81.4700","4. close":"84.3200","5. volume":"31020706"},"2020-01-31":{"1. open":"85.6400","2. high":"92.4200","3. low":"83.0100","4. close":"85.5600","5. volume":"27649481"},"2019-12-31":{"1. open":"87.8700","2. high":"89.2100","3. low":"82.5700","4. close":"85.0200","5. volume":"20927238"},"2019-11-29":{"1. open":"85.9200","2. high":"90.8100","3. low":"82.1000","4. close":"87.9100","5. volume":"23195331"},"2019-10-31":{"1. open":"82.4800","2. high":"90.0000","3. low":"79.7500","4. close":"85.3800","5. volume":"26849345"},"2019-09-30":{"1. open":"81.8700","2. high":"88.4600","3. low":"80.4300","4. close":"82.3300","5. volume":"24330541"},"2019-08-30":{"1. open":"90.8800","2. high":"94.7500","3. low":"80.4100","4. close":"82.2700","5. volume":"32829562"},"2019-07-31":{"1. open":"85.7800","2. high":"94.2000","3. low":"84.5200","4. close":"87.1500","5. volume":"24853657"},"2019-06-28":{"1. open":"78.1200","2. high":"87.1000","3. low":"78.1200","4. close":"85.2600","5. volume":"28021925"},"2019-05-31":{"1. open":"75.1300","2. high":"82.0800","3. low":"73.0400","4. close":"77.8600","5. volume":"34444265"},"2019-04-30":{"1. open":"80.0400","2. high":"80.2500","3. low":"70.5500","4. close":"74.7600","5. volume":"30895198"},"2019-03-29":{"1. open":"83.7100","2. high":"84.2700","3. low":"75.5300","4. close":"79.5200","5. volume":"30672856"},"2019-02-28":{"1. open":"81.8200","2. high":"87.5300","3. low":"79.7000","4. close":"83.3000","5. volume":"25735866"},"2019-01-31":{"1. open":"73.7400","2. high":"85.8600","3. low":"72.5500","4. close":"83.3700","5. volume":"32149402"},"2018-12-31":{"1. open":"88.9800","2. high":"90.2600","3. low":"69.3600","4. close":"74.4000","5. volume":"26767545"},"2018-11-30":{"1. open":"88.4400","2. high":"92.5900","3. low":"80.2800","4. close":"88.9000","5. volume":"31258454"},"2018-10-31":{"1. open":"92.7500","2. high":"94.8500","3. low":"83.0700","4. close":"88.0000","5. volume":"31095144"},"2018-09-28":{"1. open":"89.5300","2. high":"92.5100","3. low":"83.3900","4. close":"92.2200","5. volume":"23156279"},"2018-08-31":{"1. open":"81.6700","2. high":"90.3900","3. low":"77.2800","4. close":"89.9700","5. volume":"30630964"},"2018-07-31":{"1. open":"84.8000","2. high":"89.5500","3. low":"81.7800","4. close":"81.8300","5. volume":"25145176"},"2018-06-29":{"1. open":"82.6600","2. high":"94.8800","3. low":"82.1400","4. close":"85.2700","5. volume":"29518967"},"2018-05-31":{"1. open":"90.4500","2. high":"95.0000","3. low":"81.9700","4. close":"82.1400","5. volume":"33922974"},"2018-04-30":{"1. open":"86.1000","2. high":"94.2200","3. low":"81.5800","4. close":"90.5800","5. volume":"32392375"},"2018-03-29":{"1. open":"94.8400","2. high":"101.3900","3. low":"82.8800","4. close":"86.2100","5. volume":"34775482"},"2018-02-28":{"1. open":"97.7400","2. high":"102.0000","3. low":"85.8000","4. close":"95.1600","5. volume":"57106388"},"2018-01-31":{"1. open":"92.1500","2. high":"106.2700","3. low":"92.1200","4. close":"99.6700","5. volume":"33155721"},"2017-12-29":{"1. open":"83.9800","2. high":"94.4400","3. low":"81.2076","4. close":"91.8200","5. volume":"34651595"},"2017-11-30":{"1. open":"77.4800","2. high":"86.1000","3. low":"71.9000","4. close":"84.8200","5. volume":"47029756"},"2017-10-31":{"1. open":"82.9700","2. high":"85.8000","3. low":"75.4600","4. close":"76.9500","5. volume":"45497559"},"2017-09-29":{"1. open":"80.4600","2. high":"84.8050","3. low":"78.3399","4. close":"82.7500","5. volume":"28941908"},"2017-08-31":{"1. open":"94.1100","2. high":"94.1700","3. low":"77.6900","4. close":"80.2500","5. volume":"46140150"},"2017-07-31":{"1. open":"94.8600","2. high":"95.6800","3. low":"90.3000","4. close":"93.8200","5. volume":"20657814"},"2017-06-30":{"1. open":"91.7100","2. high":"97.8500","3. low":"91.0250","4. close":"94.5300","5. volume":"26544540"},"2017-05-31":{"1. open":"82.3200","2. high":"91.7900","3. low":"81.0700","4. close":"91.7700","5. volume":"37552135"},"2017-04-28":{"1. open":"88.4100","2. high":"89.2500","3. low":"79.4000","4. close":"82.0500","5. volume":"30878412"},"2017-03-31":{"1. open":"92.1900","2. high":"92.8070","3. low":"85.2200","4. close":"88.5000","5. volume":"37417238"},"2017-02-28":{"1. open":"87.7100","2. high":"94.5000","3. low":"86.0900","4. close":"91.5100","5. volume":"40010066"},"2017-01-31":{"1. open":"78.5100","2. high":"87.8400","3. low":"78.3100","4. close":"87.2800","5. volume":"51209694"},"2016-12-30":{"1. open":"77.8800","2. high":"80.2400","3. low":"73.8600","4. close":"78.1900","5. volume":"40754789"},"2016-11-30":{"1. open":"69.8500","2. high":"82.5800","3. low":"68.7050","4. close":"77.9900","5. volume":"81568048"},"2016-10-31":{"1. open":"80.6800","2. high":"81.7650","3. low":"68.3800","4. close":"70.3200","5. volume":"49115792"},"2016-09-30":{"1. open":"87.0100","2. high":"88.4390","3. low":"79.3400","4. close":"80.7800","5. volume":"47872065"},"2016-08-31":{"1. open":"85.2800","2. high":"90.5400","3. low":"85.1100","4. close":"86.9700","5. volume":"44165451"},"2016-07-29":{"1. open":"79.2900","2. high":"87.0500","3. low":"79.1095","4. close":"85.1900","5. volume":"39947391"},"2016-06-30":{"1. open":"74.7600","2. high":"79.3300","3. low":"73.4400","4. close":"79.3200","5. volume":"52617088"},"2016-05-31":{"1. open":"85.1900","2. high":"86.0700","3. low":"73.3100","4. close":"74.9800","5. volume":"69423698"},"2016-04-29":{"1. open":"86.6100","2. high":"92.4800","3. low":"84.0499","4. close":"85.1000","5. volume":"49937616"},"2016-03-31":{"1. open":"86.8000","2. high":"89.7700","3. low":"85.4100","4. close":"86.5500","5. volume":"44576143"},"2016-02-29":{"1. open":"89.1100","2. high":"89.8900","3. low":"80.5000","4. close":"86.6200","5. volume":"58845176"},"2016-01-29":{"1. open":"102.3100","2. high":"103.4000","3. low":"87.0900","4. close":"89.5600","5. volume":"60278085"},"2015-12-31":{"1. open":"98.8400","2. high":"105.8070","3. low":"98.0300","4. close":"103.7100","5. volume":"40661150"},"2015-11-30":{"1. open":"97.5100","2. high":"100.8600","3. low":"96.2200","4. close":"98.6400","5. volume":"35877262"},"2015-10-30":{"1. open":"94.9900","2. high":"102.6400","3. low":"90.8200","4. close":"96.5100","5. volume":"69508928"},"2015-09-30":{"1. open":"98.5000","2. high":"108.1800","3. low":"94.0700","4. close":"94.9900","5. volume":"42474758"},"2015-08-31":{"1. open":"105.7500","2. high":"107.8500","3. low":"94.6700","4. close":"100.0400","5. volume":"40523578"},"2015-07-31":{"1. open":"107.1700","2. high":"115.4100","3. low":"104.1333","4. close":"105.7500","5. volume":"43473414"},"2015-06-30":{"1. open":"112.8100","2. high":"113.7600","3. low":"105.7800","4. close":"106.3400","5. volume":"38558567"},"2015-05-29":{"1. open":"115.1200","2. high":"116.2800","3. low":"112.5600","4. close":"112.5600","5. volume":"41603404"},"2015-04-30":{"1. open":"113.9300","2. high":"120.6800","3. low":"111.4100","4. close":"114.3000","5. volume":"38214434"},"2015-03-31":{"1. open":"102.5700","2. high":"114.7300","3. low":"102.0000","4. close":"113.6700","5. volume":"44469965"},"2015-02-27":{"1. open":"95.5700","2. high":"103.7050","3. low":"93.6000","4. close":"102.7600","5. volume":"33072373"},"2015-01-30":{"1. open":"90.6100","2. high":"100.2000","3. low":"89.5200","4. close":"95.0500","5. volume":"44104019"},"2014-12-31":{"1. open":"90.6400","2. high":"92.8400","3. low":"89.2550","4. close":"90.1600","5. volume":"32705162"},"2014-11-28":{"1. open":"85.8100","2. high":"91.5900","3. low":"85.5800","4. close":"91.0500","5. volume":"31704792"},"2014-10-31":{"1. open":"78.2100","2. high":"85.9900","3. low":"74.3200","4. close":"85.4100","5. volume":"48207134"},"2014-09-30":{"1. open":"77.5100","2. high":"78.5992","3. low":"75.7100","4. close":"77.3000","5. volume":"28143143"},"2014-08-29":{"1. open":"76.9600","2. high":"77.9100","3. low":"74.6600","4. close":"77.3900","5. volume":"21162194"},"2014-07-31":{"1. open":"72.6700","2. high":"79.1300","3. low":"72.0110","4. close":"76.9100","5. volume":"32776600"},"2014-06-30":{"1. open":"73.3100","2. high":"73.8100","3. low":"71.0000","4. close":"72.6600","5. volume":"31264700"},"2014-05-30":{"1. open":"64.7600","2. high":"73.5700","3. low":"63.8500","4. close":"73.1800","5. volume":"44089700"},"2014-04-30":{"1. open":"65.6000","2. high":"66.8100","3. low":"62.5500","4. close":"65.1800","5. volume":"42956800"},"2014-03-31":{"1. open":"67.1100","2. high":"69.6500","3. low":"63.5299","4. close":"65.5900","5. volume":"38425600"},"2014-02-28":{"1. open":"67.1300","2. high":"69.2200","3. low":"64.2800","4. close":"67.8500","5. volume":"34245200"},"2014-01-31":{"1. open":"70.1100","2. high":"71.9200","3. low":"66.1300","4. close":"67.2200","5. volume":"39120600"},"2013-12-31":{"1. open":"70.7900","2. high":"71.3800","3. low":"67.7400","4. close":"70.3100","5. volume":"33235300"},"2013-11-29":{"1. open":"65.5500","2. high":"71.1600","3. low":"65.1600","4. close":"70.5300","5. volume":"28488800"},"2013-10-31":{"1. open":"61.1800","2. high":"65.9800","3. low":"60.7800","4. close":"65.3300","5. volume":"31194900"},"2013-09-30":{"1. open":"57.4600","2. high":"62.4400","3. low":"57.2100","4. close":"61.1000","5. volume":"22285100"},"2013-08-30":{"1. open":"58.3900","2. high":"59.7500","3. low":"56.2400","4. close":"56.9200","5. volume":"33339700"},"2013-07-31":{"1. open":"56.1100","2. high":"59.3000","3. low":"54.4000","4. close":"58.2700","5. volume":"43659200"},"2013-06-28":{"1. open":"54.0100","2. high":"56.3900","3. low":"52.3800","4. close":"55.8300","5. volume":"57737400"},"2013-05-31":{"1. open":"54.0600","2. high":"55.4800","3. low":"53.2200","4. close":"54.0800","5. volume":"46150300"},"2013-04-30":{"1. open":"51.3800","2. high":"56.9100","3. low":"51.2900","4. close":"54.1200","5. volume":"67533400"},"2013-03-28":{"1. open":"47.2200","2. high":"52.1500","3. low":"46.8900","4. close":"51.4500","5. volume":"56654800"},"2013-02-28":{"1. open":"45.4000","2. high":"47.5100","3. low":"45.4000","4. close":"47.2000","5. volume":"37727800"},"2013-01-31":{"1. open":"43.5900","2. high":"46.5900","3. low":"43.0100","4. close":"45.3700","5. volume":"43842000"},"2012-12-31":{"1. open":"42.2600","2. high":"44.0200","3. low":"42.0200","4. close":"43.1800","5. volume":"52711500"},"2012-11-30":{"1. open":"39.5500","2. high":"42.2400","3. low":"39.5100","4. close":"42.2200","5. volume":"49398800"},"2012-10-31":{"1. open":"38.7900","2. high":"40.9500","3. low":"38.6900","4. close":"39.4400","5. volume":"47227000"},"2012-09-28":{"1. open":"38.5200","2. high":"39.4500","3. low":"37.1200","4. close":"38.7100","5. volume":"58291000"},"2012-08-31":{"1. open":"39.8900","2. high":"40.1100","3. low":"36.7300","4. close":"38.5200","5. volume":"69694000"},"2012-07-31":{"1. open":"39.5300","2. high":"40.3600","3. low":"36.9100","4. close":"39.7000","5. volume":"54090200"},"2012-06-29":{"1. open":"36.6500","2. high":"39.3500","3. low":"36.0200","4. close":"39.3500","5. volume":"40673100"},"2012-05-31":{"1. open":"37.0600","2. high":"37.5800","3. low":"35.4800","4. close":"36.9900","5. volume":"61480000"},"2012-04-30":{"1. open":"39.7000","2. high":"39.7400","3. low":"36.2800","4. close":"37.2100","5. volume":"56808500"},"2012-03-30":{"1. open":"37.1900","2. high":"39.7600","3. low":"36.2000","4. close":"39.6600","5. volume":"58588200"},"2012-02-29":{"1. open":"39.2300","2. high":"39.9000","3. low":"36.1100","4. close":"37.3700","5. volume":"59842600"},"2012-01-31":{"1. open":"37.7700","2. high":"40.2200","3. low":"37.5300","4. close":"38.9700","5. volume":"45855100"},"2011-12-30":{"1. open":"37.0200","2. high":"37.7900","3. low":"35.5600","4. close":"37.1900","5. volume":"47960400"},"2011-11-30":{"1. open":"39.5100","2. high":"40.7000","3. low":"35.7500","4. close":"37.1500","5. volume":"45238900"},"2011-10-31":{"1. open":"37.0100","2. high":"42.3200","3. low":"34.7400","4. close":"40.8000","5. volume":"58200800"},"2011-09-30":{"1. open":"39.4800","2. high":"40.3700","3. low":"37.1500","4. close":"37.2700","5. volume":"56932700"},"2011-08-31":{"1. open":"38.3500","2. high":"40.0000","3. low":"34.3300","4. close":"39.5800","5. volume":"90856000"},"2011-07-29":{"1. open":"41.3700","2. high":"43.4700","3. low":"37.6200","4. close":"38.3100","5. volume":"60403370"},"2011-06-30":{"1. open":"41.0900","2. high":"41.7200","3. low":"39.8000","4. close":"41.4000","5. volume":"47145300"},"2011-05-31":{"1. open":"40.7600","2. high":"42.5000","3. low":"40.3900","4. close":"41.2200","5. volume":"47413800"},"2011-04-29":{"1. open":"39.7500","2. high":"42.5000","3. low":"38.8600","4. close":"40.6400","5. volume":"52278900"},"2011-03-31":{"1. open":"37.9100","2. high":"39.9000","3. low":"35.9500","4. close":"39.5600","5. volume":"54907400"},"2011-02-28":{"1. open":"36.1100","2. high":"37.9500","3. low":"34.4000","4. close":"37.9100","5. volume":"50224000"},"2011-01-31":{"1. open":"34.2600","2. high":"37.0800","3. low":"33.9100","4. close":"35.8600","5. volume":"55700600"},"2010-12-31":{"1. open":"31.1600","2. high":"34.7200","3. low":"31.0700","4. close":"34.1200","5. volume":"53768500"},"2010-11-30":{"1. open":"32.9200","2. high":"33.3600","3. low":"30.5102","4. close":"30.8500","5. volume":"66689500"},"2010-10-29":{"1. open":"30.8500","2. high":"33.8300","3. low":"30.4000","4. close":"32.8300","5. volume":"61712400"},"2010-09-30":{"1. open":"27.4600","2. high":"31.8200","3. low":"27.4600","4. close":"30.6600","5. volume":"61005500"},"2010-08-31":{"1. open":"30.2800","2. high":"30.7900","3. low":"27.0900","4. close":"27.2800","5. volume":"65043200"},"2010-07-30":{"1. open":"31.6300","2. high":"32.9300","3. low":"27.8200","4. close":"29.9700","5. volume":"134598800"},"2010-06-30":{"1. open":"31.0300","2. high":"33.2700","3. low":"30.3100","4. close":"31.7500","5. volume":"96287400"},"2010-05-28":{"1. open":"31.0300","2. high":"31.9600","3. low":"28.9500","4. close":"31.2800","5. volume":"90424800"},"2010-04-30":{"1. open":"28.9900","2. high":"31.7910","3. low":"28.4200","4. close":"30.8500","5. volume":"78430100"},"2010-03-31":{"1. open":"27.9700","2. high":"29.4300","3. low":"27.6100","4. close":"28.9200","5. volume":"65730200"},"2010-02-26":{"1. open":"27.4600","2. high":"28.6100","3. low":"26.6500","4. close":"28.0400","5. volume":"75565700"},"2010-01-29":{"1. open":"26.2900","2. high":"28.0000","3. low":"25.6600","4. close":"27.2600","5. volume":"67836100"},"2009-12-31":{"1. open":"24.7500","2. high":"26.5800","3. low":"24.1400","4. close":"26.0700","5. volume":"69234100"},"2009-11-30":{"1. open":"22.2500","2. high":"25.1900","3. low":"22.0700","4. close":"24.6900","5. volume":"61482100"},"2009-10-30":{"1. open":"22.3600","2. high":"23.8600","3. low":"21.4400","4. close":"22.1500","5. volume":"68404300"},"2009-09-30":{"1. open":"21.2200","2. high":"22.8400","3. low":"20.8700","4. close":"22.3800","5. volume":"56172200"},"2009-08-31":{"1. open":"19.7900","2. high":"21.4700","3. low":"19.2600","4. close":"21.3100","5. volume":"62543400"},"2009-07-31":{"1. open":"17.8500","2. high":"20.7700","3. low":"17.5400","4. close":"19.7200","5. volume":"58885500"},"2009-06-30":{"1. open":"37.3900","2. high":"37.9800","3. low":"17.3800","4. close":"17.7400","5. volume":"61359700"},"2009-05-29":{"1. open":"33.6800","2. high":"37.5800","3. low":"33.6000","4. close":"37.1000","5. volume":"33680000"},"2009-04-30":{"1. open":"32.3600","2. high":"36.9700","3. low":"31.8000","4. close":"33.6400","5. volume":"40437900"},"2009-03-31":{"1. open":"31.2700","2. high":"33.4500","3. low":"27.5000","4. close":"32.6600","5. volume":"55930000"},"2009-02-27":{"1. open":"35.7200","2. high":"39.0900","3. low":"31.6500","4. close":"31.7600","5. volume":"38625800"},"2009-01-30":{"1. open":"36.0000","2. high":"38.4700","3. low":"34.5700","4. close":"36.3200","5. volume":"48428300"},"2008-12-31":{"1. open":"30.2000","2. high":"35.8400","3. low":"28.8800","4. close":"35.6600","5. volume":"39110400"},"2008-11-28":{"1. open":"31.2600","2. high":"31.8300","3. low":"26.6600","4. close":"31.3500","5. volume":"42875200"},"2008-10-31":{"1. open":"37.2500","2. high":"37.5600","3. low":"27.8000","4. close":"31.2700","5. volume":"54752400"},"2008-09-30":{"1. open":"41.2900","2. high":"42.2500","3. low":"36.5900","4. close":"37.6500","5. volume":"43210800"},"2008-08-29":{"1. open":"41.8400","2. high":"43.4300","3. low":"39.9700","4. close":"41.0100","5. volume":"32589300"},"2008-07-31":{"1. open":"39.5700","2. high":"44.4500","3. low":"36.7000","4. close":"41.8700","5. volume":"33158200"},"2008-06-30":{"1. open":"41.1800","2. high":"42.3600","3. low":"38.9400","4. close":"39.9900","5. volume":"26552300"},"2008-05-30":{"1. open":"40.6400","2. high":"42.9800","3. low":"40.6400","4. close":"41.3300","5. volume":"23525500"},"2008-04-30":{"1. open":"41.4400","2. high":"42.4400","3. low":"38.9100","4. close":"40.5500","5. volume":"32767200"},"2008-03-31":{"1. open":"41.3700","2. high":"42.6700","3. low":"38.4200","4. close":"40.9800","5. volume":"34581500"},"2008-02-29":{"1. open":"46.4600","2. high":"47.4900","3. low":"41.2900","4. close":"41.7200","5. volume":"27708100"},"2008-01-31":{"1. open":"44.4700","2. high":"48.6000","3. low":"43.2400","4. close":"46.5800","5. volume":"37422100"},"2007-12-31":{"1. open":"45.0000","2. high":"46.1200","3. low":"42.7300","4. close":"44.8700","5. volume":"24139000"},"2007-11-30":{"1. open":"46.8000","2. high":"48.4800","3. low":"42.2100","4. close":"45.3700","5. volume":"33752600"},"2007-10-31":{"1. open":"44.9800","2. high":"48.0600","3. low":"42.3500","4. close":"47.1100","5. volume":"24857300"},"2007-09-28":{"1. open":"48.0000","2. high":"48.1000","3. low":"43.0000","4. close":"45.3300","5. volume":"23827300"},"2007-08-31":{"1. open":"46.9900","2. high":"49.1100","3. low":"42.6700","4. close":"47.8500","5. volume":"50122700"},"2007-07-31":{"1. open":"49.7400","2. high":"51.1000","3. low":"45.9000","4. close":"47.1100","5. volume":"24430000"},"2007-06-29":{"1. open":"51.2600","2. high":"51.6700","3. low":"49.0900","4. close":"49.4700","5. volume":"23519800"},"2007-05-31":{"1. open":"50.1200","2. high":"53.0800","3. low":"48.7900","4. close":"51.2200","5. volume":"35360800"},"2007-04-30":{"1. open":"53.1100","2. high":"56.5600","3. low":"49.8000","4. close":"49.9900","5. volume":"27659300"},"2007-03-30":{"1. open":"51.7000","2. high":"54.1700","3. low":"50.2200","4. close":"52.7500","5. volume":"27587400"},"2007-02-28":{"1. open":"52.4000","2. high":"55.5200","3. low":"51.9500","4. close":"52.6000","5. volume":"20237000"},"2007-01-31":{"1. open":"45.0800","2. high":"54.4000","3. low":"45.0800","4. close":"52.3800","5. volume":"36603700"},"2006-12-29":{"1. open":"46.2400","2. high":"48.0200","3. low":"44.2900","4. close":"44.9600","5. volume":"32616600"},"2006-11-30":{"1. open":"47.2500","2. high":"48.0000","3. low":"44.6300","4. close":"45.9900","5. volume":"35633000"},"2006-10-31":{"1. open":"45.3800","2. high":"47.6400","3. low":"44.9400","4. close":"47.2000","5. volume":"23851100"},"2006-09-29":{"1. open":"44.4900","2. high":"46.9200","3. low":"43.3300","4. close":"45.2000","5. volume":"22237400"},"2006-08-31":{"1. open":"42.9500","2. high":"44.9799","3. low":"42.2200","4. close":"44.1600","5. volume":"27981300"},"2006-07-31":{"1. open":"41.9400","2. high":"43.9700","3. low":"40.8900","4. close":"43.0000","5. volume":"24010200"},"2006-06-30":{"1. open":"43.8500","2. high":"44.4400","3. low":"40.1500","4. close":"41.9200","5. volume":"32931700"},"2006-05-31":{"1. open":"43.1500","2. high":"44.8500","3. low":"42.9900","4. close":"43.5900","5. volume":"30265000"},"2006-04-28":{"1. open":"48.4000","2. high":"48.9600","3. low":"42.9200","4. close":"43.1500","5. volume":"37670800"},"2006-03-31":{"1. open":"46.2500","2. high":"48.6400","3. low":"44.9200","4. close":"48.2700","5. volume":"28254700"},"2006-02-28":{"1. open":"43.8900","2. high":"46.7800","3. low":"42.7900","4. close":"45.9900","5. volume":"26699100"},"2006-01-31":{"1. open":"41.3900","2. high":"44.4000","3. low":"40.3100","4. close":"43.6400","5. volume":"35703800"},"2005-12-30":{"1. open":"79.5000","2. high":"84.3500","3. low":"40.9700","4. close":"41.4000","5. volume":"18444300"},"2005-11-30":{"1. open":"75.7500","2. high":"80.6900","3. low":"74.9800","4. close":"80.3500","5. volume":"18298400"},"2005-10-31":{"1. open":"77.5000","2. high":"78.6000","3. low":"73.3200","4. close":"76.2700","5. volume":"21795000"},"2005-09-30":{"1. open":"74.5500","2. high":"79.0500","3. low":"73.5000","4. close":"77.3000","5. volume":"18971000"},"2005-08-31":{"1. open":"71.7900","2. high":"75.1600","3. low":"69.9600","4. close":"74.6700","5. volume":"15928800"},"2005-07-29":{"1. open":"69.4900","2. high":"72.3000","3. low":"68.5500","4. close":"71.7900","5. volume":"22459000"},"2005-06-30":{"1. open":"64.7000","2. high":"69.4600","3. low":"63.8900","4. close":"69.1500","5. volume":"23957000"},"2005-05-31":{"1. open":"61.1700","2. high":"66.7000","3. low":"60.8200","4. close":"64.5700","5. volume":"21254900"},"2005-04-29":{"1. open":"57.1500","2. high":"61.8000","3. low":"56.0400","4. close":"61.2800","5. volume":"37536000"},"2005-03-31":{"1. open":"60.0300","2. high":"63.4000","3. low":"52.9500","4. close":"57.2900","5. volume":"29402700"},"2005-02-28":{"1. open":"58.1800","2. high":"61.9000","3. low":"58.0500","4. close":"59.9000","5. volume":"25503200"},"2005-01-31":{"1. open":"58.6800","2. high":"58.9500","3. low":"55.9000","4. close":"58.2800","5. volume":"27615800"},"2004-12-31":{"1. open":"59.1900","2. high":"64.0200","3. low":"56.2400","4. close":"58.6800","5. volume":"38743100"},"2004-11-30":{"1. open":"55.0400","2. high":"59.4900","3. low":"54.4600","4. close":"58.9400","5. volume":"29732200"},"2004-10-29":{"1. open":"53.9800","2. high":"55.8600","3. low":"50.2300","4. close":"55.0400","5. volume":"37686700"},"2004-09-30":{"1. open":"54.2100","2. high":"56.8000","3. low":"52.8100","4. close":"53.7100","5. volume":"26510600"},"2004-08-31":{"1. open":"54.0600","2. high":"54.6200","3. low":"49.7400","4. close":"54.1000","5. volume":"25192300"},"2004-07-30":{"1. open":"56.5500","2. high":"56.5500","3. low":"52.1300","4. close":"54.0600","5. volume":"31573800"},"2004-06-30":{"1. open":"59.9900","2. high":"61.9300","3. low":"58.1100","4. close":"59.7800","5. volume":"17139100"},"2004-05-28":{"1. open":"58.0400","2. high":"61.9300","3. low":"57.3800","4. close":"59.9800","5. volume":"24886600"},"2004-04-30":{"1. open":"54.6700","2. high":"59.4000","3. low":"53.5100","4. close":"57.8900","5. volume":"23264700"},"2004-03-31":{"1. open":"58.2000","2. high":"59.4500","3. low":"51.7500","4. close":"54.6800","5. volume":"27594400"},"2004-02-27":{"1. open":"55.1600","2. high":"58.4900","3. low":"54.8500","4. close":"58.0300","5. volume":"21538300"},"2004-01-30":{"1. open":"53.7500","2. high":"58.0000","3. low":"52.8500","4. close":"55.0500","5. volume":"49312200"},"2003-12-31":{"1. open":"63.5400","2. high":"66.3700","3. low":"55.7100","4. close":"56.1500","5. volume":"27491500"},"2003-11-28":{"1. open":"56.7800","2. high":"65.6800","3. low":"55.7600","4. close":"63.2900","5. volume":"30134100"},"2003-10-31":{"1. open":"54.3000","2. high":"58.9000","3. low":"53.0500","4. close":"56.7700","5. volume":"30778700"},"2003-09-30":{"1. open":"58.7500","2. high":"59.2800","3. low":"52.8500","4. close":"54.0500","5. volume":"49215000"},"2003-08-29":{"1. open":"63.0900","2. high":"63.6900","3. low":"56.2000","4. close":"58.2100","5. volume":"26713900"},"2003-07-31":{"1. open":"69.2500","2. high":"73.4400","3. low":"61.7400","4. close":"63.0900","5. volume":"31355000"},"2003-06-30":{"1. open":"62.8000","2. high":"71.4990","3. low":"62.2500","4. close":"69.3500","5. volume":"31761700"},"2003-05-30":{"1. open":"57.8600","2. high":"62.6900","3. low":"56.0000","4. close":"62.6900","5. volume":"30369400"},"2003-04-30":{"1. open":"52.4500","2. high":"58.2800","3. low":"49.6600","4. close":"57.8500","5. volume":"33325200"},"2003-03-31":{"1. open":"55.0000","2. high":"55.4800","3. low":"45.6500","4. close":"52.5000","5. volume":"36239900"},"2003-02-28":{"1. open":"58.3400","2. high":"58.5000","3. low":"51.6500","4. close":"55.0000","5. volume":"26940600"},"2003-01-31":{"1. open":"55.2500","2. high":"59.7100","3. low":"52.6000","4. close":"58.2000","5. volume":"37442800"},"2002-12-31":{"1. open":"59.2000","2. high":"63.8000","3. low":"50.2000","4. close":"54.3100","5. volume":"48357600"},"2002-11-29":{"1. open":"71.1500","2. high":"73.4500","3. low":"56.0000","4. close":"58.0200","5. volume":"50559100"},"2002-10-31":{"1. open":"71.6700","2. high":"76.9500","3. low":"69.7500","4. close":"71.1500","5. volume":"26515800"},"2002-09-30":{"1. open":"72.5200","2. high":"73.8000","3. low":"67.1000","4. close":"71.4200","5. volume":"22288600"},"2002-08-30":{"1. open":"67.0000","2. high":"74.2000","3. low":"61.8300","4. close":"72.5100","5. volume":"18547000"},"2002-07-31":{"1. open":"75.1000","2. high":"75.3500","3. low":"42.4400","4. close":"66.9900","5. volume":"43934900"},"2002-06-28":{"1. open":"77.0900","2. high":"82.8500","3. low":"74.3900","4. close":"76.0000","5. volume":"22373800"},"2002-05-31":{"1. open":"76.9500","2. high":"79.5000","3. low":"73.5900","4. close":"77.0900","5. volume":"19293400"},"2002-04-30":{"1. open":"69.9000","2. high":"79.7000","3. low":"65.0000","4. close":"77.5000","5. volume":"26423700"},"2002-03-28":{"1. open":"67.7100","2. high":"70.9200","3. low":"64.6000","4. close":"68.3000","5. volume":"19758700"},"2002-02-28":{"1. open":"65.1500","2. high":"67.8900","3. low":"61.3500","4. close":"67.7000","5. volume":"17124200"},"2002-01-31":{"1. open":"63.5500","2. high":"65.2000","3. low":"56.6200","4. close":"64.7300","5. volume":"26232700"},"2001-12-31":{"1. open":"61.3000","2. high":"64.2000","3. low":"56.3700","4. close":"63.5500","5. volume":"21209800"},"2001-11-30":{"1. open":"64.5000","2. high":"64.5000","3. low":"53.8500","4. close":"59.5000","5. volume":"38518000"},"2001-10-31":{"1. open":"71.1800","2. high":"72.0000","3. low":"62.9900","4. close":"63.5600","5. volume":"26469200"},"2001-09-28":{"1. open":"64.3000","2. high":"71.5900","3. low":"62.2500","4. close":"70.9500","5. volume":"22977700"},"2001-08-31":{"1. open":"58.3500","2. high":"66.5000","3. low":"54.8600","4. close":"64.4400","5. volume":"33631200"},"2001-07-31":{"1. open":"55.3000","2. high":"60.2500","3. low":"52.1200","4. close":"58.1400","5. volume":"15171900"},"2001-06-29":{"1. open":"57.7700","2. high":"62.5000","3. low":"55.0000","4. close":"55.3500","5. volume":"16908400"},"2001-05-31":{"1. open":"53.8000","2. high":"58.4500","3. low":"50.0000","4. close":"57.7100","5. volume":"15505100"},"2001-04-30":{"1. open":"49.3000","2. high":"55.4000","3. low":"47.1500","4. close":"54.0000","5. volume":"13648600"},"2001-03-30":{"1. open":"54.1000","2. high":"57.9700","3. low":"42.0000","4. close":"49.0500","5. volume":"20698800"},"2001-02-28":{"1. open":"48.4000","2. high":"57.3000","3. low":"46.2600","4. close":"53.7200","5. volume":"8628200"},"2001-01-31":{"1. open":"50.2500","2. high":"53.3100","3. low":"40.1200","4. close":"47.8300","5. volume":"14630600"},"2000-12-29":{"1. open":"49.0000","2. high":"53.6900","3. low":"40.0600","4. close":"50.5000","5. volume":"17098700"},"2000-11-30":{"1. open":"42.8100","2. high":"52.2500","3. low":"38.3800","4. close":"49.2500","5. volume":"10998700"},"2000-10-31":{"1. open":"47.5000","2. high":"49.5000","3. low":"39.6900","4. close":"43.4400","5. volume":"14200800"},"2000-09-29":{"1. open":"34.9400","2. high":"48.0000","3. low":"31.9400","4. close":"47.0000","5. volume":"7822200"},"2000-08-31":{"1. open":"34.9400","2. high":"38.5000","3. low":"33.4400","4. close":"35.1200","5. volume":"5676300"},"2000-07-31":{"1. open":"31.1900","2. high":"36.2500","3. low":"29.0000","4. close":"34.9400","5. volume":"6795800"},"2000-06-30":{"1. open":"24.5000","2. high":"32.3800","3. low":"24.1300","4. close":"31.0200","5. volume":"8015200"},"2000-05-31":{"1. open":"20.0000","2. high":"26.0000","3. low":"17.6200","4. close":"24.2500","5. volume":"7996200"},"2000-04-28":{"1. open":"14.9400","2. high":"20.0000","3. low":"14.2500","4. close":"20.0000","5. volume":"4051700"},"2000-03-31":{"1. open":"14.6200","2. high":"16.9400","3. low":"12.0000","4. close":"15.0000","5. volume":"7664000"},"2000-02-29":{"1. open":"19.7500","2. high":"20.1900","3. low":"13.7500","4. close":"14.5600","5. volume":"9457600"},"2000-01-31":{"1. open":"15.5000","2. high":"23.8100","3. low":"14.0000","4. close":"18.1300","5. volume":"9007900"},"1999-12-31":{"1. open":"12.5000","2. high":"15.5000","3. low":"11.5600","4. close":"15.1900","5. volume":"7250900"}}} \ No newline at end of file diff --git a/Backend/data/monthly_ABR.json b/Backend/data/monthly_ABR.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/Backend/data/monthly_ABR.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/Backend/data/monthly_ABT.json b/Backend/data/monthly_ABT.json index 94c4c6dd..9e26dfee 100644 --- a/Backend/data/monthly_ABT.json +++ b/Backend/data/monthly_ABT.json @@ -1 +1 @@ -{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file +{} \ No newline at end of file diff --git a/Backend/data/monthly_ACA.json b/Backend/data/monthly_ACA.json new file mode 100644 index 00000000..6af3c0cd --- /dev/null +++ b/Backend/data/monthly_ACA.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Monthly Prices (open, high, low, close) and Volumes","2. Symbol":"ACA","3. Last Refreshed":"2022-03-28","4. Time Zone":"US/Eastern"},"Monthly Time Series":{"2022-03-28":{"1. open":"52.8000","2. high":"59.1000","3. low":"51.3175","4. close":"57.9300","5. volume":"6321004"},"2022-02-28":{"1. open":"46.6400","2. high":"53.3975","3. low":"43.4200","4. close":"52.6700","5. volume":"4797991"},"2022-01-31":{"1. open":"53.2400","2. high":"55.6800","3. low":"43.8500","4. close":"46.6600","5. volume":"3946124"},"2021-12-31":{"1. open":"52.8700","2. high":"57.0400","3. low":"47.6500","4. close":"52.7000","5. volume":"5523529"},"2021-11-30":{"1. open":"52.0700","2. high":"58.9600","3. low":"50.7450","4. close":"51.1700","5. volume":"4401326"},"2021-10-29":{"1. open":"50.2600","2. high":"54.0500","3. low":"49.6200","4. close":"51.7300","5. volume":"3143164"},"2021-09-30":{"1. open":"51.3000","2. high":"51.9200","3. low":"48.1800","4. close":"50.1700","5. volume":"5368903"},"2021-08-31":{"1. open":"54.9100","2. high":"56.4400","3. low":"48.5100","4. close":"50.8200","5. volume":"7218520"},"2021-07-30":{"1. open":"59.2600","2. high":"59.2600","3. low":"49.9300","4. close":"54.7600","5. volume":"3809710"},"2021-06-30":{"1. open":"64.0700","2. high":"64.1300","3. low":"55.3500","4. close":"58.7400","5. volume":"5105295"},"2021-05-28":{"1. open":"61.5100","2. high":"65.7800","3. low":"58.7100","4. close":"63.5000","5. volume":"3839343"},"2021-04-30":{"1. open":"65.0900","2. high":"66.1800","3. low":"59.1800","4. close":"60.2900","5. volume":"5569475"},"2021-03-31":{"1. open":"58.0900","2. high":"67.8500","3. low":"56.3900","4. close":"65.0900","5. volume":"8145659"},"2021-02-26":{"1. open":"56.2700","2. high":"68.4600","3. low":"54.5800","4. close":"56.7300","5. volume":"5209685"},"2021-01-29":{"1. open":"54.6700","2. high":"64.1150","3. low":"53.6000","4. close":"55.7900","5. volume":"5675549"},"2020-12-31":{"1. open":"53.0000","2. high":"55.8700","3. low":"52.1950","4. close":"54.9300","5. volume":"5209981"},"2020-11-30":{"1. open":"46.7800","2. high":"57.2600","3. low":"45.2200","4. close":"51.8900","5. volume":"5460386"},"2020-10-30":{"1. open":"44.2300","2. high":"51.4900","3. low":"43.1400","4. close":"46.1700","5. volume":"5319963"},"2020-09-30":{"1. open":"45.9800","2. high":"48.6400","3. low":"41.7300","4. close":"44.0900","5. volume":"5978713"},"2020-08-31":{"1. open":"42.8600","2. high":"47.0300","3. low":"42.0000","4. close":"46.2900","5. volume":"4634599"},"2020-07-31":{"1. open":"42.3000","2. high":"43.9900","3. low":"37.2500","4. close":"42.2200","5. volume":"4944300"},"2020-06-30":{"1. open":"38.2800","2. high":"45.8700","3. low":"37.7400","4. close":"42.2000","5. volume":"7798742"},"2020-05-29":{"1. open":"36.3700","2. high":"40.0500","3. low":"31.0300","4. close":"38.1700","5. volume":"7811636"},"2020-04-30":{"1. open":"37.6300","2. high":"42.7800","3. low":"36.0000","4. close":"37.2700","5. volume":"7952463"},"2020-03-31":{"1. open":"43.0000","2. high":"44.8500","3. low":"28.1400","4. close":"39.7400","5. volume":"9137702"},"2020-02-28":{"1. open":"43.9300","2. high":"47.8500","3. low":"38.2200","4. close":"42.9600","5. volume":"5573319"},"2020-01-31":{"1. open":"44.7800","2. high":"47.4700","3. low":"43.6900","4. close":"43.7500","5. volume":"6508505"},"2019-12-31":{"1. open":"39.3000","2. high":"46.3300","3. low":"37.7800","4. close":"44.5500","5. volume":"8159360"},"2019-11-29":{"1. open":"38.5600","2. high":"40.2900","3. low":"37.3330","4. close":"39.2100","5. volume":"6023187"},"2019-10-31":{"1. open":"34.4500","2. high":"38.4800","3. low":"32.4700","4. close":"38.4100","5. volume":"9211492"},"2019-09-30":{"1. open":"32.0900","2. high":"35.1100","3. low":"31.6200","4. close":"34.2100","5. volume":"8267092"},"2019-08-30":{"1. open":"37.3200","2. high":"37.3500","3. low":"30.7100","4. close":"32.4900","5. volume":"7919194"},"2019-07-31":{"1. open":"38.1500","2. high":"38.6800","3. low":"35.1300","4. close":"37.5000","5. volume":"7759365"},"2019-06-28":{"1. open":"33.8700","2. high":"39.7400","3. low":"33.6100","4. close":"37.6300","5. volume":"14884196"},"2019-05-31":{"1. open":"31.0900","2. high":"38.6500","3. low":"29.7500","4. close":"33.8900","5. volume":"7570882"},"2019-04-30":{"1. open":"30.8000","2. high":"32.3100","3. low":"29.4500","4. close":"31.1300","5. volume":"4507171"},"2019-03-29":{"1. open":"33.6100","2. high":"35.1500","3. low":"28.3400","4. close":"30.5500","5. volume":"8370822"},"2019-02-28":{"1. open":"29.3900","2. high":"34.9900","3. low":"28.5100","4. close":"33.4900","5. volume":"4842171"},"2019-01-31":{"1. open":"27.4800","2. high":"31.0000","3. low":"26.5694","4. close":"29.4300","5. volume":"5917322"},"2018-12-31":{"1. open":"28.0000","2. high":"29.8200","3. low":"22.9400","4. close":"27.6900","5. volume":"9223339"},"2018-11-30":{"1. open":"22.2000","2. high":"34.9150","3. low":"22.2000","4. close":"27.3400","5. volume":"29103744"}}} \ No newline at end of file diff --git a/Backend/data/monthly_IBM.json b/Backend/data/monthly_IBM.json index a62b5d94..9e26dfee 100644 --- a/Backend/data/monthly_IBM.json +++ b/Backend/data/monthly_IBM.json @@ -1 +1 @@ -{"Meta Data":{"1. Information":"Monthly Prices (open, high, low, close) and Volumes","2. Symbol":"IBM","3. Last Refreshed":"2022-03-24","4. Time Zone":"US/Eastern"},"Monthly Time Series":{"2022-03-24":{"1. open":"122.6700","2. high":"129.7400","3. low":"120.7000","4. close":"129.2500","5. volume":"77758874"},"2022-02-28":{"1. open":"133.7600","2. high":"138.8200","3. low":"118.8100","4. close":"122.5100","5. volume":"98492968"},"2022-01-31":{"1. open":"134.0700","2. high":"142.2000","3. low":"124.1930","4. close":"133.5700","5. volume":"147238382"},"2021-12-31":{"1. open":"118.2500","2. high":"134.9900","3. low":"116.5600","4. close":"133.6600","5. volume":"113930079"},"2021-11-30":{"1. open":"125.0500","2. high":"127.2900","3. low":"114.5600","4. close":"117.1000","5. volume":"119252012"},"2021-10-29":{"1. open":"141.0000","2. high":"146.0000","3. low":"124.6200","4. close":"125.1000","5. volume":"144097758"},"2021-09-30":{"1. open":"139.9800","2. high":"140.5700","3. low":"132.7800","4. close":"138.9300","5. volume":"76644238"},"2021-08-31":{"1. open":"141.4500","2. high":"144.7000","3. low":"137.2100","4. close":"140.3400","5. volume":"69687056"},"2021-07-30":{"1. open":"146.9600","2. high":"147.5000","3. low":"136.2089","4. close":"140.9600","5. volume":"110625907"},"2021-06-30":{"1. open":"145.0000","2. high":"152.8400","3. low":"143.0400","4. close":"146.5900","5. volume":"84365220"},"2021-05-28":{"1. open":"143.8100","2. high":"148.5150","3. low":"140.9200","4. close":"143.7400","5. volume":"98036425"},"2021-04-30":{"1. open":"133.7600","2. high":"148.7400","3. low":"130.3800","4. close":"141.8800","5. volume":"122920494"},"2021-03-31":{"1. open":"120.3500","2. high":"137.0700","3. low":"118.7550","4. close":"133.2600","5. volume":"127967821"},"2021-02-26":{"1. open":"119.9000","2. high":"124.3500","3. low":"118.1200","4. close":"118.9300","5. volume":"106339228"},"2021-01-29":{"1. open":"125.8500","2. high":"132.2400","3. low":"117.3600","4. close":"119.1100","5. volume":"176168962"},"2020-12-31":{"1. open":"123.9000","2. high":"127.6900","3. low":"121.7200","4. close":"125.8800","5. volume":"102587006"},"2020-11-30":{"1. open":"112.6500","2. high":"125.3130","3. low":"111.1600","4. close":"123.5200","5. volume":"103461100"},"2020-10-30":{"1. open":"122.3600","2. high":"135.5000","3. low":"105.9200","4. close":"111.6600","5. volume":"159130911"},"2020-09-30":{"1. open":"122.8500","2. high":"129.9500","3. low":"116.4800","4. close":"121.6700","5. volume":"84510174"},"2020-08-31":{"1. open":"123.5000","2. high":"130.4700","3. low":"122.1500","4. close":"123.3100","5. volume":"74033007"},"2020-07-31":{"1. open":"120.2700","2. high":"132.1700","3. low":"115.2000","4. close":"122.9400","5. volume":"113972765"},"2020-06-30":{"1. open":"124.6400","2. high":"135.8800","3. low":"115.8800","4. close":"120.7700","5. volume":"120931250"},"2020-05-29":{"1. open":"123.1900","2. high":"126.9700","3. low":"111.8100","4. close":"124.9000","5. volume":"92864791"},"2020-04-30":{"1. open":"106.3600","2. high":"129.3100","3. low":"104.5200","4. close":"125.5600","5. volume":"130400316"},"2020-03-31":{"1. open":"130.7500","2. high":"136.1000","3. low":"90.5600","4. close":"110.9300","5. volume":"189585053"},"2020-02-28":{"1. open":"144.2500","2. high":"158.7500","3. low":"126.3600","4. close":"130.1500","5. volume":"118092333"},"2020-01-31":{"1. open":"135.0000","2. high":"145.7900","3. low":"133.2000","4. close":"143.7300","5. volume":"112864967"},"2019-12-31":{"1. open":"134.4500","2. high":"136.4200","3. low":"130.6900","4. close":"134.0400","5. volume":"71661951"},"2019-11-29":{"1. open":"134.5000","2. high":"139.1400","3. low":"132.7500","4. close":"134.4500","5. volume":"64898948"},"2019-10-31":{"1. open":"145.5900","2. high":"147.3500","3. low":"130.9000","4. close":"133.7300","5. volume":"92647927"},"2019-09-30":{"1. open":"134.8500","2. high":"146.5700","3. low":"133.3300","4. close":"145.4200","5. volume":"62083780"},"2019-08-30":{"1. open":"148.9000","2. high":"152.9500","3. low":"128.8300","4. close":"135.5300","5. volume":"96719129"},"2019-07-31":{"1. open":"139.6000","2. high":"151.9400","3. low":"139.1300","4. close":"148.2400","5. volume":"80175943"},"2019-06-28":{"1. open":"127.1000","2. high":"140.1500","3. low":"127.0600","4. close":"137.9000","5. volume":"61342985"},"2019-05-31":{"1. open":"140.5500","2. high":"141.8100","3. low":"126.8500","4. close":"126.9900","5. volume":"75537897"},"2019-04-30":{"1. open":"141.5100","2. high":"145.3900","3. low":"136.2600","4. close":"140.2700","5. volume":"80199229"},"2019-03-29":{"1. open":"139.3100","2. high":"142.1200","3. low":"133.5800","4. close":"141.1000","5. volume":"74688899"},"2019-02-28":{"1. open":"134.9700","2. high":"140.4900","3. low":"132.1200","4. close":"138.1300","5. volume":"68462024"},"2019-01-31":{"1. open":"112.0100","2. high":"135.4100","3. low":"111.6900","4. close":"134.4200","5. volume":"120388583"},"2018-12-31":{"1. open":"125.6700","2. high":"126.5900","3. low":"105.9400","4. close":"113.6700","5. volume":"115600988"},"2018-11-30":{"1. open":"115.5000","2. high":"125.0600","3. low":"114.5400","4. close":"124.2700","5. volume":"141719180"},"2018-10-31":{"1. open":"151.7100","2. high":"154.3600","3. low":"114.0900","4. close":"115.4300","5. volume":"198093801"},"2018-09-28":{"1. open":"145.9800","2. high":"153.3500","3. low":"144.8100","4. close":"151.2100","5. volume":"95868702"},"2018-08-31":{"1. open":"144.7600","2. high":"147.9300","3. low":"142.0000","4. close":"146.4800","5. volume":"79196876"},"2018-07-31":{"1. open":"138.2800","2. high":"150.5400","3. low":"138.2000","4. close":"144.9300","5. volume":"95015127"},"2018-06-29":{"1. open":"142.4300","2. high":"147.5200","3. low":"137.4500","4. close":"139.7000","5. volume":"90243111"},"2018-05-31":{"1. open":"144.6500","2. high":"146.2000","3. low":"139.9000","4. close":"141.3100","5. volume":"88812832"},"2018-04-30":{"1. open":"153.3400","2. high":"162.0000","3. low":"144.1100","4. close":"144.9600","5. volume":"122893135"},"2018-03-29":{"1. open":"155.5300","2. high":"162.1100","3. low":"148.5400","4. close":"153.4300","5. volume":"92113147"},"2018-02-28":{"1. open":"163.1900","2. high":"164.1300","3. low":"144.4000","4. close":"155.8300","5. volume":"100673819"},"2018-01-31":{"1. open":"154.5000","2. high":"171.1300","3. low":"153.5400","4. close":"163.7000","5. volume":"140197975"},"2017-12-29":{"1. open":"154.4000","2. high":"157.8500","3. low":"151.4900","4. close":"153.4200","5. volume":"87525752"},"2017-11-30":{"1. open":"154.1000","2. high":"154.9000","3. low":"146.2110","4. close":"153.9700","5. volume":"89208545"},"2017-10-31":{"1. open":"145.3500","2. high":"162.5100","3. low":"145.2100","4. close":"154.0600","5. volume":"121490046"},"2017-09-29":{"1. open":"142.9800","2. high":"147.4200","3. low":"141.6400","4. close":"145.0800","5. volume":"77056229"},"2017-08-31":{"1. open":"145.0000","2. high":"145.6700","3. low":"139.1300","4. close":"143.0300","5. volume":"79260314"},"2017-07-31":{"1. open":"153.5800","2. high":"156.0250","3. low":"143.6400","4. close":"144.6700","5. volume":"91242021"},"2017-06-30":{"1. open":"152.8000","2. high":"157.2000","3. low":"150.8000","4. close":"153.8300","5. volume":"82652760"},"2017-05-31":{"1. open":"160.0500","2. high":"160.4200","3. low":"149.7900","4. close":"152.6300","5. volume":"102455942"},"2017-04-28":{"1. open":"173.8200","2. high":"176.3300","3. low":"159.6000","4. close":"160.2900","5. volume":"80758989"},"2017-03-31":{"1. open":"180.4800","2. high":"182.5500","3. low":"172.0937","4. close":"174.1400","5. volume":"79476385"},"2017-02-28":{"1. open":"175.0000","2. high":"182.7900","3. low":"172.8900","4. close":"179.8200","5. volume":"59817600"},"2017-01-31":{"1. open":"167.0000","2. high":"179.2500","3. low":"165.3400","4. close":"174.5200","5. volume":"88671370"},"2016-12-30":{"1. open":"161.9500","2. high":"169.9520","3. low":"158.3000","4. close":"165.9900","5. volume":"69463793"},"2016-11-30":{"1. open":"153.5000","2. high":"164.6600","3. low":"151.0000","4. close":"162.2200","5. volume":"76340912"},"2016-10-31":{"1. open":"158.0600","2. high":"158.5300","3. low":"147.7900","4. close":"153.6900","5. volume":"78325840"},"2016-09-30":{"1. open":"158.3200","2. high":"165.0000","3. low":"153.2100","4. close":"158.8500","5. volume":"69951563"},"2016-08-31":{"1. open":"160.6500","2. high":"164.9500","3. low":"157.8500","4. close":"158.8800","5. volume":"69680582"},"2016-07-29":{"1. open":"152.1900","2. high":"163.6000","3. low":"149.9200","4. close":"160.6200","5. volume":"69930927"},"2016-06-30":{"1. open":"153.0000","2. high":"155.4800","3. low":"142.5000","4. close":"151.7800","5. volume":"77115961"},"2016-05-31":{"1. open":"146.5600","2. high":"153.8100","3. low":"142.9000","4. close":"153.7400","5. volume":"75248178"},"2016-04-29":{"1. open":"150.5100","2. high":"153.5200","3. low":"142.6100","4. close":"145.9400","5. volume":"94431134"},"2016-03-31":{"1. open":"132.2400","2. high":"153.1000","3. low":"132.0300","4. close":"151.4500","5. volume":"105698603"},"2016-02-29":{"1. open":"124.4000","2. high":"134.9200","3. low":"116.9010","4. close":"131.0300","5. volume":"106703104"},"2016-01-29":{"1. open":"135.6000","2. high":"136.8900","3. low":"118.0000","4. close":"124.7900","5. volume":"126204196"},"2015-12-31":{"1. open":"139.5800","2. high":"141.4000","3. low":"133.9100","4. close":"137.6200","5. volume":"97650594"},"2015-11-30":{"1. open":"140.5000","2. high":"142.8000","3. low":"131.6500","4. close":"139.4200","5. volume":"85421426"},"2015-10-30":{"1. open":"145.3100","2. high":"153.1470","3. low":"137.3300","4. close":"140.0800","5. volume":"120622363"},"2015-09-30":{"1. open":"144.8400","2. high":"149.6800","3. low":"141.1501","4. close":"144.9700","5. volume":"81761648"},"2015-08-31":{"1. open":"161.7000","2. high":"161.8500","3. low":"140.6200","4. close":"147.8900","5. volume":"93750967"},"2015-07-31":{"1. open":"163.9700","2. high":"173.7800","3. low":"158.5000","4. close":"161.9900","5. volume":"93805392"},"2015-06-30":{"1. open":"170.2100","2. high":"171.5601","3. low":"162.1200","4. close":"162.6600","5. volume":"80845501"},"2015-05-29":{"1. open":"173.2000","2. high":"176.3000","3. low":"168.8400","4. close":"169.6500","5. volume":"57916093"},"2015-04-30":{"1. open":"160.2300","2. high":"175.1303","3. low":"158.3900","4. close":"171.2900","5. volume":"93821213"},"2015-03-31":{"1. open":"161.6800","2. high":"165.3500","3. low":"153.4000","4. close":"160.5000","5. volume":"104899758"},"2015-02-27":{"1. open":"154.0000","2. high":"164.9900","3. low":"151.5100","4. close":"161.9400","5. volume":"77654705"},"2015-01-30":{"1. open":"161.3100","2. high":"163.3100","3. low":"149.5200","4. close":"153.3100","5. volume":"117395861"},"2014-12-31":{"1. open":"161.6400","2. high":"164.5200","3. low":"150.5000","4. close":"160.4400","5. volume":"101614529"},"2014-11-28":{"1. open":"164.2500","2. high":"164.9700","3. low":"159.8000","4. close":"162.1700","5. volume":"80018581"},"2014-10-31":{"1. open":"189.9100","2. high":"190.8900","3. low":"161.1000","4. close":"164.4000","5. volume":"146272610"},"2014-09-30":{"1. open":"192.6800","2. high":"195.0000","3. low":"188.1200","4. close":"189.8300","5. volume":"64033759"},"2014-08-29":{"1. open":"190.5000","2. high":"194.1330","3. low":"183.5800","4. close":"192.3000","5. volume":"53441600"},"2014-07-31":{"1. open":"181.7000","2. high":"196.4000","3. low":"181.7000","4. close":"191.6700","5. volume":"97597800"},"2014-06-30":{"1. open":"184.7600","2. high":"187.6500","3. low":"179.2700","4. close":"181.2700","5. volume":"78501700"},"2014-05-30":{"1. open":"196.3100","2. high":"196.7400","3. low":"182.3300","4. close":"184.3600","5. volume":"70018300"},"2014-04-30":{"1. open":"193.1200","2. high":"199.2100","3. low":"187.0100","4. close":"196.4700","5. volume":"118447100"},"2014-03-31":{"1. open":"183.3300","2. high":"195.6300","3. low":"182.2100","4. close":"192.4900","5. volume":"118984000"},"2014-02-28":{"1. open":"176.0200","2. high":"186.1200","3. low":"172.1900","4. close":"185.1700","5. volume":"87054800"},"2014-01-31":{"1. open":"187.2100","2. high":"190.8100","3. low":"175.3400","4. close":"176.6800","5. volume":"123489300"},"2013-12-31":{"1. open":"179.4600","2. high":"187.7900","3. low":"172.7300","4. close":"187.5700","5. volume":"97993100"},"2013-11-29":{"1. open":"179.8100","2. high":"186.2400","3. low":"177.3100","4. close":"179.6800","5. volume":"100984900"},"2013-10-31":{"1. open":"185.3400","2. high":"186.9900","3. low":"172.5700","4. close":"179.2100","5. volume":"130967100"},"2013-09-30":{"1. open":"183.6300","2. high":"194.8900","3. low":"182.3100","4. close":"185.1800","5. volume":"71488100"},"2013-08-30":{"1. open":"196.6500","2. high":"197.1700","3. low":"181.1000","4. close":"182.2700","5. volume":"73077400"},"2013-07-31":{"1. open":"192.1500","2. high":"200.9400","3. low":"190.2600","4. close":"195.0400","5. volume":"88079400"},"2013-06-28":{"1. open":"208.2500","2. high":"210.0500","3. low":"188.4100","4. close":"191.1100","5. volume":"80215000"},"2013-05-31":{"1. open":"201.8700","2. high":"211.9800","3. low":"199.2000","4. close":"208.0200","5. volume":"90683600"},"2013-04-30":{"1. open":"212.8000","2. high":"214.8900","3. low":"187.6800","4. close":"202.5400","5. volume":"108666600"},"2013-03-28":{"1. open":"200.6500","2. high":"215.9000","3. low":"199.3600","4. close":"213.3000","5. volume":"76023800"},"2013-02-28":{"1. open":"204.6500","2. high":"205.3500","3. low":"197.5100","4. close":"200.8300","5. volume":"64144100"},"2013-01-31":{"1. open":"194.0900","2. high":"208.5800","3. low":"190.3900","4. close":"203.0700","5. volume":"87636600"},"2012-12-31":{"1. open":"190.7600","2. high":"196.4500","3. low":"186.9400","4. close":"191.5500","5. volume":"79320200"},"2012-11-30":{"1. open":"194.9600","2. high":"198.0000","3. low":"184.7800","4. close":"190.0700","5. volume":"81892500"},"2012-10-31":{"1. open":"208.0100","2. high":"211.7900","3. low":"190.5600","4. close":"194.5300","5. volume":"96155000"},"2012-09-28":{"1. open":"196.6100","2. high":"208.3200","3. low":"193.2500","4. close":"207.4500","5. volume":"77341400"},"2012-08-31":{"1. open":"196.9600","2. high":"202.0000","3. low":"193.0200","4. close":"194.8500","5. volume":"60653700"},"2012-07-31":{"1. open":"196.3600","2. high":"197.8400","3. low":"181.8500","4. close":"195.9800","5. volume":"91516500"},"2012-06-29":{"1. open":"190.1200","2. high":"199.9900","3. low":"187.0000","4. close":"195.5800","5. volume":"84559100"},"2012-05-31":{"1. open":"207.1800","2. high":"208.9290","3. low":"192.0000","4. close":"192.9000","5. volume":"86005300"},"2012-04-30":{"1. open":"208.9600","2. high":"210.6900","3. low":"196.7910","4. close":"207.0800","5. volume":"86603000"},"2012-03-30":{"1. open":"197.2300","2. high":"209.1200","3. low":"196.8120","4. close":"208.6500","5. volume":"88096900"},"2012-02-29":{"1. open":"193.2100","2. high":"199.2300","3. low":"190.8310","4. close":"196.7300","5. volume":"78809900"},"2012-01-31":{"1. open":"186.7300","2. high":"193.1000","3. low":"177.3472","4. close":"192.6000","5. volume":"110015000"},"2011-12-30":{"1. open":"187.0100","2. high":"194.9000","3. low":"179.0400","4. close":"183.8800","5. volume":"103436500"},"2011-11-30":{"1. open":"181.5500","2. high":"189.9700","3. low":"177.0600","4. close":"188.0000","5. volume":"97014100"},"2011-10-31":{"1. open":"174.3600","2. high":"190.5300","3. low":"168.8800","4. close":"184.6300","5. volume":"144563700"},"2011-09-30":{"1. open":"172.7100","2. high":"180.9100","3. low":"158.7600","4. close":"174.8700","5. volume":"137895000"},"2011-08-31":{"1. open":"182.6000","2. high":"183.6900","3. low":"157.1300","4. close":"171.9100","5. volume":"195054100"},"2011-07-29":{"1. open":"171.6100","2. high":"185.6300","3. low":"171.4900","4. close":"181.8500","5. volume":"113593200"},"2011-06-30":{"1. open":"168.9000","2. high":"172.4468","3. low":"161.5200","4. close":"171.5500","5. volume":"105442400"},"2011-05-31":{"1. open":"172.1100","2. high":"173.5400","3. low":"165.9000","4. close":"168.9300","5. volume":"110804200"},"2011-04-29":{"1. open":"163.7000","2. high":"173.0000","3. low":"162.1900","4. close":"170.5800","5. volume":"100769500"},"2011-03-31":{"1. open":"163.1500","2. high":"167.7200","3. low":"151.7100","4. close":"163.0700","5. volume":"129714300"},"2011-02-28":{"1. open":"162.1100","2. high":"166.2500","3. low":"159.0300","4. close":"161.8800","5. volume":"89067500"},"2011-01-31":{"1. open":"147.2100","2. high":"164.3500","3. low":"146.6400","4. close":"162.0000","5. volume":"118831600"},"2010-12-31":{"1. open":"143.6100","2. high":"147.5000","3. low":"143.5100","4. close":"146.7600","5. volume":"93392800"},"2010-11-30":{"1. open":"143.6400","2. high":"147.5300","3. low":"141.1800","4. close":"141.4600","5. volume":"104096700"},"2010-10-29":{"1. open":"135.5100","2. high":"144.0000","3. low":"134.3900","4. close":"143.6000","5. volume":"137284700"},"2010-09-30":{"1. open":"125.3100","2. high":"136.1100","3. low":"124.5200","4. close":"134.1400","5. volume":"116092900"},"2010-08-31":{"1. open":"129.2500","2. high":"132.4900","3. low":"122.2800","4. close":"123.1300","5. volume":"117394000"},"2010-07-30":{"1. open":"123.5500","2. high":"131.6000","3. low":"120.6100","4. close":"128.4000","5. volume":"144080000"},"2010-06-30":{"1. open":"124.6900","2. high":"131.9400","3. low":"122.8200","4. close":"123.4800","5. volume":"162019100"},"2010-05-28":{"1. open":"129.3900","2. high":"133.1000","3. low":"116.0000","4. close":"125.2600","5. volume":"188444200"},"2010-04-30":{"1. open":"128.9500","2. high":"132.2800","3. low":"127.1200","4. close":"129.0000","5. volume":"146426400"},"2010-03-31":{"1. open":"127.5000","2. high":"130.7300","3. low":"125.2000","4. close":"128.2500","5. volume":"139997300"},"2010-02-26":{"1. open":"123.2300","2. high":"128.2700","3. low":"121.6100","4. close":"127.1600","5. volume":"113211200"},"2010-01-29":{"1. open":"131.1800","2. high":"134.2500","3. low":"121.9000","4. close":"122.3900","5. volume":"156110600"},"2009-12-31":{"1. open":"127.2900","2. high":"132.8500","3. low":"126.0000","4. close":"130.9000","5. volume":"124475900"},"2009-11-30":{"1. open":"120.6100","2. high":"128.9400","3. low":"119.5000","4. close":"126.3500","5. volume":"110748200"},"2009-10-30":{"1. open":"119.3900","2. high":"128.6100","3. low":"117.2600","4. close":"120.6100","5. volume":"183531100"},"2009-09-30":{"1. open":"117.6700","2. high":"122.8800","3. low":"115.1500","4. close":"119.6100","5. volume":"131522200"},"2009-08-31":{"1. open":"118.8800","2. high":"120.8800","3. low":"116.1200","4. close":"118.0500","5. volume":"112480200"},"2009-07-31":{"1. open":"105.0000","2. high":"119.3700","3. low":"99.5000","4. close":"117.9300","5. volume":"176171400"},"2009-06-30":{"1. open":"106.9400","2. high":"110.6400","3. low":"103.5100","4. close":"104.4200","5. volume":"160502100"},"2009-05-29":{"1. open":"103.7800","2. high":"106.8200","3. low":"99.8300","4. close":"106.2800","5. volume":"153084700"},"2009-04-30":{"1. open":"96.1300","2. high":"106.0500","3. low":"95.7000","4. close":"103.2100","5. volume":"213623100"},"2009-03-31":{"1. open":"91.1700","2. high":"99.8600","3. low":"83.0200","4. close":"96.8900","5. volume":"286114500"},"2009-02-27":{"1. open":"90.6000","2. high":"97.1000","3. low":"82.8500","4. close":"92.0300","5. volume":"223017600"},"2009-01-30":{"1. open":"83.8900","2. high":"94.9400","3. low":"81.7600","4. close":"91.6500","5. volume":"208959400"},"2008-12-31":{"1. open":"80.9500","2. high":"87.2700","3. low":"75.3100","4. close":"84.1600","5. volume":"188846100"},"2008-11-28":{"1. open":"92.6400","2. high":"94.7600","3. low":"69.5000","4. close":"81.6000","5. volume":"218313000"},"2008-10-31":{"1. open":"115.5100","2. high":"116.8000","3. low":"78.8200","4. close":"92.9700","5. volume":"314972000"},"2008-09-30":{"1. open":"122.8700","2. high":"124.0000","3. low":"109.9500","4. close":"116.9600","5. volume":"218411700"},"2008-08-29":{"1. open":"128.5200","2. high":"129.9700","3. low":"121.5000","4. close":"121.7300","5. volume":"137028800"},"2008-07-31":{"1. open":"117.5000","2. high":"130.9300","3. low":"116.6000","4. close":"127.9800","5. volume":"200876500"},"2008-06-30":{"1. open":"128.6700","2. high":"129.3700","3. low":"118.1500","4. close":"118.5300","5. volume":"152327500"},"2008-05-30":{"1. open":"121.0600","2. high":"129.9900","3. low":"120.7800","4. close":"129.4300","5. volume":"159517500"},"2008-04-30":{"1. open":"115.1400","2. high":"125.0000","3. low":"113.8600","4. close":"120.7000","5. volume":"192087200"},"2008-03-31":{"1. open":"114.0900","2. high":"119.7900","3. low":"111.8000","4. close":"115.1400","5. volume":"179284200"},"2008-02-29":{"1. open":"107.2100","2. high":"116.6300","3. low":"100.6000","4. close":"113.8600","5. volume":"168280800"},"2008-01-31":{"1. open":"108.9900","2. high":"108.9900","3. low":"97.0400","4. close":"107.1100","5. volume":"247523900"},"2007-12-31":{"1. open":"105.4500","2. high":"112.1900","3. low":"104.0000","4. close":"108.1000","5. volume":"134151600"},"2007-11-30":{"1. open":"115.5000","2. high":"116.0900","3. low":"99.2700","4. close":"105.1800","5. volume":"200920600"},"2007-10-31":{"1. open":"117.6100","2. high":"121.4600","3. low":"110.9600","4. close":"116.1200","5. volume":"171669000"},"2007-09-28":{"1. open":"116.3400","2. high":"118.8900","3. low":"114.3000","4. close":"117.8000","5. volume":"132233800"},"2007-08-31":{"1. open":"110.3900","2. high":"117.3500","3. low":"103.7000","4. close":"116.6900","5. volume":"202871500"},"2007-07-31":{"1. open":"105.3900","2. high":"118.8200","3. low":"104.5800","4. close":"110.6500","5. volume":"212757600"},"2007-06-29":{"1. open":"106.6200","2. high":"107.2400","3. low":"101.5600","4. close":"105.2500","5. volume":"169602000"},"2007-05-31":{"1. open":"102.0600","2. high":"108.0500","3. low":"101.3500","4. close":"106.6000","5. volume":"146441400"},"2007-04-30":{"1. open":"94.5100","2. high":"103.0000","3. low":"93.9110","4. close":"102.2100","5. volume":"166807200"},"2007-03-30":{"1. open":"90.2500","2. high":"95.8100","3. low":"88.7700","4. close":"94.2600","5. volume":"163194500"},"2007-02-28":{"1. open":"98.9700","2. high":"100.4400","3. low":"92.4700","4. close":"92.9400","5. volume":"125776200"},"2007-01-31":{"1. open":"97.1700","2. high":"100.9000","3. low":"94.5500","4. close":"99.1500","5. volume":"192702000"},"2006-12-29":{"1. open":"91.9000","2. high":"97.8800","3. low":"90.5500","4. close":"97.1500","5. volume":"104470200"},"2006-11-30":{"1. open":"92.5000","2. high":"94.0500","3. low":"90.4300","4. close":"91.9200","5. volume":"104430000"},"2006-10-31":{"1. open":"81.7600","2. high":"92.6800","3. low":"81.5600","4. close":"92.3300","5. volume":"170367300"},"2006-09-29":{"1. open":"81.1300","2. high":"83.7900","3. low":"79.3100","4. close":"81.9400","5. volume":"102776100"},"2006-08-31":{"1. open":"76.8600","2. high":"81.6800","3. low":"74.9000","4. close":"80.9700","5. volume":"100880300"},"2006-07-31":{"1. open":"77.5400","2. high":"78.5300","3. low":"72.7300","4. close":"77.4100","5. volume":"137188300"},"2006-06-30":{"1. open":"79.8900","2. high":"80.8700","3. low":"76.0600","4. close":"76.8200","5. volume":"139457800"},"2006-05-31":{"1. open":"82.5900","2. high":"83.6900","3. low":"79.0000","4. close":"79.9000","5. volume":"113146500"},"2006-04-28":{"1. open":"82.7200","2. high":"84.4500","3. low":"80.6300","4. close":"82.3400","5. volume":"114007000"},"2006-03-31":{"1. open":"80.0100","2. high":"84.9900","3. low":"79.5100","4. close":"82.4700","5. volume":"111514900"},"2006-02-28":{"1. open":"80.9000","2. high":"82.2400","3. low":"78.9300","4. close":"80.2400","5. volume":"111052200"},"2006-01-31":{"1. open":"82.4500","2. high":"85.0300","3. low":"80.2100","4. close":"81.3000","5. volume":"146491600"},"2005-12-30":{"1. open":"89.1500","2. high":"89.9200","3. low":"81.5600","4. close":"82.2000","5. volume":"120052400"},"2005-11-30":{"1. open":"81.8500","2. high":"89.9400","3. low":"80.6400","4. close":"88.9000","5. volume":"110664500"},"2005-10-31":{"1. open":"80.2200","2. high":"84.6000","3. low":"78.7000","4. close":"81.8800","5. volume":"139881800"},"2005-09-30":{"1. open":"80.1600","2. high":"82.1100","3. low":"76.9300","4. close":"80.2200","5. volume":"115681400"},"2005-08-31":{"1. open":"83.0000","2. high":"84.2000","3. low":"79.8700","4. close":"80.6200","5. volume":"105031100"},"2005-07-29":{"1. open":"74.3000","2. high":"85.1100","3. low":"74.1600","4. close":"83.4600","5. volume":"156801500"},"2005-06-30":{"1. open":"75.5700","2. high":"77.7300","3. low":"73.4500","4. close":"74.2000","5. volume":"135542800"},"2005-05-31":{"1. open":"76.8800","2. high":"78.1100","3. low":"72.5000","4. close":"75.5500","5. volume":"138416000"},"2005-04-29":{"1. open":"91.4900","2. high":"91.7600","3. low":"71.8500","4. close":"76.3800","5. volume":"216745500"},"2005-03-31":{"1. open":"92.6400","2. high":"93.7300","3. low":"89.0900","4. close":"91.3800","5. volume":"106145200"},"2005-02-28":{"1. open":"93.6700","2. high":"94.9700","3. low":"91.5500","4. close":"92.5800","5. volume":"79707700"},"2005-01-31":{"1. open":"98.9700","2. high":"99.1000","3. low":"91.4400","4. close":"93.4200","5. volume":"114459000"},"2004-12-31":{"1. open":"94.5000","2. high":"99.0000","3. low":"94.4700","4. close":"98.5800","5. volume":"108170400"},"2004-11-30":{"1. open":"89.3300","2. high":"96.6300","3. low":"89.2300","4. close":"94.2400","5. volume":"114982100"},"2004-10-29":{"1. open":"85.9500","2. high":"90.2700","3. low":"84.2900","4. close":"89.7500","5. volume":"118116100"},"2004-09-30":{"1. open":"84.0500","2. high":"87.2800","3. low":"83.2400","4. close":"85.7400","5. volume":"93906300"},"2004-08-31":{"1. open":"86.8700","2. high":"87.3900","3. low":"81.9000","4. close":"84.6900","5. volume":"91169700"},"2004-07-30":{"1. open":"88.2800","2. high":"88.4400","3. low":"83.4200","4. close":"87.0700","5. volume":"121001000"},"2004-06-30":{"1. open":"88.0900","2. high":"91.2100","3. low":"87.3000","4. close":"88.1500","5. volume":"91968600"},"2004-05-28":{"1. open":"88.1300","2. high":"89.7500","3. low":"85.1200","4. close":"88.5900","5. volume":"104707300"},"2004-04-30":{"1. open":"91.6700","2. high":"94.5500","3. low":"88.0100","4. close":"88.1700","5. volume":"110632000"},"2004-03-31":{"1. open":"96.5000","2. high":"97.6000","3. low":"90.2800","4. close":"91.8400","5. volume":"124483700"},"2004-02-27":{"1. open":"99.1500","2. high":"100.4300","3. low":"95.2000","4. close":"96.5000","5. volume":"97741900"},"2004-01-30":{"1. open":"92.8600","2. high":"99.8500","3. low":"89.0100","4. close":"99.2300","5. volume":"139368500"},"2003-12-31":{"1. open":"90.9000","2. high":"94.1200","3. low":"90.0300","4. close":"92.6800","5. volume":"116103600"},"2003-11-28":{"1. open":"89.9000","2. high":"91.4800","3. low":"87.7200","4. close":"90.5400","5. volume":"97966100"},"2003-10-31":{"1. open":"88.7500","2. high":"94.5400","3. low":"87.5300","4. close":"89.4800","5. volume":"156145400"},"2003-09-30":{"1. open":"82.4000","2. high":"93.4700","3. low":"82.3000","4. close":"88.3300","5. volume":"171943100"},"2003-08-29":{"1. open":"81.1500","2. high":"84.7200","3. low":"78.7300","4. close":"82.0100","5. volume":"113895200"},"2003-07-31":{"1. open":"81.4000","2. high":"87.0300","3. low":"80.5800","4. close":"81.2500","5. volume":"153915600"},"2003-06-30":{"1. open":"89.0000","2. high":"89.0800","3. low":"79.8100","4. close":"82.5000","5. volume":"184488300"},"2003-05-30":{"1. open":"85.3000","2. high":"90.4000","3. low":"84.4500","4. close":"88.0400","5. volume":"149548000"},"2003-04-30":{"1. open":"78.5000","2. high":"86.4900","3. low":"78.1200","4. close":"84.9000","5. volume":"177874300"},"2003-03-31":{"1. open":"78.9000","2. high":"84.9000","3. low":"73.1700","4. close":"78.4300","5. volume":"191937200"},"2003-02-28":{"1. open":"78.2000","2. high":"80.0500","3. low":"74.3100","4. close":"77.9500","5. volume":"145672700"},"2003-01-31":{"1. open":"78.8000","2. high":"88.9500","3. low":"77.0200","4. close":"78.2000","5. volume":"193933500"},"2002-12-31":{"1. open":"88.6000","2. high":"89.4600","3. low":"75.6000","4. close":"77.5000","5. volume":"151563500"},"2002-11-29":{"1. open":"78.9000","2. high":"88.1100","3. low":"76.7000","4. close":"86.9200","5. volume":"184438100"},"2002-10-31":{"1. open":"59.2000","2. high":"79.7900","3. low":"54.0100","4. close":"78.9400","5. volume":"285626300"},"2002-09-30":{"1. open":"74.2000","2. high":"77.5000","3. low":"57.9900","4. close":"58.3100","5. volume":"185664400"},"2002-08-30":{"1. open":"70.4000","2. high":"82.8500","3. low":"65.8500","4. close":"75.3800","5. volume":"166322300"},"2002-07-31":{"1. open":"72.0100","2. high":"74.2000","3. low":"65.7000","4. close":"70.4000","5. volume":"246256900"},"2002-06-28":{"1. open":"80.7500","2. high":"80.9500","3. low":"66.1000","4. close":"72.0000","5. volume":"190980700"},"2002-05-31":{"1. open":"83.8500","2. high":"86.4900","3. low":"75.9200","4. close":"80.4500","5. volume":"172738400"},"2002-04-30":{"1. open":"104.0000","2. high":"104.0000","3. low":"83.3400","4. close":"83.7600","5. volume":"246503300"},"2002-03-28":{"1. open":"98.6000","2. high":"108.8500","3. low":"98.5000","4. close":"104.0000","5. volume":"151268500"},"2002-02-28":{"1. open":"107.6400","2. high":"109.3000","3. low":"95.7600","4. close":"98.1200","5. volume":"172321000"},"2002-01-31":{"1. open":"120.6000","2. high":"126.3900","3. low":"101.0000","4. close":"107.8900","5. volume":"193562900"},"2001-12-31":{"1. open":"114.8000","2. high":"124.7000","3. low":"113.2100","4. close":"120.9600","5. volume":"133393800"},"2001-11-30":{"1. open":"107.2500","2. high":"117.0000","3. low":"106.9000","4. close":"115.5900","5. volume":"135136300"},"2001-10-31":{"1. open":"91.7200","2. high":"112.1000","3. low":"91.3400","4. close":"108.0700","5. volume":"224351500"},"2001-09-28":{"1. open":"100.1500","2. high":"103.1300","3. low":"87.4900","4. close":"91.7200","5. volume":"189312500"},"2001-08-31":{"1. open":"105.3500","2. high":"110.0900","3. low":"98.8600","4. close":"99.9500","5. volume":"143401500"},"2001-07-31":{"1. open":"113.5000","2. high":"115.4000","3. low":"101.5600","4. close":"105.2100","5. volume":"161016400"},"2001-06-29":{"1. open":"112.5000","2. high":"119.0000","3. low":"111.1000","4. close":"113.5000","5. volume":"142929700"},"2001-05-31":{"1. open":"115.8500","2. high":"119.9000","3. low":"110.9600","4. close":"111.8000","5. volume":"159356200"},"2001-04-30":{"1. open":"97.4500","2. high":"118.0500","3. low":"90.0500","4. close":"115.1400","5. volume":"226210900"},"2001-03-30":{"1. open":"99.3000","2. high":"108.4000","3. low":"87.6500","4. close":"96.1800","5. volume":"254550000"},"2001-02-28":{"1. open":"112.4000","2. high":"118.6400","3. low":"99.1000","4. close":"99.9000","5. volume":"156438900"},"2001-01-31":{"1. open":"84.5000","2. high":"116.7500","3. low":"83.7500","4. close":"112.0000","5. volume":"198962600"},"2000-12-29":{"1. open":"94.4400","2. high":"104.7500","3. low":"80.0600","4. close":"85.0000","5. volume":"167790700"},"2000-11-30":{"1. open":"98.4400","2. high":"104.3700","3. low":"91.6200","4. close":"93.5000","5. volume":"130411900"},"2000-10-31":{"1. open":"112.6200","2. high":"119.6200","3. low":"86.9400","4. close":"98.5000","5. volume":"223510000"},"2000-09-29":{"1. open":"133.0600","2. high":"134.9400","3. low":"110.2500","4. close":"112.6200","5. volume":"107468400"},"2000-08-31":{"1. open":"112.0000","2. high":"134.2500","3. low":"110.2500","4. close":"132.0200","5. volume":"121998000"},"2000-07-31":{"1. open":"108.7500","2. high":"117.8100","3. low":"100.0000","4. close":"112.2500","5. volume":"150130400"},"2000-06-30":{"1. open":"107.5600","2. high":"122.3100","3. low":"105.5000","4. close":"109.5600","5. volume":"136216300"},"2000-05-31":{"1. open":"112.5000","2. high":"113.6200","3. low":"102.0000","4. close":"107.3100","5. volume":"123803200"},"2000-04-28":{"1. open":"120.0000","2. high":"128.0000","3. low":"101.2500","4. close":"111.5000","5. volume":"168464800"},"2000-03-31":{"1. open":"102.0000","2. high":"128.2500","3. low":"99.5000","4. close":"118.3700","5. volume":"194329000"},"2000-02-29":{"1. open":"112.3700","2. high":"119.7500","3. low":"100.9400","4. close":"102.7500","5. volume":"133524400"},"2000-01-31":{"1. open":"112.4400","2. high":"124.7500","3. low":"109.6200","4. close":"112.2500","5. volume":"175259600"},"1999-12-31":{"1. open":"102.5600","2. high":"122.1200","3. low":"102.2500","4. close":"107.8700","5. volume":"158626300"}}} \ No newline at end of file +{} \ No newline at end of file diff --git a/Backend/data/symbols.txt b/Backend/data/symbols.txt index 00601024..854495a1 100644 --- a/Backend/data/symbols.txt +++ b/Backend/data/symbols.txt @@ -1,4 +1,5 @@ IBM ABC +ABR ABT -AXS \ No newline at end of file +ACA \ No newline at end of file diff --git a/Backend/data/weekly_ABC.json b/Backend/data/weekly_ABC.json index 94c4c6dd..95ee174a 100644 --- a/Backend/data/weekly_ABC.json +++ b/Backend/data/weekly_ABC.json @@ -1 +1 @@ -{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file +{"Meta Data":{"1. Information":"Weekly Prices (open, high, low, close) and Volumes","2. Symbol":"ABC","3. Last Refreshed":"2022-03-28","4. Time Zone":"US/Eastern"},"Weekly Time Series":{"2022-03-28":{"1. open":"154.0500","2. high":"154.8000","3. low":"152.5100","4. close":"154.7300","5. volume":"676494"},"2022-03-25":{"1. open":"152.6000","2. high":"155.7600","3. low":"150.5400","4. close":"154.6900","5. volume":"4600357"},"2022-03-18":{"1. open":"145.9900","2. high":"153.0548","3. low":"143.1900","4. close":"152.0000","5. volume":"7204894"},"2022-03-11":{"1. open":"146.8900","2. high":"148.4200","3. low":"143.1300","4. close":"144.5600","5. volume":"6505122"},"2022-03-04":{"1. open":"139.3100","2. high":"147.5100","3. low":"138.3900","4. close":"147.3000","5. volume":"4982550"},"2022-02-25":{"1. open":"141.6400","2. high":"142.3500","3. low":"134.7000","4. close":"141.9200","5. volume":"4961233"},"2022-02-18":{"1. open":"140.0000","2. high":"144.2200","3. low":"137.7000","4. close":"141.5000","5. volume":"6229832"},"2022-02-11":{"1. open":"137.0200","2. high":"143.6100","3. low":"135.3900","4. close":"140.2400","5. volume":"8016147"},"2022-02-04":{"1. open":"135.8500","2. high":"139.3150","3. low":"132.0000","4. close":"136.6100","5. volume":"7278957"},"2022-01-28":{"1. open":"130.0800","2. high":"136.8800","3. low":"127.9400","4. close":"136.8000","5. volume":"4992642"},"2022-01-21":{"1. open":"135.9300","2. high":"135.9500","3. low":"131.0000","4. close":"131.5200","5. volume":"2861650"},"2022-01-14":{"1. open":"131.3000","2. high":"136.9450","3. low":"130.0500","4. close":"136.2000","5. volume":"5503148"},"2022-01-07":{"1. open":"132.5800","2. high":"135.1000","3. low":"128.9000","4. close":"133.1200","5. volume":"4777919"},"2021-12-31":{"1. open":"129.9200","2. high":"135.2600","3. low":"129.6001","4. close":"132.8900","5. volume":"3008701"},"2021-12-23":{"1. open":"124.7100","2. high":"129.9200","3. low":"123.2050","4. close":"129.5300","5. volume":"3411731"},"2021-12-17":{"1. open":"123.1300","2. high":"126.3599","3. low":"121.0000","4. close":"125.1800","5. volume":"4593012"},"2021-12-10":{"1. open":"118.4500","2. high":"123.4994","3. low":"117.7700","4. close":"123.1300","5. volume":"5085370"},"2021-12-03":{"1. open":"120.7500","2. high":"121.6300","3. low":"113.6800","4. close":"116.7600","5. volume":"7896179"},"2021-11-26":{"1. open":"120.3400","2. high":"124.9600","3. low":"119.7900","4. close":"120.2300","5. volume":"3512435"},"2021-11-19":{"1. open":"125.3400","2. high":"126.1500","3. low":"120.3900","4. close":"120.5200","5. volume":"4937800"},"2021-11-12":{"1. open":"127.3800","2. high":"128.0000","3. low":"123.8700","4. close":"125.3400","5. volume":"3779831"},"2021-11-05":{"1. open":"122.4200","2. high":"129.5450","3. low":"122.2000","4. close":"127.5700","5. volume":"4771576"},"2021-10-29":{"1. open":"123.3500","2. high":"123.9600","3. low":"119.5400","4. close":"122.0200","5. volume":"2513088"},"2021-10-22":{"1. open":"119.1000","2. high":"123.6700","3. low":"117.8000","4. close":"123.3200","5. volume":"2529812"},"2021-10-15":{"1. open":"119.7200","2. high":"123.7500","3. low":"115.9600","4. close":"119.8600","5. volume":"5184813"},"2021-10-08":{"1. open":"120.0000","2. high":"121.4800","3. low":"114.7400","4. close":"119.3700","5. volume":"3921071"},"2021-10-01":{"1. open":"122.1200","2. high":"123.8400","3. low":"118.5900","4. close":"119.8100","5. volume":"4225036"},"2021-09-24":{"1. open":"122.7400","2. high":"123.6500","3. low":"120.5100","4. close":"122.3000","5. volume":"3719953"},"2021-09-17":{"1. open":"123.3100","2. high":"126.9700","3. low":"121.9000","4. close":"123.4700","5. volume":"4175406"},"2021-09-10":{"1. open":"125.1400","2. high":"125.4450","3. low":"121.8900","4. close":"122.8100","5. volume":"2110452"},"2021-09-03":{"1. open":"119.5700","2. high":"125.5600","3. low":"119.3000","4. close":"125.1400","5. volume":"3100742"},"2021-08-27":{"1. open":"120.1600","2. high":"120.2900","3. low":"115.8100","4. close":"119.8900","5. volume":"3899527"},"2021-08-20":{"1. open":"119.7000","2. high":"121.1800","3. low":"117.7557","4. close":"119.5400","5. volume":"3074608"},"2021-08-13":{"1. open":"120.6400","2. high":"121.8850","3. low":"117.3200","4. close":"119.5700","5. volume":"4215881"},"2021-08-06":{"1. open":"122.2800","2. high":"128.8700","3. low":"119.5000","4. close":"120.6400","5. volume":"6505665"},"2021-07-30":{"1. open":"121.4800","2. high":"123.2400","3. low":"119.7250","4. close":"122.1700","5. volume":"3101653"},"2021-07-23":{"1. open":"112.0900","2. high":"122.5600","3. low":"111.3400","4. close":"121.3100","5. volume":"6484305"},"2021-07-16":{"1. open":"114.7000","2. high":"116.2500","3. low":"112.6000","4. close":"112.8800","5. volume":"3260685"},"2021-07-09":{"1. open":"116.0400","2. high":"116.1300","3. low":"112.6600","4. close":"115.1300","5. volume":"2986707"},"2021-07-02":{"1. open":"116.2700","2. high":"117.0300","3. low":"113.6200","4. close":"116.6200","5. volume":"4547568"},"2021-06-25":{"1. open":"114.7000","2. high":"117.3400","3. low":"114.3800","4. close":"116.3400","5. volume":"5893420"},"2021-06-18":{"1. open":"119.8300","2. high":"119.8300","3. low":"114.3100","4. close":"114.4200","5. volume":"3409376"},"2021-06-11":{"1. open":"117.3900","2. high":"121.3200","3. low":"116.5000","4. close":"119.8400","5. volume":"3540153"},"2021-06-04":{"1. open":"114.5400","2. high":"117.2500","3. low":"113.4700","4. close":"116.9200","5. volume":"3530011"},"2021-05-28":{"1. open":"120.4800","2. high":"120.8100","3. low":"112.6800","4. close":"114.7400","5. volume":"6555551"},"2021-05-21":{"1. open":"116.3100","2. high":"122.3100","3. low":"113.8700","4. close":"120.0700","5. volume":"5650328"},"2021-05-14":{"1. open":"120.5200","2. high":"124.8500","3. low":"116.4100","4. close":"116.5200","5. volume":"6599040"},"2021-05-07":{"1. open":"121.5200","2. high":"125.8600","3. low":"114.0654","4. close":"120.8600","5. volume":"9519571"},"2021-04-30":{"1. open":"121.7800","2. high":"122.0943","3. low":"117.7800","4. close":"120.8000","5. volume":"4471216"},"2021-04-23":{"1. open":"120.0000","2. high":"121.8200","3. low":"118.9200","4. close":"121.6500","5. volume":"3594397"},"2021-04-16":{"1. open":"116.5600","2. high":"119.9100","3. low":"116.2600","4. close":"119.6900","5. volume":"5709618"},"2021-04-09":{"1. open":"117.2600","2. high":"118.0900","3. low":"114.8000","4. close":"116.8100","5. volume":"3858855"},"2021-04-01":{"1. open":"118.1500","2. high":"120.5400","3. low":"114.7200","4. close":"116.8900","5. volume":"3959972"},"2021-03-26":{"1. open":"115.8700","2. high":"118.8500","3. low":"113.1800","4. close":"118.7300","5. volume":"4207096"},"2021-03-19":{"1. open":"113.1400","2. high":"117.1200","3. low":"111.8201","4. close":"115.9200","5. volume":"5734866"},"2021-03-12":{"1. open":"105.5900","2. high":"113.5650","3. low":"105.5650","4. close":"112.9200","5. volume":"7011730"},"2021-03-05":{"1. open":"101.9200","2. high":"105.4500","3. low":"101.8400","4. close":"104.8300","5. volume":"4660297"},"2021-02-26":{"1. open":"105.2800","2. high":"108.0000","3. low":"100.7100","4. close":"101.2200","5. volume":"4984324"},"2021-02-19":{"1. open":"105.6200","2. high":"106.3200","3. low":"102.6800","4. close":"105.8700","5. volume":"3273449"},"2021-02-12":{"1. open":"109.7000","2. high":"110.4200","3. low":"103.6100","4. close":"105.1800","5. volume":"5319548"},"2021-02-05":{"1. open":"104.8600","2. high":"112.8800","3. low":"103.4000","4. close":"109.6900","5. volume":"7788257"},"2021-01-29":{"1. open":"107.0900","2. high":"109.7600","3. low":"103.8000","4. close":"104.2000","5. volume":"4696294"},"2021-01-22":{"1. open":"107.4900","2. high":"108.7200","3. low":"102.7250","4. close":"107.7600","5. volume":"5479943"},"2021-01-15":{"1. open":"109.1700","2. high":"110.4900","3. low":"104.5300","4. close":"106.8000","5. volume":"8140014"},"2021-01-08":{"1. open":"97.8500","2. high":"112.4800","3. low":"94.8900","4. close":"110.0300","5. volume":"10267709"},"2020-12-31":{"1. open":"97.7100","2. high":"98.2600","3. low":"96.0800","4. close":"97.7600","5. volume":"2753949"},"2020-12-24":{"1. open":"97.3200","2. high":"98.3800","3. low":"95.7650","4. close":"96.9700","5. volume":"3118564"},"2020-12-18":{"1. open":"99.0700","2. high":"99.8500","3. low":"97.0900","4. close":"98.6100","5. volume":"5465174"},"2020-12-11":{"1. open":"103.0000","2. high":"103.3000","3. low":"97.5800","4. close":"98.0600","5. volume":"4813381"},"2020-12-04":{"1. open":"103.7200","2. high":"104.5150","3. low":"100.4100","4. close":"102.9800","5. volume":"4485937"},"2020-11-27":{"1. open":"101.2800","2. high":"103.9400","3. low":"100.0800","4. close":"103.2000","5. volume":"3601062"},"2020-11-20":{"1. open":"109.0800","2. high":"110.5600","3. low":"99.7400","4. close":"100.4600","5. volume":"6659107"},"2020-11-13":{"1. open":"108.4200","2. high":"111.2500","3. low":"104.1000","4. close":"108.1200","5. volume":"4561964"},"2020-11-06":{"1. open":"97.3600","2. high":"109.6200","3. low":"95.7100","4. close":"103.9500","5. volume":"6728171"},"2020-10-30":{"1. open":"98.5700","2. high":"99.7700","3. low":"92.2350","4. close":"96.0700","5. volume":"5950797"},"2020-10-23":{"1. open":"99.5300","2. high":"100.7150","3. low":"97.1800","4. close":"99.3800","5. volume":"3240276"},"2020-10-16":{"1. open":"97.3800","2. high":"100.6100","3. low":"95.5900","4. close":"99.5200","5. volume":"4728075"},"2020-10-09":{"1. open":"95.7700","2. high":"98.9900","3. low":"94.8000","4. close":"96.8600","5. volume":"4068076"},"2020-10-02":{"1. open":"97.7500","2. high":"98.7600","3. low":"93.9600","4. close":"95.3800","5. volume":"3789843"},"2020-09-25":{"1. open":"95.7300","2. high":"97.0700","3. low":"92.0000","4. close":"96.8000","5. volume":"3841252"},"2020-09-18":{"1. open":"94.5000","2. high":"97.9600","3. low":"92.6406","4. close":"96.8300","5. volume":"5392465"},"2020-09-11":{"1. open":"96.5100","2. high":"96.8500","3. low":"92.8400","4. close":"94.0800","5. volume":"3611778"},"2020-09-04":{"1. open":"96.9700","2. high":"100.0900","3. low":"93.1650","4. close":"96.6000","5. volume":"5738005"},"2020-08-28":{"1. open":"99.3100","2. high":"99.3100","3. low":"96.2650","4. close":"97.5500","5. volume":"3793669"},"2020-08-21":{"1. open":"104.2100","2. high":"104.4000","3. low":"97.1700","4. close":"98.1500","5. volume":"3845956"},"2020-08-14":{"1. open":"102.2600","2. high":"104.2500","3. low":"101.0600","4. close":"103.7500","5. volume":"3403065"},"2020-08-07":{"1. open":"100.8100","2. high":"106.4500","3. low":"100.5300","4. close":"102.1000","5. volume":"5345079"},"2020-07-31":{"1. open":"103.3800","2. high":"104.5400","3. low":"98.6900","4. close":"100.1900","5. volume":"3347471"},"2020-07-24":{"1. open":"104.4000","2. high":"104.9300","3. low":"101.6800","4. close":"103.7600","5. volume":"3884472"},"2020-07-17":{"1. open":"97.2800","2. high":"105.0800","3. low":"96.8500","4. close":"104.4500","5. volume":"6794251"},"2020-07-10":{"1. open":"100.9100","2. high":"101.4600","3. low":"94.7600","4. close":"97.0500","5. volume":"4507024"},"2020-07-02":{"1. open":"99.6100","2. high":"101.6200","3. low":"98.4300","4. close":"100.0900","5. volume":"3875137"},"2020-06-26":{"1. open":"101.7900","2. high":"102.8000","3. low":"98.0000","4. close":"99.1800","5. volume":"8549314"},"2020-06-19":{"1. open":"93.4400","2. high":"103.3700","3. low":"92.9000","4. close":"102.1500","5. volume":"6070601"},"2020-06-12":{"1. open":"97.9900","2. high":"102.9900","3. low":"92.5700","4. close":"94.8700","5. volume":"6066561"},"2020-06-05":{"1. open":"94.8400","2. high":"102.2100","3. low":"94.3100","4. close":"98.9700","5. volume":"7206034"},"2020-05-29":{"1. open":"95.0000","2. high":"96.4900","3. low":"90.5900","4. close":"95.3400","5. volume":"5085633"},"2020-05-22":{"1. open":"88.0300","2. high":"95.1300","3. low":"87.8500","4. close":"93.1400","5. volume":"6507201"},"2020-05-15":{"1. open":"89.0700","2. high":"91.9900","3. low":"81.5100","4. close":"85.7500","5. volume":"7109134"},"2020-05-08":{"1. open":"85.9700","2. high":"92.4000","3. low":"85.2000","4. close":"88.0900","5. volume":"6997278"},"2020-05-01":{"1. open":"89.5900","2. high":"92.0800","3. low":"85.1100","4. close":"86.3800","5. volume":"8054720"},"2020-04-24":{"1. open":"87.9900","2. high":"90.1100","3. low":"84.4300","4. close":"88.7000","5. volume":"5563039"},"2020-04-17":{"1. open":"87.5600","2. high":"89.9000","3. low":"84.2200","4. close":"89.1900","5. volume":"7415058"},"2020-04-09":{"1. open":"85.3200","2. high":"89.4300","3. low":"83.0700","4. close":"87.8100","5. volume":"5904054"},"2020-04-03":{"1. open":"83.5300","2. high":"90.7300","3. low":"80.0000","4. close":"81.3400","5. volume":"9268895"},"2020-03-27":{"1. open":"80.2900","2. high":"85.1800","3. low":"72.0600","4. close":"81.7800","5. volume":"11335092"},"2020-03-20":{"1. open":"76.0000","2. high":"90.7600","3. low":"76.0000","4. close":"80.6100","5. volume":"15186603"},"2020-03-13":{"1. open":"79.6900","2. high":"90.1700","3. low":"77.5600","4. close":"90.0000","5. volume":"18215651"},"2020-03-06":{"1. open":"84.5300","2. high":"90.4300","3. low":"83.3900","4. close":"85.8100","5. volume":"11255518"},"2020-02-28":{"1. open":"94.7200","2. high":"96.0400","3. low":"81.4700","4. close":"84.3200","5. volume":"12081681"},"2020-02-21":{"1. open":"94.2900","2. high":"97.3900","3. low":"93.1400","4. close":"97.0000","5. volume":"5503678"},"2020-02-14":{"1. open":"91.7000","2. high":"97.5000","3. low":"90.2300","4. close":"94.3600","5. volume":"6600629"},"2020-02-07":{"1. open":"85.9400","2. high":"94.7200","3. low":"85.2400","4. close":"91.9400","5. volume":"6834718"},"2020-01-31":{"1. open":"87.9400","2. high":"92.3600","3. low":"85.2700","4. close":"85.5600","5. volume":"7814777"},"2020-01-24":{"1. open":"90.8200","2. high":"92.4200","3. low":"86.0800","4. close":"88.9200","5. volume":"6616904"},"2020-01-17":{"1. open":"86.9700","2. high":"91.9000","3. low":"85.5000","4. close":"91.0600","5. volume":"7043376"},"2020-01-10":{"1. open":"83.6800","2. high":"87.3900","3. low":"83.0100","4. close":"87.0400","5. volume":"4555324"},"2020-01-03":{"1. open":"84.9500","2. high":"85.8000","3. low":"83.2200","4. close":"84.0100","5. volume":"3213555"},"2019-12-27":{"1. open":"86.0200","2. high":"86.3000","3. low":"84.8300","4. close":"84.9100","5. volume":"2024390"},"2019-12-20":{"1. open":"85.4300","2. high":"86.6600","3. low":"82.5700","4. close":"85.6700","5. volume":"7556586"},"2019-12-13":{"1. open":"88.2400","2. high":"88.2400","3. low":"84.7600","4. close":"84.8500","5. volume":"5255322"},"2019-12-06":{"1. open":"87.8700","2. high":"89.2100","3. low":"86.5400","4. close":"88.2400","5. volume":"4496485"},"2019-11-29":{"1. open":"90.5200","2. high":"90.8100","3. low":"86.7900","4. close":"87.9100","5. volume":"3768496"},"2019-11-22":{"1. open":"87.0400","2. high":"90.5200","3. low":"86.8800","4. close":"90.2600","5. volume":"4736146"},"2019-11-15":{"1. open":"84.8400","2. high":"87.7400","3. low":"82.1000","4. close":"87.3000","5. volume":"6129409"},"2019-11-08":{"1. open":"87.2000","2. high":"88.7800","3. low":"83.0600","4. close":"86.0700","5. volume":"7323393"},"2019-11-01":{"1. open":"87.2000","2. high":"88.8800","3. low":"84.5200","4. close":"86.8700","5. volume":"4969431"},"2019-10-25":{"1. open":"88.2000","2. high":"89.0000","3. low":"84.3700","4. close":"86.8000","5. volume":"5149335"},"2019-10-18":{"1. open":"81.7900","2. high":"90.0000","3. low":"81.3800","4. close":"89.6400","5. volume":"8834176"},"2019-10-11":{"1. open":"81.3900","2. high":"83.1500","3. low":"79.8400","4. close":"81.9600","5. volume":"4923152"},"2019-10-04":{"1. open":"81.0000","2. high":"84.2100","3. low":"79.7500","4. close":"81.8500","5. volume":"5353099"},"2019-09-27":{"1. open":"84.8700","2. high":"85.2600","3. low":"80.4300","4. close":"80.9400","5. volume":"5202788"},"2019-09-20":{"1. open":"82.6800","2. high":"86.4600","3. low":"81.9100","4. close":"85.1200","5. volume":"7088263"},"2019-09-13":{"1. open":"86.3100","2. high":"88.4600","3. low":"82.9500","4. close":"83.4200","5. volume":"6530882"},"2019-09-06":{"1. open":"81.8700","2. high":"87.1700","3. low":"81.5600","4. close":"86.3200","5. volume":"4366647"},"2019-08-30":{"1. open":"84.4100","2. high":"86.5900","3. low":"80.4100","4. close":"82.2700","5. volume":"7242542"},"2019-08-23":{"1. open":"88.2100","2. high":"88.9700","3. low":"83.1000","4. close":"83.5400","5. volume":"5141079"},"2019-08-16":{"1. open":"87.3700","2. high":"89.9600","3. low":"85.3400","4. close":"87.3400","5. volume":"5742048"},"2019-08-09":{"1. open":"89.5800","2. high":"90.9900","3. low":"81.8000","4. close":"87.4500","5. volume":"10220943"},"2019-08-02":{"1. open":"86.1100","2. high":"94.7500","3. low":"85.4800","4. close":"90.4400","5. volume":"8203498"},"2019-07-26":{"1. open":"85.8500","2. high":"87.6200","3. low":"84.7700","4. close":"86.1200","5. volume":"3729458"},"2019-07-19":{"1. open":"90.0100","2. high":"90.4000","3. low":"84.5500","4. close":"85.5200","5. volume":"6070393"},"2019-07-12":{"1. open":"87.6200","2. high":"94.2000","3. low":"86.5400","4. close":"89.8500","5. volume":"7318935"},"2019-07-05":{"1. open":"85.7800","2. high":"88.8600","3. low":"84.5200","4. close":"87.9700","5. volume":"4014323"},"2019-06-28":{"1. open":"84.6000","2. high":"86.5300","3. low":"82.8900","4. close":"85.2600","5. volume":"7512871"},"2019-06-21":{"1. open":"85.4600","2. high":"87.1000","3. low":"84.2500","4. close":"84.4600","5. volume":"7635043"},"2019-06-14":{"1. open":"83.6300","2. high":"86.9900","3. low":"83.5800","4. close":"85.0500","5. volume":"5834441"},"2019-06-07":{"1. open":"78.1200","2. high":"83.6700","3. low":"78.1200","4. close":"83.4800","5. volume":"7039570"},"2019-05-31":{"1. open":"80.5700","2. high":"81.6900","3. low":"77.0700","4. close":"77.8600","5. volume":"5592096"},"2019-05-24":{"1. open":"77.0800","2. high":"82.0800","3. low":"77.0500","4. close":"80.6800","5. volume":"7185409"},"2019-05-17":{"1. open":"76.0400","2. high":"78.9300","3. low":"74.6700","4. close":"77.7300","5. volume":"6607117"},"2019-05-10":{"1. open":"78.1300","2. high":"79.7900","3. low":"75.6200","4. close":"77.4700","5. volume":"7869136"},"2019-05-03":{"1. open":"74.0300","2. high":"79.5900","3. low":"73.0400","4. close":"79.1400","5. volume":"8961992"},"2019-04-26":{"1. open":"72.4300","2. high":"74.8500","3. low":"70.5500","4. close":"74.0500","5. volume":"6208553"},"2019-04-18":{"1. open":"75.0600","2. high":"76.9000","3. low":"71.2800","4. close":"72.4500","5. volume":"5437625"},"2019-04-12":{"1. open":"77.1000","2. high":"78.3900","3. low":"72.1500","4. close":"74.7400","5. volume":"8904476"},"2019-04-05":{"1. open":"80.0400","2. high":"80.2500","3. low":"74.1300","4. close":"77.2700","5. volume":"8573059"},"2019-03-29":{"1. open":"78.7700","2. high":"79.6400","3. low":"75.6500","4. close":"79.5200","5. volume":"7038067"},"2019-03-22":{"1. open":"80.4900","2. high":"81.7000","3. low":"78.6700","4. close":"78.7700","5. volume":"4702812"},"2019-03-15":{"1. open":"76.5200","2. high":"80.5900","3. low":"76.0800","4. close":"80.1800","5. volume":"7071568"},"2019-03-08":{"1. open":"83.0100","2. high":"83.4400","3. low":"75.5300","4. close":"76.4100","5. volume":"10957765"},"2019-03-01":{"1. open":"86.3000","2. high":"86.5700","3. low":"82.2000","4. close":"82.9800","5. volume":"6202591"},"2019-02-22":{"1. open":"86.4000","2. high":"87.3200","3. low":"84.5300","4. close":"85.6700","5. volume":"3824508"},"2019-02-15":{"1. open":"84.2500","2. high":"87.3500","3. low":"83.2900","4. close":"86.6600","5. volume":"4738296"},"2019-02-08":{"1. open":"83.7500","2. high":"87.5300","3. low":"83.2700","4. close":"84.3100","5. volume":"7589809"},"2019-02-01":{"1. open":"79.4700","2. high":"85.8600","3. low":"78.3300","4. close":"83.7600","5. volume":"12538739"},"2019-01-25":{"1. open":"79.2500","2. high":"80.5300","3. low":"77.6700","4. close":"79.6600","5. volume":"4038568"},"2019-01-18":{"1. open":"76.0300","2. high":"79.9500","3. low":"76.0000","4. close":"79.8600","5. volume":"7737735"},"2019-01-11":{"1. open":"74.4300","2. high":"76.9000","3. low":"73.8200","4. close":"76.5600","5. volume":"7050840"},"2019-01-04":{"1. open":"74.0900","2. high":"75.0800","3. low":"72.5500","4. close":"74.2200","5. volume":"6095179"},"2018-12-28":{"1. open":"71.9700","2. high":"75.0800","3. low":"69.3600","4. close":"73.9600","5. volume":"4329216"},"2018-12-21":{"1. open":"78.1200","2. high":"78.6700","3. low":"71.5500","4. close":"71.9800","5. volume":"9143283"},"2018-12-14":{"1. open":"84.4200","2. high":"84.9800","3. low":"78.7700","4. close":"78.9700","5. volume":"6376336"},"2018-12-07":{"1. open":"88.9800","2. high":"90.2600","3. low":"83.3300","4. close":"84.3200","5. volume":"5890357"},"2018-11-30":{"1. open":"88.6300","2. high":"91.2700","3. low":"87.6700","4. close":"88.9000","5. volume":"6014211"},"2018-11-23":{"1. open":"89.1000","2. high":"91.5300","3. low":"86.4600","4. close":"87.6600","5. volume":"5746301"},"2018-11-16":{"1. open":"88.3500","2. high":"92.5900","3. low":"86.0800","4. close":"88.7500","5. volume":"6192532"},"2018-11-09":{"1. open":"89.1700","2. high":"90.3100","3. low":"80.2800","4. close":"88.8600","5. volume":"11388065"},"2018-11-02":{"1. open":"85.9100","2. high":"91.9800","3. low":"84.8800","4. close":"88.5700","5. volume":"4752268"},"2018-10-26":{"1. open":"92.9600","2. high":"93.5000","3. low":"83.0700","4. close":"84.7200","5. volume":"8675882"},"2018-10-19":{"1. open":"88.0700","2. high":"94.8500","3. low":"88.0700","4. close":"92.8000","5. volume":"6428874"},"2018-10-12":{"1. open":"90.6000","2. high":"92.8300","3. low":"86.7600","4. close":"88.4800","5. volume":"6840939"},"2018-10-05":{"1. open":"92.7500","2. high":"93.9400","3. low":"89.9100","4. close":"90.5800","5. volume":"6314526"},"2018-09-28":{"1. open":"89.6300","2. high":"92.5100","3. low":"88.4400","4. close":"92.2200","5. volume":"5320927"},"2018-09-21":{"1. open":"86.0200","2. high":"91.7000","3. low":"85.3600","4. close":"90.1300","5. volume":"6349295"},"2018-09-14":{"1. open":"88.7100","2. high":"89.4800","3. low":"83.3900","4. close":"85.8400","5. volume":"7085438"},"2018-09-07":{"1. open":"89.5300","2. high":"89.9200","3. low":"87.6000","4. close":"88.6400","5. volume":"4400619"},"2018-08-31":{"1. open":"88.6300","2. high":"90.3900","3. low":"87.7800","4. close":"89.9700","5. volume":"4490172"},"2018-08-24":{"1. open":"87.7100","2. high":"88.9800","3. low":"87.0300","4. close":"88.3300","5. volume":"3650588"},"2018-08-17":{"1. open":"82.0000","2. high":"88.4700","3. low":"81.9000","4. close":"87.7200","5. volume":"6915545"},"2018-08-10":{"1. open":"80.2500","2. high":"84.8100","3. low":"80.0700","4. close":"81.9800","5. volume":"7567182"},"2018-08-03":{"1. open":"83.1100","2. high":"84.4900","3. low":"77.2800","4. close":"80.9700","5. volume":"11176186"},"2018-07-27":{"1. open":"84.7200","2. high":"85.7200","3. low":"82.1400","4. close":"82.9200","5. volume":"5773087"},"2018-07-20":{"1. open":"88.2400","2. high":"88.2400","3. low":"83.3100","4. close":"84.7000","5. volume":"6262708"},"2018-07-13":{"1. open":"88.3000","2. high":"89.5500","3. low":"85.6200","4. close":"87.9100","5. volume":"6170779"},"2018-07-06":{"1. open":"84.8000","2. high":"88.1400","3. low":"83.5900","4. close":"87.9700","5. volume":"3769893"},"2018-06-29":{"1. open":"93.1500","2. high":"93.8100","3. low":"82.1400","4. close":"85.2700","5. volume":"8864377"},"2018-06-22":{"1. open":"94.2700","2. high":"94.4100","3. low":"90.3900","4. close":"93.5000","5. volume":"5064495"},"2018-06-15":{"1. open":"86.2500","2. high":"94.8800","3. low":"86.1300","4. close":"94.8500","5. volume":"9015233"},"2018-06-08":{"1. open":"82.8700","2. high":"87.7100","3. low":"82.7400","4. close":"86.0900","5. volume":"5554365"},"2018-06-01":{"1. open":"84.5700","2. high":"84.8500","3. low":"81.9700","4. close":"83.3400","5. volume":"4674609"},"2018-05-25":{"1. open":"85.2300","2. high":"86.1300","3. low":"82.3400","4. close":"85.4900","5. volume":"4964462"},"2018-05-18":{"1. open":"87.4300","2. high":"88.4800","3. low":"84.7000","4. close":"84.7700","5. volume":"5901631"},"2018-05-11":{"1. open":"86.4500","2. high":"87.8300","3. low":"83.7700","4. close":"86.8800","5. volume":"8782647"},"2018-05-04":{"1. open":"93.2800","2. high":"95.0000","3. low":"83.4900","4. close":"86.3700","5. volume":"11728359"},"2018-04-27":{"1. open":"90.1500","2. high":"93.2500","3. low":"89.3000","4. close":"93.0700","5. volume":"4815963"},"2018-04-20":{"1. open":"86.8200","2. high":"94.2200","3. low":"84.1900","4. close":"89.8700","5. volume":"12028389"},"2018-04-13":{"1. open":"85.8100","2. high":"89.9000","3. low":"85.3400","4. close":"86.8200","5. volume":"4897032"},"2018-04-06":{"1. open":"86.1000","2. high":"88.5700","3. low":"81.5800","4. close":"85.4100","5. volume":"9542754"},"2018-03-29":{"1. open":"84.8900","2. high":"86.6200","3. low":"82.8800","4. close":"86.2100","5. volume":"6583787"},"2018-03-23":{"1. open":"96.3400","2. high":"96.3400","3. low":"83.8100","4. close":"84.0300","5. volume":"11653917"},"2018-03-16":{"1. open":"99.2100","2. high":"101.3900","3. low":"96.4600","4. close":"96.6100","5. volume":"7199195"},"2018-03-09":{"1. open":"93.0100","2. high":"99.0500","3. low":"92.8400","4. close":"99.0000","5. volume":"5670236"},"2018-03-02":{"1. open":"98.5900","2. high":"101.5600","3. low":"92.5100","4. close":"93.9600","5. volume":"11370584"},"2018-02-23":{"1. open":"98.9800","2. high":"100.0500","3. low":"96.6500","4. close":"98.4200","5. volume":"9022315"},"2018-02-16":{"1. open":"89.8500","2. high":"102.0000","3. low":"88.7600","4. close":"99.4000","5. volume":"21454340"},"2018-02-09":{"1. open":"95.6200","2. high":"96.5200","3. low":"85.8000","4. close":"89.1900","5. volume":"14485642"},"2018-02-02":{"1. open":"105.1400","2. high":"106.2700","3. low":"95.7300","4. close":"96.0200","5. volume":"11404835"},"2018-01-26":{"1. open":"100.2800","2. high":"105.7300","3. low":"99.6600","4. close":"105.4800","5. volume":"7102448"},"2018-01-19":{"1. open":"99.1000","2. high":"101.8500","3. low":"98.9700","4. close":"100.0600","5. volume":"6973565"},"2018-01-12":{"1. open":"95.1100","2. high":"99.0000","3. low":"94.7500","4. close":"99.0000","5. volume":"6821013"},"2018-01-05":{"1. open":"92.1500","2. high":"95.6300","3. low":"92.1200","4. close":"95.3200","5. volume":"5295714"},"2017-12-29":{"1. open":"92.4800","2. high":"93.8800","3. low":"91.7500","4. close":"91.8200","5. volume":"3389882"},"2017-12-22":{"1. open":"92.8400","2. high":"94.4400","3. low":"91.5000","4. close":"92.4600","5. volume":"8068478"},"2017-12-15":{"1. open":"87.0500","2. high":"94.0600","3. low":"86.2900","4. close":"93.1700","5. volume":"11160533"},"2017-12-08":{"1. open":"85.7300","2. high":"88.2000","3. low":"85.0100","4. close":"86.7000","5. volume":"8844259"},"2017-12-01":{"1. open":"81.0700","2. high":"86.1000","3. low":"80.6500","4. close":"84.9500","5. volume":"10101084"},"2017-11-24":{"1. open":"78.3000","2. high":"81.9900","3. low":"76.4800","4. close":"81.2300","5. volume":"5906672"},"2017-11-17":{"1. open":"74.6900","2. high":"80.7100","3. low":"74.3100","4. close":"78.8400","5. volume":"12583572"},"2017-11-10":{"1. open":"74.8000","2. high":"76.6800","3. low":"73.1900","4. close":"75.0000","5. volume":"12519959"},"2017-11-03":{"1. open":"76.0100","2. high":"78.9900","3. low":"71.9000","4. close":"74.8000","5. volume":"14398620"},"2017-10-27":{"1. open":"83.1700","2. high":"85.8000","3. low":"75.6600","4. close":"76.3800","5. volume":"12984924"},"2017-10-20":{"1. open":"79.0200","2. high":"83.7700","3. low":"78.4000","4. close":"83.2100","5. volume":"8012138"},"2017-10-13":{"1. open":"80.2100","2. high":"81.4100","3. low":"77.7700","4. close":"79.4400","5. volume":"8908726"},"2017-10-06":{"1. open":"82.9700","2. high":"85.2900","3. low":"80.0400","4. close":"80.4800","5. volume":"10300063"},"2017-09-29":{"1. open":"80.2300","2. high":"83.8400","3. low":"80.1400","4. close":"82.7500","5. volume":"5437662"},"2017-09-22":{"1. open":"81.8000","2. high":"82.0300","3. low":"78.3399","4. close":"81.0500","5. volume":"6185176"},"2017-09-15":{"1. open":"83.3300","2. high":"84.8050","3. low":"80.0200","4. close":"81.6000","5. volume":"9885608"},"2017-09-08":{"1. open":"79.8100","2. high":"83.9400","3. low":"79.0500","4. close":"82.5000","5. volume":"6185039"},"2017-09-01":{"1. open":"78.3800","2. high":"80.6100","3. low":"77.6900","4. close":"80.2400","5. volume":"6295008"},"2017-08-25":{"1. open":"78.4300","2. high":"79.4600","3. low":"77.8550","4. close":"78.1000","5. volume":"6593781"},"2017-08-18":{"1. open":"80.3100","2. high":"81.3400","3. low":"78.4600","4. close":"78.6000","5. volume":"9428729"},"2017-08-11":{"1. open":"80.8000","2. high":"82.3399","3. low":"78.1300","4. close":"80.0200","5. volume":"11228921"},"2017-08-04":{"1. open":"94.3000","2. high":"94.4200","3. low":"79.5800","4. close":"80.8300","5. volume":"14904249"},"2017-07-28":{"1. open":"91.6400","2. high":"95.1100","3. low":"91.3400","4. close":"93.9700","5. volume":"6304001"},"2017-07-21":{"1. open":"93.0500","2. high":"93.3700","3. low":"90.3000","4. close":"91.6200","5. volume":"5337985"},"2017-07-14":{"1. open":"93.6500","2. high":"94.5400","3. low":"91.1500","4. close":"92.9600","5. volume":"4432650"},"2017-07-07":{"1. open":"94.8600","2. high":"95.6800","3. low":"92.2400","4. close":"93.9100","5. volume":"3521063"},"2017-06-30":{"1. open":"96.2000","2. high":"97.8500","3. low":"93.3500","4. close":"94.5300","5. volume":"5586757"},"2017-06-23":{"1. open":"92.6100","2. high":"97.6700","3. low":"91.7600","4. close":"95.8200","5. volume":"6565030"},"2017-06-16":{"1. open":"91.8900","2. high":"95.1800","3. low":"91.7400","4. close":"92.5300","5. volume":"5948290"},"2017-06-09":{"1. open":"93.2000","2. high":"93.5700","3. low":"91.0250","4. close":"92.1000","5. volume":"5852649"},"2017-06-02":{"1. open":"90.6600","2. high":"93.8400","3. low":"90.5300","4. close":"93.5800","5. volume":"5657979"},"2017-05-26":{"1. open":"89.0000","2. high":"91.5000","3. low":"88.5500","4. close":"91.0000","5. volume":"6206061"},"2017-05-19":{"1. open":"88.4900","2. high":"90.9900","3. low":"86.1201","4. close":"89.1600","5. volume":"8070548"},"2017-05-12":{"1. open":"86.2100","2. high":"88.9700","3. low":"86.0200","4. close":"88.7500","5. volume":"8351224"},"2017-05-05":{"1. open":"82.3200","2. high":"87.9700","3. low":"81.0700","4. close":"85.8900","5. volume":"11858137"},"2017-04-28":{"1. open":"82.0300","2. high":"82.4000","3. low":"79.4000","4. close":"82.0500","5. volume":"8516195"},"2017-04-21":{"1. open":"86.6400","2. high":"86.7200","3. low":"81.1100","4. close":"81.2600","5. volume":"10771219"},"2017-04-13":{"1. open":"87.7500","2. high":"89.2500","3. low":"86.1400","4. close":"86.6700","5. volume":"5132667"},"2017-04-07":{"1. open":"88.4100","2. high":"88.6300","3. low":"86.7100","4. close":"87.6200","5. volume":"6458331"},"2017-03-31":{"1. open":"86.1400","2. high":"89.8800","3. low":"86.1200","4. close":"88.5000","5. volume":"8227724"},"2017-03-24":{"1. open":"87.6500","2. high":"87.8915","3. low":"85.2200","4. close":"86.5600","5. volume":"7478397"},"2017-03-17":{"1. open":"88.7600","2. high":"89.7600","3. low":"86.8800","4. close":"87.5300","5. volume":"8533997"},"2017-03-10":{"1. open":"91.5800","2. high":"91.8700","3. low":"87.7600","4. close":"88.3100","5. volume":"8938913"},"2017-03-03":{"1. open":"92.3100","2. high":"92.8070","3. low":"90.9800","4. close":"92.2300","5. volume":"7294591"},"2017-02-24":{"1. open":"90.7400","2. high":"92.3960","3. low":"89.5600","4. close":"92.1600","5. volume":"6385542"},"2017-02-17":{"1. open":"91.5300","2. high":"94.5000","3. low":"89.0000","4. close":"90.7600","5. volume":"10773287"},"2017-02-10":{"1. open":"89.1700","2. high":"91.7800","3. low":"88.9310","4. close":"91.1700","5. volume":"9606208"},"2017-02-03":{"1. open":"82.5500","2. high":"89.6100","3. low":"80.8200","4. close":"89.2800","5. volume":"18665556"},"2017-01-27":{"1. open":"83.7200","2. high":"85.9200","3. low":"81.0400","4. close":"82.4300","5. volume":"10140102"},"2017-01-20":{"1. open":"84.9200","2. high":"86.4700","3. low":"83.2100","4. close":"83.7500","5. volume":"9521909"},"2017-01-13":{"1. open":"84.6000","2. high":"86.3150","3. low":"79.9400","4. close":"84.6200","5. volume":"12106452"},"2017-01-06":{"1. open":"78.5100","2. high":"85.7800","3. low":"78.3100","4. close":"84.8000","5. volume":"10964320"},"2016-12-30":{"1. open":"78.4200","2. high":"80.2400","3. low":"77.9600","4. close":"78.1900","5. volume":"3941147"},"2016-12-23":{"1. open":"77.5500","2. high":"80.0600","3. low":"77.3250","4. close":"78.5600","5. volume":"8585459"},"2016-12-16":{"1. open":"78.3700","2. high":"79.4000","3. low":"75.4600","4. close":"77.3800","5. volume":"11151706"},"2016-12-09":{"1. open":"78.8900","2. high":"80.1000","3. low":"73.8600","4. close":"78.9000","5. volume":"13837556"},"2016-12-02":{"1. open":"78.6100","2. high":"79.5800","3. low":"77.4500","4. close":"78.8000","5. volume":"13016106"},"2016-11-25":{"1. open":"79.0590","2. high":"80.4800","3. low":"77.7600","4. close":"78.5700","5. volume":"7001455"},"2016-11-18":{"1. open":"82.1600","2. high":"82.5800","3. low":"77.7100","4. close":"79.2100","5. volume":"18339105"},"2016-11-11":{"1. open":"71.5200","2. high":"80.8025","3. low":"68.7050","4. close":"78.9200","5. volume":"23766741"},"2016-11-04":{"1. open":"69.5100","2. high":"77.4700","3. low":"69.5100","4. close":"70.4700","5. volume":"27120585"},"2016-10-28":{"1. open":"80.3400","2. high":"80.8800","3. low":"68.3800","4. close":"69.1400","5. volume":"16493709"},"2016-10-21":{"1. open":"79.7500","2. high":"81.7650","3. low":"79.2300","4. close":"80.0200","5. volume":"9270877"},"2016-10-14":{"1. open":"79.0700","2. high":"81.0500","3. low":"78.7800","4. close":"79.7900","5. volume":"9838654"},"2016-10-07":{"1. open":"80.6800","2. high":"81.7200","3. low":"78.7000","4. close":"79.3900","5. volume":"9075529"},"2016-09-30":{"1. open":"83.0700","2. high":"83.7400","3. low":"79.3400","4. close":"80.7800","5. volume":"8860815"},"2016-09-23":{"1. open":"83.9100","2. high":"84.9600","3. low":"81.7900","4. close":"83.3300","5. volume":"11733088"},"2016-09-16":{"1. open":"85.0100","2. high":"87.1400","3. low":"83.0100","4. close":"84.1100","5. volume":"16897908"},"2016-09-09":{"1. open":"87.3000","2. high":"88.4390","3. low":"85.2200","4. close":"85.3100","5. volume":"7831716"},"2016-09-02":{"1. open":"85.8200","2. high":"87.8700","3. low":"85.3103","4. close":"87.4400","5. volume":"8319766"},"2016-08-26":{"1. open":"88.8000","2. high":"89.2300","3. low":"85.1500","4. close":"85.7500","5. volume":"8212875"},"2016-08-19":{"1. open":"88.9500","2. high":"90.1200","3. low":"88.1100","4. close":"88.8500","5. volume":"8382485"},"2016-08-12":{"1. open":"89.7100","2. high":"89.7100","3. low":"87.4700","4. close":"88.9100","5. volume":"7698626"},"2016-08-05":{"1. open":"85.2800","2. high":"90.5400","3. low":"85.1100","4. close":"89.3500","5. volume":"14100237"},"2016-07-29":{"1. open":"85.9000","2. high":"86.0400","3. low":"84.1200","4. close":"85.1900","5. volume":"9715092"},"2016-07-22":{"1. open":"85.7300","2. high":"87.0500","3. low":"85.1000","4. close":"85.8600","5. volume":"7344299"},"2016-07-15":{"1. open":"81.9700","2. high":"86.5200","3. low":"81.8500","4. close":"85.5500","5. volume":"11183534"},"2016-07-08":{"1. open":"79.8600","2. high":"82.0790","3. low":"79.3900","4. close":"81.9200","5. volume":"8941183"},"2016-07-01":{"1. open":"75.1400","2. high":"80.4299","3. low":"73.4400","4. close":"80.1600","5. volume":"12929570"},"2016-06-24":{"1. open":"76.2500","2. high":"77.7700","3. low":"75.0400","4. close":"75.4400","5. volume":"12788354"},"2016-06-17":{"1. open":"76.4400","2. high":"77.1800","3. low":"74.9600","4. close":"75.7000","5. volume":"13385810"},"2016-06-10":{"1. open":"76.3000","2. high":"77.2400","3. low":"75.3700","4. close":"76.4600","5. volume":"8468827"},"2016-06-03":{"1. open":"74.2000","2. high":"77.2300","3. low":"73.8900","4. close":"76.5400","5. volume":"12239058"},"2016-05-27":{"1. open":"75.0000","2. high":"75.0500","3. low":"73.3100","4. close":"74.0300","5. volume":"8751614"},"2016-05-20":{"1. open":"73.7600","2. high":"75.3300","3. low":"73.7300","4. close":"74.8200","5. volume":"14780759"},"2016-05-13":{"1. open":"76.4300","2. high":"78.4800","3. low":"73.5400","4. close":"73.6600","5. volume":"16932765"},"2016-05-06":{"1. open":"85.1900","2. high":"86.0700","3. low":"75.3500","4. close":"76.5200","5. volume":"24527312"},"2016-04-29":{"1. open":"91.7500","2. high":"92.0000","3. low":"84.3700","4. close":"85.1000","5. volume":"14319303"},"2016-04-22":{"1. open":"88.0400","2. high":"92.4800","3. low":"87.6400","4. close":"91.8900","5. volume":"11221411"},"2016-04-15":{"1. open":"85.1600","2. high":"87.8800","3. low":"84.0499","4. close":"87.8300","5. volume":"10024086"},"2016-04-08":{"1. open":"86.7400","2. high":"88.1000","3. low":"85.1200","4. close":"85.3100","5. volume":"12339530"},"2016-04-01":{"1. open":"87.0400","2. high":"87.7400","3. low":"85.7100","4. close":"86.5100","5. volume":"8286631"},"2016-03-24":{"1. open":"87.5800","2. high":"87.8400","3. low":"85.9499","4. close":"86.1700","5. volume":"7092469"},"2016-03-18":{"1. open":"89.0600","2. high":"89.7700","3. low":"85.4100","4. close":"87.4800","5. volume":"11772896"},"2016-03-11":{"1. open":"87.3600","2. high":"89.6400","3. low":"85.8100","4. close":"89.5500","5. volume":"12311076"},"2016-03-04":{"1. open":"87.2700","2. high":"88.4700","3. low":"86.4350","4. close":"88.0000","5. volume":"9741475"},"2016-02-26":{"1. open":"86.8600","2. high":"88.5700","3. low":"85.8000","4. close":"87.5400","5. volume":"9032047"},"2016-02-19":{"1. open":"86.1100","2. high":"87.8300","3. low":"85.0000","4. close":"86.8400","5. volume":"9688494"},"2016-02-12":{"1. open":"83.8900","2. high":"86.3500","3. low":"82.6200","4. close":"85.6100","5. volume":"14752421"},"2016-02-05":{"1. open":"89.1100","2. high":"89.8900","3. low":"80.5000","4. close":"84.7000","5. volume":"22777096"},"2016-01-29":{"1. open":"91.9900","2. high":"92.2300","3. low":"87.0900","4. close":"89.5600","5. volume":"16429719"},"2016-01-22":{"1. open":"93.2900","2. high":"93.3410","3. low":"89.6800","4. close":"91.0000","5. volume":"12097057"},"2016-01-15":{"1. open":"95.5100","2. high":"96.0000","3. low":"91.4300","4. close":"92.7700","5. volume":"19610922"},"2016-01-08":{"1. open":"102.3100","2. high":"103.4000","3. low":"97.8000","4. close":"97.9600","5. volume":"12140387"},"2015-12-31":{"1. open":"103.8500","2. high":"105.8070","3. low":"103.4800","4. close":"103.7100","5. volume":"3784460"},"2015-12-24":{"1. open":"102.1700","2. high":"104.2400","3. low":"101.6100","4. close":"103.9500","5. volume":"4437182"},"2015-12-18":{"1. open":"102.2000","2. high":"103.4900","3. low":"100.4400","4. close":"101.8800","5. volume":"13766430"},"2015-12-11":{"1. open":"99.9200","2. high":"102.8100","3. low":"99.3300","4. close":"102.0800","5. volume":"11054875"},"2015-12-04":{"1. open":"99.0800","2. high":"100.4000","3. low":"98.0300","4. close":"99.8900","5. volume":"9197504"},"2015-11-27":{"1. open":"99.0000","2. high":"99.7000","3. low":"97.7500","4. close":"98.9900","5. volume":"5557693"},"2015-11-20":{"1. open":"96.8600","2. high":"100.8600","3. low":"96.5400","4. close":"99.1000","5. volume":"10478336"},"2015-11-13":{"1. open":"97.3300","2. high":"99.6400","3. low":"96.2200","4. close":"96.5900","5. volume":"8671985"},"2015-11-06":{"1. open":"97.5100","2. high":"98.7100","3. low":"96.5300","4. close":"97.6100","5. volume":"9589947"},"2015-10-30":{"1. open":"93.0600","2. high":"102.6400","3. low":"92.8400","4. close":"96.5100","5. volume":"24006600"},"2015-10-23":{"1. open":"94.9700","2. high":"95.5400","3. low":"91.6900","4. close":"93.1300","5. volume":"12834980"},"2015-10-16":{"1. open":"93.0200","2. high":"95.3200","3. low":"92.1100","4. close":"95.0600","5. volume":"11792018"},"2015-10-09":{"1. open":"95.3400","2. high":"95.9000","3. low":"91.7700","4. close":"92.8400","5. volume":"14193387"},"2015-10-02":{"1. open":"99.3400","2. high":"99.6500","3. low":"90.8200","4. close":"94.9100","5. volume":"15423725"},"2015-09-25":{"1. open":"106.5800","2. high":"107.3600","3. low":"99.3900","4. close":"99.8400","5. volume":"9549891"},"2015-09-18":{"1. open":"104.8200","2. high":"108.1800","3. low":"103.7900","4. close":"106.1000","5. volume":"8637016"},"2015-09-11":{"1. open":"100.8000","2. high":"104.4000","3. low":"99.7900","4. close":"104.3400","5. volume":"7210271"},"2015-09-04":{"1. open":"101.0700","2. high":"101.8400","3. low":"95.6100","4. close":"98.9900","5. volume":"9832098"},"2015-08-28":{"1. open":"94.6700","2. high":"101.7850","3. low":"94.6700","4. close":"100.8700","5. volume":"12494915"},"2015-08-21":{"1. open":"103.7500","2. high":"107.0200","3. low":"101.3400","4. close":"101.8000","5. volume":"8780013"},"2015-08-14":{"1. open":"105.0400","2. high":"106.2600","3. low":"102.2910","4. close":"103.9400","5. volume":"7682640"},"2015-08-07":{"1. open":"105.7500","2. high":"107.8500","3. low":"102.8800","4. close":"104.3600","5. volume":"10069710"},"2015-07-31":{"1. open":"108.1300","2. high":"109.0800","3. low":"104.1333","4. close":"105.7500","5. volume":"13582350"},"2015-07-24":{"1. open":"113.2300","2. high":"115.4100","3. low":"108.4500","4. close":"108.7300","5. volume":"12156712"},"2015-07-17":{"1. open":"110.5200","2. high":"113.6600","3. low":"109.2300","4. close":"113.2000","5. volume":"7131403"},"2015-07-10":{"1. open":"106.4700","2. high":"109.9800","3. low":"106.0000","4. close":"109.4600","5. volume":"7436411"},"2015-07-02":{"1. open":"106.8100","2. high":"108.3200","3. low":"105.7800","4. close":"107.1000","5. volume":"6855721"},"2015-06-26":{"1. open":"112.5800","2. high":"113.1900","3. low":"107.3101","4. close":"107.8400","5. volume":"8358886"},"2015-06-19":{"1. open":"109.7700","2. high":"112.6300","3. low":"109.0000","4. close":"111.4700","5. volume":"11046048"},"2015-06-12":{"1. open":"111.3100","2. high":"111.8100","3. low":"108.2800","4. close":"110.1500","5. volume":"8303395"},"2015-06-05":{"1. open":"112.8100","2. high":"113.7600","3. low":"110.2500","4. close":"111.5000","5. volume":"7161055"},"2015-05-29":{"1. open":"113.8800","2. high":"114.4500","3. low":"112.5600","4. close":"112.5600","5. volume":"8873581"},"2015-05-22":{"1. open":"113.3600","2. high":"115.5800","3. low":"112.5600","4. close":"113.8000","5. volume":"10409433"},"2015-05-15":{"1. open":"115.1400","2. high":"115.8500","3. low":"113.7500","4. close":"114.1800","5. volume":"9479186"},"2015-05-08":{"1. open":"114.6700","2. high":"116.2800","3. low":"113.5070","4. close":"115.3000","5. volume":"9937361"},"2015-05-01":{"1. open":"115.8800","2. high":"120.6800","3. low":"112.1200","4. close":"114.6100","5. volume":"13206069"},"2015-04-24":{"1. open":"112.9600","2. high":"116.1800","3. low":"112.8900","4. close":"115.4800","5. volume":"6737632"},"2015-04-17":{"1. open":"115.3100","2. high":"115.8799","3. low":"112.0500","4. close":"112.6100","5. volume":"7540458"},"2015-04-10":{"1. open":"111.9900","2. high":"115.5500","3. low":"111.7900","4. close":"115.3500","5. volume":"9412764"},"2015-04-02":{"1. open":"113.7000","2. high":"114.2700","3. low":"111.4100","4. close":"112.3900","5. volume":"8655931"},"2015-03-27":{"1. open":"113.7400","2. high":"114.7300","3. low":"110.5400","4. close":"113.1900","5. volume":"10195047"},"2015-03-20":{"1. open":"108.1300","2. high":"114.5000","3. low":"106.9710","4. close":"113.4600","5. volume":"13183776"},"2015-03-13":{"1. open":"102.4700","2. high":"106.3800","3. low":"102.0100","4. close":"106.1500","5. volume":"8122513"},"2015-03-06":{"1. open":"102.5700","2. high":"103.9700","3. low":"102.0000","4. close":"102.2600","5. volume":"8534052"},"2015-02-27":{"1. open":"101.9800","2. high":"103.7050","3. low":"101.7900","4. close":"102.7600","5. volume":"6383149"},"2015-02-20":{"1. open":"100.2100","2. high":"102.0000","3. low":"99.6100","4. close":"101.9800","5. volume":"6741411"},"2015-02-13":{"1. open":"96.9700","2. high":"100.3600","3. low":"95.0750","4. close":"100.3400","5. volume":"11320027"},"2015-02-06":{"1. open":"95.5700","2. high":"98.2300","3. low":"93.6000","4. close":"97.0400","5. volume":"8627786"},"2015-01-30":{"1. open":"94.8500","2. high":"100.2000","3. low":"94.3000","4. close":"95.0500","5. volume":"15930795"},"2015-01-23":{"1. open":"93.0100","2. high":"95.1600","3. low":"91.3900","4. close":"94.7300","5. volume":"6207392"},"2015-01-16":{"1. open":"93.7700","2. high":"94.3500","3. low":"90.3500","4. close":"92.4200","5. volume":"11892723"},"2015-01-09":{"1. open":"90.0700","2. high":"93.2700","3. low":"89.5200","4. close":"93.0000","5. volume":"8948329"},"2015-01-02":{"1. open":"91.2600","2. high":"91.9300","3. low":"89.8200","4. close":"90.4600","5. volume":"3944962"},"2014-12-26":{"1. open":"92.2600","2. high":"92.6500","3. low":"90.6900","4. close":"91.5100","5. volume":"3581191"},"2014-12-19":{"1. open":"91.5500","2. high":"92.5600","3. low":"89.2550","4. close":"91.6800","5. volume":"11609419"},"2014-12-12":{"1. open":"92.0100","2. high":"92.8400","3. low":"90.7700","4. close":"90.9800","5. volume":"7620112"},"2014-12-05":{"1. open":"90.6400","2. high":"92.6450","3. low":"90.2800","4. close":"92.2100","5. volume":"7074258"},"2014-11-28":{"1. open":"89.2100","2. high":"91.5900","3. low":"89.2100","4. close":"91.0500","5. volume":"4248142"},"2014-11-21":{"1. open":"88.8300","2. high":"89.9700","3. low":"88.1000","4. close":"88.7400","5. volume":"8490451"},"2014-11-14":{"1. open":"87.0200","2. high":"89.4800","3. low":"86.5200","4. close":"88.8300","5. volume":"7033640"},"2014-11-07":{"1. open":"85.8100","2. high":"89.2300","3. low":"85.5800","4. close":"86.7300","5. volume":"11932559"},"2014-10-31":{"1. open":"78.3400","2. high":"85.9900","3. low":"78.2900","4. close":"85.4100","5. volume":"16373690"},"2014-10-24":{"1. open":"75.8700","2. high":"78.3300","3. low":"75.1100","4. close":"78.2800","5. volume":"10995668"},"2014-10-17":{"1. open":"76.9400","2. high":"77.3400","3. low":"74.3200","4. close":"75.8400","5. volume":"9571475"},"2014-10-10":{"1. open":"78.0700","2. high":"78.5800","3. low":"76.3300","4. close":"76.9000","5. volume":"6725384"},"2014-10-03":{"1. open":"77.0500","2. high":"78.2100","3. low":"76.3650","4. close":"77.8900","5. volume":"6887482"},"2014-09-26":{"1. open":"77.3500","2. high":"78.1200","3. low":"76.4300","4. close":"77.4200","5. volume":"6877078"},"2014-09-19":{"1. open":"76.9900","2. high":"78.1200","3. low":"75.7100","4. close":"77.3300","5. volume":"8859700"},"2014-09-12":{"1. open":"77.9200","2. high":"78.5992","3. low":"76.6100","4. close":"77.1000","5. volume":"6201400"},"2014-09-05":{"1. open":"77.5100","2. high":"78.2600","3. low":"76.9800","4. close":"78.1400","5. volume":"3858400"},"2014-08-29":{"1. open":"77.0300","2. high":"77.4100","3. low":"76.0010","4. close":"77.3900","5. volume":"3417900"},"2014-08-22":{"1. open":"76.5300","2. high":"77.3700","3. low":"76.3600","4. close":"76.6000","5. volume":"3572800"},"2014-08-15":{"1. open":"75.7700","2. high":"77.0000","3. low":"75.5300","4. close":"76.3300","5. volume":"6160200"},"2014-08-08":{"1. open":"77.2800","2. high":"77.9100","3. low":"74.6600","4. close":"75.4300","5. volume":"7614051"},"2014-08-01":{"1. open":"76.7500","2. high":"78.4600","3. low":"76.5650","4. close":"77.3000","5. volume":"8432743"},"2014-07-25":{"1. open":"72.9200","2. high":"79.1300","3. low":"72.3800","4. close":"76.7900","5. volume":"10752300"},"2014-07-18":{"1. open":"73.3200","2. high":"73.5500","3. low":"72.4000","4. close":"73.0600","5. volume":"6489400"},"2014-07-11":{"1. open":"73.2000","2. high":"73.2600","3. low":"72.0110","4. close":"72.9800","5. volume":"4186200"},"2014-07-03":{"1. open":"72.9900","2. high":"73.4200","3. low":"72.4000","4. close":"73.2300","5. volume":"4416500"},"2014-06-27":{"1. open":"72.4700","2. high":"73.2500","3. low":"71.9100","4. close":"72.8700","5. volume":"5465700"},"2014-06-20":{"1. open":"71.6100","2. high":"72.4600","3. low":"71.1800","4. close":"72.2600","5. volume":"7080600"},"2014-06-13":{"1. open":"72.4000","2. high":"72.8400","3. low":"71.0000","4. close":"71.7800","5. volume":"7481100"},"2014-06-06":{"1. open":"73.3100","2. high":"73.8100","3. low":"72.0500","4. close":"72.5000","5. volume":"10134000"},"2014-05-30":{"1. open":"71.7600","2. high":"73.5700","3. low":"71.7100","4. close":"73.1800","5. volume":"9427300"},"2014-05-23":{"1. open":"68.5300","2. high":"71.7100","3. low":"68.3100","4. close":"71.6400","5. volume":"10440100"},"2014-05-16":{"1. open":"65.9800","2. high":"68.3400","3. low":"65.8700","4. close":"68.3100","5. volume":"10812100"},"2014-05-09":{"1. open":"64.0000","2. high":"65.7500","3. low":"63.8800","4. close":"65.5800","5. volume":"9462100"},"2014-05-02":{"1. open":"63.2500","2. high":"65.2900","3. low":"62.6900","4. close":"64.2700","5. volume":"10473500"},"2014-04-25":{"1. open":"64.2100","2. high":"66.8100","3. low":"62.5500","4. close":"62.8300","5. volume":"10775500"},"2014-04-17":{"1. open":"64.4400","2. high":"65.1400","3. low":"63.2300","4. close":"64.6800","5. volume":"5885800"},"2014-04-11":{"1. open":"64.9400","2. high":"66.1800","3. low":"63.4000","4. close":"64.1700","5. volume":"12047400"},"2014-04-04":{"1. open":"65.3000","2. high":"66.3700","3. low":"64.8500","4. close":"65.0500","5. volume":"9202000"},"2014-03-28":{"1. open":"65.2900","2. high":"65.5900","3. low":"63.5299","4. close":"64.8200","5. volume":"10784600"},"2014-03-21":{"1. open":"67.7300","2. high":"68.4300","3. low":"64.5600","4. close":"64.8200","5. volume":"9448000"},"2014-03-14":{"1. open":"68.9100","2. high":"69.6500","3. low":"66.9700","4. close":"67.5700","5. volume":"8309200"},"2014-03-07":{"1. open":"67.1100","2. high":"69.4500","3. low":"66.9650","4. close":"68.9400","5. volume":"8404500"},"2014-02-28":{"1. open":"68.3100","2. high":"69.2200","3. low":"67.4750","4. close":"67.8500","5. volume":"7482800"},"2014-02-21":{"1. open":"68.0600","2. high":"69.1500","3. low":"67.5700","4. close":"68.4000","5. volume":"6065100"},"2014-02-14":{"1. open":"66.4600","2. high":"68.8200","3. low":"65.7200","4. close":"68.0000","5. volume":"9763500"},"2014-02-07":{"1. open":"67.1300","2. high":"67.1300","3. low":"64.2800","4. close":"66.5400","5. volume":"10933800"},"2014-01-31":{"1. open":"67.0400","2. high":"68.1450","3. low":"66.1300","4. close":"67.2200","5. volume":"11811100"},"2014-01-24":{"1. open":"70.8800","2. high":"71.1700","3. low":"67.2500","4. close":"67.2500","5. volume":"8837600"},"2014-01-17":{"1. open":"71.4200","2. high":"71.7500","3. low":"69.6100","4. close":"70.5300","5. volume":"8112600"},"2014-01-10":{"1. open":"70.3400","2. high":"71.9200","3. low":"69.3500","4. close":"71.3400","5. volume":"8109600"},"2014-01-03":{"1. open":"70.2500","2. high":"70.6401","3. low":"69.4800","4. close":"69.9400","5. volume":"3519000"},"2013-12-27":{"1. open":"70.1300","2. high":"70.6300","3. low":"69.7674","4. close":"70.2100","5. volume":"3080800"},"2013-12-20":{"1. open":"68.8400","2. high":"70.2399","3. low":"68.0400","4. close":"69.8200","5. volume":"9367100"},"2013-12-13":{"1. open":"70.4700","2. high":"71.2100","3. low":"67.7400","4. close":"68.4500","5. volume":"10634100"},"2013-12-06":{"1. open":"70.7900","2. high":"71.3800","3. low":"68.7800","4. close":"70.2900","5. volume":"8884000"},"2013-11-29":{"1. open":"69.8000","2. high":"71.1600","3. low":"69.8000","4. close":"70.5300","5. volume":"3864900"},"2013-11-22":{"1. open":"69.9900","2. high":"70.1900","3. low":"68.6700","4. close":"70.0200","5. volume":"6719200"},"2013-11-15":{"1. open":"68.0800","2. high":"69.6135","3. low":"67.6600","4. close":"69.5000","5. volume":"6399600"},"2013-11-08":{"1. open":"66.5000","2. high":"68.0200","3. low":"66.2500","4. close":"68.0000","5. volume":"9204200"},"2013-11-01":{"1. open":"65.1600","2. high":"66.3800","3. low":"64.5250","4. close":"66.3800","5. volume":"8593000"},"2013-10-25":{"1. open":"64.5700","2. high":"65.3100","3. low":"63.2400","4. close":"65.2400","5. volume":"6796300"},"2013-10-18":{"1. open":"62.4600","2. high":"65.0600","3. low":"62.1800","4. close":"64.6100","5. volume":"5726700"},"2013-10-11":{"1. open":"62.2700","2. high":"62.8791","3. low":"60.7800","4. close":"62.6500","5. volume":"6601700"},"2013-10-04":{"1. open":"60.9000","2. high":"62.5400","3. low":"60.6900","4. close":"62.4700","5. volume":"6818300"},"2013-09-27":{"1. open":"61.6800","2. high":"61.9000","3. low":"60.6900","4. close":"61.2800","5. volume":"4748700"},"2013-09-20":{"1. open":"60.8000","2. high":"62.4400","3. low":"60.6600","4. close":"61.6500","5. volume":"5931900"},"2013-09-13":{"1. open":"58.3100","2. high":"61.0200","3. low":"58.1500","4. close":"60.2800","5. volume":"6752300"},"2013-09-06":{"1. open":"57.4600","2. high":"58.6250","3. low":"57.2100","4. close":"58.2400","5. volume":"3812000"},"2013-08-30":{"1. open":"57.4100","2. high":"57.7800","3. low":"56.2400","4. close":"56.9200","5. volume":"5109600"},"2013-08-23":{"1. open":"56.5400","2. high":"57.6600","3. low":"56.5000","4. close":"57.4500","5. volume":"8508100"},"2013-08-16":{"1. open":"58.9000","2. high":"59.2400","3. low":"56.5300","4. close":"56.5300","5. volume":"10009200"},"2013-08-09":{"1. open":"58.3800","2. high":"59.7500","3. low":"58.2100","4. close":"59.4900","5. volume":"6406500"},"2013-08-02":{"1. open":"58.3700","2. high":"59.1150","3. low":"58.0000","4. close":"58.4800","5. volume":"9083300"},"2013-07-26":{"1. open":"58.7400","2. high":"59.3000","3. low":"55.8000","4. close":"58.4700","5. volume":"12925100"},"2013-07-19":{"1. open":"58.5700","2. high":"58.9500","3. low":"58.0400","4. close":"58.8100","5. volume":"8487000"},"2013-07-12":{"1. open":"55.8300","2. high":"58.4200","3. low":"55.5900","4. close":"58.3900","5. volume":"8830000"},"2013-07-05":{"1. open":"56.1100","2. high":"56.2300","3. low":"54.4000","4. close":"55.5600","5. volume":"7640100"},"2013-06-28":{"1. open":"54.0200","2. high":"56.3300","3. low":"53.0600","4. close":"55.8300","5. volume":"14083200"},"2013-06-21":{"1. open":"55.1300","2. high":"56.3900","3. low":"54.0100","4. close":"54.3400","5. volume":"12645900"},"2013-06-14":{"1. open":"53.1300","2. high":"55.3500","3. low":"52.9700","4. close":"54.9300","5. volume":"14303900"},"2013-06-07":{"1. open":"54.0100","2. high":"54.1400","3. low":"52.3800","4. close":"52.9400","5. volume":"16704400"},"2013-05-31":{"1. open":"54.7700","2. high":"55.2000","3. low":"53.2200","4. close":"54.0800","5. volume":"9717000"},"2013-05-24":{"1. open":"55.0100","2. high":"55.2300","3. low":"54.0400","4. close":"54.4400","5. volume":"9633600"},"2013-05-17":{"1. open":"54.6800","2. high":"55.4800","3. low":"54.1800","4. close":"54.9900","5. volume":"11198000"},"2013-05-10":{"1. open":"54.4900","2. high":"55.2100","3. low":"54.3400","4. close":"54.8400","5. volume":"9175000"},"2013-05-03":{"1. open":"53.3300","2. high":"55.0800","3. low":"53.2500","4. close":"54.5700","5. volume":"11820700"},"2013-04-26":{"1. open":"56.4200","2. high":"56.9100","3. low":"52.7800","4. close":"53.2600","5. volume":"21435700"},"2013-04-19":{"1. open":"54.1400","2. high":"56.0700","3. low":"53.8400","4. close":"55.9200","5. volume":"13767800"},"2013-04-12":{"1. open":"52.1800","2. high":"54.3300","3. low":"51.6900","4. close":"54.1800","5. volume":"12184900"},"2013-04-05":{"1. open":"51.3800","2. high":"53.3600","3. low":"51.2900","4. close":"52.0800","5. volume":"14751000"},"2013-03-28":{"1. open":"49.9500","2. high":"51.5700","3. low":"49.8400","4. close":"51.4500","5. volume":"10539900"},"2013-03-22":{"1. open":"48.3200","2. high":"52.1500","3. low":"48.1600","4. close":"49.8200","5. volume":"28079200"},"2013-03-15":{"1. open":"48.3600","2. high":"49.3900","3. low":"48.2900","4. close":"48.8900","5. volume":"7413200"},"2013-03-08":{"1. open":"47.8300","2. high":"48.8000","3. low":"47.6600","4. close":"48.4800","5. volume":"8486600"},"2013-03-01":{"1. open":"47.1000","2. high":"48.1400","3. low":"46.0800","4. close":"47.9800","5. volume":"8413200"},"2013-02-22":{"1. open":"46.6700","2. high":"47.3900","3. low":"46.1633","4. close":"46.9500","5. volume":"6237900"},"2013-02-15":{"1. open":"46.8500","2. high":"47.0900","3. low":"46.5000","4. close":"46.6000","5. volume":"9984000"},"2013-02-08":{"1. open":"46.3500","2. high":"46.8950","3. low":"45.9900","4. close":"46.8900","5. volume":"11250000"},"2013-02-01":{"1. open":"45.0600","2. high":"46.7700","3. low":"44.8650","4. close":"46.5300","5. volume":"13429900"},"2013-01-25":{"1. open":"45.9000","2. high":"46.5900","3. low":"44.7300","4. close":"45.0300","5. volume":"11278700"},"2013-01-18":{"1. open":"43.9900","2. high":"45.8500","3. low":"43.8000","4. close":"45.8500","5. volume":"8806800"},"2013-01-11":{"1. open":"43.7000","2. high":"44.1000","3. low":"43.5000","4. close":"43.8400","5. volume":"7844600"},"2013-01-04":{"1. open":"42.7400","2. high":"43.7400","3. low":"42.6300","4. close":"43.6900","5. volume":"7755800"},"2012-12-28":{"1. open":"43.5200","2. high":"43.6800","3. low":"42.7600","4. close":"42.8200","5. volume":"4513700"},"2012-12-21":{"1. open":"43.3600","2. high":"44.0200","3. low":"43.2700","4. close":"43.6400","5. volume":"13712100"},"2012-12-14":{"1. open":"42.3100","2. high":"43.3800","3. low":"42.1400","4. close":"43.3600","5. volume":"18789600"},"2012-12-07":{"1. open":"42.2600","2. high":"42.8500","3. low":"42.0200","4. close":"42.2700","5. volume":"14400900"},"2012-11-30":{"1. open":"41.3500","2. high":"42.2400","3. low":"40.8400","4. close":"42.2200","5. volume":"13058300"},"2012-11-23":{"1. open":"40.4800","2. high":"41.4900","3. low":"40.3700","4. close":"41.3800","5. volume":"6396100"},"2012-11-16":{"1. open":"40.6000","2. high":"40.9900","3. low":"39.9000","4. close":"40.2600","5. volume":"11327500"},"2012-11-09":{"1. open":"40.2800","2. high":"40.9700","3. low":"39.6500","4. close":"40.4700","5. volume":"12047200"},"2012-11-02":{"1. open":"39.6200","2. high":"41.2300","3. low":"39.2800","4. close":"40.5000","5. volume":"9887300"},"2012-10-26":{"1. open":"40.1900","2. high":"40.5600","3. low":"39.2200","4. close":"39.3400","5. volume":"11111400"},"2012-10-19":{"1. open":"39.5000","2. high":"40.9500","3. low":"39.3700","4. close":"40.2800","5. volume":"11923800"},"2012-10-12":{"1. open":"39.4700","2. high":"39.8800","3. low":"39.1550","4. close":"39.5000","5. volume":"8467100"},"2012-10-05":{"1. open":"38.7900","2. high":"39.8500","3. low":"38.6900","4. close":"39.5200","5. volume":"12407100"},"2012-09-28":{"1. open":"38.8600","2. high":"39.4500","3. low":"38.4900","4. close":"38.7100","5. volume":"14253200"},"2012-09-21":{"1. open":"37.4700","2. high":"39.0400","3. low":"37.4100","4. close":"38.9700","5. volume":"14367700"},"2012-09-14":{"1. open":"38.3700","2. high":"38.6000","3. low":"37.1200","4. close":"37.3600","5. volume":"18300900"},"2012-09-07":{"1. open":"38.5200","2. high":"39.0000","3. low":"38.0400","4. close":"38.1800","5. volume":"11369200"},"2012-08-31":{"1. open":"38.1100","2. high":"38.9700","3. low":"36.7300","4. close":"38.5200","5. volume":"14688700"},"2012-08-24":{"1. open":"37.4000","2. high":"38.2600","3. low":"37.3800","4. close":"38.1000","5. volume":"11863300"},"2012-08-17":{"1. open":"38.5900","2. high":"38.7700","3. low":"36.9100","4. close":"37.5400","5. volume":"18308100"},"2012-08-10":{"1. open":"39.4000","2. high":"39.6600","3. low":"38.2500","4. close":"38.6900","5. volume":"13266100"},"2012-08-03":{"1. open":"38.7200","2. high":"40.2000","3. low":"38.2900","4. close":"39.3900","5. volume":"22962200"},"2012-07-27":{"1. open":"38.9500","2. high":"38.9900","3. low":"36.9100","4. close":"38.6600","5. volume":"16960300"},"2012-07-20":{"1. open":"39.5500","2. high":"40.3600","3. low":"39.0400","4. close":"39.2100","5. volume":"9275900"},"2012-07-13":{"1. open":"38.6300","2. high":"39.8100","3. low":"38.6300","4. close":"39.6400","5. volume":"10257400"},"2012-07-06":{"1. open":"39.5300","2. high":"39.8800","3. low":"38.6900","4. close":"38.7600","5. volume":"6202200"},"2012-06-29":{"1. open":"37.5800","2. high":"39.3500","3. low":"37.4300","4. close":"39.3500","5. volume":"10995200"},"2012-06-22":{"1. open":"37.1900","2. high":"38.5300","3. low":"37.1200","4. close":"37.9300","5. volume":"8461200"},"2012-06-15":{"1. open":"37.2900","2. high":"37.3000","3. low":"36.2100","4. close":"37.2900","5. volume":"10066600"},"2012-06-08":{"1. open":"36.2400","2. high":"37.5800","3. low":"36.0200","4. close":"37.0600","5. volume":"8949300"},"2012-06-01":{"1. open":"37.0000","2. high":"37.2600","3. low":"36.2200","4. close":"36.2800","5. volume":"12437900"},"2012-05-25":{"1. open":"35.9800","2. high":"36.9900","3. low":"35.9750","4. close":"36.9000","5. volume":"8872400"},"2012-05-18":{"1. open":"36.3600","2. high":"37.0100","3. low":"35.9400","4. close":"35.9900","5. volume":"13077200"},"2012-05-11":{"1. open":"36.1100","2. high":"37.1200","3. low":"35.4800","4. close":"36.6200","5. volume":"17664800"},"2012-05-04":{"1. open":"36.8500","2. high":"37.5800","3. low":"36.1450","4. close":"36.1700","5. volume":"13721900"},"2012-04-27":{"1. open":"36.8000","2. high":"38.1700","3. low":"36.2800","4. close":"36.9000","5. volume":"15597200"},"2012-04-20":{"1. open":"37.6200","2. high":"38.3800","3. low":"37.2300","4. close":"37.7500","5. volume":"13637200"},"2012-04-13":{"1. open":"38.1000","2. high":"39.4900","3. low":"37.4900","4. close":"37.5300","5. volume":"15605900"},"2012-04-05":{"1. open":"39.7000","2. high":"39.7400","3. low":"38.2000","4. close":"38.2200","5. volume":"9874800"},"2012-03-30":{"1. open":"39.1500","2. high":"39.7600","3. low":"38.8300","4. close":"39.6600","5. volume":"11036800"},"2012-03-23":{"1. open":"38.2200","2. high":"39.2000","3. low":"38.1200","4. close":"38.9600","5. volume":"14145900"},"2012-03-16":{"1. open":"37.7900","2. high":"38.5400","3. low":"37.6500","4. close":"38.3200","5. volume":"13826500"},"2012-03-09":{"1. open":"36.5400","2. high":"37.9500","3. low":"36.2000","4. close":"37.8600","5. volume":"14495000"},"2012-03-02":{"1. open":"37.4700","2. high":"37.8705","3. low":"36.5550","4. close":"36.5900","5. volume":"12124600"},"2012-02-24":{"1. open":"36.7000","2. high":"37.7500","3. low":"36.1100","4. close":"37.7000","5. volume":"12496500"},"2012-02-17":{"1. open":"37.6800","2. high":"38.0500","3. low":"36.5550","4. close":"36.6800","5. volume":"22552400"},"2012-02-10":{"1. open":"39.1000","2. high":"39.5200","3. low":"38.3800","4. close":"38.6000","5. volume":"10060100"},"2012-02-03":{"1. open":"38.8800","2. high":"39.9000","3. low":"38.5600","4. close":"39.2300","5. volume":"14381700"},"2012-01-27":{"1. open":"39.9900","2. high":"40.2200","3. low":"37.5300","4. close":"38.9800","5. volume":"16235300"},"2012-01-20":{"1. open":"38.3000","2. high":"40.1200","3. low":"38.1000","4. close":"40.0900","5. volume":"7620800"},"2012-01-13":{"1. open":"38.5800","2. high":"39.1600","3. low":"37.6800","4. close":"37.8000","5. volume":"7618200"},"2012-01-06":{"1. open":"37.7700","2. high":"38.7200","3. low":"37.6800","4. close":"38.5900","5. volume":"7692100"},"2011-12-30":{"1. open":"37.3200","2. high":"37.7900","3. low":"36.8000","4. close":"37.1900","5. volume":"3925100"},"2011-12-23":{"1. open":"36.6700","2. high":"37.4600","3. low":"36.3000","4. close":"37.4200","5. volume":"9647400"},"2011-12-16":{"1. open":"36.1500","2. high":"36.9900","3. low":"35.5600","4. close":"36.7500","5. volume":"16955100"},"2011-12-09":{"1. open":"37.5000","2. high":"37.5600","3. low":"36.2200","4. close":"36.3700","5. volume":"13062600"},"2011-12-02":{"1. open":"36.8600","2. high":"37.6500","3. low":"36.1500","4. close":"37.0100","5. volume":"12225700"},"2011-11-25":{"1. open":"36.9000","2. high":"37.1600","3. low":"35.7500","4. close":"35.9800","5. volume":"7540500"},"2011-11-18":{"1. open":"39.4600","2. high":"39.7200","3. low":"37.2500","4. close":"37.2800","5. volume":"9226700"},"2011-11-11":{"1. open":"39.3500","2. high":"40.0700","3. low":"37.9800","4. close":"39.6700","5. volume":"10025800"},"2011-11-04":{"1. open":"41.8200","2. high":"41.9600","3. low":"38.4100","4. close":"39.2200","5. volume":"13562100"},"2011-10-28":{"1. open":"39.8400","2. high":"42.3200","3. low":"39.5500","4. close":"42.0800","5. volume":"12320600"},"2011-10-21":{"1. open":"37.9000","2. high":"39.7200","3. low":"37.4000","4. close":"39.7100","5. volume":"8748300"},"2011-10-14":{"1. open":"36.3200","2. high":"38.4750","3. low":"36.2800","4. close":"38.1800","5. volume":"10215400"},"2011-10-07":{"1. open":"37.0100","2. high":"37.5900","3. low":"34.7400","4. close":"35.7800","5. volume":"23944800"},"2011-09-30":{"1. open":"37.9500","2. high":"40.0300","3. low":"37.1500","4. close":"37.2700","5. volume":"14885900"},"2011-09-23":{"1. open":"38.7500","2. high":"40.3700","3. low":"37.2000","4. close":"37.7600","5. volume":"12597300"},"2011-09-16":{"1. open":"37.5600","2. high":"39.9300","3. low":"37.3400","4. close":"39.3100","5. volume":"15330600"},"2011-09-09":{"1. open":"37.8700","2. high":"40.3100","3. low":"37.4500","4. close":"38.4000","5. volume":"9357600"},"2011-09-02":{"1. open":"38.7900","2. high":"40.3700","3. low":"38.7500","4. close":"38.8100","5. volume":"11485700"},"2011-08-26":{"1. open":"38.2200","2. high":"38.7500","3. low":"36.7400","4. close":"38.4800","5. volume":"16074300"},"2011-08-19":{"1. open":"38.8100","2. high":"38.9500","3. low":"37.1000","4. close":"37.5400","5. volume":"18264500"},"2011-08-12":{"1. open":"36.3200","2. high":"38.3400","3. low":"34.3300","4. close":"38.3000","5. volume":"23963700"},"2011-08-05":{"1. open":"38.3500","2. high":"39.3100","3. low":"35.6500","4. close":"36.8100","5. volume":"25829100"},"2011-07-29":{"1. open":"40.3300","2. high":"41.2800","3. low":"37.6400","4. close":"38.3100","5. volume":"16892070"},"2011-07-22":{"1. open":"41.1700","2. high":"41.9300","3. low":"37.6200","4. close":"40.5200","5. volume":"27209100"},"2011-07-15":{"1. open":"42.3000","2. high":"42.9899","3. low":"41.7400","4. close":"41.9900","5. volume":"6651200"},"2011-07-08":{"1. open":"42.0200","2. high":"43.4700","3. low":"41.9200","4. close":"42.6500","5. volume":"6626900"},"2011-07-01":{"1. open":"39.9600","2. high":"42.1300","3. low":"39.8000","4. close":"42.1200","5. volume":"12305900"},"2011-06-24":{"1. open":"40.9900","2. high":"41.7200","3. low":"40.0500","4. close":"40.1400","5. volume":"9635000"},"2011-06-17":{"1. open":"41.1300","2. high":"41.4600","3. low":"40.4700","4. close":"41.0000","5. volume":"10637800"},"2011-06-10":{"1. open":"40.2200","2. high":"41.6900","3. low":"40.1800","4. close":"41.1200","5. volume":"12314300"},"2011-06-03":{"1. open":"41.3600","2. high":"41.5115","3. low":"40.1500","4. close":"40.3500","5. volume":"7465800"},"2011-05-27":{"1. open":"41.1400","2. high":"41.6200","3. low":"40.5700","4. close":"41.0600","5. volume":"10252000"},"2011-05-20":{"1. open":"41.9100","2. high":"42.4500","3. low":"41.3500","4. close":"41.5900","5. volume":"11506600"},"2011-05-13":{"1. open":"41.4500","2. high":"42.5000","3. low":"41.3700","4. close":"42.0400","5. volume":"9823700"},"2011-05-06":{"1. open":"40.7600","2. high":"41.8500","3. low":"40.3900","4. close":"41.4700","5. volume":"13642100"},"2011-04-29":{"1. open":"40.4700","2. high":"42.5000","3. low":"39.7700","4. close":"40.6400","5. volume":"18086200"},"2011-04-21":{"1. open":"39.3100","2. high":"40.6700","3. low":"38.8600","4. close":"40.5500","5. volume":"7286700"},"2011-04-15":{"1. open":"40.2900","2. high":"40.4600","3. low":"39.1500","4. close":"39.5900","5. volume":"11418600"},"2011-04-08":{"1. open":"40.5300","2. high":"40.9100","3. low":"39.6300","4. close":"40.2000","5. volume":"11330900"},"2011-04-01":{"1. open":"39.3400","2. high":"40.5600","3. low":"39.0700","4. close":"40.3500","5. volume":"11558300"},"2011-03-25":{"1. open":"37.6100","2. high":"39.4800","3. low":"37.5100","4. close":"39.2900","5. volume":"12660200"},"2011-03-18":{"1. open":"36.6700","2. high":"37.5500","3. low":"35.9500","4. close":"37.3000","5. volume":"15535600"},"2011-03-11":{"1. open":"37.8200","2. high":"38.8300","3. low":"36.8712","4. close":"37.0200","5. volume":"10608300"},"2011-03-04":{"1. open":"37.5100","2. high":"37.9900","3. low":"37.1000","4. close":"37.6700","5. volume":"11247600"},"2011-02-25":{"1. open":"37.2600","2. high":"37.8000","3. low":"36.3400","4. close":"37.3900","5. volume":"8137100"},"2011-02-18":{"1. open":"36.5700","2. high":"37.8000","3. low":"35.4900","4. close":"37.7900","5. volume":"11685300"},"2011-02-11":{"1. open":"36.7900","2. high":"37.0800","3. low":"35.8100","4. close":"36.6600","5. volume":"9721700"},"2011-02-04":{"1. open":"36.1400","2. high":"36.8000","3. low":"34.4000","4. close":"36.5600","5. volume":"20168900"},"2011-01-28":{"1. open":"36.0300","2. high":"37.0800","3. low":"35.7500","4. close":"36.0000","5. volume":"13372300"},"2011-01-21":{"1. open":"35.4400","2. high":"36.3000","3. low":"35.0400","4. close":"36.1000","5. volume":"15124800"},"2011-01-14":{"1. open":"34.8600","2. high":"35.4500","3. low":"34.5600","4. close":"35.4300","5. volume":"10473200"},"2011-01-07":{"1. open":"34.2600","2. high":"35.0200","3. low":"33.9100","4. close":"34.9300","5. volume":"14695200"},"2010-12-31":{"1. open":"34.2500","2. high":"34.7200","3. low":"34.0600","4. close":"34.1200","5. volume":"7335700"},"2010-12-23":{"1. open":"33.3800","2. high":"34.5000","3. low":"33.1800","4. close":"34.4000","5. volume":"10951300"},"2010-12-17":{"1. open":"32.1500","2. high":"33.4500","3. low":"31.2700","4. close":"33.1800","5. volume":"17094600"},"2010-12-10":{"1. open":"32.1400","2. high":"32.5000","3. low":"31.5800","4. close":"32.1100","5. volume":"10199100"},"2010-12-03":{"1. open":"30.6900","2. high":"32.2000","3. low":"30.5600","4. close":"32.1400","5. volume":"15283900"},"2010-11-26":{"1. open":"30.9400","2. high":"31.2300","3. low":"30.5102","4. close":"30.8900","5. volume":"8572800"},"2010-11-19":{"1. open":"31.3200","2. high":"31.5800","3. low":"30.7000","4. close":"31.0200","5. volume":"14286500"},"2010-11-12":{"1. open":"31.5100","2. high":"31.6900","3. low":"30.6200","4. close":"31.3200","5. volume":"14259500"},"2010-11-05":{"1. open":"32.9200","2. high":"33.3600","3. low":"31.1000","4. close":"31.6800","5. volume":"22474600"},"2010-10-29":{"1. open":"32.1900","2. high":"33.8300","3. low":"31.7100","4. close":"32.8300","5. volume":"19180300"},"2010-10-22":{"1. open":"32.3400","2. high":"32.5300","3. low":"31.3800","4. close":"32.0600","5. volume":"12615000"},"2010-10-15":{"1. open":"31.7600","2. high":"32.6000","3. low":"31.6800","4. close":"32.2900","5. volume":"10981500"},"2010-10-08":{"1. open":"30.8100","2. high":"32.1000","3. low":"30.5500","4. close":"31.6700","5. volume":"15637300"},"2010-10-01":{"1. open":"31.2000","2. high":"31.8200","3. low":"30.2600","4. close":"30.8500","5. volume":"17728200"},"2010-09-24":{"1. open":"30.2000","2. high":"31.3700","3. low":"30.0500","4. close":"31.3500","5. volume":"14372900"},"2010-09-17":{"1. open":"28.7000","2. high":"30.5700","3. low":"28.3800","4. close":"30.1800","5. volume":"16385300"},"2010-09-10":{"1. open":"27.9900","2. high":"28.5100","3. low":"27.7400","4. close":"28.4700","5. volume":"6624200"},"2010-09-03":{"1. open":"27.3600","2. high":"28.7600","3. low":"27.2100","4. close":"28.0800","5. volume":"15367500"},"2010-08-27":{"1. open":"29.0000","2. high":"29.2300","3. low":"27.0900","4. close":"27.7300","5. volume":"13820800"},"2010-08-20":{"1. open":"28.7500","2. high":"29.7550","3. low":"28.5100","4. close":"28.9200","5. volume":"13316400"},"2010-08-13":{"1. open":"30.2600","2. high":"30.3600","3. low":"28.5900","4. close":"29.0400","5. volume":"12570300"},"2010-08-06":{"1. open":"30.2800","2. high":"30.7900","3. low":"29.8300","4. close":"30.2400","5. volume":"19161400"},"2010-07-30":{"1. open":"30.6100","2. high":"30.9000","3. low":"27.8200","4. close":"29.9700","5. volume":"52955500"},"2010-07-23":{"1. open":"32.1800","2. high":"32.4600","3. low":"28.9500","4. close":"30.5300","5. volume":"42501800"},"2010-07-16":{"1. open":"31.7800","2. high":"32.9300","3. low":"31.5800","4. close":"32.1400","5. volume":"14490900"},"2010-07-09":{"1. open":"31.4100","2. high":"32.0700","3. low":"31.0200","4. close":"31.8400","5. volume":"12850100"},"2010-07-02":{"1. open":"32.0100","2. high":"32.6700","3. low":"30.3100","4. close":"30.9200","5. volume":"32627100"},"2010-06-25":{"1. open":"32.8000","2. high":"32.9940","3. low":"31.4300","4. close":"31.8700","5. volume":"17210900"},"2010-06-18":{"1. open":"31.9700","2. high":"33.2700","3. low":"31.9700","4. close":"32.5600","5. volume":"18652900"},"2010-06-11":{"1. open":"30.8300","2. high":"31.9800","3. low":"30.3100","4. close":"31.9200","5. volume":"20518400"},"2010-06-04":{"1. open":"31.0300","2. high":"32.4900","3. low":"30.6600","4. close":"30.7700","5. volume":"19078600"},"2010-05-28":{"1. open":"30.8000","2. high":"31.7000","3. low":"29.5000","4. close":"31.2800","5. volume":"25158600"},"2010-05-21":{"1. open":"31.3400","2. high":"31.9600","3. low":"30.0500","4. close":"30.8300","5. volume":"25242900"},"2010-05-14":{"1. open":"30.9200","2. high":"31.9600","3. low":"30.5700","4. close":"31.3100","5. volume":"18702800"},"2010-05-07":{"1. open":"31.0300","2. high":"31.4300","3. low":"28.9500","4. close":"29.9100","5. volume":"21320500"},"2010-04-30":{"1. open":"31.1000","2. high":"31.6400","3. low":"30.6800","4. close":"30.8500","5. volume":"18282000"},"2010-04-23":{"1. open":"29.8900","2. high":"31.7910","3. low":"29.5800","4. close":"31.1300","5. volume":"27860900"},"2010-04-16":{"1. open":"29.4900","2. high":"29.9200","3. low":"28.9500","4. close":"29.8800","5. volume":"15590500"},"2010-04-09":{"1. open":"28.6300","2. high":"29.5800","3. low":"28.5300","4. close":"29.4700","5. volume":"13015800"},"2010-04-01":{"1. open":"28.7600","2. high":"29.3300","3. low":"28.4200","4. close":"28.5900","5. volume":"10893800"},"2010-03-26":{"1. open":"28.6200","2. high":"29.4300","3. low":"28.3000","4. close":"28.5900","5. volume":"14531500"},"2010-03-19":{"1. open":"27.9000","2. high":"29.1100","3. low":"27.6100","4. close":"28.6800","5. volume":"18279000"},"2010-03-12":{"1. open":"28.4100","2. high":"28.4500","3. low":"27.8000","4. close":"27.9300","5. volume":"11758100"},"2010-03-05":{"1. open":"27.9700","2. high":"28.5000","3. low":"27.7500","4. close":"28.4100","5. volume":"13948700"},"2010-02-26":{"1. open":"28.2400","2. high":"28.2400","3. low":"27.5700","4. close":"28.0400","5. volume":"18520900"},"2010-02-19":{"1. open":"27.6600","2. high":"28.1900","3. low":"27.0600","4. close":"28.1400","5. volume":"15991400"},"2010-02-12":{"1. open":"27.0300","2. high":"27.5700","3. low":"26.6800","4. close":"27.3500","5. volume":"17311700"},"2010-02-05":{"1. open":"27.4600","2. high":"28.6100","3. low":"26.6500","4. close":"27.0100","5. volume":"23741700"},"2010-01-29":{"1. open":"26.7900","2. high":"28.0000","3. low":"26.6800","4. close":"27.2600","5. volume":"23211800"},"2010-01-22":{"1. open":"26.9600","2. high":"27.6100","3. low":"26.0200","4. close":"26.6600","5. volume":"13792400"},"2010-01-15":{"1. open":"26.2400","2. high":"27.2700","3. low":"26.1100","4. close":"26.9200","5. volume":"12337800"},"2010-01-08":{"1. open":"26.2900","2. high":"26.6900","3. low":"25.6600","4. close":"26.0500","5. volume":"18494100"},"2009-12-31":{"1. open":"26.3900","2. high":"26.5600","3. low":"26.0400","4. close":"26.0700","5. volume":"5655000"},"2009-12-24":{"1. open":"26.1800","2. high":"26.5500","3. low":"26.0000","4. close":"26.3400","5. volume":"7758700"},"2009-12-18":{"1. open":"24.8700","2. high":"26.5800","3. low":"24.8700","4. close":"26.0300","5. volume":"24184600"},"2009-12-11":{"1. open":"24.6100","2. high":"25.1700","3. low":"24.1400","4. close":"24.7900","5. volume":"19324400"},"2009-12-04":{"1. open":"24.9200","2. high":"24.9500","3. low":"24.4300","4. close":"24.6700","5. volume":"16124200"},"2009-11-27":{"1. open":"24.8900","2. high":"25.1900","3. low":"24.4900","4. close":"24.8600","5. volume":"10040000"},"2009-11-20":{"1. open":"24.7000","2. high":"24.8500","3. low":"24.1100","4. close":"24.4900","5. volume":"16511600"},"2009-11-13":{"1. open":"23.7500","2. high":"24.6800","3. low":"23.5300","4. close":"24.6000","5. volume":"12568100"},"2009-11-06":{"1. open":"22.2500","2. high":"24.0000","3. low":"22.0700","4. close":"23.6200","5. volume":"18549600"},"2009-10-30":{"1. open":"23.2400","2. high":"23.5500","3. low":"22.1300","4. close":"22.1500","5. volume":"16938100"},"2009-10-23":{"1. open":"23.6400","2. high":"23.8600","3. low":"23.0000","4. close":"23.1900","5. volume":"16322300"},"2009-10-16":{"1. open":"22.6700","2. high":"23.7300","3. low":"22.5300","4. close":"23.5300","5. volume":"14517400"},"2009-10-09":{"1. open":"21.7100","2. high":"22.7200","3. low":"21.4400","4. close":"22.6100","5. volume":"14206100"},"2009-10-02":{"1. open":"21.5400","2. high":"22.8400","3. low":"21.5100","4. close":"21.6200","5. volume":"17064700"},"2009-09-25":{"1. open":"21.7300","2. high":"22.1200","3. low":"21.3500","4. close":"21.5100","5. volume":"10657300"},"2009-09-18":{"1. open":"21.5900","2. high":"21.8000","3. low":"21.2900","4. close":"21.7600","5. volume":"18202900"},"2009-09-11":{"1. open":"21.4000","2. high":"21.7000","3. low":"21.0200","4. close":"21.6600","5. volume":"8664600"},"2009-09-04":{"1. open":"21.1200","2. high":"21.4700","3. low":"20.8700","4. close":"21.2900","5. volume":"10117900"},"2009-08-28":{"1. open":"21.1600","2. high":"21.2800","3. low":"20.7100","4. close":"21.2000","5. volume":"11745000"},"2009-08-21":{"1. open":"20.2200","2. high":"21.2500","3. low":"19.8400","4. close":"21.0500","5. volume":"14164900"},"2009-08-14":{"1. open":"20.3150","2. high":"20.7000","3. low":"20.0700","4. close":"20.4400","5. volume":"12541900"},"2009-08-07":{"1. open":"19.7900","2. high":"20.6200","3. low":"19.2600","4. close":"20.3400","5. volume":"21976800"},"2009-07-31":{"1. open":"19.3400","2. high":"20.7700","3. low":"19.0700","4. close":"19.7200","5. volume":"11780400"},"2009-07-24":{"1. open":"19.0900","2. high":"19.4000","3. low":"18.6000","4. close":"19.3100","5. volume":"10663500"},"2009-07-17":{"1. open":"17.7900","2. high":"18.9900","3. low":"17.6900","4. close":"18.9800","5. volume":"15659900"},"2009-07-10":{"1. open":"17.7300","2. high":"18.4400","3. low":"17.5400","4. close":"17.7200","5. volume":"15029300"},"2009-07-02":{"1. open":"18.0800","2. high":"18.4100","3. low":"17.5900","4. close":"17.7400","5. volume":"11911400"},"2009-06-26":{"1. open":"18.2000","2. high":"18.4400","3. low":"17.3800","4. close":"18.1700","5. volume":"20299500"},"2009-06-19":{"1. open":"36.3100","2. high":"36.4500","3. low":"17.7400","4. close":"18.3100","5. volume":"14583900"},"2009-06-12":{"1. open":"36.1800","2. high":"37.6200","3. low":"35.6000","4. close":"36.5500","5. volume":"7617400"},"2009-06-05":{"1. open":"37.3900","2. high":"37.9800","3. low":"35.3600","4. close":"36.3800","5. volume":"12699900"},"2009-05-29":{"1. open":"36.5400","2. high":"37.5800","3. low":"36.4000","4. close":"37.1000","5. volume":"5540600"},"2009-05-22":{"1. open":"35.1800","2. high":"37.2900","3. low":"34.6500","4. close":"36.5800","5. volume":"8794000"},"2009-05-15":{"1. open":"35.7500","2. high":"36.2700","3. low":"34.9000","4. close":"34.9900","5. volume":"8065400"},"2009-05-08":{"1. open":"34.2600","2. high":"36.6800","3. low":"34.2300","4. close":"36.2900","5. volume":"9237900"},"2009-05-01":{"1. open":"34.1300","2. high":"35.6200","3. low":"33.5000","4. close":"34.3500","5. volume":"11497400"},"2009-04-24":{"1. open":"34.7000","2. high":"36.9700","3. low":"33.8200","4. close":"34.5800","5. volume":"13274500"},"2009-04-17":{"1. open":"32.9800","2. high":"35.8300","3. low":"32.3700","4. close":"34.8400","5. volume":"7778800"},"2009-04-09":{"1. open":"32.5000","2. high":"33.4000","3. low":"32.1200","4. close":"33.0800","5. volume":"4885200"},"2009-04-03":{"1. open":"32.1000","2. high":"33.8850","3. low":"31.5000","4. close":"32.7700","5. volume":"9036800"},"2009-03-27":{"1. open":"31.0300","2. high":"32.7400","3. low":"30.7200","4. close":"32.2900","5. volume":"8717900"},"2009-03-20":{"1. open":"31.5400","2. high":"31.7100","3. low":"30.0100","4. close":"30.5800","5. volume":"10613800"},"2009-03-13":{"1. open":"30.4000","2. high":"31.2800","3. low":"27.5000","4. close":"31.2500","5. volume":"19653600"},"2009-03-06":{"1. open":"31.2700","2. high":"31.7200","3. low":"30.0275","4. close":"30.7100","5. volume":"12952000"},"2009-02-27":{"1. open":"35.9000","2. high":"35.9600","3. low":"31.6500","4. close":"31.7600","5. volume":"12862400"},"2009-02-20":{"1. open":"36.7500","2. high":"36.7500","3. low":"35.0200","4. close":"35.6500","5. volume":"7437400"},"2009-02-13":{"1. open":"38.7500","2. high":"38.7600","3. low":"36.4300","4. close":"37.3500","5. volume":"7924900"},"2009-02-06":{"1. open":"35.7200","2. high":"39.0900","3. low":"35.7200","4. close":"38.7600","5. volume":"10401100"},"2009-01-30":{"1. open":"36.1500","2. high":"37.8400","3. low":"35.9800","4. close":"36.3200","5. volume":"11857800"},"2009-01-23":{"1. open":"37.5000","2. high":"38.4700","3. low":"35.7500","4. close":"36.0700","5. volume":"15738200"},"2009-01-16":{"1. open":"35.8000","2. high":"37.8100","3. low":"35.5000","4. close":"37.4100","5. volume":"9662700"},"2009-01-09":{"1. open":"35.5400","2. high":"37.0500","3. low":"34.5700","4. close":"35.9300","5. volume":"9201800"},"2009-01-02":{"1. open":"34.3800","2. high":"36.0550","3. low":"33.8700","4. close":"35.5700","5. volume":"5065200"},"2008-12-26":{"1. open":"34.7400","2. high":"34.7600","3. low":"33.7900","4. close":"34.4100","5. volume":"2623800"},"2008-12-19":{"1. open":"33.0900","2. high":"35.2800","3. low":"32.4200","4. close":"34.4000","5. volume":"10623800"},"2008-12-12":{"1. open":"31.3700","2. high":"33.2000","3. low":"29.6200","4. close":"33.0600","5. volume":"13270000"},"2008-12-05":{"1. open":"30.2000","2. high":"31.2900","3. low":"28.8800","4. close":"30.7500","5. volume":"9495400"},"2008-11-28":{"1. open":"29.5000","2. high":"31.6300","3. low":"29.0400","4. close":"31.3500","5. volume":"7244900"},"2008-11-21":{"1. open":"29.7300","2. high":"31.2400","3. low":"26.6600","4. close":"29.7500","5. volume":"15459000"},"2008-11-14":{"1. open":"31.0400","2. high":"31.2000","3. low":"28.0500","4. close":"29.9800","5. volume":"10676100"},"2008-11-07":{"1. open":"31.2600","2. high":"31.8300","3. low":"29.7200","4. close":"30.2500","5. volume":"9495200"},"2008-10-31":{"1. open":"30.2800","2. high":"33.0000","3. low":"28.5200","4. close":"31.2700","5. volume":"16464500"},"2008-10-24":{"1. open":"30.8200","2. high":"33.8900","3. low":"29.7700","4. close":"30.6600","5. volume":"10549000"},"2008-10-17":{"1. open":"29.7700","2. high":"33.2400","3. low":"28.7400","4. close":"31.0200","5. volume":"10655300"},"2008-10-10":{"1. open":"36.1400","2. high":"36.5100","3. low":"27.8000","4. close":"29.4500","5. volume":"12565400"},"2008-10-03":{"1. open":"37.8600","2. high":"38.9300","3. low":"36.2000","4. close":"37.0000","5. volume":"10592400"},"2008-09-26":{"1. open":"39.3600","2. high":"40.1900","3. low":"36.5900","4. close":"38.2900","5. volume":"8612400"},"2008-09-19":{"1. open":"40.4400","2. high":"41.1800","3. low":"37.1800","4. close":"39.4300","5. volume":"13092600"},"2008-09-12":{"1. open":"41.8400","2. high":"41.9000","3. low":"40.2200","4. close":"41.0600","5. volume":"10082900"},"2008-09-05":{"1. open":"41.2900","2. high":"42.2500","3. low":"40.0200","4. close":"40.5500","5. volume":"5348700"},"2008-08-29":{"1. open":"41.8700","2. high":"42.0900","3. low":"40.9500","4. close":"41.0100","5. volume":"5793800"},"2008-08-22":{"1. open":"42.5600","2. high":"42.5600","3. low":"40.8700","4. close":"42.0900","5. volume":"6437500"},"2008-08-15":{"1. open":"42.7600","2. high":"43.4300","3. low":"41.5900","4. close":"42.3900","5. volume":"6951200"},"2008-08-08":{"1. open":"42.0200","2. high":"43.3200","3. low":"39.9700","4. close":"43.1500","5. volume":"11852100"},"2008-08-01":{"1. open":"42.1600","2. high":"42.7700","3. low":"41.3100","4. close":"42.0400","5. volume":"7046700"},"2008-07-25":{"1. open":"37.7500","2. high":"44.4500","3. low":"37.4500","4. close":"42.1900","5. volume":"10687200"},"2008-07-18":{"1. open":"38.4000","2. high":"38.8900","3. low":"36.7000","4. close":"37.8600","5. volume":"7309900"},"2008-07-11":{"1. open":"39.4000","2. high":"40.0200","3. low":"38.0600","4. close":"38.3600","5. volume":"7110600"},"2008-07-03":{"1. open":"39.0800","2. high":"40.4400","3. low":"38.8200","4. close":"39.0400","5. volume":"4158800"},"2008-06-27":{"1. open":"39.7800","2. high":"40.4200","3. low":"38.9400","4. close":"39.2100","5. volume":"5486100"},"2008-06-20":{"1. open":"40.6200","2. high":"41.4500","3. low":"39.3000","4. close":"39.7800","5. volume":"6287900"},"2008-06-13":{"1. open":"41.2000","2. high":"41.3800","3. low":"39.6100","4. close":"40.9800","5. volume":"6357500"},"2008-06-06":{"1. open":"41.1800","2. high":"42.3600","3. low":"40.7100","4. close":"41.1200","5. volume":"6820500"},"2008-05-30":{"1. open":"41.0800","2. high":"41.9300","3. low":"41.0800","4. close":"41.3300","5. volume":"4404000"},"2008-05-23":{"1. open":"41.0600","2. high":"41.9000","3. low":"40.7900","4. close":"41.1400","5. volume":"4210000"},"2008-05-16":{"1. open":"41.1800","2. high":"41.5900","3. low":"40.6700","4. close":"41.1300","5. volume":"5607800"},"2008-05-09":{"1. open":"41.4200","2. high":"42.9800","3. low":"40.7900","4. close":"41.1900","5. volume":"6402600"},"2008-05-02":{"1. open":"41.0100","2. high":"41.8900","3. low":"40.5500","4. close":"41.4500","5. volume":"7489400"},"2008-04-25":{"1. open":"40.9500","2. high":"42.4400","3. low":"38.9100","4. close":"40.9300","5. volume":"10086900"},"2008-04-18":{"1. open":"39.3900","2. high":"40.8900","3. low":"39.0200","4. close":"40.7700","5. volume":"6158000"},"2008-04-11":{"1. open":"41.2700","2. high":"41.4000","3. low":"39.0000","4. close":"39.3500","5. volume":"6120300"},"2008-04-04":{"1. open":"40.9800","2. high":"41.8500","3. low":"39.7100","4. close":"40.9100","5. volume":"7140000"},"2008-03-28":{"1. open":"41.5600","2. high":"41.9500","3. low":"40.7600","4. close":"40.9900","5. volume":"6859000"},"2008-03-20":{"1. open":"38.4200","2. high":"42.6700","3. low":"38.4200","4. close":"41.4300","5. volume":"8334200"},"2008-03-14":{"1. open":"41.2900","2. high":"41.6600","3. low":"38.7600","4. close":"39.1800","5. volume":"11346900"},"2008-03-07":{"1. open":"41.3700","2. high":"41.7900","3. low":"39.7900","4. close":"41.1300","5. volume":"6715100"},"2008-02-29":{"1. open":"43.2300","2. high":"43.7900","3. low":"41.2900","4. close":"41.7200","5. volume":"6366900"},"2008-02-22":{"1. open":"44.0300","2. high":"44.1300","3. low":"42.4300","4. close":"43.0700","5. volume":"5744300"},"2008-02-15":{"1. open":"44.9400","2. high":"45.4000","3. low":"43.1900","4. close":"43.6200","5. volume":"6981400"},"2008-02-08":{"1. open":"46.8900","2. high":"47.4900","3. low":"44.8100","4. close":"45.3300","5. volume":"7175500"},"2008-02-01":{"1. open":"44.9400","2. high":"48.6000","3. low":"44.1900","4. close":"46.6300","5. volume":"9335200"},"2008-01-25":{"1. open":"46.1300","2. high":"47.4200","3. low":"43.2400","4. close":"44.9700","5. volume":"8168900"},"2008-01-18":{"1. open":"47.4450","2. high":"47.6100","3. low":"45.7500","4. close":"46.5900","5. volume":"9813400"},"2008-01-11":{"1. open":"43.8200","2. high":"48.0000","3. low":"43.7000","4. close":"47.3100","5. volume":"8345200"},"2008-01-04":{"1. open":"45.3000","2. high":"45.4200","3. low":"43.6400","4. close":"43.8000","5. volume":"3980400"},"2007-12-28":{"1. open":"45.0700","2. high":"46.0600","3. low":"44.6000","4. close":"45.5000","5. volume":"2799400"},"2007-12-21":{"1. open":"42.7300","2. high":"44.7500","3. low":"42.7300","4. close":"44.5500","5. volume":"4569400"},"2007-12-14":{"1. open":"45.8900","2. high":"46.0100","3. low":"42.8000","4. close":"42.8300","5. volume":"7228000"},"2007-12-07":{"1. open":"45.0000","2. high":"46.1200","3. low":"43.2600","4. close":"45.8900","5. volume":"8761200"},"2007-11-30":{"1. open":"43.7300","2. high":"45.9200","3. low":"42.2100","4. close":"45.3700","5. volume":"8666700"},"2007-11-23":{"1. open":"44.6000","2. high":"44.7300","3. low":"43.3200","4. close":"43.8900","5. volume":"5196300"},"2007-11-16":{"1. open":"43.3800","2. high":"45.1300","3. low":"43.3800","4. close":"44.9800","5. volume":"7541000"},"2007-11-09":{"1. open":"43.5000","2. high":"44.9800","3. low":"42.9000","4. close":"43.7200","5. volume":"8015000"},"2007-11-02":{"1. open":"44.9100","2. high":"48.4800","3. low":"43.4700","4. close":"43.8800","5. volume":"8436500"},"2007-10-26":{"1. open":"44.3300","2. high":"45.3300","3. low":"43.2700","4. close":"44.5400","5. volume":"5370600"},"2007-10-19":{"1. open":"45.1900","2. high":"45.9800","3. low":"44.0000","4. close":"44.2700","5. volume":"4435600"},"2007-10-12":{"1. open":"45.9000","2. high":"46.5900","3. low":"42.3500","4. close":"45.4500","5. volume":"5451700"},"2007-10-05":{"1. open":"44.9800","2. high":"46.5200","3. low":"44.3500","4. close":"45.8400","5. volume":"5496500"},"2007-09-28":{"1. open":"45.0800","2. high":"45.5900","3. low":"44.2700","4. close":"45.3300","5. volume":"4431800"},"2007-09-21":{"1. open":"43.0000","2. high":"46.2500","3. low":"43.0000","4. close":"45.3200","5. volume":"7632500"},"2007-09-14":{"1. open":"47.6000","2. high":"47.6000","3. low":"44.0300","4. close":"44.6500","5. volume":"6912500"},"2007-09-07":{"1. open":"48.0000","2. high":"48.1000","3. low":"46.5000","4. close":"47.1000","5. volume":"4850500"},"2007-08-31":{"1. open":"47.8200","2. high":"49.1100","3. low":"46.5700","4. close":"47.8500","5. volume":"7553300"},"2007-08-24":{"1. open":"46.1300","2. high":"48.6400","3. low":"45.1000","4. close":"47.7400","5. volume":"8591900"},"2007-08-17":{"1. open":"45.0000","2. high":"47.5900","3. low":"43.7300","4. close":"46.1500","5. volume":"10334600"},"2007-08-10":{"1. open":"46.2600","2. high":"47.6700","3. low":"42.6700","4. close":"45.5600","5. volume":"13642600"},"2007-08-03":{"1. open":"46.2600","2. high":"48.0000","3. low":"45.5000","4. close":"46.0900","5. volume":"13692400"},"2007-07-27":{"1. open":"48.6800","2. high":"49.9600","3. low":"46.2500","4. close":"46.3300","5. volume":"6435400"},"2007-07-20":{"1. open":"49.8800","2. high":"51.1000","3. low":"48.2200","4. close":"48.3300","5. volume":"6084800"},"2007-07-13":{"1. open":"49.9400","2. high":"50.3200","3. low":"48.5800","4. close":"50.1600","5. volume":"5473100"},"2007-07-06":{"1. open":"49.7400","2. high":"50.5800","3. low":"49.2900","4. close":"49.9300","5. volume":"2744600"},"2007-06-29":{"1. open":"49.5000","2. high":"50.2300","3. low":"49.0900","4. close":"49.4700","5. volume":"4567000"},"2007-06-22":{"1. open":"50.4100","2. high":"50.5200","3. low":"49.3400","4. close":"49.4000","5. volume":"5233700"},"2007-06-15":{"1. open":"51.0050","2. high":"51.6600","3. low":"50.2700","4. close":"50.4900","5. volume":"6936200"},"2007-06-08":{"1. open":"51.2200","2. high":"51.4900","3. low":"50.1300","4. close":"51.2000","5. volume":"5446400"},"2007-06-01":{"1. open":"53.0800","2. high":"53.0800","3. low":"50.9200","4. close":"51.3400","5. volume":"6628700"},"2007-05-25":{"1. open":"50.9600","2. high":"52.6700","3. low":"50.6100","4. close":"52.2000","5. volume":"7462300"},"2007-05-18":{"1. open":"50.0000","2. high":"51.4700","3. low":"48.7900","4. close":"51.3200","5. volume":"9791700"},"2007-05-11":{"1. open":"51.7200","2. high":"52.0500","3. low":"49.7100","4. close":"50.0000","5. volume":"7410000"},"2007-05-04":{"1. open":"50.6400","2. high":"51.7800","3. low":"49.9500","4. close":"51.3200","5. volume":"7090700"},"2007-04-27":{"1. open":"54.9400","2. high":"56.5600","3. low":"49.8000","4. close":"50.3300","5. volume":"13573200"},"2007-04-20":{"1. open":"54.5000","2. high":"55.1500","3. low":"54.0700","4. close":"54.7600","5. volume":"4247100"},"2007-04-13":{"1. open":"54.0200","2. high":"54.4200","3. low":"53.2500","4. close":"54.3500","5. volume":"4579400"},"2007-04-05":{"1. open":"53.1100","2. high":"54.2400","3. low":"52.7500","4. close":"54.0100","5. volume":"3573500"},"2007-03-30":{"1. open":"53.9100","2. high":"53.9100","3. low":"52.0400","4. close":"52.7500","5. volume":"6663400"},"2007-03-23":{"1. open":"52.1100","2. high":"54.1700","3. low":"52.0000","4. close":"53.8900","5. volume":"5630000"},"2007-03-16":{"1. open":"52.8600","2. high":"53.4900","3. low":"50.2200","4. close":"51.8600","5. volume":"7138800"},"2007-03-09":{"1. open":"51.3450","2. high":"53.2800","3. low":"51.0000","4. close":"53.0900","5. volume":"6064300"},"2007-03-02":{"1. open":"54.9000","2. high":"54.9600","3. low":"51.0400","4. close":"51.6800","5. volume":"6118600"},"2007-02-23":{"1. open":"54.8800","2. high":"55.2000","3. low":"54.4500","4. close":"55.0100","5. volume":"2802900"},"2007-02-16":{"1. open":"53.5100","2. high":"55.5200","3. low":"53.0600","4. close":"54.9000","5. volume":"5917800"},"2007-02-09":{"1. open":"52.2900","2. high":"53.5500","3. low":"52.0700","4. close":"53.5100","5. volume":"4799300"},"2007-02-02":{"1. open":"52.7200","2. high":"52.8800","3. low":"51.5400","4. close":"52.3300","5. volume":"7600500"},"2007-01-26":{"1. open":"48.0100","2. high":"54.4000","3. low":"47.4000","4. close":"52.8300","5. volume":"13484100"},"2007-01-19":{"1. open":"47.5700","2. high":"48.8000","3. low":"47.3200","4. close":"48.0100","5. volume":"4889700"},"2007-01-12":{"1. open":"46.4500","2. high":"47.5700","3. low":"45.9000","4. close":"47.3700","5. volume":"7190800"},"2007-01-05":{"1. open":"45.0800","2. high":"46.4100","3. low":"45.0800","4. close":"45.7300","5. volume":"6127900"},"2006-12-29":{"1. open":"44.6500","2. high":"45.2200","3. low":"44.4500","4. close":"44.9600","5. volume":"4896600"},"2006-12-22":{"1. open":"46.3900","2. high":"46.4500","3. low":"44.2900","4. close":"44.6600","5. volume":"10744700"},"2006-12-15":{"1. open":"46.0500","2. high":"48.0200","3. low":"45.8200","4. close":"46.4300","5. volume":"8706000"},"2006-12-08":{"1. open":"45.7750","2. high":"47.0000","3. low":"45.6900","4. close":"46.0000","5. volume":"6853400"},"2006-12-01":{"1. open":"45.0800","2. high":"46.2400","3. low":"44.8200","4. close":"45.7300","5. volume":"6809100"},"2006-11-24":{"1. open":"46.8500","2. high":"46.9100","3. low":"45.2000","4. close":"45.2200","5. volume":"4278400"},"2006-11-17":{"1. open":"45.0000","2. high":"47.6000","3. low":"44.6300","4. close":"46.9700","5. volume":"8657100"},"2006-11-10":{"1. open":"45.4000","2. high":"46.3600","3. low":"44.8500","4. close":"45.1300","5. volume":"8275500"},"2006-11-03":{"1. open":"46.7300","2. high":"48.0000","3. low":"45.1800","4. close":"45.4200","5. volume":"11138600"},"2006-10-27":{"1. open":"46.5900","2. high":"47.6400","3. low":"45.8700","4. close":"46.7300","5. volume":"5072000"},"2006-10-20":{"1. open":"46.1500","2. high":"46.9400","3. low":"45.9900","4. close":"46.6900","5. volume":"3692200"},"2006-10-13":{"1. open":"45.8400","2. high":"46.7100","3. low":"45.6500","4. close":"46.1500","5. volume":"5875600"},"2006-10-06":{"1. open":"45.3800","2. high":"46.7800","3. low":"44.9400","4. close":"45.9500","5. volume":"7101500"},"2006-09-29":{"1. open":"44.3500","2. high":"45.4900","3. low":"44.0000","4. close":"45.2000","5. volume":"6071400"},"2006-09-22":{"1. open":"46.1100","2. high":"46.9200","3. low":"43.3300","4. close":"44.4300","5. volume":"7937200"},"2006-09-15":{"1. open":"44.9600","2. high":"46.5200","3. low":"44.8000","4. close":"46.4100","5. volume":"4681000"},"2006-09-08":{"1. open":"45.4800","2. high":"45.4900","3. low":"44.5200","4. close":"44.9500","5. volume":"2873200"},"2006-09-01":{"1. open":"43.8500","2. high":"45.4500","3. low":"43.6800","4. close":"45.4400","5. volume":"5188300"},"2006-08-25":{"1. open":"43.7000","2. high":"44.4100","3. low":"42.7900","4. close":"43.7200","5. volume":"4577900"},"2006-08-18":{"1. open":"43.6200","2. high":"43.7900","3. low":"43.3000","4. close":"43.6700","5. volume":"6124100"},"2006-08-11":{"1. open":"43.4300","2. high":"43.4500","3. low":"42.2200","4. close":"43.3100","5. volume":"6000000"},"2006-08-04":{"1. open":"42.9500","2. high":"43.7400","3. low":"42.6100","4. close":"42.7200","5. volume":"7964400"},"2006-07-28":{"1. open":"42.5000","2. high":"43.9700","3. low":"42.4500","4. close":"43.0000","5. volume":"7755600"},"2006-07-21":{"1. open":"41.6900","2. high":"42.6200","3. low":"40.8900","4. close":"41.9800","5. volume":"5189700"},"2006-07-14":{"1. open":"42.2500","2. high":"42.2500","3. low":"41.1100","4. close":"41.6900","5. volume":"4810100"},"2006-07-07":{"1. open":"41.9400","2. high":"42.3700","3. low":"41.0800","4. close":"42.2500","5. volume":"5056000"},"2006-06-30":{"1. open":"41.0900","2. high":"42.3400","3. low":"40.7000","4. close":"41.9200","5. volume":"7540700"},"2006-06-23":{"1. open":"41.4900","2. high":"41.6600","3. low":"40.1500","4. close":"40.9700","5. volume":"6669800"},"2006-06-16":{"1. open":"41.8301","2. high":"42.2000","3. low":"40.6200","4. close":"41.3000","5. volume":"5569000"},"2006-06-09":{"1. open":"43.5500","2. high":"43.8000","3. low":"41.8500","4. close":"41.9400","5. volume":"10856100"},"2006-06-02":{"1. open":"44.0000","2. high":"44.4400","3. low":"43.2300","4. close":"43.7300","5. volume":"4553100"},"2006-05-26":{"1. open":"43.3500","2. high":"44.8500","3. low":"43.2300","4. close":"44.2500","5. volume":"6492700"},"2006-05-19":{"1. open":"44.0000","2. high":"44.8000","3. low":"43.2800","4. close":"43.4500","5. volume":"6532800"},"2006-05-12":{"1. open":"43.8200","2. high":"44.4600","3. low":"43.7700","4. close":"43.9800","5. volume":"5697000"},"2006-05-05":{"1. open":"43.1500","2. high":"44.0300","3. low":"42.9900","4. close":"43.9200","5. volume":"9285500"},"2006-04-28":{"1. open":"46.8200","2. high":"47.5100","3. low":"42.9200","4. close":"43.1500","5. volume":"15795300"},"2006-04-21":{"1. open":"46.1200","2. high":"48.0000","3. low":"45.8500","4. close":"46.8900","5. volume":"7785900"},"2006-04-13":{"1. open":"45.9700","2. high":"46.8000","3. low":"45.5300","4. close":"46.1200","5. volume":"6177200"},"2006-04-07":{"1. open":"48.4000","2. high":"48.9600","3. low":"46.0000","4. close":"46.1000","5. volume":"7912400"},"2006-03-31":{"1. open":"47.0800","2. high":"48.6400","3. low":"46.5100","4. close":"48.2700","5. volume":"5746200"},"2006-03-24":{"1. open":"47.6700","2. high":"48.0400","3. low":"46.8000","4. close":"47.3000","5. volume":"5056900"},"2006-03-17":{"1. open":"46.0000","2. high":"47.8400","3. low":"45.5100","4. close":"47.7100","5. volume":"6720700"},"2006-03-10":{"1. open":"45.5000","2. high":"46.2500","3. low":"44.9200","4. close":"45.7600","5. volume":"6142900"},"2006-03-03":{"1. open":"45.9700","2. high":"46.7800","3. low":"45.4800","4. close":"45.5000","5. volume":"7506700"},"2006-02-24":{"1. open":"43.9200","2. high":"46.3000","3. low":"43.8800","4. close":"45.8800","5. volume":"6157800"},"2006-02-17":{"1. open":"43.5000","2. high":"44.4100","3. low":"43.3800","4. close":"43.9700","5. volume":"5789600"},"2006-02-10":{"1. open":"43.5400","2. high":"43.9100","3. low":"42.7900","4. close":"43.6600","5. volume":"7529500"},"2006-02-03":{"1. open":"43.5000","2. high":"44.0200","3. low":"42.1300","4. close":"43.6000","5. volume":"8809400"},"2006-01-27":{"1. open":"40.9000","2. high":"44.4000","3. low":"40.6600","4. close":"44.0800","5. volume":"11660200"},"2006-01-20":{"1. open":"41.4200","2. high":"41.4500","3. low":"40.6900","4. close":"41.0300","5. volume":"5862400"},"2006-01-13":{"1. open":"40.8600","2. high":"41.5300","3. low":"40.3100","4. close":"41.4200","5. volume":"6768700"},"2006-01-06":{"1. open":"41.3900","2. high":"42.4800","3. low":"40.5800","4. close":"41.0000","5. volume":"6906600"},"2005-12-30":{"1. open":"81.5500","2. high":"84.3500","3. low":"40.9700","4. close":"41.4000","5. volume":"3478500"},"2005-12-23":{"1. open":"81.8000","2. high":"82.4000","3. low":"80.8000","4. close":"81.8000","5. volume":"3831500"},"2005-12-16":{"1. open":"81.2500","2. high":"82.3100","3. low":"80.9000","4. close":"81.9300","5. volume":"3913900"},"2005-12-09":{"1. open":"79.5600","2. high":"81.9600","3. low":"79.5000","4. close":"81.4300","5. volume":"4948900"},"2005-12-02":{"1. open":"79.6400","2. high":"80.6900","3. low":"78.5900","4. close":"79.4600","5. volume":"4810600"},"2005-11-25":{"1. open":"78.2000","2. high":"79.7100","3. low":"78.1600","4. close":"79.3900","5. volume":"2594700"},"2005-11-18":{"1. open":"77.0000","2. high":"78.4700","3. low":"76.3000","4. close":"78.0000","5. volume":"4040200"},"2005-11-11":{"1. open":"76.7500","2. high":"77.3900","3. low":"76.1600","4. close":"76.9800","5. volume":"4302600"},"2005-11-04":{"1. open":"75.4400","2. high":"78.1900","3. low":"74.9800","4. close":"76.5000","5. volume":"5900300"},"2005-10-28":{"1. open":"75.5600","2. high":"76.4900","3. low":"73.3200","4. close":"75.3400","5. volume":"6247500"},"2005-10-21":{"1. open":"74.9000","2. high":"76.7800","3. low":"74.3100","4. close":"75.0600","5. volume":"5183400"},"2005-10-14":{"1. open":"76.1700","2. high":"76.2800","3. low":"74.0000","4. close":"74.8100","5. volume":"4323800"},"2005-10-07":{"1. open":"77.5000","2. high":"78.6000","3. low":"75.2200","4. close":"75.9800","5. volume":"4961800"},"2005-09-30":{"1. open":"77.0000","2. high":"79.0500","3. low":"76.4000","4. close":"77.3000","5. volume":"3983000"},"2005-09-23":{"1. open":"77.4000","2. high":"78.7600","3. low":"76.0500","4. close":"77.1000","5. volume":"4874700"},"2005-09-16":{"1. open":"74.7300","2. high":"78.7200","3. low":"74.5000","4. close":"78.2200","5. volume":"6036100"},"2005-09-09":{"1. open":"74.0500","2. high":"75.3200","3. low":"73.5000","4. close":"74.9500","5. volume":"3173800"},"2005-09-02":{"1. open":"72.6000","2. high":"75.1600","3. low":"72.4300","4. close":"73.8300","5. volume":"3747100"},"2005-08-26":{"1. open":"72.0000","2. high":"73.0900","3. low":"69.9600","4. close":"72.6900","5. volume":"3984900"},"2005-08-19":{"1. open":"72.8000","2. high":"73.2900","3. low":"71.8300","4. close":"71.8900","5. volume":"2311900"},"2005-08-12":{"1. open":"72.3000","2. high":"73.4400","3. low":"72.0100","4. close":"73.0000","5. volume":"3243200"},"2005-08-05":{"1. open":"71.7900","2. high":"72.2400","3. low":"71.4200","4. close":"72.0500","5. volume":"3545100"},"2005-07-29":{"1. open":"69.5200","2. high":"72.3000","3. low":"69.0800","4. close":"71.7900","5. volume":"5168600"},"2005-07-22":{"1. open":"70.3900","2. high":"71.9800","3. low":"68.7400","4. close":"69.3100","5. volume":"8259900"},"2005-07-15":{"1. open":"71.0000","2. high":"71.2500","3. low":"69.8500","4. close":"70.8200","5. volume":"4799500"},"2005-07-08":{"1. open":"69.4900","2. high":"70.8900","3. low":"68.5500","4. close":"70.8900","5. volume":"3541600"},"2005-07-01":{"1. open":"66.2900","2. high":"69.7400","3. low":"65.9800","4. close":"69.3500","5. volume":"5609400"},"2005-06-24":{"1. open":"67.9300","2. high":"68.8300","3. low":"66.8500","4. close":"67.0500","5. volume":"4911100"},"2005-06-17":{"1. open":"64.4000","2. high":"68.3400","3. low":"64.3400","4. close":"68.1700","5. volume":"4916900"},"2005-06-10":{"1. open":"64.9100","2. high":"65.6700","3. low":"63.8900","4. close":"64.5600","5. volume":"6370100"},"2005-06-03":{"1. open":"65.2200","2. high":"65.5100","3. low":"64.3200","4. close":"65.1000","5. volume":"4875100"},"2005-05-27":{"1. open":"65.6900","2. high":"66.2500","3. low":"64.7100","4. close":"65.0200","5. volume":"4923400"},"2005-05-20":{"1. open":"63.9500","2. high":"66.7000","3. low":"63.9400","4. close":"65.9700","5. volume":"4563900"},"2005-05-13":{"1. open":"62.9600","2. high":"64.7300","3. low":"62.7600","4. close":"63.9200","5. volume":"4526700"},"2005-05-06":{"1. open":"61.1700","2. high":"63.4200","3. low":"60.8200","4. close":"62.9900","5. volume":"5204700"},"2005-04-29":{"1. open":"60.0000","2. high":"61.4300","3. low":"59.7700","4. close":"61.2800","5. volume":"7798300"},"2005-04-22":{"1. open":"60.5100","2. high":"61.8000","3. low":"58.6000","4. close":"60.0000","5. volume":"11856900"},"2005-04-15":{"1. open":"57.8300","2. high":"61.5500","3. low":"57.8300","4. close":"60.5000","5. volume":"8573200"},"2005-04-08":{"1. open":"56.7000","2. high":"59.5000","3. low":"56.7000","4. close":"57.8300","5. volume":"7718900"},"2005-04-01":{"1. open":"55.0000","2. high":"58.0000","3. low":"52.9500","4. close":"56.3600","5. volume":"14796000"},"2005-03-24":{"1. open":"60.7000","2. high":"61.8100","3. low":"60.3000","4. close":"61.1100","5. volume":"2129200"},"2005-03-18":{"1. open":"60.5000","2. high":"62.2800","3. low":"59.1900","4. close":"60.8600","5. volume":"4624800"},"2005-03-11":{"1. open":"62.5000","2. high":"63.4000","3. low":"60.1000","4. close":"60.3100","5. volume":"5186700"},"2005-03-04":{"1. open":"60.0000","2. high":"62.8800","3. low":"59.7400","4. close":"62.6500","5. volume":"5170700"},"2005-02-25":{"1. open":"59.5500","2. high":"60.4300","3. low":"58.5800","4. close":"60.0000","5. volume":"5520000"},"2005-02-18":{"1. open":"60.3000","2. high":"61.9000","3. low":"59.4900","4. close":"60.0000","5. volume":"8292200"},"2005-02-11":{"1. open":"59.6000","2. high":"60.5100","3. low":"59.0000","4. close":"60.3400","5. volume":"4615300"},"2005-02-04":{"1. open":"58.5000","2. high":"60.8000","3. low":"58.0000","4. close":"59.6000","5. volume":"6998700"},"2005-01-28":{"1. open":"57.0200","2. high":"58.7900","3. low":"55.9000","4. close":"58.3700","5. volume":"8598700"},"2005-01-21":{"1. open":"57.2800","2. high":"58.4100","3. low":"56.8300","4. close":"57.0100","5. volume":"5014600"},"2005-01-14":{"1. open":"57.9000","2. high":"58.9500","3. low":"56.9500","4. close":"57.2700","5. volume":"6498400"},"2005-01-07":{"1. open":"58.6800","2. high":"58.7800","3. low":"57.1200","4. close":"57.9000","5. volume":"6665100"},"2004-12-31":{"1. open":"56.9400","2. high":"59.1100","3. low":"56.2400","4. close":"58.6800","5. volume":"6743200"},"2004-12-23":{"1. open":"61.7500","2. high":"62.5100","3. low":"56.6000","4. close":"56.8400","5. volume":"8971600"},"2004-12-17":{"1. open":"62.7900","2. high":"63.4800","3. low":"60.5500","4. close":"61.6700","5. volume":"6681800"},"2004-12-10":{"1. open":"60.0500","2. high":"64.0200","3. low":"60.0500","4. close":"63.6800","5. volume":"7305200"},"2004-12-03":{"1. open":"58.1500","2. high":"60.6800","3. low":"57.9500","4. close":"59.8300","5. volume":"11607100"},"2004-11-26":{"1. open":"57.1000","2. high":"58.4900","3. low":"57.1000","4. close":"57.9200","5. volume":"3327400"},"2004-11-19":{"1. open":"59.1000","2. high":"59.1000","3. low":"57.1500","4. close":"57.3000","5. volume":"4865100"},"2004-11-12":{"1. open":"57.9900","2. high":"59.4900","3. low":"57.7100","4. close":"59.0000","5. volume":"7224100"},"2004-11-05":{"1. open":"55.0400","2. high":"57.7500","3. low":"54.4600","4. close":"57.5300","5. volume":"11749800"},"2004-10-29":{"1. open":"51.7000","2. high":"55.8600","3. low":"50.9200","4. close":"55.0400","5. volume":"10330400"},"2004-10-22":{"1. open":"52.6000","2. high":"53.4900","3. low":"50.2300","4. close":"51.7500","5. volume":"11502700"},"2004-10-15":{"1. open":"52.9300","2. high":"53.5000","3. low":"52.3500","4. close":"52.6000","5. volume":"5821500"},"2004-10-08":{"1. open":"54.0000","2. high":"54.6800","3. low":"52.7100","4. close":"52.9200","5. volume":"8834700"},"2004-10-01":{"1. open":"54.9000","2. high":"55.0200","3. low":"52.8100","4. close":"55.0200","5. volume":"6207000"},"2004-09-24":{"1. open":"55.0000","2. high":"55.2000","3. low":"54.0300","4. close":"54.9200","5. volume":"4829200"},"2004-09-17":{"1. open":"54.2500","2. high":"55.5000","3. low":"53.6000","4. close":"55.0500","5. volume":"7087400"},"2004-09-10":{"1. open":"56.5200","2. high":"56.8000","3. low":"54.0000","4. close":"54.5000","5. volume":"5738200"},"2004-09-03":{"1. open":"54.0700","2. high":"56.7700","3. low":"53.8200","4. close":"56.2700","5. volume":"5379100"},"2004-08-27":{"1. open":"52.9500","2. high":"54.2400","3. low":"52.7900","4. close":"54.0700","5. volume":"3760200"},"2004-08-20":{"1. open":"49.9200","2. high":"52.9200","3. low":"49.7400","4. close":"52.7800","5. volume":"6559400"},"2004-08-13":{"1. open":"53.0000","2. high":"53.6900","3. low":"49.7500","4. close":"49.9100","5. volume":"9051800"},"2004-08-06":{"1. open":"54.0600","2. high":"54.6200","3. low":"52.7000","4. close":"52.9900","5. volume":"4288000"},"2004-07-30":{"1. open":"55.5000","2. high":"55.5100","3. low":"52.4900","4. close":"54.0600","5. volume":"4971400"},"2004-07-23":{"1. open":"53.0100","2. high":"55.7000","3. low":"52.5500","4. close":"55.3800","5. volume":"6121000"},"2004-07-16":{"1. open":"52.7200","2. high":"54.4500","3. low":"52.1300","4. close":"52.9000","5. volume":"6785600"},"2004-07-09":{"1. open":"55.5000","2. high":"55.5100","3. low":"52.5900","4. close":"53.0900","5. volume":"6534600"},"2004-07-02":{"1. open":"58.6900","2. high":"59.8400","3. low":"54.3300","4. close":"55.5500","5. volume":"9533600"},"2004-06-25":{"1. open":"59.8200","2. high":"59.9076","3. low":"58.2900","4. close":"58.4400","5. volume":"4007000"},"2004-06-18":{"1. open":"60.6900","2. high":"60.8400","3. low":"59.6100","4. close":"59.7500","5. volume":"4147900"},"2004-06-10":{"1. open":"61.7700","2. high":"61.8800","3. low":"60.6700","4. close":"60.6900","5. volume":"2667600"},"2004-06-04":{"1. open":"59.9900","2. high":"61.9300","3. low":"59.9800","4. close":"61.6400","5. volume":"3944200"},"2004-05-28":{"1. open":"58.0000","2. high":"61.0000","3. low":"57.4000","4. close":"59.9800","5. volume":"5504800"},"2004-05-21":{"1. open":"58.6500","2. high":"59.2500","3. low":"57.3800","4. close":"57.9400","5. volume":"5009900"},"2004-05-14":{"1. open":"60.7500","2. high":"60.8800","3. low":"58.4400","4. close":"58.9700","5. volume":"6776700"},"2004-05-07":{"1. open":"58.0400","2. high":"61.9300","3. low":"57.8100","4. close":"60.8900","5. volume":"7595200"},"2004-04-30":{"1. open":"59.0100","2. high":"59.4000","3. low":"56.6800","4. close":"57.8900","5. volume":"6640500"},"2004-04-23":{"1. open":"55.4300","2. high":"58.2900","3. low":"55.0600","4. close":"58.0000","5. volume":"6476500"},"2004-04-16":{"1. open":"54.7500","2. high":"55.5800","3. low":"54.1700","4. close":"55.4300","5. volume":"4352400"},"2004-04-08":{"1. open":"54.7900","2. high":"55.1500","3. low":"54.3800","4. close":"54.6600","5. volume":"3484900"},"2004-04-02":{"1. open":"53.6000","2. high":"55.0100","3. low":"53.3300","4. close":"54.7900","5. volume":"5808400"},"2004-03-26":{"1. open":"53.4000","2. high":"54.0900","3. low":"51.7500","4. close":"53.5000","5. volume":"8838600"},"2004-03-19":{"1. open":"56.0400","2. high":"56.5000","3. low":"53.6900","4. close":"53.8000","5. volume":"4888600"},"2004-03-12":{"1. open":"57.6000","2. high":"57.9500","3. low":"54.6200","4. close":"56.2100","5. volume":"7139200"},"2004-03-05":{"1. open":"58.2000","2. high":"59.4500","3. low":"57.9700","4. close":"58.3400","5. volume":"3230000"},"2004-02-27":{"1. open":"56.9500","2. high":"58.4900","3. low":"55.8300","4. close":"58.0300","5. volume":"4636300"},"2004-02-20":{"1. open":"56.6100","2. high":"57.3800","3. low":"56.3720","4. close":"56.9000","5. volume":"3680100"},"2004-02-13":{"1. open":"55.6000","2. high":"57.5800","3. low":"55.6000","4. close":"56.6100","5. volume":"5512700"},"2004-02-06":{"1. open":"55.1600","2. high":"56.0000","3. low":"54.8500","4. close":"55.5900","5. volume":"7709200"},"2004-01-30":{"1. open":"57.4000","2. high":"58.0000","3. low":"54.9700","4. close":"55.0500","5. volume":"8926500"},"2004-01-23":{"1. open":"55.8700","2. high":"56.9700","3. low":"55.2300","4. close":"56.2500","5. volume":"7134000"},"2004-01-16":{"1. open":"55.4400","2. high":"55.5100","3. low":"53.7100","4. close":"55.4500","5. volume":"8230100"},"2004-01-09":{"1. open":"54.0000","2. high":"56.6500","3. low":"54.0000","4. close":"55.6200","5. volume":"13442000"},"2004-01-02":{"1. open":"63.7000","2. high":"64.5000","3. low":"52.8500","4. close":"54.0000","5. volume":"22631000"},"2003-12-26":{"1. open":"63.5900","2. high":"64.3500","3. low":"63.0100","4. close":"63.7400","5. volume":"1421000"},"2003-12-19":{"1. open":"63.3500","2. high":"64.1500","3. low":"62.4700","4. close":"63.5300","5. volume":"4497700"},"2003-12-12":{"1. open":"64.8000","2. high":"65.1000","3. low":"61.6400","4. close":"61.8600","5. volume":"5675300"},"2003-12-05":{"1. open":"63.5400","2. high":"66.3700","3. low":"63.4800","4. close":"65.0000","5. volume":"4846100"},"2003-11-28":{"1. open":"63.4000","2. high":"63.8500","3. low":"63.0200","4. close":"63.2900","5. volume":"3601500"},"2003-11-21":{"1. open":"64.1000","2. high":"65.6800","3. low":"62.8000","4. close":"62.9500","5. volume":"5218500"},"2003-11-14":{"1. open":"60.9900","2. high":"65.5700","3. low":"60.8500","4. close":"64.1900","5. volume":"7859300"},"2003-11-07":{"1. open":"56.7800","2. high":"62.4500","3. low":"55.7600","4. close":"61.0700","5. volume":"13454800"},"2003-10-31":{"1. open":"56.7600","2. high":"57.5800","3. low":"55.5600","4. close":"56.7700","5. volume":"5891900"},"2003-10-24":{"1. open":"57.2400","2. high":"58.9000","3. low":"55.8300","4. close":"57.0100","5. volume":"8134700"},"2003-10-17":{"1. open":"56.4500","2. high":"57.3500","3. low":"56.1300","4. close":"57.2400","5. volume":"4048300"},"2003-10-10":{"1. open":"56.5500","2. high":"57.0600","3. low":"53.0500","4. close":"55.9900","5. volume":"8214800"},"2003-10-03":{"1. open":"53.9000","2. high":"57.1000","3. low":"52.8500","4. close":"56.5500","5. volume":"7804700"},"2003-09-26":{"1. open":"53.8500","2. high":"55.4000","3. low":"53.1400","4. close":"53.5812","5. volume":"9210800"},"2003-09-19":{"1. open":"58.8300","2. high":"59.0000","3. low":"53.1000","4. close":"54.8300","5. volume":"19639700"},"2003-09-12":{"1. open":"55.0000","2. high":"58.9200","3. low":"55.0000","4. close":"58.7800","5. volume":"8263800"},"2003-09-05":{"1. open":"58.7500","2. high":"59.2800","3. low":"54.6000","4. close":"54.8400","5. volume":"8785000"},"2003-08-29":{"1. open":"59.6500","2. high":"59.6500","3. low":"56.2000","4. close":"58.2100","5. volume":"9413500"},"2003-08-22":{"1. open":"61.7500","2. high":"61.9000","3. low":"59.1600","4. close":"59.3100","5. volume":"5405400"},"2003-08-15":{"1. open":"60.6000","2. high":"62.0000","3. low":"60.0900","4. close":"61.7900","5. volume":"3205100"},"2003-08-08":{"1. open":"62.3000","2. high":"62.3050","3. low":"58.1800","4. close":"60.4400","5. volume":"7313800"},"2003-08-01":{"1. open":"64.3000","2. high":"67.0400","3. low":"61.5100","4. close":"62.3000","5. volume":"9870900"},"2003-07-25":{"1. open":"68.5000","2. high":"68.5500","3. low":"63.7000","4. close":"64.1800","5. volume":"8128400"},"2003-07-18":{"1. open":"69.8900","2. high":"70.5000","3. low":"68.0700","4. close":"68.7500","5. volume":"4434300"},"2003-07-11":{"1. open":"71.5500","2. high":"73.4400","3. low":"68.4000","4. close":"69.4200","5. volume":"6545400"},"2003-07-03":{"1. open":"69.5000","2. high":"71.9000","3. low":"68.7600","4. close":"71.1900","5. volume":"4510700"},"2003-06-27":{"1. open":"70.1200","2. high":"70.1900","3. low":"67.6400","4. close":"69.6900","5. volume":"7543300"},"2003-06-20":{"1. open":"68.1000","2. high":"70.9000","3. low":"67.6500","4. close":"70.1200","5. volume":"7504300"},"2003-06-13":{"1. open":"67.9000","2. high":"68.5000","3. low":"65.6500","4. close":"66.2500","5. volume":"6798000"},"2003-06-06":{"1. open":"62.8000","2. high":"71.4990","3. low":"62.2500","4. close":"69.0400","5. volume":"9157500"},"2003-05-30":{"1. open":"58.9000","2. high":"62.6900","3. low":"58.6300","4. close":"62.6900","5. volume":"7480000"},"2003-05-23":{"1. open":"61.3000","2. high":"61.4100","3. low":"57.4200","4. close":"59.0500","5. volume":"7561200"},"2003-05-16":{"1. open":"59.9100","2. high":"61.5500","3. low":"59.3600","4. close":"61.5500","5. volume":"6543300"},"2003-05-09":{"1. open":"57.7500","2. high":"59.9700","3. low":"56.2000","4. close":"59.9100","5. volume":"5956500"},"2003-05-02":{"1. open":"54.2500","2. high":"58.2800","3. low":"53.6300","4. close":"57.3700","5. volume":"8044900"},"2003-04-25":{"1. open":"52.0500","2. high":"54.8400","3. low":"49.6600","4. close":"54.0000","5. volume":"11923300"},"2003-04-17":{"1. open":"52.0000","2. high":"53.4800","3. low":"51.5700","4. close":"52.0000","5. volume":"5705800"},"2003-04-11":{"1. open":"54.4500","2. high":"55.3000","3. low":"50.9000","4. close":"52.0100","5. volume":"6071000"},"2003-04-04":{"1. open":"53.3000","2. high":"54.8900","3. low":"52.0000","4. close":"53.8200","5. volume":"5292900"},"2003-03-28":{"1. open":"52.5000","2. high":"54.2000","3. low":"50.9100","4. close":"53.3800","5. volume":"6481200"},"2003-03-21":{"1. open":"47.3000","2. high":"52.9500","3. low":"46.9000","4. close":"52.4900","5. volume":"8595800"},"2003-03-14":{"1. open":"51.9700","2. high":"51.9800","3. low":"45.6500","4. close":"46.7600","5. volume":"14519300"},"2003-03-07":{"1. open":"55.0000","2. high":"55.4800","3. low":"52.3200","4. close":"52.5300","5. volume":"5759300"},"2003-02-28":{"1. open":"55.7000","2. high":"56.5000","3. low":"53.6000","4. close":"55.0000","5. volume":"5528300"},"2003-02-21":{"1. open":"53.2400","2. high":"56.1100","3. low":"53.1700","4. close":"55.8100","5. volume":"4242400"},"2003-02-14":{"1. open":"56.3300","2. high":"57.7300","3. low":"51.6500","4. close":"52.9900","5. volume":"10070700"},"2003-02-07":{"1. open":"58.3400","2. high":"58.5000","3. low":"56.3600","4. close":"56.5800","5. volume":"7099200"},"2003-01-31":{"1. open":"55.6000","2. high":"58.9500","3. low":"54.8500","4. close":"58.2000","5. volume":"7264600"},"2003-01-24":{"1. open":"54.1700","2. high":"56.2500","3. low":"52.6000","4. close":"55.3500","5. volume":"8995500"},"2003-01-17":{"1. open":"54.9000","2. high":"55.3500","3. low":"53.8500","4. close":"54.2600","5. volume":"6952500"},"2003-01-10":{"1. open":"58.5000","2. high":"59.7100","3. low":"53.8000","4. close":"54.2400","5. volume":"10755200"},"2003-01-03":{"1. open":"54.2000","2. high":"58.6900","3. low":"53.1900","4. close":"58.5000","5. volume":"5012600"},"2002-12-27":{"1. open":"52.0000","2. high":"55.2700","3. low":"51.9500","4. close":"54.1800","5. volume":"6406600"},"2002-12-20":{"1. open":"57.1600","2. high":"57.5600","3. low":"50.2000","4. close":"51.3000","5. volume":"15964500"},"2002-12-13":{"1. open":"62.2500","2. high":"63.8000","3. low":"56.0000","4. close":"57.1600","5. volume":"13246500"},"2002-12-06":{"1. open":"59.2000","2. high":"63.7500","3. low":"58.2600","4. close":"62.3100","5. volume":"11202400"},"2002-11-29":{"1. open":"59.6000","2. high":"59.7000","3. low":"56.0000","4. close":"58.0200","5. volume":"7328300"},"2002-11-22":{"1. open":"65.2500","2. high":"65.3000","3. low":"56.2500","4. close":"59.3100","5. volume":"18721900"},"2002-11-15":{"1. open":"67.1500","2. high":"68.1000","3. low":"62.8500","4. close":"65.0100","5. volume":"9655900"},"2002-11-08":{"1. open":"73.4500","2. high":"73.4500","3. low":"66.4500","4. close":"67.0000","5. volume":"13992800"},"2002-11-01":{"1. open":"74.7500","2. high":"75.2000","3. low":"70.8200","4. close":"72.4500","5. volume":"5364100"},"2002-10-25":{"1. open":"70.7200","2. high":"74.7900","3. low":"70.7100","4. close":"74.2100","5. volume":"5563400"},"2002-10-18":{"1. open":"73.3800","2. high":"76.9500","3. low":"69.9600","4. close":"70.7000","5. volume":"5631000"},"2002-10-11":{"1. open":"70.7000","2. high":"74.7500","3. low":"70.3000","4. close":"73.3800","5. volume":"6457200"},"2002-10-04":{"1. open":"70.7600","2. high":"74.5000","3. low":"69.7500","4. close":"70.9500","5. volume":"5632500"},"2002-09-27":{"1. open":"68.2500","2. high":"73.8000","3. low":"67.5400","4. close":"70.7500","5. volume":"5737500"},"2002-09-20":{"1. open":"71.9500","2. high":"73.4200","3. low":"67.1000","4. close":"68.7900","5. volume":"8064700"},"2002-09-13":{"1. open":"72.3000","2. high":"73.3000","3. low":"69.8000","4. close":"71.9500","5. volume":"3743500"},"2002-09-06":{"1. open":"72.5200","2. high":"73.6500","3. low":"70.2600","4. close":"72.7000","5. volume":"3470700"},"2002-08-30":{"1. open":"71.3500","2. high":"74.2000","3. low":"70.7500","4. close":"72.5100","5. volume":"3601700"},"2002-08-23":{"1. open":"68.2000","2. high":"73.5000","3. low":"68.1100","4. close":"70.9900","5. volume":"3697800"},"2002-08-16":{"1. open":"68.8000","2. high":"70.2000","3. low":"67.5000","4. close":"68.5000","5. volume":"3786400"},"2002-08-09":{"1. open":"65.0300","2. high":"69.5900","3. low":"61.8300","4. close":"69.1100","5. volume":"5024200"},"2002-08-02":{"1. open":"66.9000","2. high":"71.4500","3. low":"64.2300","4. close":"65.0000","5. volume":"7693100"},"2002-07-26":{"1. open":"61.3500","2. high":"65.5000","3. low":"57.0000","4. close":"65.4100","5. volume":"7470200"},"2002-07-19":{"1. open":"61.3000","2. high":"65.5500","3. low":"42.4400","4. close":"61.3500","5. volume":"7980000"},"2002-07-12":{"1. open":"71.9000","2. high":"72.2500","3. low":"56.2400","4. close":"61.0000","5. volume":"17712300"},"2002-07-05":{"1. open":"75.1000","2. high":"75.3500","3. low":"67.7900","4. close":"71.9500","5. volume":"5516200"},"2002-06-28":{"1. open":"78.7500","2. high":"79.4400","3. low":"74.6000","4. close":"76.0000","5. volume":"4659700"},"2002-06-21":{"1. open":"78.9000","2. high":"82.8500","3. low":"78.6500","4. close":"79.1900","5. volume":"5488200"},"2002-06-14":{"1. open":"79.1400","2. high":"81.7500","3. low":"76.9000","4. close":"78.9000","5. volume":"7846200"},"2002-06-07":{"1. open":"77.0900","2. high":"79.2500","3. low":"74.3900","4. close":"78.6400","5. volume":"4379700"},"2002-05-31":{"1. open":"78.0000","2. high":"79.5000","3. low":"77.0500","4. close":"77.0900","5. volume":"2985900"},"2002-05-24":{"1. open":"77.6200","2. high":"78.8800","3. low":"76.9500","4. close":"78.0800","5. volume":"2977000"},"2002-05-17":{"1. open":"75.6700","2. high":"77.7400","3. low":"73.5900","4. close":"77.6200","5. volume":"5752600"},"2002-05-10":{"1. open":"75.9000","2. high":"77.9800","3. low":"74.4500","4. close":"75.4200","5. volume":"4820600"},"2002-05-03":{"1. open":"78.6400","2. high":"79.7000","3. low":"74.8000","4. close":"75.8600","5. volume":"6008100"},"2002-04-26":{"1. open":"72.3000","2. high":"78.9000","3. low":"69.9000","4. close":"78.6100","5. volume":"10408600"},"2002-04-19":{"1. open":"68.8200","2. high":"72.3000","3. low":"67.8000","4. close":"72.3000","5. volume":"4012500"},"2002-04-12":{"1. open":"66.0000","2. high":"69.4100","3. low":"65.5500","4. close":"68.9200","5. volume":"4026300"},"2002-04-05":{"1. open":"69.9000","2. high":"69.9000","3. low":"65.0000","4. close":"66.0700","5. volume":"4725500"},"2002-03-28":{"1. open":"69.8000","2. high":"69.8000","3. low":"66.6000","4. close":"68.3000","5. volume":"3876100"},"2002-03-22":{"1. open":"70.0500","2. high":"70.6500","3. low":"68.0000","4. close":"69.8400","5. volume":"3546600"},"2002-03-15":{"1. open":"66.3500","2. high":"70.9200","3. low":"65.7300","4. close":"70.0500","5. volume":"5461700"},"2002-03-08":{"1. open":"67.7500","2. high":"68.2500","3. low":"64.6000","4. close":"66.3500","5. volume":"6009700"},"2002-03-01":{"1. open":"64.4000","2. high":"68.8500","3. low":"63.3100","4. close":"68.0000","5. volume":"6181300"},"2002-02-22":{"1. open":"64.0800","2. high":"64.8200","3. low":"62.8000","4. close":"64.4500","5. volume":"2340000"},"2002-02-15":{"1. open":"63.0000","2. high":"64.9800","3. low":"63.0000","4. close":"64.1000","5. volume":"3745900"},"2002-02-08":{"1. open":"63.6800","2. high":"65.1500","3. low":"61.3500","4. close":"63.0000","5. volume":"4317800"},"2002-02-01":{"1. open":"63.5800","2. high":"65.2000","3. low":"60.3200","4. close":"63.7800","5. volume":"5528800"},"2002-01-25":{"1. open":"57.0500","2. high":"63.3800","3. low":"57.0200","4. close":"62.5400","5. volume":"5335700"},"2002-01-18":{"1. open":"59.2000","2. high":"60.3400","3. low":"56.6200","4. close":"56.8000","5. volume":"5787200"},"2002-01-11":{"1. open":"60.4000","2. high":"60.8500","3. low":"57.4500","4. close":"59.2800","5. volume":"7030100"},"2002-01-04":{"1. open":"64.2000","2. high":"64.2000","3. low":"58.8100","4. close":"60.1500","5. volume":"4468300"},"2001-12-28":{"1. open":"62.3500","2. high":"64.1900","3. low":"62.3500","4. close":"63.9500","5. volume":"2167100"},"2001-12-21":{"1. open":"59.4600","2. high":"62.9800","3. low":"58.6200","4. close":"62.6000","5. volume":"6392200"},"2001-12-14":{"1. open":"58.0000","2. high":"59.8000","3. low":"56.3700","4. close":"59.4600","5. volume":"5328600"},"2001-12-07":{"1. open":"61.3000","2. high":"61.9000","3. low":"58.0000","4. close":"58.4700","5. volume":"6808300"},"2001-11-30":{"1. open":"58.0600","2. high":"59.5000","3. low":"56.1500","4. close":"59.5000","5. volume":"5635900"},"2001-11-23":{"1. open":"57.1500","2. high":"59.5200","3. low":"57.0200","4. close":"57.8100","5. volume":"3433200"},"2001-11-16":{"1. open":"55.7500","2. high":"57.7800","3. low":"54.5000","4. close":"57.2500","5. volume":"9775000"},"2001-11-09":{"1. open":"62.3000","2. high":"64.4800","3. low":"53.8500","4. close":"56.0000","5. volume":"15743000"},"2001-11-02":{"1. open":"66.6500","2. high":"68.2000","3. low":"61.1000","4. close":"62.3000","5. volume":"8895200"},"2001-10-26":{"1. open":"70.5500","2. high":"72.0000","3. low":"66.6500","4. close":"66.6500","5. volume":"7196700"},"2001-10-19":{"1. open":"66.7000","2. high":"70.7900","3. low":"66.3500","4. close":"70.7900","5. volume":"4271500"},"2001-10-12":{"1. open":"70.2400","2. high":"70.2400","3. low":"65.8800","4. close":"67.0200","5. volume":"3672200"},"2001-10-05":{"1. open":"71.1800","2. high":"71.3000","3. low":"67.3500","4. close":"69.5500","5. volume":"6364500"},"2001-09-28":{"1. open":"66.7000","2. high":"71.5900","3. low":"65.8000","4. close":"70.9500","5. volume":"6274800"},"2001-09-21":{"1. open":"62.2500","2. high":"66.0000","3. low":"62.2500","4. close":"65.0100","5. volume":"8820000"},"2001-09-10":{"1. open":"64.9000","2. high":"66.2500","3. low":"64.5500","4. close":"64.8800","5. volume":"1211600"},"2001-09-07":{"1. open":"64.3000","2. high":"67.5000","3. low":"64.1500","4. close":"64.9000","5. volume":"6671300"},"2001-08-31":{"1. open":"65.0000","2. high":"66.5000","3. low":"62.3000","4. close":"64.4400","5. volume":"17221300"},"2001-08-24":{"1. open":"58.5000","2. high":"63.0000","3. low":"58.2000","4. close":"62.1900","5. volume":"5859500"},"2001-08-17":{"1. open":"57.6500","2. high":"59.0000","3. low":"56.3000","4. close":"59.0000","5. volume":"4885600"},"2001-08-10":{"1. open":"56.9500","2. high":"58.3000","3. low":"54.8600","4. close":"57.4500","5. volume":"3613100"},"2001-08-03":{"1. open":"58.4000","2. high":"60.2500","3. low":"55.3000","4. close":"56.8000","5. volume":"3826200"},"2001-07-27":{"1. open":"57.8600","2. high":"59.4000","3. low":"52.1200","4. close":"58.6100","5. volume":"4651100"},"2001-07-20":{"1. open":"55.6000","2. high":"58.7000","3. low":"55.5100","4. close":"57.8600","5. volume":"2486400"},"2001-07-13":{"1. open":"55.0000","2. high":"56.9000","3. low":"54.3500","4. close":"55.7500","5. volume":"3520500"},"2001-07-06":{"1. open":"55.3000","2. high":"56.5600","3. low":"54.7000","4. close":"55.0000","5. volume":"2739400"},"2001-06-29":{"1. open":"58.6000","2. high":"59.3900","3. low":"55.0000","4. close":"55.3500","5. volume":"5245300"},"2001-06-22":{"1. open":"59.2000","2. high":"62.5000","3. low":"58.4100","4. close":"59.0400","5. volume":"2988600"},"2001-06-15":{"1. open":"58.5900","2. high":"59.2000","3. low":"56.1000","4. close":"59.2000","5. volume":"3425700"},"2001-06-08":{"1. open":"59.2000","2. high":"61.6900","3. low":"56.2000","4. close":"58.8400","5. volume":"4323500"},"2001-06-01":{"1. open":"55.4500","2. high":"59.3500","3. low":"55.2000","4. close":"59.0400","5. volume":"3204200"},"2001-05-25":{"1. open":"55.4400","2. high":"57.2200","3. low":"52.4600","4. close":"55.4100","5. volume":"4492100"},"2001-05-18":{"1. open":"52.4000","2. high":"55.6200","3. low":"51.0600","4. close":"55.4300","5. volume":"3237300"},"2001-05-11":{"1. open":"52.9500","2. high":"53.7500","3. low":"50.0000","4. close":"52.0100","5. volume":"3704000"},"2001-05-04":{"1. open":"53.1000","2. high":"55.4000","3. low":"51.0000","4. close":"53.1700","5. volume":"2420800"},"2001-04-27":{"1. open":"51.2000","2. high":"53.6800","3. low":"51.1000","4. close":"52.9200","5. volume":"2606800"},"2001-04-20":{"1. open":"52.6000","2. high":"54.0000","3. low":"50.2800","4. close":"51.4300","5. volume":"3331600"},"2001-04-12":{"1. open":"51.0000","2. high":"53.0500","3. low":"50.7300","4. close":"52.2600","5. volume":"3488700"},"2001-04-06":{"1. open":"49.3000","2. high":"52.0000","3. low":"47.1500","4. close":"51.0700","5. volume":"3593500"},"2001-03-30":{"1. open":"44.5000","2. high":"50.8400","3. low":"43.4500","4. close":"49.0500","5. volume":"5546000"},"2001-03-23":{"1. open":"46.0000","2. high":"46.2700","3. low":"42.0000","4. close":"44.3900","5. volume":"8495000"},"2001-03-16":{"1. open":"53.5500","2. high":"53.7700","3. low":"47.4000","4. close":"48.4800","5. volume":"2043100"},"2001-03-09":{"1. open":"57.3000","2. high":"57.9700","3. low":"53.4000","4. close":"53.7800","5. volume":"3172000"},"2001-03-02":{"1. open":"54.2500","2. high":"57.3000","3. low":"53.5500","4. close":"56.1100","5. volume":"3033500"},"2001-02-23":{"1. open":"54.9900","2. high":"56.4000","3. low":"53.7500","4. close":"54.5000","5. volume":"2146200"},"2001-02-16":{"1. open":"52.0000","2. high":"55.3800","3. low":"52.0000","4. close":"54.7400","5. volume":"2095600"},"2001-02-09":{"1. open":"49.0000","2. high":"52.4000","3. low":"48.8000","4. close":"52.3000","5. volume":"1761600"},"2001-02-02":{"1. open":"46.7500","2. high":"49.4000","3. low":"46.2600","4. close":"49.1000","5. volume":"2011500"},"2001-01-26":{"1. open":"42.3100","2. high":"48.7500","3. low":"42.1200","4. close":"47.1900","5. volume":"2350500"},"2001-01-19":{"1. open":"49.0000","2. high":"50.1900","3. low":"40.1200","4. close":"42.0600","5. volume":"3531100"},"2001-01-12":{"1. open":"45.0000","2. high":"51.7500","3. low":"45.0000","4. close":"49.1200","5. volume":"3967400"},"2001-01-05":{"1. open":"50.2500","2. high":"53.3100","3. low":"44.0000","4. close":"45.1200","5. volume":"3804100"},"2000-12-29":{"1. open":"49.8800","2. high":"53.6900","3. low":"49.7500","4. close":"50.5000","5. volume":"1693500"},"2000-12-22":{"1. open":"46.2500","2. high":"50.2500","3. low":"46.1200","4. close":"49.9400","5. volume":"3491500"},"2000-12-15":{"1. open":"43.1200","2. high":"47.2500","3. low":"40.9400","4. close":"46.0000","5. volume":"3629100"},"2000-12-08":{"1. open":"47.6200","2. high":"47.6200","3. low":"40.0600","4. close":"42.7500","5. volume":"7768200"},"2000-12-01":{"1. open":"49.2500","2. high":"52.2500","3. low":"48.0000","4. close":"48.8800","5. volume":"2772000"},"2000-11-24":{"1. open":"47.3100","2. high":"50.6200","3. low":"46.8800","4. close":"49.3100","5. volume":"1537600"},"2000-11-17":{"1. open":"46.1200","2. high":"48.9400","3. low":"43.1200","4. close":"47.9400","5. volume":"2211600"},"2000-11-10":{"1. open":"40.6900","2. high":"46.8800","3. low":"40.0600","4. close":"46.6900","5. volume":"2792300"},"2000-11-03":{"1. open":"41.7500","2. high":"44.6900","3. low":"38.3800","4. close":"40.6900","5. volume":"2935500"},"2000-10-27":{"1. open":"44.6900","2. high":"46.6900","3. low":"39.6900","4. close":"42.0000","5. volume":"2569600"},"2000-10-20":{"1. open":"44.6900","2. high":"46.5000","3. low":"43.5600","4. close":"44.6900","5. volume":"1432500"},"2000-10-13":{"1. open":"48.0600","2. high":"48.8800","3. low":"43.0000","4. close":"45.1900","5. volume":"2099100"},"2000-10-06":{"1. open":"47.5000","2. high":"49.5000","3. low":"47.0000","4. close":"47.7500","5. volume":"7365700"},"2000-09-29":{"1. open":"44.0000","2. high":"48.0000","3. low":"43.4400","4. close":"47.0000","5. volume":"4087700"},"2000-09-22":{"1. open":"38.4400","2. high":"42.3100","3. low":"36.3800","4. close":"42.2800","5. volume":"1983900"},"2000-09-15":{"1. open":"34.5000","2. high":"38.8800","3. low":"33.4400","4. close":"38.8100","5. volume":"958100"},"2000-09-08":{"1. open":"34.4400","2. high":"35.2500","3. low":"31.9400","4. close":"34.1900","5. volume":"675400"},"2000-09-01":{"1. open":"34.8800","2. high":"35.6200","3. low":"33.4400","4. close":"34.8100","5. volume":"1304700"},"2000-08-25":{"1. open":"35.3100","2. high":"37.8800","3. low":"34.6900","4. close":"34.8100","5. volume":"1123600"},"2000-08-18":{"1. open":"36.7500","2. high":"37.5000","3. low":"34.8800","4. close":"35.6900","5. volume":"649800"},"2000-08-11":{"1. open":"35.9400","2. high":"38.5000","3. low":"35.4400","4. close":"37.2500","5. volume":"1605500"},"2000-08-04":{"1. open":"34.0000","2. high":"36.5600","3. low":"33.7500","4. close":"36.0000","5. volume":"1695700"},"2000-07-28":{"1. open":"31.0000","2. high":"36.2500","3. low":"30.0000","4. close":"34.7500","5. volume":"1969200"},"2000-07-21":{"1. open":"30.1900","2. high":"32.5600","3. low":"29.5000","4. close":"31.0000","5. volume":"1304300"},"2000-07-14":{"1. open":"34.5600","2. high":"35.1200","3. low":"29.0000","4. close":"30.4400","5. volume":"1684600"},"2000-07-07":{"1. open":"31.1900","2. high":"35.0000","3. low":"29.8100","4. close":"34.6900","5. volume":"1251800"},"2000-06-30":{"1. open":"28.4400","2. high":"32.3800","3. low":"28.0600","4. close":"31.0200","5. volume":"1969100"},"2000-06-23":{"1. open":"29.4400","2. high":"30.0000","3. low":"27.5000","4. close":"28.4400","5. volume":"1182400"},"2000-06-16":{"1. open":"25.7500","2. high":"29.4400","3. low":"25.6200","4. close":"29.4400","5. volume":"2467000"},"2000-06-09":{"1. open":"25.0600","2. high":"26.4400","3. low":"24.3800","4. close":"25.7500","5. volume":"1526600"},"2000-06-02":{"1. open":"24.5000","2. high":"25.6900","3. low":"24.1300","4. close":"25.2500","5. volume":"1517500"},"2000-05-26":{"1. open":"22.0000","2. high":"26.0000","3. low":"21.2500","4. close":"24.8800","5. volume":"3629900"},"2000-05-19":{"1. open":"17.6900","2. high":"22.3700","3. low":"17.6900","4. close":"22.0000","5. volume":"2140900"},"2000-05-12":{"1. open":"18.7500","2. high":"18.8100","3. low":"17.6200","4. close":"17.6900","5. volume":"661400"},"2000-05-05":{"1. open":"20.0000","2. high":"20.0000","3. low":"17.8100","4. close":"19.0000","5. volume":"916600"},"2000-04-28":{"1. open":"18.0000","2. high":"20.0000","3. low":"17.5000","4. close":"20.0000","5. volume":"1192000"},"2000-04-20":{"1. open":"16.1900","2. high":"18.5000","3. low":"16.0000","4. close":"18.0600","5. volume":"586400"},"2000-04-14":{"1. open":"16.6900","2. high":"18.0000","3. low":"15.5600","4. close":"17.1200","5. volume":"816500"},"2000-04-07":{"1. open":"14.9400","2. high":"18.0000","3. low":"14.2500","4. close":"16.7500","5. volume":"1456800"},"2000-03-31":{"1. open":"15.0000","2. high":"15.6200","3. low":"14.1900","4. close":"15.0000","5. volume":"1139600"},"2000-03-24":{"1. open":"15.7500","2. high":"16.9400","3. low":"14.6200","4. close":"15.0000","5. volume":"1938700"},"2000-03-17":{"1. open":"13.0000","2. high":"16.3100","3. low":"12.0000","4. close":"15.8100","5. volume":"1805800"},"2000-03-10":{"1. open":"14.5600","2. high":"14.7500","3. low":"12.5000","4. close":"13.0000","5. volume":"1783500"},"2000-03-03":{"1. open":"14.0000","2. high":"15.1300","3. low":"13.7500","4. close":"14.3100","5. volume":"2538200"},"2000-02-25":{"1. open":"15.7500","2. high":"16.0000","3. low":"13.7500","4. close":"14.0000","5. volume":"1288600"},"2000-02-18":{"1. open":"16.8800","2. high":"16.8800","3. low":"15.4400","4. close":"15.6900","5. volume":"4377000"},"2000-02-11":{"1. open":"18.1900","2. high":"18.3800","3. low":"16.3100","4. close":"16.5000","5. volume":"964400"},"2000-02-04":{"1. open":"18.7500","2. high":"20.1900","3. low":"18.0600","4. close":"18.4400","5. volume":"1432900"},"2000-01-28":{"1. open":"19.5000","2. high":"19.8800","3. low":"17.8700","4. close":"18.7500","5. volume":"1774800"},"2000-01-21":{"1. open":"21.2500","2. high":"21.9400","3. low":"18.7500","4. close":"19.2500","5. volume":"1937400"},"2000-01-14":{"1. open":"19.0000","2. high":"23.8100","3. low":"19.0000","4. close":"22.1900","5. volume":"2704100"},"2000-01-07":{"1. open":"15.5000","2. high":"19.0000","3. low":"14.0000","4. close":"19.0000","5. volume":"2444500"},"1999-12-31":{"1. open":"13.7500","2. high":"15.5000","3. low":"13.6900","4. close":"15.1900","5. volume":"1294500"},"1999-12-23":{"1. open":"12.8800","2. high":"13.4400","3. low":"12.5600","4. close":"13.3700","5. volume":"1291000"},"1999-12-17":{"1. open":"12.8800","2. high":"13.4400","3. low":"12.3100","4. close":"12.8100","5. volume":"1838700"},"1999-12-10":{"1. open":"11.7500","2. high":"12.8800","3. low":"11.5600","4. close":"12.8800","5. volume":"1575300"},"1999-12-03":{"1. open":"12.3100","2. high":"12.5600","3. low":"11.5600","4. close":"11.7500","5. volume":"1902200"},"1999-11-26":{"1. open":"13.5000","2. high":"13.6900","3. low":"12.1300","4. close":"12.3100","5. volume":"1537700"},"1999-11-19":{"1. open":"13.1200","2. high":"14.1200","3. low":"12.6900","4. close":"13.6900","5. volume":"4189100"},"1999-11-12":{"1. open":"12.2500","2. high":"13.6900","3. low":"12.1300","4. close":"13.1200","5. volume":"2804600"}}} \ No newline at end of file diff --git a/Backend/data/weekly_ABR.json b/Backend/data/weekly_ABR.json new file mode 100644 index 00000000..d832a8bc --- /dev/null +++ b/Backend/data/weekly_ABR.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Weekly Prices (open, high, low, close) and Volumes","2. Symbol":"ABR","3. Last Refreshed":"2022-03-28","4. Time Zone":"US/Eastern"},"Weekly Time Series":{"2022-03-28":{"1. open":"17.1800","2. high":"17.3000","3. low":"17.0900","4. close":"17.1900","5. volume":"1526730"},"2022-03-25":{"1. open":"17.3500","2. high":"17.4100","3. low":"16.9100","4. close":"17.1700","5. volume":"13042077"},"2022-03-18":{"1. open":"17.6600","2. high":"17.7700","3. low":"17.1300","4. close":"17.2700","5. volume":"16368273"},"2022-03-11":{"1. open":"17.7100","2. high":"17.9100","3. low":"17.2700","4. close":"17.4900","5. volume":"9515487"},"2022-03-04":{"1. open":"17.7300","2. high":"18.0900","3. low":"17.3400","4. close":"17.6900","5. volume":"12554150"},"2022-02-25":{"1. open":"17.3500","2. high":"17.9100","3. low":"16.7500","4. close":"17.8800","5. volume":"9436523"},"2022-02-18":{"1. open":"17.0000","2. high":"17.4700","3. low":"16.6850","4. close":"17.3300","5. volume":"8041810"},"2022-02-11":{"1. open":"17.1500","2. high":"17.6297","3. low":"16.8700","4. close":"17.0700","5. volume":"8139071"},"2022-02-04":{"1. open":"17.0000","2. high":"17.6000","3. low":"16.8450","4. close":"17.0600","5. volume":"8332444"},"2022-01-28":{"1. open":"16.5000","2. high":"17.7250","3. low":"16.1100","4. close":"17.0600","5. volume":"11930625"},"2022-01-21":{"1. open":"18.3800","2. high":"18.4900","3. low":"17.0100","4. close":"17.0200","5. volume":"7032641"},"2022-01-14":{"1. open":"18.7400","2. high":"18.8700","3. low":"18.3017","4. close":"18.4800","5. volume":"6410662"},"2022-01-07":{"1. open":"18.4000","2. high":"18.8800","3. low":"18.4000","4. close":"18.7400","5. volume":"6566228"},"2021-12-31":{"1. open":"18.1700","2. high":"18.6684","3. low":"17.9700","4. close":"18.3200","5. volume":"5225872"},"2021-12-23":{"1. open":"16.8200","2. high":"18.2400","3. low":"16.1900","4. close":"18.1200","5. volume":"7719111"},"2021-12-17":{"1. open":"18.1100","2. high":"18.1400","3. low":"16.8700","4. close":"17.0700","5. volume":"11347390"},"2021-12-10":{"1. open":"17.5800","2. high":"18.4700","3. low":"17.4750","4. close":"18.1600","5. volume":"6473787"},"2021-12-03":{"1. open":"18.3400","2. high":"18.3700","3. low":"17.2100","4. close":"17.4200","5. volume":"9919735"},"2021-11-26":{"1. open":"18.4100","2. high":"18.5800","3. low":"17.8100","4. close":"18.1100","5. volume":"5244044"},"2021-11-19":{"1. open":"19.2100","2. high":"19.3200","3. low":"18.2700","4. close":"18.4000","5. volume":"6839173"},"2021-11-12":{"1. open":"19.7500","2. high":"19.9600","3. low":"19.2000","4. close":"19.2100","5. volume":"8215018"},"2021-11-05":{"1. open":"20.2000","2. high":"20.7400","3. low":"19.3700","4. close":"19.6300","5. volume":"14224090"},"2021-10-29":{"1. open":"19.7900","2. high":"20.3000","3. low":"19.6650","4. close":"20.1100","5. volume":"7048705"},"2021-10-22":{"1. open":"19.1500","2. high":"19.9300","3. low":"19.1500","4. close":"19.7700","5. volume":"5182853"},"2021-10-15":{"1. open":"19.2400","2. high":"19.5000","3. low":"18.9600","4. close":"19.1900","5. volume":"5440401"},"2021-10-08":{"1. open":"18.8900","2. high":"19.2850","3. low":"18.6800","4. close":"19.1500","5. volume":"5546751"},"2021-10-01":{"1. open":"18.4300","2. high":"18.8800","3. low":"18.2200","4. close":"18.8300","5. volume":"5805266"},"2021-09-24":{"1. open":"17.8400","2. high":"18.4500","3. low":"17.7001","4. close":"18.3700","5. volume":"5668917"},"2021-09-17":{"1. open":"18.0000","2. high":"18.3300","3. low":"17.8050","4. close":"18.0800","5. volume":"8096048"},"2021-09-10":{"1. open":"18.3000","2. high":"18.4100","3. low":"17.9600","4. close":"17.9800","5. volume":"3625447"},"2021-09-03":{"1. open":"18.3500","2. high":"18.4760","3. low":"18.1000","4. close":"18.2900","5. volume":"5772583"},"2021-08-27":{"1. open":"18.0000","2. high":"18.4050","3. low":"17.8100","4. close":"18.3400","5. volume":"6211264"},"2021-08-20":{"1. open":"18.3300","2. high":"18.3400","3. low":"17.1600","4. close":"17.8000","5. volume":"7325240"},"2021-08-13":{"1. open":"18.2800","2. high":"18.7700","3. low":"18.1100","4. close":"18.4300","5. volume":"9821378"},"2021-08-06":{"1. open":"18.3500","2. high":"18.5900","3. low":"17.6800","4. close":"18.3600","5. volume":"6432423"},"2021-07-30":{"1. open":"17.7800","2. high":"18.4800","3. low":"17.6250","4. close":"18.2800","5. volume":"6259834"},"2021-07-23":{"1. open":"17.3400","2. high":"18.0800","3. low":"16.8200","4. close":"17.7000","5. volume":"7450385"},"2021-07-16":{"1. open":"18.1200","2. high":"18.3500","3. low":"17.4900","4. close":"17.7200","5. volume":"5817683"},"2021-07-09":{"1. open":"17.8900","2. high":"18.1200","3. low":"17.0700","4. close":"18.1100","5. volume":"5550154"},"2021-07-02":{"1. open":"18.3900","2. high":"18.4000","3. low":"17.6718","4. close":"17.7700","5. volume":"6217208"},"2021-06-25":{"1. open":"17.5000","2. high":"18.6400","3. low":"17.4888","4. close":"18.3900","5. volume":"10950663"},"2021-06-18":{"1. open":"19.2100","2. high":"19.4770","3. low":"17.3100","4. close":"17.4000","5. volume":"15391449"},"2021-06-11":{"1. open":"18.6200","2. high":"19.4900","3. low":"18.6000","4. close":"19.1000","5. volume":"7190110"},"2021-06-04":{"1. open":"18.3300","2. high":"18.8400","3. low":"18.2750","4. close":"18.5600","5. volume":"5694826"},"2021-05-28":{"1. open":"17.3600","2. high":"18.3800","3. low":"17.1200","4. close":"18.2400","5. volume":"6459754"},"2021-05-21":{"1. open":"17.6500","2. high":"18.0300","3. low":"17.1600","4. close":"17.3000","5. volume":"8757984"},"2021-05-14":{"1. open":"18.0200","2. high":"18.0400","3. low":"16.3700","4. close":"17.6600","5. volume":"11486401"},"2021-05-07":{"1. open":"17.8300","2. high":"17.9500","3. low":"17.1500","4. close":"17.8100","5. volume":"7232029"},"2021-04-30":{"1. open":"17.2900","2. high":"18.0550","3. low":"17.2500","4. close":"17.6800","5. volume":"4682385"},"2021-04-23":{"1. open":"16.5800","2. high":"17.3100","3. low":"15.9500","4. close":"17.2700","5. volume":"5020664"},"2021-04-16":{"1. open":"16.0000","2. high":"16.6800","3. low":"15.9800","4. close":"16.5100","5. volume":"4091614"},"2021-04-09":{"1. open":"16.2000","2. high":"16.2300","3. low":"15.8100","4. close":"15.9300","5. volume":"5603672"},"2021-04-01":{"1. open":"15.5400","2. high":"16.1600","3. low":"15.4100","4. close":"16.1600","5. volume":"8243176"},"2021-03-26":{"1. open":"16.6100","2. high":"16.6100","3. low":"15.0000","4. close":"15.4000","5. volume":"9855755"},"2021-03-19":{"1. open":"16.7500","2. high":"16.9100","3. low":"16.1800","4. close":"16.6300","5. volume":"5640203"},"2021-03-12":{"1. open":"15.7100","2. high":"16.7800","3. low":"15.7000","4. close":"16.6900","5. volume":"5780942"},"2021-03-05":{"1. open":"17.0300","2. high":"17.1200","3. low":"14.8200","4. close":"15.6800","5. volume":"8900483"},"2021-02-26":{"1. open":"16.3000","2. high":"17.1899","3. low":"15.9100","4. close":"16.6700","5. volume":"12597364"},"2021-02-19":{"1. open":"15.5000","2. high":"16.1799","3. low":"15.2400","4. close":"16.1700","5. volume":"4642018"},"2021-02-12":{"1. open":"15.1400","2. high":"15.4617","3. low":"14.8800","4. close":"15.3500","5. volume":"5279747"},"2021-02-05":{"1. open":"14.3900","2. high":"15.8000","3. low":"14.0100","4. close":"15.4500","5. volume":"5648333"},"2021-01-29":{"1. open":"14.5500","2. high":"14.7350","3. low":"14.1000","4. close":"14.2600","5. volume":"5634402"},"2021-01-22":{"1. open":"14.4000","2. high":"14.7500","3. low":"14.2500","4. close":"14.6300","5. volume":"4302217"},"2021-01-15":{"1. open":"14.0800","2. high":"14.5000","3. low":"14.0500","4. close":"14.3800","5. volume":"5717218"},"2021-01-08":{"1. open":"14.2300","2. high":"14.6900","3. low":"13.5400","4. close":"14.2100","5. volume":"6788719"},"2020-12-31":{"1. open":"14.1400","2. high":"14.3400","3. low":"13.8800","4. close":"14.1800","5. volume":"3008940"},"2020-12-24":{"1. open":"14.0000","2. high":"14.2950","3. low":"13.4800","4. close":"14.0500","5. volume":"3544133"},"2020-12-18":{"1. open":"14.0500","2. high":"14.9500","3. low":"14.0500","4. close":"14.2100","5. volume":"9316475"},"2020-12-11":{"1. open":"13.7100","2. high":"14.5400","3. low":"13.5000","4. close":"13.9400","5. volume":"6738291"},"2020-12-04":{"1. open":"13.6900","2. high":"13.9310","3. low":"13.1700","4. close":"13.6600","5. volume":"5834449"},"2020-11-27":{"1. open":"13.3800","2. high":"13.9500","3. low":"13.2888","4. close":"13.6900","5. volume":"4536506"},"2020-11-20":{"1. open":"12.9400","2. high":"13.6000","3. low":"12.7600","4. close":"13.2900","5. volume":"7714694"},"2020-11-13":{"1. open":"13.9000","2. high":"14.3850","3. low":"12.6000","4. close":"12.6700","5. volume":"15806736"},"2020-11-06":{"1. open":"12.0500","2. high":"13.2200","3. low":"12.0100","4. close":"12.9300","5. volume":"9088408"},"2020-10-30":{"1. open":"11.8500","2. high":"12.0700","3. low":"11.0600","4. close":"11.8200","5. volume":"6951877"},"2020-10-23":{"1. open":"11.6400","2. high":"11.9000","3. low":"11.1404","4. close":"11.8900","5. volume":"5510343"},"2020-10-16":{"1. open":"11.8000","2. high":"11.9800","3. low":"11.4100","4. close":"11.5600","5. volume":"4432245"},"2020-10-09":{"1. open":"11.9000","2. high":"12.0800","3. low":"11.5300","4. close":"11.7400","5. volume":"5154600"},"2020-10-02":{"1. open":"11.8400","2. high":"12.0600","3. low":"11.0200","4. close":"11.8500","5. volume":"4473764"},"2020-09-25":{"1. open":"11.8900","2. high":"12.0900","3. low":"10.6800","4. close":"11.6200","5. volume":"6136471"},"2020-09-18":{"1. open":"11.5000","2. high":"12.4000","3. low":"11.4500","4. close":"12.2100","5. volume":"6619314"},"2020-09-11":{"1. open":"11.3000","2. high":"11.9100","3. low":"11.1551","4. close":"11.4100","5. volume":"3730743"},"2020-09-04":{"1. open":"11.7100","2. high":"11.7500","3. low":"10.8900","4. close":"11.3200","5. volume":"6674883"},"2020-08-28":{"1. open":"11.1700","2. high":"11.6700","3. low":"11.0600","4. close":"11.6200","5. volume":"4796113"},"2020-08-21":{"1. open":"11.3300","2. high":"11.3700","3. low":"10.7200","4. close":"11.1000","5. volume":"5703324"},"2020-08-14":{"1. open":"11.5500","2. high":"12.0400","3. low":"10.9100","4. close":"11.3300","5. volume":"8865539"},"2020-08-07":{"1. open":"10.2500","2. high":"11.4300","3. low":"10.0500","4. close":"11.4000","5. volume":"10521168"},"2020-07-31":{"1. open":"8.8000","2. high":"10.1900","3. low":"8.6800","4. close":"10.1900","5. volume":"7528130"},"2020-07-24":{"1. open":"8.6000","2. high":"9.1601","3. low":"8.4300","4. close":"8.8600","5. volume":"5053175"},"2020-07-17":{"1. open":"8.0600","2. high":"8.8200","3. low":"7.7800","4. close":"8.6400","5. volume":"7065436"},"2020-07-10":{"1. open":"9.0900","2. high":"9.0900","3. low":"7.4000","4. close":"7.9400","5. volume":"11496325"},"2020-07-02":{"1. open":"9.0600","2. high":"9.4500","3. low":"8.6700","4. close":"8.8600","5. volume":"6145355"},"2020-06-26":{"1. open":"9.6000","2. high":"10.1500","3. low":"9.1300","4. close":"9.2600","5. volume":"24297584"},"2020-06-19":{"1. open":"9.2900","2. high":"10.2300","3. low":"9.2100","4. close":"9.6700","5. volume":"10697068"},"2020-06-12":{"1. open":"10.3500","2. high":"11.0200","3. low":"8.7600","4. close":"9.8600","5. volume":"14533994"},"2020-06-05":{"1. open":"8.3100","2. high":"10.3900","3. low":"8.0600","4. close":"9.7300","5. volume":"14982651"},"2020-05-29":{"1. open":"8.2900","2. high":"8.9700","3. low":"8.0600","4. close":"8.4200","5. volume":"9576101"},"2020-05-22":{"1. open":"6.6500","2. high":"7.9400","3. low":"6.6300","4. close":"7.8900","5. volume":"10697855"},"2020-05-15":{"1. open":"7.4400","2. high":"7.4500","3. low":"5.6700","4. close":"6.4600","5. volume":"15148045"},"2020-05-08":{"1. open":"6.5000","2. high":"7.7300","3. low":"6.1800","4. close":"7.5100","5. volume":"13991229"},"2020-05-01":{"1. open":"6.0100","2. high":"7.3300","3. low":"5.8400","4. close":"6.6800","5. volume":"12879389"},"2020-04-24":{"1. open":"6.3500","2. high":"6.4500","3. low":"5.6800","4. close":"6.0000","5. volume":"9331404"},"2020-04-17":{"1. open":"7.9600","2. high":"8.1200","3. low":"6.0000","4. close":"6.7600","5. volume":"13053002"},"2020-04-09":{"1. open":"4.1900","2. high":"8.3900","3. low":"4.1600","4. close":"7.8100","5. volume":"18306621"},"2020-04-03":{"1. open":"6.8200","2. high":"6.8200","3. low":"3.7800","4. close":"4.0600","5. volume":"17228211"},"2020-03-27":{"1. open":"5.0200","2. high":"7.4700","3. low":"3.8600","4. close":"6.8400","5. volume":"20819206"},"2020-03-20":{"1. open":"7.5000","2. high":"8.1200","3. low":"3.5400","4. close":"4.8200","5. volume":"29698094"},"2020-03-13":{"1. open":"11.3300","2. high":"11.4200","3. low":"7.7800","4. close":"8.5000","5. volume":"12208375"},"2020-03-06":{"1. open":"12.1900","2. high":"13.6500","3. low":"11.7100","4. close":"12.0900","5. volume":"9339156"},"2020-02-28":{"1. open":"14.6600","2. high":"14.6800","3. low":"11.5000","4. close":"12.1400","5. volume":"16462756"},"2020-02-21":{"1. open":"14.8000","2. high":"15.0700","3. low":"14.6200","4. close":"14.8000","5. volume":"4223812"},"2020-02-14":{"1. open":"15.2500","2. high":"15.2700","3. low":"14.4100","4. close":"14.7800","5. volume":"4728589"},"2020-02-07":{"1. open":"14.8400","2. high":"15.3200","3. low":"14.8100","4. close":"15.2100","5. volume":"4050595"},"2020-01-31":{"1. open":"14.6600","2. high":"15.2000","3. low":"14.4800","4. close":"14.7700","5. volume":"5105617"},"2020-01-24":{"1. open":"14.7000","2. high":"14.9100","3. low":"14.6100","4. close":"14.7500","5. volume":"3558795"},"2020-01-17":{"1. open":"14.3700","2. high":"14.7300","3. low":"14.3700","4. close":"14.7000","5. volume":"4526071"},"2020-01-10":{"1. open":"14.1700","2. high":"14.5500","3. low":"14.1500","4. close":"14.3700","5. volume":"5047061"},"2020-01-03":{"1. open":"14.5600","2. high":"14.5800","3. low":"14.0000","4. close":"14.1900","5. volume":"4286861"},"2019-12-27":{"1. open":"14.6900","2. high":"14.6900","3. low":"14.3400","4. close":"14.5500","5. volume":"2764047"},"2019-12-20":{"1. open":"14.2000","2. high":"14.7600","3. low":"14.1200","4. close":"14.6100","5. volume":"5608371"},"2019-12-13":{"1. open":"14.8100","2. high":"14.8700","3. low":"14.0300","4. close":"14.1400","5. volume":"11966541"},"2019-12-06":{"1. open":"15.2300","2. high":"15.2400","3. low":"14.6800","4. close":"14.7800","5. volume":"5141797"},"2019-11-29":{"1. open":"14.9500","2. high":"15.1800","3. low":"14.8300","4. close":"15.1600","5. volume":"2838903"},"2019-11-22":{"1. open":"15.0000","2. high":"15.1800","3. low":"14.8700","4. close":"14.9200","5. volume":"4568331"},"2019-11-15":{"1. open":"15.4000","2. high":"15.4000","3. low":"14.8100","4. close":"15.0400","5. volume":"8478883"},"2019-11-08":{"1. open":"14.2000","2. high":"15.7700","3. low":"14.1000","4. close":"15.4200","5. volume":"22287063"},"2019-11-01":{"1. open":"13.4400","2. high":"14.1200","3. low":"13.3900","4. close":"14.0900","5. volume":"6339097"},"2019-10-25":{"1. open":"13.4600","2. high":"13.6600","3. low":"13.2800","4. close":"13.4000","5. volume":"5514599"},"2019-10-18":{"1. open":"13.2000","2. high":"13.4400","3. low":"13.1500","4. close":"13.4000","5. volume":"6059013"},"2019-10-11":{"1. open":"13.0300","2. high":"13.2300","3. low":"13.0000","4. close":"13.1700","5. volume":"6437770"},"2019-10-04":{"1. open":"13.0500","2. high":"13.2000","3. low":"12.8600","4. close":"13.0300","5. volume":"5106129"},"2019-09-27":{"1. open":"13.2100","2. high":"13.2100","3. low":"13.0000","4. close":"13.0100","5. volume":"3860084"},"2019-09-20":{"1. open":"12.9000","2. high":"13.2000","3. low":"12.7900","4. close":"13.1900","5. volume":"4948662"},"2019-09-13":{"1. open":"12.3900","2. high":"12.9100","3. low":"12.3900","4. close":"12.8400","5. volume":"4965003"},"2019-09-06":{"1. open":"12.5700","2. high":"12.6100","3. low":"12.3500","4. close":"12.3500","5. volume":"3296945"},"2019-08-30":{"1. open":"12.5500","2. high":"12.6400","3. low":"12.3800","4. close":"12.5500","5. volume":"4082110"},"2019-08-23":{"1. open":"12.2700","2. high":"12.6200","3. low":"12.0100","4. close":"12.4800","5. volume":"4716907"},"2019-08-16":{"1. open":"12.6400","2. high":"12.8000","3. low":"11.9200","4. close":"12.2100","5. volume":"5814693"},"2019-08-09":{"1. open":"12.7700","2. high":"12.8100","3. low":"12.1900","4. close":"12.6100","5. volume":"6633954"},"2019-08-02":{"1. open":"12.1100","2. high":"12.8400","3. low":"12.1100","4. close":"12.7800","5. volume":"5484556"},"2019-07-26":{"1. open":"12.1100","2. high":"12.2500","3. low":"12.0000","4. close":"12.1100","5. volume":"3364830"},"2019-07-19":{"1. open":"12.4300","2. high":"12.4400","3. low":"12.0700","4. close":"12.1100","5. volume":"4034650"},"2019-07-12":{"1. open":"12.3500","2. high":"12.4900","3. low":"12.2900","4. close":"12.4200","5. volume":"5282424"},"2019-07-05":{"1. open":"12.2600","2. high":"12.3300","3. low":"12.0900","4. close":"12.3300","5. volume":"4423857"},"2019-06-28":{"1. open":"12.3100","2. high":"12.3200","3. low":"11.7500","4. close":"12.1200","5. volume":"16550947"},"2019-06-21":{"1. open":"12.3500","2. high":"12.4800","3. low":"12.2400","4. close":"12.2700","5. volume":"6514135"},"2019-06-14":{"1. open":"12.5500","2. high":"12.5900","3. low":"11.9600","4. close":"12.3000","5. volume":"9138685"},"2019-06-07":{"1. open":"12.3000","2. high":"12.6100","3. low":"12.2900","4. close":"12.5100","5. volume":"5581565"},"2019-05-31":{"1. open":"12.9500","2. high":"13.0200","3. low":"12.2800","4. close":"12.3100","5. volume":"6267801"},"2019-05-24":{"1. open":"13.2400","2. high":"13.4000","3. low":"12.7300","4. close":"12.9400","5. volume":"8242420"},"2019-05-17":{"1. open":"13.0000","2. high":"13.4700","3. low":"12.7900","4. close":"13.1000","5. volume":"12906113"},"2019-05-10":{"1. open":"13.6800","2. high":"13.8400","3. low":"12.6100","4. close":"13.0400","5. volume":"10799509"},"2019-05-03":{"1. open":"13.7900","2. high":"13.9000","3. low":"13.5700","4. close":"13.8000","5. volume":"5553178"},"2019-04-26":{"1. open":"13.6900","2. high":"13.9400","3. low":"13.5800","4. close":"13.7800","5. volume":"5135983"},"2019-04-18":{"1. open":"13.7400","2. high":"13.7900","3. low":"13.3700","4. close":"13.6800","5. volume":"3384495"},"2019-04-12":{"1. open":"13.5400","2. high":"13.7500","3. low":"13.3800","4. close":"13.7400","5. volume":"4308042"},"2019-04-05":{"1. open":"13.0100","2. high":"13.6500","3. low":"13.0000","4. close":"13.5400","5. volume":"5580140"},"2019-03-29":{"1. open":"12.8500","2. high":"13.1200","3. low":"12.7500","4. close":"12.9700","5. volume":"3341103"},"2019-03-22":{"1. open":"12.8600","2. high":"12.9700","3. low":"12.7200","4. close":"12.8300","5. volume":"4007761"},"2019-03-15":{"1. open":"12.7000","2. high":"12.9000","3. low":"12.6400","4. close":"12.8600","5. volume":"5472459"},"2019-03-08":{"1. open":"12.9500","2. high":"12.9700","3. low":"12.5700","4. close":"12.6700","5. volume":"4368941"},"2019-03-01":{"1. open":"13.0800","2. high":"13.2300","3. low":"12.6700","4. close":"12.8800","5. volume":"6350238"},"2019-02-22":{"1. open":"12.4100","2. high":"12.9600","3. low":"12.3350","4. close":"12.9600","5. volume":"7874095"},"2019-02-15":{"1. open":"11.9300","2. high":"12.3300","3. low":"11.7600","4. close":"12.3000","5. volume":"4938770"},"2019-02-08":{"1. open":"11.9100","2. high":"12.0500","3. low":"11.7500","4. close":"11.9000","5. volume":"3238206"},"2019-02-01":{"1. open":"11.4700","2. high":"12.0200","3. low":"11.4300","4. close":"11.9100","5. volume":"4940896"},"2019-01-25":{"1. open":"11.3400","2. high":"11.5300","3. low":"11.0500","4. close":"11.4700","5. volume":"3155546"},"2019-01-18":{"1. open":"11.3200","2. high":"11.4700","3. low":"11.2600","4. close":"11.3300","5. volume":"3428555"},"2019-01-11":{"1. open":"10.6500","2. high":"11.4300","3. low":"10.6100","4. close":"11.3200","5. volume":"5742102"},"2019-01-04":{"1. open":"10.2800","2. high":"10.6400","3. low":"9.9400","4. close":"10.6200","5. volume":"4401377"},"2018-12-28":{"1. open":"9.9200","2. high":"10.3299","3. low":"9.6200","4. close":"10.2400","5. volume":"5364896"},"2018-12-21":{"1. open":"11.5000","2. high":"11.5200","3. low":"9.9600","4. close":"9.9600","5. volume":"12089213"},"2018-12-14":{"1. open":"11.8000","2. high":"11.8600","3. low":"11.4400","4. close":"11.4600","5. volume":"6416775"},"2018-12-07":{"1. open":"11.9100","2. high":"12.0500","3. low":"11.6112","4. close":"11.8000","5. volume":"6358657"},"2018-11-30":{"1. open":"12.0800","2. high":"12.3200","3. low":"11.8300","4. close":"11.8500","5. volume":"9971815"},"2018-11-23":{"1. open":"12.1300","2. high":"12.1900","3. low":"11.6200","4. close":"11.9800","5. volume":"4121441"},"2018-11-16":{"1. open":"12.4100","2. high":"12.7900","3. low":"11.8600","4. close":"12.1000","5. volume":"8118572"},"2018-11-09":{"1. open":"12.2700","2. high":"12.3300","3. low":"11.9500","4. close":"12.3200","5. volume":"5539409"},"2018-11-02":{"1. open":"11.8600","2. high":"12.4100","3. low":"11.7300","4. close":"12.2400","5. volume":"6070859"},"2018-10-26":{"1. open":"11.8300","2. high":"11.9800","3. low":"11.4800","4. close":"11.7500","5. volume":"4294792"},"2018-10-19":{"1. open":"11.6500","2. high":"11.9900","3. low":"11.5700","4. close":"11.7800","5. volume":"3279792"},"2018-10-12":{"1. open":"11.5000","2. high":"11.8400","3. low":"11.4200","4. close":"11.6400","5. volume":"4126541"},"2018-10-05":{"1. open":"11.5000","2. high":"11.6400","3. low":"11.3500","4. close":"11.4200","5. volume":"3561634"},"2018-09-28":{"1. open":"11.6500","2. high":"11.6700","3. low":"11.2300","4. close":"11.4800","5. volume":"4492049"},"2018-09-21":{"1. open":"12.0500","2. high":"12.0900","3. low":"11.4600","4. close":"11.6200","5. volume":"7709610"},"2018-09-14":{"1. open":"12.0600","2. high":"12.2100","3. low":"11.9900","4. close":"12.0200","5. volume":"3509231"},"2018-09-07":{"1. open":"12.2600","2. high":"12.3500","3. low":"11.9100","4. close":"12.0200","5. volume":"5393823"},"2018-08-31":{"1. open":"12.0800","2. high":"12.2600","3. low":"11.9700","4. close":"12.2600","5. volume":"4312351"},"2018-08-24":{"1. open":"11.6300","2. high":"12.0500","3. low":"11.5800","4. close":"12.0400","5. volume":"5938638"},"2018-08-17":{"1. open":"11.4900","2. high":"11.6400","3. low":"11.2300","4. close":"11.6200","5. volume":"7327403"},"2018-08-10":{"1. open":"11.7500","2. high":"11.8100","3. low":"11.2700","4. close":"11.4400","5. volume":"7489093"},"2018-08-03":{"1. open":"11.3500","2. high":"11.7500","3. low":"11.2200","4. close":"11.7400","5. volume":"7053603"},"2018-07-27":{"1. open":"11.3100","2. high":"11.4000","3. low":"11.0400","4. close":"11.1600","5. volume":"5449186"},"2018-07-20":{"1. open":"10.9000","2. high":"11.7200","3. low":"10.8500","4. close":"11.2300","5. volume":"15989786"},"2018-07-13":{"1. open":"10.9400","2. high":"11.0000","3. low":"10.7800","4. close":"10.8900","5. volume":"7654934"},"2018-07-06":{"1. open":"10.4300","2. high":"10.9300","3. low":"10.4300","4. close":"10.8500","5. volume":"5279624"},"2018-06-29":{"1. open":"10.0200","2. high":"10.6700","3. low":"10.0200","4. close":"10.4300","5. volume":"13604930"},"2018-06-22":{"1. open":"9.9500","2. high":"10.2700","3. low":"9.9500","4. close":"10.0200","5. volume":"10626400"},"2018-06-15":{"1. open":"9.5700","2. high":"10.1000","3. low":"9.5700","4. close":"9.9400","5. volume":"10640924"},"2018-06-08":{"1. open":"9.4700","2. high":"9.5900","3. low":"9.2700","4. close":"9.5400","5. volume":"3973903"},"2018-06-01":{"1. open":"9.4400","2. high":"9.6000","3. low":"9.4400","4. close":"9.4400","5. volume":"8115984"},"2018-05-25":{"1. open":"9.2700","2. high":"9.5000","3. low":"9.2500","4. close":"9.4400","5. volume":"3740654"},"2018-05-18":{"1. open":"9.3000","2. high":"9.3900","3. low":"8.9300","4. close":"9.2600","5. volume":"8696847"},"2018-05-11":{"1. open":"9.1700","2. high":"9.5100","3. low":"9.1700","4. close":"9.4500","5. volume":"5388423"},"2018-05-04":{"1. open":"8.8000","2. high":"9.1800","3. low":"8.6800","4. close":"9.1600","5. volume":"3552937"},"2018-04-27":{"1. open":"8.6700","2. high":"8.8000","3. low":"8.5900","4. close":"8.7800","5. volume":"1741547"},"2018-04-20":{"1. open":"8.6000","2. high":"8.7100","3. low":"8.5900","4. close":"8.6500","5. volume":"1329888"},"2018-04-13":{"1. open":"8.7400","2. high":"8.8200","3. low":"8.5800","4. close":"8.6000","5. volume":"1911612"},"2018-04-06":{"1. open":"8.8100","2. high":"8.8300","3. low":"8.6700","4. close":"8.7300","5. volume":"2537770"},"2018-03-29":{"1. open":"8.8000","2. high":"8.8400","3. low":"8.7000","4. close":"8.8200","5. volume":"1737736"},"2018-03-23":{"1. open":"8.8800","2. high":"8.9500","3. low":"8.7400","4. close":"8.7600","5. volume":"2748279"},"2018-03-16":{"1. open":"8.7500","2. high":"8.9300","3. low":"8.7300","4. close":"8.8800","5. volume":"3310134"},"2018-03-09":{"1. open":"8.5700","2. high":"8.7600","3. low":"8.4600","4. close":"8.7400","5. volume":"5712987"},"2018-03-02":{"1. open":"8.5900","2. high":"8.7000","3. low":"8.5400","4. close":"8.5600","5. volume":"4893465"},"2018-02-23":{"1. open":"8.4300","2. high":"8.7000","3. low":"8.3000","4. close":"8.5100","5. volume":"2338814"},"2018-02-16":{"1. open":"8.0800","2. high":"8.4500","3. low":"7.9500","4. close":"8.4300","5. volume":"1906508"},"2018-02-09":{"1. open":"8.0600","2. high":"8.1400","3. low":"7.8900","4. close":"8.0600","5. volume":"2797959"},"2018-02-02":{"1. open":"8.4700","2. high":"8.4700","3. low":"8.0700","4. close":"8.0800","5. volume":"2915074"},"2018-01-26":{"1. open":"8.4100","2. high":"8.5600","3. low":"8.3700","4. close":"8.4700","5. volume":"1420203"},"2018-01-19":{"1. open":"8.5000","2. high":"8.5600","3. low":"8.3700","4. close":"8.4400","5. volume":"2051102"},"2018-01-12":{"1. open":"8.5600","2. high":"8.6800","3. low":"8.4300","4. close":"8.5100","5. volume":"2264025"},"2018-01-05":{"1. open":"8.6400","2. high":"8.7800","3. low":"8.5200","4. close":"8.5600","5. volume":"1971452"},"2017-12-29":{"1. open":"8.6400","2. high":"8.7400","3. low":"8.5900","4. close":"8.6400","5. volume":"1069789"},"2017-12-22":{"1. open":"8.8000","2. high":"8.8400","3. low":"8.5200","4. close":"8.6400","5. volume":"2646296"},"2017-12-15":{"1. open":"8.6200","2. high":"8.7500","3. low":"8.5100","4. close":"8.7100","5. volume":"6241372"},"2017-12-08":{"1. open":"8.7000","2. high":"8.7700","3. low":"8.6050","4. close":"8.6600","5. volume":"2309239"},"2017-12-01":{"1. open":"8.7500","2. high":"8.7700","3. low":"8.5500","4. close":"8.6500","5. volume":"2290251"},"2017-11-24":{"1. open":"8.5200","2. high":"8.7700","3. low":"8.4800","4. close":"8.7500","5. volume":"1380002"},"2017-11-17":{"1. open":"8.5500","2. high":"8.6000","3. low":"8.1600","4. close":"8.5000","5. volume":"2490078"},"2017-11-10":{"1. open":"8.6100","2. high":"8.6100","3. low":"8.2500","4. close":"8.4900","5. volume":"2726485"},"2017-11-03":{"1. open":"8.2700","2. high":"8.6900","3. low":"8.1520","4. close":"8.5500","5. volume":"1861459"},"2017-10-27":{"1. open":"8.4000","2. high":"8.4115","3. low":"8.1200","4. close":"8.2800","5. volume":"1609360"},"2017-10-20":{"1. open":"8.3500","2. high":"8.5300","3. low":"8.3300","4. close":"8.3900","5. volume":"1942256"},"2017-10-13":{"1. open":"8.4100","2. high":"8.4500","3. low":"8.3000","4. close":"8.3200","5. volume":"1626665"},"2017-10-06":{"1. open":"8.2000","2. high":"8.5000","3. low":"8.2000","4. close":"8.4100","5. volume":"1703163"},"2017-09-29":{"1. open":"8.0200","2. high":"8.2100","3. low":"7.8800","4. close":"8.2000","5. volume":"2620028"},"2017-09-22":{"1. open":"8.0500","2. high":"8.0600","3. low":"7.9500","4. close":"8.0000","5. volume":"1024975"},"2017-09-15":{"1. open":"8.0000","2. high":"8.1300","3. low":"7.9900","4. close":"8.0400","5. volume":"1126058"},"2017-09-08":{"1. open":"8.2500","2. high":"8.2558","3. low":"7.9800","4. close":"8.0000","5. volume":"1130232"},"2017-09-01":{"1. open":"8.0400","2. high":"8.2700","3. low":"7.9700","4. close":"8.2400","5. volume":"928035"},"2017-08-25":{"1. open":"8.0500","2. high":"8.0809","3. low":"7.9600","4. close":"7.9900","5. volume":"1174886"},"2017-08-18":{"1. open":"8.0000","2. high":"8.1700","3. low":"7.9600","4. close":"8.0300","5. volume":"1524195"},"2017-08-11":{"1. open":"8.3200","2. high":"8.3500","3. low":"8.0899","4. close":"8.1800","5. volume":"2096722"},"2017-08-04":{"1. open":"8.2500","2. high":"8.4400","3. low":"8.2000","4. close":"8.2900","5. volume":"1767104"},"2017-07-28":{"1. open":"8.3600","2. high":"8.5000","3. low":"8.1900","4. close":"8.2500","5. volume":"1657647"},"2017-07-21":{"1. open":"8.2500","2. high":"8.3900","3. low":"8.1600","4. close":"8.3700","5. volume":"1085254"},"2017-07-14":{"1. open":"8.1800","2. high":"8.3500","3. low":"8.1100","4. close":"8.2300","5. volume":"1365768"},"2017-07-07":{"1. open":"8.3700","2. high":"8.4600","3. low":"8.1200","4. close":"8.1800","5. volume":"860386"},"2017-06-30":{"1. open":"8.4100","2. high":"8.5500","3. low":"8.3100","4. close":"8.3400","5. volume":"1702800"},"2017-06-23":{"1. open":"8.4000","2. high":"8.4900","3. low":"8.2500","4. close":"8.4100","5. volume":"1025952"},"2017-06-16":{"1. open":"8.5000","2. high":"8.5400","3. low":"8.2500","4. close":"8.4100","5. volume":"1790229"},"2017-06-09":{"1. open":"8.3200","2. high":"8.5850","3. low":"8.1100","4. close":"8.4900","5. volume":"2335981"},"2017-06-02":{"1. open":"8.2000","2. high":"8.3400","3. low":"8.1400","4. close":"8.2500","5. volume":"1103147"},"2017-05-26":{"1. open":"8.1500","2. high":"8.2900","3. low":"8.1300","4. close":"8.1900","5. volume":"1814472"},"2017-05-19":{"1. open":"8.0300","2. high":"8.2700","3. low":"7.8300","4. close":"8.1700","5. volume":"4300599"},"2017-05-12":{"1. open":"8.9000","2. high":"8.9900","3. low":"8.1000","4. close":"8.2000","5. volume":"8095875"},"2017-05-05":{"1. open":"8.6500","2. high":"8.8000","3. low":"8.4000","4. close":"8.6300","5. volume":"1281611"},"2017-04-28":{"1. open":"8.6600","2. high":"8.7900","3. low":"8.5000","4. close":"8.6300","5. volume":"865378"},"2017-04-21":{"1. open":"8.5100","2. high":"8.7400","3. low":"8.5000","4. close":"8.6500","5. volume":"940907"},"2017-04-13":{"1. open":"8.4500","2. high":"8.6600","3. low":"8.4040","4. close":"8.5000","5. volume":"777017"},"2017-04-07":{"1. open":"8.4000","2. high":"8.6100","3. low":"8.3300","4. close":"8.4500","5. volume":"1614334"},"2017-03-31":{"1. open":"8.0800","2. high":"8.4000","3. low":"8.0400","4. close":"8.3800","5. volume":"1614082"},"2017-03-24":{"1. open":"8.0000","2. high":"8.1900","3. low":"7.8700","4. close":"8.0400","5. volume":"1083888"},"2017-03-17":{"1. open":"7.6800","2. high":"8.0350","3. low":"7.5250","4. close":"7.9700","5. volume":"740819"},"2017-03-10":{"1. open":"7.6500","2. high":"7.8500","3. low":"7.5500","4. close":"7.7600","5. volume":"895952"},"2017-03-03":{"1. open":"7.3700","2. high":"7.6500","3. low":"7.3500","4. close":"7.6400","5. volume":"597034"},"2017-02-24":{"1. open":"7.3300","2. high":"7.5000","3. low":"7.3299","4. close":"7.3600","5. volume":"275218"},"2017-02-17":{"1. open":"7.3300","2. high":"7.4400","3. low":"7.2900","4. close":"7.3200","5. volume":"476482"},"2017-02-10":{"1. open":"7.4000","2. high":"7.4298","3. low":"7.2600","4. close":"7.3200","5. volume":"421405"},"2017-02-03":{"1. open":"7.4700","2. high":"7.4800","3. low":"7.1100","4. close":"7.4000","5. volume":"485646"},"2017-01-27":{"1. open":"7.5000","2. high":"7.5624","3. low":"7.4100","4. close":"7.5000","5. volume":"389790"},"2017-01-20":{"1. open":"7.5800","2. high":"7.5900","3. low":"7.4000","4. close":"7.5100","5. volume":"295539"},"2017-01-13":{"1. open":"7.6300","2. high":"7.6800","3. low":"7.5000","4. close":"7.5600","5. volume":"360668"},"2017-01-06":{"1. open":"7.5000","2. high":"7.6900","3. low":"7.4300","4. close":"7.6400","5. volume":"567324"},"2016-12-30":{"1. open":"7.4700","2. high":"7.5300","3. low":"7.3800","4. close":"7.4600","5. volume":"337321"},"2016-12-23":{"1. open":"6.9500","2. high":"7.5000","3. low":"6.9500","4. close":"7.4700","5. volume":"613472"},"2016-12-16":{"1. open":"7.4400","2. high":"7.4700","3. low":"6.9200","4. close":"6.9300","5. volume":"2012483"},"2016-12-09":{"1. open":"7.4800","2. high":"7.6800","3. low":"7.4000","4. close":"7.5200","5. volume":"711518"},"2016-12-02":{"1. open":"7.4700","2. high":"7.5100","3. low":"7.3400","4. close":"7.4700","5. volume":"649744"},"2016-11-25":{"1. open":"7.4000","2. high":"7.5000","3. low":"7.2600","4. close":"7.4600","5. volume":"291497"},"2016-11-18":{"1. open":"7.3200","2. high":"7.8800","3. low":"7.2800","4. close":"7.4100","5. volume":"718073"},"2016-11-11":{"1. open":"7.3100","2. high":"7.3600","3. low":"7.1900","4. close":"7.2800","5. volume":"664971"},"2016-11-04":{"1. open":"7.3500","2. high":"7.3900","3. low":"7.2000","4. close":"7.2200","5. volume":"296587"},"2016-10-28":{"1. open":"7.3800","2. high":"7.4950","3. low":"7.2700","4. close":"7.3100","5. volume":"481040"},"2016-10-21":{"1. open":"7.3300","2. high":"7.5800","3. low":"7.2050","4. close":"7.5200","5. volume":"535773"},"2016-10-14":{"1. open":"7.3500","2. high":"7.4700","3. low":"7.2832","4. close":"7.3600","5. volume":"348244"},"2016-10-07":{"1. open":"7.3300","2. high":"7.4350","3. low":"7.0500","4. close":"7.3500","5. volume":"789036"},"2016-09-30":{"1. open":"7.5000","2. high":"7.6800","3. low":"7.2700","4. close":"7.4200","5. volume":"786894"},"2016-09-23":{"1. open":"7.4000","2. high":"7.6600","3. low":"7.3800","4. close":"7.6100","5. volume":"405059"},"2016-09-16":{"1. open":"7.5400","2. high":"7.6500","3. low":"7.3500","4. close":"7.3800","5. volume":"587432"},"2016-09-09":{"1. open":"7.8300","2. high":"7.9900","3. low":"7.5500","4. close":"7.5500","5. volume":"569060"},"2016-09-02":{"1. open":"7.7600","2. high":"7.8900","3. low":"7.7000","4. close":"7.7900","5. volume":"559217"},"2016-08-26":{"1. open":"7.3100","2. high":"7.8000","3. low":"7.2700","4. close":"7.6900","5. volume":"661106"},"2016-08-19":{"1. open":"7.2500","2. high":"7.3300","3. low":"7.1500","4. close":"7.3000","5. volume":"528193"},"2016-08-12":{"1. open":"7.3000","2. high":"7.3800","3. low":"7.2300","4. close":"7.3000","5. volume":"650399"},"2016-08-05":{"1. open":"7.1100","2. high":"7.4000","3. low":"7.1100","4. close":"7.3500","5. volume":"403444"},"2016-07-29":{"1. open":"7.1600","2. high":"7.2500","3. low":"7.0400","4. close":"7.1500","5. volume":"288972"},"2016-07-22":{"1. open":"7.1700","2. high":"7.2500","3. low":"7.0300","4. close":"7.1400","5. volume":"410180"},"2016-07-15":{"1. open":"7.1800","2. high":"7.3000","3. low":"7.1000","4. close":"7.2000","5. volume":"424556"},"2016-07-08":{"1. open":"7.1000","2. high":"7.1600","3. low":"7.0000","4. close":"7.1400","5. volume":"168788"},"2016-07-01":{"1. open":"6.8300","2. high":"7.2000","3. low":"6.7000","4. close":"7.0900","5. volume":"619663"},"2016-06-24":{"1. open":"6.8400","2. high":"6.9400","3. low":"6.6200","4. close":"6.8800","5. volume":"442138"},"2016-06-17":{"1. open":"6.9900","2. high":"6.9900","3. low":"6.7600","4. close":"6.8000","5. volume":"606704"},"2016-06-10":{"1. open":"6.9600","2. high":"7.0900","3. low":"6.9400","4. close":"6.9900","5. volume":"480880"},"2016-06-03":{"1. open":"6.9600","2. high":"7.0900","3. low":"6.9208","4. close":"6.9900","5. volume":"353572"},"2016-05-27":{"1. open":"6.7900","2. high":"6.9100","3. low":"6.7100","4. close":"6.9000","5. volume":"197430"},"2016-05-20":{"1. open":"6.9800","2. high":"7.0000","3. low":"6.6400","4. close":"6.7400","5. volume":"359329"},"2016-05-13":{"1. open":"6.8800","2. high":"7.1900","3. low":"6.8800","4. close":"7.1100","5. volume":"530516"},"2016-05-06":{"1. open":"6.7100","2. high":"6.9400","3. low":"6.6100","4. close":"6.9100","5. volume":"376231"},"2016-04-29":{"1. open":"6.7500","2. high":"6.8200","3. low":"6.6300","4. close":"6.6800","5. volume":"448487"},"2016-04-22":{"1. open":"6.7000","2. high":"6.8000","3. low":"6.6994","4. close":"6.7300","5. volume":"340774"},"2016-04-15":{"1. open":"6.7000","2. high":"6.8000","3. low":"6.6800","4. close":"6.7100","5. volume":"356753"},"2016-04-08":{"1. open":"6.7700","2. high":"6.7700","3. low":"6.5900","4. close":"6.6800","5. volume":"435007"},"2016-04-01":{"1. open":"6.8000","2. high":"6.9000","3. low":"6.5700","4. close":"6.7700","5. volume":"428911"},"2016-03-24":{"1. open":"6.7200","2. high":"6.8300","3. low":"6.6300","4. close":"6.8000","5. volume":"348394"},"2016-03-18":{"1. open":"6.5500","2. high":"6.8601","3. low":"6.5400","4. close":"6.7200","5. volume":"654856"},"2016-03-11":{"1. open":"6.8400","2. high":"6.8801","3. low":"6.5200","4. close":"6.7200","5. volume":"362330"},"2016-03-04":{"1. open":"6.6000","2. high":"6.9500","3. low":"6.5800","4. close":"6.8100","5. volume":"673600"},"2016-02-26":{"1. open":"6.2700","2. high":"6.6480","3. low":"6.2000","4. close":"6.6100","5. volume":"624131"},"2016-02-19":{"1. open":"6.2100","2. high":"6.3692","3. low":"6.0500","4. close":"6.2600","5. volume":"378241"},"2016-02-12":{"1. open":"6.4600","2. high":"6.4600","3. low":"6.0100","4. close":"6.0500","5. volume":"611816"},"2016-02-05":{"1. open":"6.5400","2. high":"6.5800","3. low":"6.3500","4. close":"6.4800","5. volume":"317421"},"2016-01-29":{"1. open":"6.3800","2. high":"6.5400","3. low":"6.1700","4. close":"6.5400","5. volume":"376211"},"2016-01-22":{"1. open":"6.5100","2. high":"6.5100","3. low":"6.0800","4. close":"6.3800","5. volume":"616087"},"2016-01-15":{"1. open":"7.0500","2. high":"7.1200","3. low":"6.3500","4. close":"6.4800","5. volume":"749768"},"2016-01-08":{"1. open":"7.1500","2. high":"7.3500","3. low":"7.0100","4. close":"7.0400","5. volume":"733003"},"2015-12-31":{"1. open":"7.0700","2. high":"7.2000","3. low":"7.0100","4. close":"7.1500","5. volume":"369102"},"2015-12-24":{"1. open":"7.1400","2. high":"7.2700","3. low":"6.8700","4. close":"7.0500","5. volume":"703548"},"2015-12-18":{"1. open":"6.7900","2. high":"7.3100","3. low":"6.5400","4. close":"7.2600","5. volume":"1717903"},"2015-12-11":{"1. open":"6.7900","2. high":"6.9100","3. low":"6.6500","4. close":"6.7500","5. volume":"350956"},"2015-12-04":{"1. open":"6.7800","2. high":"6.9500","3. low":"6.6800","4. close":"6.7400","5. volume":"350230"},"2015-11-27":{"1. open":"6.7000","2. high":"6.7900","3. low":"6.6000","4. close":"6.7800","5. volume":"249181"},"2015-11-20":{"1. open":"6.6500","2. high":"6.7700","3. low":"6.5600","4. close":"6.7000","5. volume":"410132"},"2015-11-13":{"1. open":"6.5800","2. high":"6.8800","3. low":"6.5800","4. close":"6.7400","5. volume":"706179"},"2015-11-06":{"1. open":"6.2900","2. high":"6.6000","3. low":"6.2700","4. close":"6.5600","5. volume":"477776"},"2015-10-30":{"1. open":"6.4700","2. high":"6.5100","3. low":"6.2480","4. close":"6.2500","5. volume":"573195"},"2015-10-23":{"1. open":"6.4000","2. high":"6.5000","3. low":"6.3500","4. close":"6.4500","5. volume":"251358"},"2015-10-16":{"1. open":"6.4600","2. high":"6.4799","3. low":"6.3500","4. close":"6.3800","5. volume":"300628"},"2015-10-09":{"1. open":"6.3400","2. high":"6.5000","3. low":"6.3300","4. close":"6.4500","5. volume":"290735"},"2015-10-02":{"1. open":"6.4300","2. high":"6.4600","3. low":"6.2300","4. close":"6.3300","5. volume":"450057"},"2015-09-25":{"1. open":"6.5400","2. high":"6.6200","3. low":"6.4000","4. close":"6.4000","5. volume":"436090"},"2015-09-18":{"1. open":"6.2500","2. high":"6.5100","3. low":"6.2300","4. close":"6.5100","5. volume":"413164"},"2015-09-11":{"1. open":"6.3300","2. high":"6.3700","3. low":"6.1700","4. close":"6.2100","5. volume":"281014"},"2015-09-04":{"1. open":"6.3100","2. high":"6.4200","3. low":"6.2100","4. close":"6.2700","5. volume":"403636"},"2015-08-28":{"1. open":"6.3300","2. high":"6.4500","3. low":"6.0300","4. close":"6.2900","5. volume":"983488"},"2015-08-21":{"1. open":"6.5600","2. high":"6.6580","3. low":"6.4000","4. close":"6.5000","5. volume":"490228"},"2015-08-14":{"1. open":"6.5600","2. high":"6.6000","3. low":"6.3800","4. close":"6.5600","5. volume":"690113"},"2015-08-07":{"1. open":"6.8200","2. high":"6.8500","3. low":"6.4800","4. close":"6.5400","5. volume":"735482"},"2015-07-31":{"1. open":"6.6900","2. high":"6.9300","3. low":"6.5800","4. close":"6.8400","5. volume":"881538"},"2015-07-24":{"1. open":"6.8800","2. high":"6.9000","3. low":"6.6600","4. close":"6.6900","5. volume":"687916"},"2015-07-17":{"1. open":"6.7700","2. high":"6.9400","3. low":"6.7700","4. close":"6.8700","5. volume":"481485"},"2015-07-10":{"1. open":"6.7000","2. high":"6.8400","3. low":"6.6500","4. close":"6.7100","5. volume":"553999"},"2015-07-02":{"1. open":"6.7800","2. high":"6.8000","3. low":"6.5700","4. close":"6.6800","5. volume":"672628"},"2015-06-26":{"1. open":"6.8500","2. high":"6.9300","3. low":"6.7500","4. close":"6.8200","5. volume":"824779"},"2015-06-19":{"1. open":"7.0300","2. high":"7.0400","3. low":"6.8300","4. close":"6.8900","5. volume":"744162"},"2015-06-12":{"1. open":"6.9100","2. high":"7.0100","3. low":"6.8300","4. close":"7.0000","5. volume":"1019624"},"2015-06-05":{"1. open":"7.1500","2. high":"7.1600","3. low":"6.9000","4. close":"6.9500","5. volume":"1019835"},"2015-05-29":{"1. open":"7.0200","2. high":"7.2100","3. low":"6.9801","4. close":"7.0900","5. volume":"1278372"},"2015-05-22":{"1. open":"6.8100","2. high":"7.1000","3. low":"6.7600","4. close":"7.0000","5. volume":"2113927"},"2015-05-15":{"1. open":"7.0200","2. high":"7.0200","3. low":"6.5500","4. close":"6.7800","5. volume":"6619204"},"2015-05-08":{"1. open":"7.1700","2. high":"7.1900","3. low":"6.9000","4. close":"6.9900","5. volume":"1366494"},"2015-05-01":{"1. open":"7.0000","2. high":"7.2000","3. low":"6.8500","4. close":"7.0100","5. volume":"517673"},"2015-04-24":{"1. open":"6.9500","2. high":"7.0000","3. low":"6.9000","4. close":"7.0000","5. volume":"239262"},"2015-04-17":{"1. open":"6.9100","2. high":"6.9700","3. low":"6.9000","4. close":"6.9300","5. volume":"293384"},"2015-04-10":{"1. open":"7.0300","2. high":"7.0600","3. low":"6.9100","4. close":"6.9200","5. volume":"375700"},"2015-04-02":{"1. open":"6.9700","2. high":"7.0900","3. low":"6.9600","4. close":"7.0500","5. volume":"246936"},"2015-03-27":{"1. open":"6.9800","2. high":"7.0550","3. low":"6.9500","4. close":"6.9800","5. volume":"303818"},"2015-03-20":{"1. open":"7.0100","2. high":"7.0500","3. low":"6.9500","4. close":"6.9900","5. volume":"381564"},"2015-03-13":{"1. open":"7.0100","2. high":"7.0600","3. low":"6.9500","4. close":"7.0100","5. volume":"298264"},"2015-03-06":{"1. open":"7.2500","2. high":"7.2500","3. low":"7.0000","4. close":"7.0100","5. volume":"406292"},"2015-02-27":{"1. open":"6.9500","2. high":"7.2600","3. low":"6.7500","4. close":"7.1700","5. volume":"342872"},"2015-02-20":{"1. open":"7.2600","2. high":"7.3700","3. low":"7.1000","4. close":"7.1700","5. volume":"444959"},"2015-02-13":{"1. open":"7.3000","2. high":"7.4000","3. low":"7.0900","4. close":"7.1300","5. volume":"677235"},"2015-02-06":{"1. open":"6.9800","2. high":"7.4200","3. low":"6.9500","4. close":"7.3000","5. volume":"532209"},"2015-01-30":{"1. open":"6.8900","2. high":"7.0200","3. low":"6.8200","4. close":"6.9500","5. volume":"430892"},"2015-01-23":{"1. open":"6.9000","2. high":"6.9600","3. low":"6.8200","4. close":"6.8200","5. volume":"603964"},"2015-01-16":{"1. open":"7.0200","2. high":"7.0200","3. low":"6.7800","4. close":"6.9200","5. volume":"798582"},"2015-01-09":{"1. open":"6.8300","2. high":"7.1700","3. low":"6.8100","4. close":"6.9700","5. volume":"783309"},"2015-01-02":{"1. open":"6.7100","2. high":"6.8400","3. low":"6.7100","4. close":"6.8300","5. volume":"386256"},"2014-12-26":{"1. open":"6.6900","2. high":"6.8400","3. low":"6.5500","4. close":"6.6900","5. volume":"389016"},"2014-12-19":{"1. open":"6.7700","2. high":"6.8900","3. low":"6.5876","4. close":"6.6500","5. volume":"1012676"},"2014-12-12":{"1. open":"6.7200","2. high":"6.8100","3. low":"6.6100","4. close":"6.7300","5. volume":"483618"},"2014-12-05":{"1. open":"6.9400","2. high":"6.9500","3. low":"6.7100","4. close":"6.7400","5. volume":"353995"},"2014-11-28":{"1. open":"6.7800","2. high":"6.9300","3. low":"6.7300","4. close":"6.9100","5. volume":"201074"},"2014-11-21":{"1. open":"6.9500","2. high":"6.9500","3. low":"6.7200","4. close":"6.7300","5. volume":"267876"},"2014-11-14":{"1. open":"6.9000","2. high":"7.1800","3. low":"6.8400","4. close":"7.0400","5. volume":"725718"},"2014-11-07":{"1. open":"6.7800","2. high":"6.9500","3. low":"6.5100","4. close":"6.8800","5. volume":"242706"},"2014-10-31":{"1. open":"6.6100","2. high":"6.8600","3. low":"6.5000","4. close":"6.7300","5. volume":"333527"},"2014-10-24":{"1. open":"6.4400","2. high":"6.7000","3. low":"6.4400","4. close":"6.5900","5. volume":"303233"},"2014-10-17":{"1. open":"6.5000","2. high":"6.6400","3. low":"6.3200","4. close":"6.4600","5. volume":"378838"},"2014-10-10":{"1. open":"6.6400","2. high":"6.7200","3. low":"6.5000","4. close":"6.5400","5. volume":"316552"},"2014-10-03":{"1. open":"6.6700","2. high":"6.7700","3. low":"6.5500","4. close":"6.5900","5. volume":"541155"},"2014-09-26":{"1. open":"6.9200","2. high":"6.9200","3. low":"6.6100","4. close":"6.7100","5. volume":"488251"},"2014-09-19":{"1. open":"6.8000","2. high":"7.0000","3. low":"6.6010","4. close":"7.0000","5. volume":"713200"},"2014-09-12":{"1. open":"6.9700","2. high":"6.9700","3. low":"6.7600","4. close":"6.8300","5. volume":"710400"},"2014-09-05":{"1. open":"7.0000","2. high":"7.0400","3. low":"6.8800","4. close":"6.9400","5. volume":"402600"},"2014-08-29":{"1. open":"6.9500","2. high":"7.0200","3. low":"6.9100","4. close":"6.9900","5. volume":"546200"},"2014-08-22":{"1. open":"6.9700","2. high":"6.9900","3. low":"6.8900","4. close":"6.9800","5. volume":"537300"},"2014-08-15":{"1. open":"7.0800","2. high":"7.1000","3. low":"6.8500","4. close":"6.9100","5. volume":"698700"},"2014-08-08":{"1. open":"7.1100","2. high":"7.1100","3. low":"6.9200","4. close":"6.9700","5. volume":"576400"},"2014-08-01":{"1. open":"7.1800","2. high":"7.2200","3. low":"7.0000","4. close":"7.0200","5. volume":"372300"},"2014-07-25":{"1. open":"7.0800","2. high":"7.3000","3. low":"7.0500","4. close":"7.1900","5. volume":"682000"},"2014-07-18":{"1. open":"6.8800","2. high":"7.0000","3. low":"6.8300","4. close":"6.8800","5. volume":"361900"},"2014-07-11":{"1. open":"6.9500","2. high":"6.9810","3. low":"6.8500","4. close":"6.8900","5. volume":"533300"},"2014-07-03":{"1. open":"7.0000","2. high":"7.0800","3. low":"6.9400","4. close":"6.9500","5. volume":"359200"},"2014-06-27":{"1. open":"7.0700","2. high":"7.1260","3. low":"6.7700","4. close":"6.7700","5. volume":"950000"},"2014-06-20":{"1. open":"7.0600","2. high":"7.1500","3. low":"7.0000","4. close":"7.0200","5. volume":"703672"},"2014-06-13":{"1. open":"7.2300","2. high":"7.2650","3. low":"7.0800","4. close":"7.1500","5. volume":"903000"},"2014-06-06":{"1. open":"7.3200","2. high":"7.3200","3. low":"7.1900","4. close":"7.2500","5. volume":"214671"},"2014-05-30":{"1. open":"7.1400","2. high":"7.3200","3. low":"7.0900","4. close":"7.2700","5. volume":"479700"},"2014-05-23":{"1. open":"7.0200","2. high":"7.1400","3. low":"6.9800","4. close":"7.1000","5. volume":"282200"},"2014-05-16":{"1. open":"7.0600","2. high":"7.1790","3. low":"6.9600","4. close":"7.0100","5. volume":"614000"},"2014-05-09":{"1. open":"7.1900","2. high":"7.1900","3. low":"7.0000","4. close":"7.0600","5. volume":"317100"},"2014-05-02":{"1. open":"7.0000","2. high":"7.1900","3. low":"6.9400","4. close":"7.1600","5. volume":"263814"},"2014-04-25":{"1. open":"7.0000","2. high":"7.0700","3. low":"6.8600","4. close":"7.0200","5. volume":"458000"},"2014-04-17":{"1. open":"6.9300","2. high":"7.0400","3. low":"6.7650","4. close":"7.0100","5. volume":"329500"},"2014-04-11":{"1. open":"7.1700","2. high":"7.3200","3. low":"6.9100","4. close":"6.9600","5. volume":"610200"},"2014-04-04":{"1. open":"6.8500","2. high":"7.3600","3. low":"6.7900","4. close":"7.1800","5. volume":"944800"},"2014-03-28":{"1. open":"6.9000","2. high":"6.9000","3. low":"6.6600","4. close":"6.8300","5. volume":"637800"},"2014-03-21":{"1. open":"6.7400","2. high":"6.9500","3. low":"6.6700","4. close":"6.9500","5. volume":"663800"},"2014-03-14":{"1. open":"6.8800","2. high":"6.9100","3. low":"6.6500","4. close":"6.7400","5. volume":"353500"},"2014-03-07":{"1. open":"6.8600","2. high":"6.9800","3. low":"6.6800","4. close":"6.8500","5. volume":"1539300"},"2014-02-28":{"1. open":"6.7900","2. high":"6.9400","3. low":"6.7200","4. close":"6.8600","5. volume":"387900"},"2014-02-21":{"1. open":"7.0100","2. high":"7.2600","3. low":"6.8200","4. close":"6.8200","5. volume":"694800"},"2014-02-14":{"1. open":"6.9500","2. high":"7.0600","3. low":"6.9100","4. close":"7.0400","5. volume":"889500"},"2014-02-07":{"1. open":"6.8600","2. high":"7.0100","3. low":"6.7500","4. close":"6.9500","5. volume":"641800"},"2014-01-31":{"1. open":"6.8500","2. high":"7.0000","3. low":"6.7750","4. close":"6.8700","5. volume":"455000"},"2014-01-24":{"1. open":"6.9200","2. high":"7.0500","3. low":"6.8500","4. close":"6.9200","5. volume":"444700"},"2014-01-17":{"1. open":"6.8200","2. high":"7.0100","3. low":"6.7900","4. close":"6.8800","5. volume":"662700"},"2014-01-10":{"1. open":"6.7700","2. high":"6.9700","3. low":"6.7501","4. close":"6.7900","5. volume":"342800"},"2014-01-03":{"1. open":"6.6000","2. high":"6.8100","3. low":"6.5500","4. close":"6.7600","5. volume":"352700"},"2013-12-27":{"1. open":"6.6800","2. high":"6.8100","3. low":"6.5500","4. close":"6.5800","5. volume":"397400"},"2013-12-20":{"1. open":"6.5400","2. high":"6.6900","3. low":"6.4500","4. close":"6.6700","5. volume":"453468"},"2013-12-13":{"1. open":"6.5900","2. high":"6.7300","3. low":"6.4800","4. close":"6.5400","5. volume":"496100"},"2013-12-06":{"1. open":"6.6700","2. high":"6.6700","3. low":"6.4600","4. close":"6.5900","5. volume":"434400"},"2013-11-29":{"1. open":"6.6300","2. high":"6.7300","3. low":"6.5000","4. close":"6.6300","5. volume":"296800"},"2013-11-22":{"1. open":"6.8100","2. high":"6.8100","3. low":"6.4700","4. close":"6.6200","5. volume":"309496"},"2013-11-15":{"1. open":"6.6100","2. high":"6.8800","3. low":"6.4200","4. close":"6.8500","5. volume":"623500"},"2013-11-08":{"1. open":"6.6500","2. high":"6.7400","3. low":"6.2600","4. close":"6.5200","5. volume":"839400"},"2013-11-01":{"1. open":"7.0500","2. high":"7.0500","3. low":"6.4200","4. close":"6.5800","5. volume":"1168100"},"2013-10-25":{"1. open":"6.9600","2. high":"7.0450","3. low":"6.9000","4. close":"7.0200","5. volume":"641900"},"2013-10-18":{"1. open":"6.6400","2. high":"7.0450","3. low":"6.6000","4. close":"6.9400","5. volume":"1342300"},"2013-10-11":{"1. open":"6.6100","2. high":"6.7950","3. low":"6.5800","4. close":"6.7100","5. volume":"1186200"},"2013-10-04":{"1. open":"6.8200","2. high":"6.9500","3. low":"6.6300","4. close":"6.6300","5. volume":"1718900"},"2013-09-27":{"1. open":"7.2600","2. high":"7.4300","3. low":"6.8000","4. close":"6.8800","5. volume":"6222500"},"2013-09-20":{"1. open":"7.2000","2. high":"7.5000","3. low":"7.1500","4. close":"7.2500","5. volume":"415300"},"2013-09-13":{"1. open":"7.0600","2. high":"7.2650","3. low":"7.0000","4. close":"7.1600","5. volume":"314400"},"2013-09-06":{"1. open":"7.0400","2. high":"7.0900","3. low":"6.8410","4. close":"7.0000","5. volume":"287700"},"2013-08-30":{"1. open":"7.0600","2. high":"7.0600","3. low":"6.7100","4. close":"6.8900","5. volume":"290300"},"2013-08-23":{"1. open":"7.1000","2. high":"7.1300","3. low":"6.6800","4. close":"7.1000","5. volume":"487700"},"2013-08-16":{"1. open":"7.4100","2. high":"7.5400","3. low":"7.1100","4. close":"7.1500","5. volume":"443000"},"2013-08-09":{"1. open":"7.4800","2. high":"7.6500","3. low":"7.2700","4. close":"7.5500","5. volume":"548500"},"2013-08-02":{"1. open":"7.6000","2. high":"7.7400","3. low":"7.2610","4. close":"7.4000","5. volume":"915500"},"2013-07-26":{"1. open":"7.4000","2. high":"7.7200","3. low":"7.3675","4. close":"7.6500","5. volume":"901200"},"2013-07-19":{"1. open":"6.4400","2. high":"7.4800","3. low":"6.3200","4. close":"7.4500","5. volume":"1878400"},"2013-07-12":{"1. open":"6.2000","2. high":"6.4400","3. low":"6.1200","4. close":"6.4000","5. volume":"437900"},"2013-07-05":{"1. open":"6.3300","2. high":"6.7200","3. low":"6.1100","4. close":"6.1900","5. volume":"336700"},"2013-06-28":{"1. open":"6.0600","2. high":"6.5000","3. low":"5.7800","4. close":"6.2800","5. volume":"1179400"},"2013-06-21":{"1. open":"6.8600","2. high":"6.8600","3. low":"5.9700","4. close":"6.2100","5. volume":"1327200"},"2013-06-14":{"1. open":"6.9500","2. high":"7.0900","3. low":"6.6900","4. close":"6.7700","5. volume":"719900"},"2013-06-07":{"1. open":"6.8100","2. high":"7.0000","3. low":"6.7200","4. close":"6.9500","5. volume":"1101300"},"2013-05-31":{"1. open":"7.0500","2. high":"7.0800","3. low":"6.6800","4. close":"6.7800","5. volume":"904500"},"2013-05-24":{"1. open":"7.2500","2. high":"7.3900","3. low":"6.8700","4. close":"7.0300","5. volume":"961700"},"2013-05-17":{"1. open":"7.1500","2. high":"7.2600","3. low":"7.0300","4. close":"7.2200","5. volume":"1182600"},"2013-05-10":{"1. open":"7.5800","2. high":"7.6300","3. low":"7.2500","4. close":"7.2600","5. volume":"867100"},"2013-05-03":{"1. open":"7.5800","2. high":"7.7400","3. low":"7.2500","4. close":"7.4200","5. volume":"888100"},"2013-04-26":{"1. open":"7.2900","2. high":"7.6400","3. low":"7.1400","4. close":"7.5100","5. volume":"724600"},"2013-04-19":{"1. open":"7.7600","2. high":"7.8100","3. low":"7.1000","4. close":"7.2300","5. volume":"1212400"},"2013-04-12":{"1. open":"7.9100","2. high":"8.0800","3. low":"7.7500","4. close":"7.7600","5. volume":"610200"},"2013-04-05":{"1. open":"7.8600","2. high":"7.9700","3. low":"7.7500","4. close":"7.8600","5. volume":"1546300"},"2013-03-28":{"1. open":"7.7500","2. high":"7.8600","3. low":"7.6400","4. close":"7.8400","5. volume":"2153500"},"2013-03-22":{"1. open":"8.1900","2. high":"8.3500","3. low":"7.6000","4. close":"7.6300","5. volume":"6243400"},"2013-03-15":{"1. open":"8.2000","2. high":"8.6000","3. low":"8.0000","4. close":"8.2100","5. volume":"3636700"},"2013-03-08":{"1. open":"7.9400","2. high":"8.4050","3. low":"7.9100","4. close":"8.2100","5. volume":"1777000"},"2013-03-01":{"1. open":"7.8000","2. high":"8.0100","3. low":"7.4900","4. close":"7.9000","5. volume":"1383900"},"2013-02-22":{"1. open":"7.7500","2. high":"8.1200","3. low":"7.3600","4. close":"7.7700","5. volume":"3033500"},"2013-02-15":{"1. open":"7.1700","2. high":"7.7500","3. low":"7.0800","4. close":"7.7000","5. volume":"822163"},"2013-02-08":{"1. open":"7.0400","2. high":"7.2500","3. low":"7.0100","4. close":"7.1500","5. volume":"516200"},"2013-02-01":{"1. open":"7.1200","2. high":"7.1700","3. low":"6.8500","4. close":"7.0700","5. volume":"647700"},"2013-01-25":{"1. open":"7.1600","2. high":"7.2010","3. low":"7.0000","4. close":"7.1200","5. volume":"718600"},"2013-01-18":{"1. open":"6.8400","2. high":"7.3500","3. low":"6.7400","4. close":"7.1600","5. volume":"1494900"},"2013-01-11":{"1. open":"6.6000","2. high":"6.8900","3. low":"6.4010","4. close":"6.8800","5. volume":"1058600"},"2013-01-04":{"1. open":"5.9800","2. high":"6.8800","3. low":"5.9500","4. close":"6.5600","5. volume":"1063200"},"2012-12-28":{"1. open":"5.9300","2. high":"6.0900","3. low":"5.9150","4. close":"6.0000","5. volume":"180700"},"2012-12-21":{"1. open":"5.7000","2. high":"6.2200","3. low":"5.6600","4. close":"5.9700","5. volume":"1036000"},"2012-12-14":{"1. open":"5.1800","2. high":"5.7500","3. low":"5.0600","4. close":"5.6600","5. volume":"1600400"},"2012-12-07":{"1. open":"5.2800","2. high":"5.3100","3. low":"5.0800","4. close":"5.1600","5. volume":"243300"},"2012-11-30":{"1. open":"5.2100","2. high":"5.3100","3. low":"5.1300","4. close":"5.3100","5. volume":"449400"},"2012-11-23":{"1. open":"5.1300","2. high":"5.2300","3. low":"5.0000","4. close":"5.2000","5. volume":"348700"},"2012-11-16":{"1. open":"5.4000","2. high":"5.5100","3. low":"4.7200","4. close":"5.0400","5. volume":"1012600"},"2012-11-09":{"1. open":"5.5400","2. high":"5.5400","3. low":"5.2600","4. close":"5.3800","5. volume":"686100"},"2012-11-02":{"1. open":"5.4400","2. high":"5.5700","3. low":"5.3200","4. close":"5.4600","5. volume":"328600"},"2012-10-26":{"1. open":"5.5300","2. high":"5.5300","3. low":"5.3600","4. close":"5.4000","5. volume":"458900"},"2012-10-19":{"1. open":"5.7000","2. high":"5.7000","3. low":"5.4800","4. close":"5.5000","5. volume":"812200"},"2012-10-12":{"1. open":"5.6600","2. high":"5.7600","3. low":"5.5500","4. close":"5.6500","5. volume":"1275500"},"2012-10-05":{"1. open":"6.0100","2. high":"6.2400","3. low":"5.6550","4. close":"5.7000","5. volume":"3916500"},"2012-09-28":{"1. open":"6.3200","2. high":"6.3800","3. low":"5.9500","4. close":"5.9700","5. volume":"354100"},"2012-09-21":{"1. open":"6.2000","2. high":"6.5500","3. low":"6.1600","4. close":"6.3400","5. volume":"413200"},"2012-09-14":{"1. open":"5.5700","2. high":"6.2900","3. low":"5.5300","4. close":"6.2200","5. volume":"838800"},"2012-09-07":{"1. open":"5.7800","2. high":"5.8000","3. low":"5.5000","4. close":"5.6200","5. volume":"212900"},"2012-08-31":{"1. open":"5.5200","2. high":"5.7900","3. low":"5.5200","4. close":"5.7500","5. volume":"186200"},"2012-08-24":{"1. open":"5.7000","2. high":"5.7000","3. low":"5.4400","4. close":"5.5500","5. volume":"329500"},"2012-08-17":{"1. open":"5.5700","2. high":"5.8500","3. low":"5.5120","4. close":"5.6700","5. volume":"335100"},"2012-08-10":{"1. open":"5.5300","2. high":"5.7600","3. low":"5.4400","4. close":"5.5500","5. volume":"314100"},"2012-08-03":{"1. open":"5.4300","2. high":"5.6302","3. low":"5.3400","4. close":"5.4800","5. volume":"324300"},"2012-07-27":{"1. open":"5.2700","2. high":"5.4000","3. low":"5.2700","4. close":"5.4000","5. volume":"222900"},"2012-07-20":{"1. open":"5.3000","2. high":"5.3800","3. low":"5.2500","4. close":"5.3100","5. volume":"135676"},"2012-07-13":{"1. open":"5.4000","2. high":"5.4000","3. low":"5.1600","4. close":"5.2700","5. volume":"232600"},"2012-07-06":{"1. open":"5.3700","2. high":"5.4200","3. low":"5.3000","4. close":"5.3700","5. volume":"167500"},"2012-06-29":{"1. open":"5.0600","2. high":"5.4200","3. low":"5.0600","4. close":"5.3500","5. volume":"398100"},"2012-06-22":{"1. open":"5.0900","2. high":"5.3400","3. low":"5.0000","4. close":"5.1300","5. volume":"581800"},"2012-06-15":{"1. open":"5.4000","2. high":"5.4000","3. low":"4.9900","4. close":"5.0500","5. volume":"891300"},"2012-06-08":{"1. open":"5.9900","2. high":"6.1500","3. low":"5.3200","4. close":"5.3700","5. volume":"1318168"},"2012-06-01":{"1. open":"5.9800","2. high":"6.2400","3. low":"5.8800","4. close":"5.9400","5. volume":"167700"},"2012-05-25":{"1. open":"5.8800","2. high":"6.2700","3. low":"5.6899","4. close":"5.8500","5. volume":"193400"},"2012-05-18":{"1. open":"6.1600","2. high":"6.6700","3. low":"5.7500","4. close":"5.8300","5. volume":"292400"},"2012-05-11":{"1. open":"5.8700","2. high":"6.2800","3. low":"5.8700","4. close":"6.1900","5. volume":"532300"},"2012-05-04":{"1. open":"5.7900","2. high":"6.0200","3. low":"5.4910","4. close":"5.8300","5. volume":"321400"},"2012-04-27":{"1. open":"5.4900","2. high":"5.8500","3. low":"5.3660","4. close":"5.7500","5. volume":"118000"},"2012-04-20":{"1. open":"5.5501","2. high":"5.8200","3. low":"5.5190","4. close":"5.5200","5. volume":"105600"},"2012-04-13":{"1. open":"5.0300","2. high":"5.5850","3. low":"5.0200","4. close":"5.5600","5. volume":"138400"},"2012-04-05":{"1. open":"5.6000","2. high":"5.6000","3. low":"5.0800","4. close":"5.1200","5. volume":"140500"},"2012-03-30":{"1. open":"5.6900","2. high":"5.9400","3. low":"5.5100","4. close":"5.5900","5. volume":"241400"},"2012-03-23":{"1. open":"5.3000","2. high":"5.7000","3. low":"5.2900","4. close":"5.6200","5. volume":"293900"},"2012-03-16":{"1. open":"5.3500","2. high":"5.4900","3. low":"5.2600","4. close":"5.3200","5. volume":"390400"},"2012-03-09":{"1. open":"4.9500","2. high":"5.4000","3. low":"4.9000","4. close":"5.3500","5. volume":"369000"},"2012-03-02":{"1. open":"4.7800","2. high":"4.9100","3. low":"4.5800","4. close":"4.9070","5. volume":"380900"},"2012-02-24":{"1. open":"4.7200","2. high":"4.8100","3. low":"4.5600","4. close":"4.7700","5. volume":"170700"},"2012-02-17":{"1. open":"4.5400","2. high":"4.9000","3. low":"4.5400","4. close":"4.7700","5. volume":"154000"},"2012-02-10":{"1. open":"4.3000","2. high":"4.6180","3. low":"4.2500","4. close":"4.5400","5. volume":"352500"},"2012-02-03":{"1. open":"4.2200","2. high":"4.3500","3. low":"4.1500","4. close":"4.2800","5. volume":"244700"},"2012-01-27":{"1. open":"4.2200","2. high":"4.3400","3. low":"4.2000","4. close":"4.2100","5. volume":"130800"},"2012-01-20":{"1. open":"4.1100","2. high":"4.4700","3. low":"4.0600","4. close":"4.2700","5. volume":"178900"},"2012-01-13":{"1. open":"3.6000","2. high":"4.1400","3. low":"3.6000","4. close":"4.1100","5. volume":"252900"},"2012-01-06":{"1. open":"3.6000","2. high":"3.6300","3. low":"3.3500","4. close":"3.6000","5. volume":"165000"},"2011-12-30":{"1. open":"3.5400","2. high":"3.7401","3. low":"3.5200","4. close":"3.5200","5. volume":"167400"},"2011-12-23":{"1. open":"3.4900","2. high":"3.6500","3. low":"3.3100","4. close":"3.6000","5. volume":"220800"},"2011-12-16":{"1. open":"3.3100","2. high":"3.5700","3. low":"3.2000","4. close":"3.5000","5. volume":"244800"},"2011-12-09":{"1. open":"3.5000","2. high":"3.5000","3. low":"3.2000","4. close":"3.3000","5. volume":"192500"},"2011-12-02":{"1. open":"3.5800","2. high":"3.5800","3. low":"3.3400","4. close":"3.5000","5. volume":"275200"},"2011-11-25":{"1. open":"3.5600","2. high":"3.6684","3. low":"3.5100","4. close":"3.5180","5. volume":"68300"},"2011-11-18":{"1. open":"3.7000","2. high":"3.7400","3. low":"3.5800","4. close":"3.6000","5. volume":"129300"},"2011-11-11":{"1. open":"3.5500","2. high":"4.0308","3. low":"3.5500","4. close":"3.6700","5. volume":"226900"},"2011-11-04":{"1. open":"3.6600","2. high":"3.7200","3. low":"3.3500","4. close":"3.5500","5. volume":"220900"},"2011-10-28":{"1. open":"3.5127","2. high":"3.7300","3. low":"3.5000","4. close":"3.7000","5. volume":"267500"},"2011-10-21":{"1. open":"3.2700","2. high":"3.5300","3. low":"3.2600","4. close":"3.5100","5. volume":"242000"},"2011-10-14":{"1. open":"3.2500","2. high":"3.4000","3. low":"3.1900","4. close":"3.2600","5. volume":"298500"},"2011-10-07":{"1. open":"3.7100","2. high":"3.7110","3. low":"3.2100","4. close":"3.2200","5. volume":"712500"},"2011-09-30":{"1. open":"3.9200","2. high":"3.9200","3. low":"3.6900","4. close":"3.7800","5. volume":"373800"},"2011-09-23":{"1. open":"3.9600","2. high":"4.0586","3. low":"3.7500","4. close":"3.8700","5. volume":"292100"},"2011-09-16":{"1. open":"4.0500","2. high":"4.2500","3. low":"3.9900","4. close":"3.9900","5. volume":"201200"},"2011-09-09":{"1. open":"3.9300","2. high":"4.2300","3. low":"3.9300","4. close":"4.1900","5. volume":"151700"},"2011-09-02":{"1. open":"3.8100","2. high":"4.2675","3. low":"3.7000","4. close":"4.0200","5. volume":"238900"},"2011-08-26":{"1. open":"3.6700","2. high":"4.0900","3. low":"3.6500","4. close":"3.7700","5. volume":"383000"},"2011-08-19":{"1. open":"3.9400","2. high":"4.0200","3. low":"3.6500","4. close":"3.6600","5. volume":"414200"},"2011-08-12":{"1. open":"3.9700","2. high":"4.0000","3. low":"3.5700","4. close":"3.9000","5. volume":"529300"},"2011-08-05":{"1. open":"4.3100","2. high":"4.9800","3. low":"3.9500","4. close":"4.0600","5. volume":"505900"},"2011-07-29":{"1. open":"4.6000","2. high":"4.6300","3. low":"4.1600","4. close":"4.2400","5. volume":"355500"},"2011-07-22":{"1. open":"4.4600","2. high":"4.7300","3. low":"4.3300","4. close":"4.6300","5. volume":"193400"},"2011-07-15":{"1. open":"4.6700","2. high":"4.7200","3. low":"4.4400","4. close":"4.4700","5. volume":"204000"},"2011-07-08":{"1. open":"4.7500","2. high":"4.8000","3. low":"4.6000","4. close":"4.7500","5. volume":"220900"},"2011-07-01":{"1. open":"4.5800","2. high":"4.8598","3. low":"4.5800","4. close":"4.7900","5. volume":"183200"},"2011-06-24":{"1. open":"4.3600","2. high":"4.6900","3. low":"4.2800","4. close":"4.6000","5. volume":"332900"},"2011-06-17":{"1. open":"5.2300","2. high":"5.2300","3. low":"3.9100","4. close":"4.3600","5. volume":"1177400"},"2011-06-10":{"1. open":"5.0300","2. high":"5.2900","3. low":"4.8200","4. close":"5.2400","5. volume":"261300"},"2011-06-03":{"1. open":"5.0700","2. high":"5.1100","3. low":"4.8000","4. close":"5.0300","5. volume":"131700"},"2011-05-27":{"1. open":"4.8800","2. high":"5.1900","3. low":"4.7900","4. close":"5.0100","5. volume":"184600"},"2011-05-20":{"1. open":"5.1100","2. high":"5.1500","3. low":"4.9000","4. close":"4.9400","5. volume":"235400"},"2011-05-13":{"1. open":"5.1500","2. high":"5.4800","3. low":"5.0100","4. close":"5.1200","5. volume":"225178"},"2011-05-06":{"1. open":"5.2600","2. high":"5.2800","3. low":"4.9300","4. close":"5.1200","5. volume":"414100"},"2011-04-29":{"1. open":"5.1000","2. high":"5.4000","3. low":"5.0300","4. close":"5.2600","5. volume":"206100"},"2011-04-21":{"1. open":"5.2800","2. high":"5.3000","3. low":"5.0700","4. close":"5.1200","5. volume":"245800"},"2011-04-15":{"1. open":"5.4800","2. high":"5.5200","3. low":"5.2700","4. close":"5.3200","5. volume":"208500"},"2011-04-08":{"1. open":"5.5900","2. high":"5.7100","3. low":"5.4400","4. close":"5.4700","5. volume":"225100"},"2011-04-01":{"1. open":"5.6400","2. high":"5.7400","3. low":"5.5300","4. close":"5.5600","5. volume":"209600"},"2011-03-25":{"1. open":"5.7100","2. high":"5.9200","3. low":"5.6000","4. close":"5.6500","5. volume":"178500"},"2011-03-18":{"1. open":"5.8600","2. high":"5.9600","3. low":"5.5000","4. close":"5.6200","5. volume":"442200"},"2011-03-11":{"1. open":"6.5200","2. high":"6.5200","3. low":"5.6700","4. close":"5.9000","5. volume":"514000"},"2011-03-04":{"1. open":"6.7000","2. high":"7.5000","3. low":"6.0100","4. close":"6.5200","5. volume":"833300"},"2011-02-25":{"1. open":"6.5000","2. high":"6.8700","3. low":"6.0700","4. close":"6.7000","5. volume":"346600"},"2011-02-18":{"1. open":"6.6300","2. high":"6.6600","3. low":"6.4300","4. close":"6.5200","5. volume":"145300"},"2011-02-11":{"1. open":"6.0000","2. high":"6.7500","3. low":"6.0000","4. close":"6.6600","5. volume":"331800"},"2011-02-04":{"1. open":"5.9600","2. high":"6.2000","3. low":"5.7500","4. close":"6.0001","5. volume":"148200"},"2011-01-28":{"1. open":"5.6600","2. high":"6.2500","3. low":"5.6300","4. close":"5.9600","5. volume":"261400"},"2011-01-21":{"1. open":"5.9500","2. high":"6.0100","3. low":"5.6900","4. close":"5.6900","5. volume":"117800"},"2011-01-14":{"1. open":"5.8100","2. high":"6.0300","3. low":"5.7100","4. close":"5.9895","5. volume":"136500"},"2011-01-07":{"1. open":"6.0300","2. high":"6.0300","3. low":"5.6500","4. close":"5.8700","5. volume":"193000"},"2010-12-31":{"1. open":"5.7600","2. high":"6.0777","3. low":"5.7500","4. close":"5.9600","5. volume":"214200"},"2010-12-23":{"1. open":"5.5200","2. high":"5.8700","3. low":"5.3100","4. close":"5.8000","5. volume":"347400"},"2010-12-17":{"1. open":"5.4300","2. high":"5.5000","3. low":"5.1600","4. close":"5.5000","5. volume":"412700"},"2010-12-10":{"1. open":"5.3000","2. high":"5.8900","3. low":"5.2500","4. close":"5.4400","5. volume":"324200"},"2010-12-03":{"1. open":"5.3100","2. high":"5.4000","3. low":"5.0500","4. close":"5.3300","5. volume":"215800"},"2010-11-26":{"1. open":"5.4300","2. high":"5.6600","3. low":"5.2200","4. close":"5.3100","5. volume":"135000"},"2010-11-19":{"1. open":"5.4100","2. high":"5.6600","3. low":"5.1000","4. close":"5.4300","5. volume":"222400"},"2010-11-12":{"1. open":"5.4200","2. high":"5.7799","3. low":"5.2500","4. close":"5.4100","5. volume":"236100"},"2010-11-05":{"1. open":"5.2900","2. high":"5.5200","3. low":"5.2100","4. close":"5.4100","5. volume":"292900"},"2010-10-29":{"1. open":"5.3200","2. high":"5.4200","3. low":"5.1500","4. close":"5.3000","5. volume":"247300"},"2010-10-22":{"1. open":"5.3700","2. high":"5.4800","3. low":"5.1400","4. close":"5.2800","5. volume":"216100"},"2010-10-15":{"1. open":"5.4700","2. high":"5.6600","3. low":"5.0500","4. close":"5.3800","5. volume":"305500"},"2010-10-08":{"1. open":"4.9700","2. high":"5.4400","3. low":"4.8900","4. close":"5.4200","5. volume":"440000"},"2010-10-01":{"1. open":"4.9200","2. high":"5.0600","3. low":"4.7300","4. close":"5.0100","5. volume":"243800"},"2010-09-24":{"1. open":"4.8100","2. high":"5.1199","3. low":"4.8100","4. close":"4.9800","5. volume":"372200"},"2010-09-17":{"1. open":"4.6200","2. high":"4.9600","3. low":"4.4400","4. close":"4.8200","5. volume":"307600"},"2010-09-10":{"1. open":"4.7100","2. high":"4.7100","3. low":"4.4300","4. close":"4.5900","5. volume":"221000"},"2010-09-03":{"1. open":"4.8400","2. high":"4.9600","3. low":"4.4500","4. close":"4.7300","5. volume":"258700"},"2010-08-27":{"1. open":"4.9600","2. high":"4.9900","3. low":"4.5000","4. close":"4.7900","5. volume":"286400"},"2010-08-20":{"1. open":"5.0000","2. high":"5.2500","3. low":"4.7600","4. close":"4.9400","5. volume":"281300"},"2010-08-13":{"1. open":"5.8400","2. high":"5.8900","3. low":"4.8500","4. close":"5.0300","5. volume":"465100"},"2010-08-06":{"1. open":"6.2000","2. high":"6.2000","3. low":"5.5700","4. close":"5.8300","5. volume":"433200"},"2010-07-30":{"1. open":"6.2200","2. high":"6.2500","3. low":"5.7619","4. close":"6.1900","5. volume":"509200"},"2010-07-23":{"1. open":"5.6200","2. high":"6.2500","3. low":"5.4400","4. close":"6.1500","5. volume":"819000"},"2010-07-16":{"1. open":"5.2500","2. high":"6.2900","3. low":"5.2500","4. close":"5.6600","5. volume":"1210400"},"2010-07-09":{"1. open":"4.6900","2. high":"5.3500","3. low":"4.4500","4. close":"5.2500","5. volume":"594900"},"2010-07-02":{"1. open":"5.2100","2. high":"5.3000","3. low":"4.5300","4. close":"4.6200","5. volume":"584300"},"2010-06-25":{"1. open":"5.3900","2. high":"5.6400","3. low":"4.8000","4. close":"5.2900","5. volume":"1088800"},"2010-06-18":{"1. open":"4.5900","2. high":"5.3400","3. low":"4.4400","4. close":"5.2600","5. volume":"1502300"},"2010-06-11":{"1. open":"4.1100","2. high":"4.6200","3. low":"4.0400","4. close":"4.5900","5. volume":"1348500"},"2010-06-04":{"1. open":"3.7000","2. high":"4.0400","3. low":"3.3200","4. close":"4.0300","5. volume":"715100"},"2010-05-28":{"1. open":"3.2200","2. high":"3.7500","3. low":"3.1400","4. close":"3.7200","5. volume":"541400"},"2010-05-21":{"1. open":"3.9900","2. high":"4.2300","3. low":"3.1200","4. close":"3.2300","5. volume":"1133100"},"2010-05-14":{"1. open":"4.0000","2. high":"4.3900","3. low":"3.9000","4. close":"4.0200","5. volume":"699400"},"2010-05-07":{"1. open":"4.0900","2. high":"4.3500","3. low":"3.3600","4. close":"3.7900","5. volume":"1295900"},"2010-04-30":{"1. open":"4.4000","2. high":"4.5700","3. low":"3.8100","4. close":"4.0800","5. volume":"1088900"},"2010-04-23":{"1. open":"3.9000","2. high":"4.6300","3. low":"3.5400","4. close":"4.3701","5. volume":"1571400"},"2010-04-16":{"1. open":"4.5000","2. high":"4.6600","3. low":"3.8000","4. close":"3.8500","5. volume":"1335100"},"2010-04-09":{"1. open":"3.4600","2. high":"4.7800","3. low":"3.4100","4. close":"4.4000","5. volume":"2445300"},"2010-04-01":{"1. open":"3.3700","2. high":"3.5000","3. low":"3.2000","4. close":"3.4500","5. volume":"610900"},"2010-03-26":{"1. open":"2.5900","2. high":"3.4100","3. low":"2.5600","4. close":"3.3101","5. volume":"1498600"},"2010-03-19":{"1. open":"2.9500","2. high":"3.1300","3. low":"2.6100","4. close":"2.6100","5. volume":"1006500"},"2010-03-12":{"1. open":"2.5000","2. high":"2.9800","3. low":"2.4701","4. close":"2.9700","5. volume":"1006600"},"2010-03-05":{"1. open":"2.2500","2. high":"2.5800","3. low":"2.2100","4. close":"2.5400","5. volume":"743300"},"2010-02-26":{"1. open":"2.4800","2. high":"2.5100","3. low":"2.1200","4. close":"2.2800","5. volume":"718300"},"2010-02-19":{"1. open":"2.2900","2. high":"2.5200","3. low":"2.2306","4. close":"2.4300","5. volume":"511000"},"2010-02-12":{"1. open":"2.1800","2. high":"2.3200","3. low":"2.0900","4. close":"2.3000","5. volume":"270300"},"2010-02-05":{"1. open":"2.0400","2. high":"2.3700","3. low":"1.9700","4. close":"2.1700","5. volume":"715000"},"2010-01-29":{"1. open":"2.2200","2. high":"2.3200","3. low":"1.9701","4. close":"2.0000","5. volume":"449400"},"2010-01-22":{"1. open":"2.4100","2. high":"2.4500","3. low":"2.2200","4. close":"2.2300","5. volume":"235400"},"2010-01-15":{"1. open":"2.3000","2. high":"2.4400","3. low":"2.2500","4. close":"2.4400","5. volume":"673900"},"2010-01-08":{"1. open":"1.9600","2. high":"2.3900","3. low":"1.8700","4. close":"2.3000","5. volume":"1062600"},"2009-12-31":{"1. open":"1.9700","2. high":"1.9900","3. low":"1.8500","4. close":"1.9900","5. volume":"790300"},"2009-12-24":{"1. open":"1.6600","2. high":"1.9700","3. low":"1.6500","4. close":"1.9700","5. volume":"664400"},"2009-12-18":{"1. open":"1.7700","2. high":"1.8200","3. low":"1.6800","4. close":"1.6800","5. volume":"382100"},"2009-12-11":{"1. open":"1.7300","2. high":"1.9500","3. low":"1.7200","4. close":"1.7700","5. volume":"791900"},"2009-12-04":{"1. open":"1.7800","2. high":"1.8200","3. low":"1.6900","4. close":"1.7000","5. volume":"522800"},"2009-11-27":{"1. open":"1.8500","2. high":"1.9000","3. low":"1.7500","4. close":"1.7800","5. volume":"416300"},"2009-11-20":{"1. open":"1.9500","2. high":"2.0501","3. low":"1.7500","4. close":"1.8400","5. volume":"542800"},"2009-11-13":{"1. open":"1.8600","2. high":"2.0900","3. low":"1.8200","4. close":"1.9400","5. volume":"319200"},"2009-11-06":{"1. open":"2.0300","2. high":"2.2500","3. low":"1.7200","4. close":"1.8600","5. volume":"735400"},"2009-10-30":{"1. open":"2.4100","2. high":"2.4300","3. low":"1.8200","4. close":"2.0000","5. volume":"881000"},"2009-10-23":{"1. open":"2.5900","2. high":"2.7000","3. low":"2.3200","4. close":"2.4400","5. volume":"665300"},"2009-10-16":{"1. open":"2.8400","2. high":"2.8500","3. low":"2.4800","4. close":"2.6400","5. volume":"1168600"},"2009-10-09":{"1. open":"2.6700","2. high":"2.9699","3. low":"2.5401","4. close":"2.8000","5. volume":"908300"},"2009-10-02":{"1. open":"2.8000","2. high":"3.1000","3. low":"2.5700","4. close":"2.7600","5. volume":"1097300"},"2009-09-25":{"1. open":"2.7300","2. high":"3.6000","3. low":"2.4800","4. close":"2.7700","5. volume":"4374800"},"2009-09-18":{"1. open":"1.8600","2. high":"2.7400","3. low":"1.8500","4. close":"2.6900","5. volume":"2810000"},"2009-09-11":{"1. open":"1.9000","2. high":"1.9500","3. low":"1.8200","4. close":"1.8800","5. volume":"470700"},"2009-09-04":{"1. open":"2.0600","2. high":"2.0600","3. low":"1.8000","4. close":"1.8800","5. volume":"767900"},"2009-08-28":{"1. open":"1.8000","2. high":"2.2400","3. low":"1.8000","4. close":"2.0600","5. volume":"1519400"},"2009-08-21":{"1. open":"1.8800","2. high":"1.9600","3. low":"1.7700","4. close":"1.8000","5. volume":"554500"},"2009-08-14":{"1. open":"1.9900","2. high":"2.2700","3. low":"1.9300","4. close":"1.9400","5. volume":"1166100"},"2009-08-07":{"1. open":"1.8500","2. high":"2.2900","3. low":"1.7200","4. close":"2.0500","5. volume":"2632600"},"2009-07-31":{"1. open":"1.6400","2. high":"1.9800","3. low":"1.6300","4. close":"1.8000","5. volume":"882100"},"2009-07-24":{"1. open":"1.7200","2. high":"1.7450","3. low":"1.5200","4. close":"1.6400","5. volume":"497600"},"2009-07-17":{"1. open":"1.5000","2. high":"1.7800","3. low":"1.5000","4. close":"1.7166","5. volume":"908500"},"2009-07-10":{"1. open":"1.7700","2. high":"1.7700","3. low":"1.5000","4. close":"1.5000","5. volume":"575500"},"2009-07-02":{"1. open":"1.7300","2. high":"2.0200","3. low":"1.6200","4. close":"1.7300","5. volume":"1499700"},"2009-06-26":{"1. open":"2.0000","2. high":"2.0300","3. low":"1.6500","4. close":"1.6800","5. volume":"2834100"},"2009-06-19":{"1. open":"2.1500","2. high":"2.1900","3. low":"1.8100","4. close":"2.0000","5. volume":"1140800"},"2009-06-12":{"1. open":"1.7400","2. high":"2.4900","3. low":"1.5914","4. close":"2.2500","5. volume":"2369100"},"2009-06-05":{"1. open":"1.6000","2. high":"1.8300","3. low":"1.6000","4. close":"1.7400","5. volume":"1051700"},"2009-05-29":{"1. open":"1.7900","2. high":"1.9500","3. low":"1.5600","4. close":"1.5600","5. volume":"1235100"},"2009-05-22":{"1. open":"1.9900","2. high":"2.3700","3. low":"1.7300","4. close":"1.8100","5. volume":"1485000"},"2009-05-15":{"1. open":"2.3900","2. high":"2.5900","3. low":"1.6500","4. close":"1.7300","5. volume":"1562100"},"2009-05-08":{"1. open":"3.4800","2. high":"4.2300","3. low":"2.2200","4. close":"2.4000","5. volume":"3919100"},"2009-05-01":{"1. open":"1.4800","2. high":"3.3700","3. low":"1.4800","4. close":"3.2400","5. volume":"2552500"},"2009-04-24":{"1. open":"1.2600","2. high":"1.6900","3. low":"1.2400","4. close":"1.4800","5. volume":"945000"},"2009-04-17":{"1. open":"0.9410","2. high":"1.3500","3. low":"0.9410","4. close":"1.3100","5. volume":"1707300"},"2009-04-09":{"1. open":"0.9000","2. high":"1.0000","3. low":"0.7800","4. close":"1.0000","5. volume":"704900"},"2009-04-03":{"1. open":"0.9000","2. high":"0.9600","3. low":"0.6900","4. close":"0.8800","5. volume":"1043500"},"2009-03-27":{"1. open":"1.2500","2. high":"1.2800","3. low":"0.8800","4. close":"0.9000","5. volume":"787300"},"2009-03-20":{"1. open":"1.3000","2. high":"1.3700","3. low":"0.9400","4. close":"1.0100","5. volume":"960700"},"2009-03-13":{"1. open":"0.5800","2. high":"1.3882","3. low":"0.5800","4. close":"1.2200","5. volume":"756600"},"2009-03-06":{"1. open":"0.6000","2. high":"0.8000","3. low":"0.5600","4. close":"0.6500","5. volume":"759900"},"2009-02-27":{"1. open":"0.9400","2. high":"0.9900","3. low":"0.5800","4. close":"0.5800","5. volume":"1510500"},"2009-02-20":{"1. open":"1.5000","2. high":"1.5800","3. low":"0.8500","4. close":"0.8900","5. volume":"1261900"},"2009-02-13":{"1. open":"1.6200","2. high":"1.8000","3. low":"1.4900","4. close":"1.5100","5. volume":"477600"},"2009-02-06":{"1. open":"1.8600","2. high":"1.8800","3. low":"1.4700","4. close":"1.5800","5. volume":"676800"},"2009-01-30":{"1. open":"2.1500","2. high":"2.6000","3. low":"1.7700","4. close":"1.7800","5. volume":"1091900"},"2009-01-23":{"1. open":"2.8500","2. high":"2.8500","3. low":"2.1200","4. close":"2.1500","5. volume":"457600"},"2009-01-16":{"1. open":"2.8900","2. high":"3.3000","3. low":"2.6200","4. close":"2.6600","5. volume":"788500"},"2009-01-09":{"1. open":"3.1100","2. high":"3.5000","3. low":"2.8000","4. close":"2.8700","5. volume":"940400"},"2009-01-02":{"1. open":"2.9400","2. high":"3.2500","3. low":"2.3600","4. close":"3.1700","5. volume":"1015200"},"2008-12-26":{"1. open":"3.1800","2. high":"3.3000","3. low":"2.8500","4. close":"2.9600","5. volume":"510000"},"2008-12-19":{"1. open":"2.4400","2. high":"3.1800","3. low":"2.2700","4. close":"3.0300","5. volume":"968900"},"2008-12-12":{"1. open":"2.6600","2. high":"2.7500","3. low":"2.2500","4. close":"2.4700","5. volume":"719500"},"2008-12-05":{"1. open":"2.7900","2. high":"3.0600","3. low":"2.2300","4. close":"2.5000","5. volume":"838700"},"2008-11-28":{"1. open":"1.9000","2. high":"2.8000","3. low":"1.8100","4. close":"2.7300","5. volume":"973900"},"2008-11-21":{"1. open":"3.8000","2. high":"4.1400","3. low":"1.7700","4. close":"1.8600","5. volume":"2097500"},"2008-11-14":{"1. open":"4.5000","2. high":"4.8999","3. low":"3.2500","4. close":"3.9000","5. volume":"1854600"},"2008-11-07":{"1. open":"4.0200","2. high":"5.7500","3. low":"3.8000","4. close":"4.4000","5. volume":"2536000"},"2008-10-31":{"1. open":"4.2500","2. high":"4.4300","3. low":"2.8700","4. close":"3.6000","5. volume":"2688900"},"2008-10-24":{"1. open":"5.8100","2. high":"6.2500","3. low":"4.0000","4. close":"4.2200","5. volume":"1420200"},"2008-10-17":{"1. open":"5.7700","2. high":"7.4800","3. low":"4.7000","4. close":"5.2400","5. volume":"1226700"},"2008-10-10":{"1. open":"9.1900","2. high":"9.3100","3. low":"4.0500","4. close":"5.2500","5. volume":"2084300"},"2008-10-03":{"1. open":"10.1400","2. high":"10.5800","3. low":"9.2500","4. close":"9.6000","5. volume":"870900"},"2008-09-26":{"1. open":"10.5600","2. high":"10.5600","3. low":"8.8500","4. close":"10.1400","5. volume":"715900"},"2008-09-19":{"1. open":"8.2300","2. high":"11.7300","3. low":"7.5000","4. close":"10.4100","5. volume":"2400700"},"2008-09-12":{"1. open":"9.8600","2. high":"9.8600","3. low":"8.1500","4. close":"8.5400","5. volume":"1014500"},"2008-09-05":{"1. open":"9.2300","2. high":"9.4800","3. low":"8.8200","4. close":"9.1000","5. volume":"805600"},"2008-08-29":{"1. open":"9.7800","2. high":"9.7800","3. low":"8.5000","4. close":"8.8100","5. volume":"1377700"},"2008-08-22":{"1. open":"10.0500","2. high":"10.6800","3. low":"9.5000","4. close":"9.5900","5. volume":"1400600"},"2008-08-15":{"1. open":"11.0000","2. high":"12.0100","3. low":"9.5800","4. close":"9.9100","5. volume":"2011400"},"2008-08-08":{"1. open":"10.9700","2. high":"11.6500","3. low":"10.3800","4. close":"11.0800","5. volume":"1528700"},"2008-08-01":{"1. open":"10.6900","2. high":"12.3100","3. low":"10.6900","4. close":"10.9300","5. volume":"1376700"},"2008-07-25":{"1. open":"9.4900","2. high":"12.4900","3. low":"9.4900","4. close":"10.7900","5. volume":"1567600"},"2008-07-18":{"1. open":"8.1400","2. high":"10.6900","3. low":"8.0100","4. close":"9.2800","5. volume":"1280300"},"2008-07-11":{"1. open":"8.0000","2. high":"9.6400","3. low":"7.9600","4. close":"8.4400","5. volume":"1283200"},"2008-07-03":{"1. open":"9.9100","2. high":"9.9100","3. low":"7.8500","4. close":"7.9500","5. volume":"1685700"},"2008-06-27":{"1. open":"10.3500","2. high":"11.0000","3. low":"9.5100","4. close":"9.7800","5. volume":"2774700"},"2008-06-20":{"1. open":"11.9100","2. high":"12.4200","3. low":"10.2100","4. close":"10.3000","5. volume":"1956700"},"2008-06-13":{"1. open":"13.9300","2. high":"13.9500","3. low":"10.6500","4. close":"11.8200","5. volume":"4221800"},"2008-06-06":{"1. open":"14.1700","2. high":"14.2500","3. low":"13.7000","4. close":"13.7100","5. volume":"1195200"},"2008-05-30":{"1. open":"14.6500","2. high":"14.9500","3. low":"13.9000","4. close":"14.0500","5. volume":"1464800"},"2008-05-23":{"1. open":"15.5000","2. high":"16.1000","3. low":"14.4300","4. close":"14.5500","5. volume":"1897400"},"2008-05-16":{"1. open":"16.9900","2. high":"17.2900","3. low":"15.5800","4. close":"15.7000","5. volume":"1508100"},"2008-05-09":{"1. open":"17.2600","2. high":"17.2700","3. low":"16.2800","4. close":"16.6900","5. volume":"1220200"},"2008-05-02":{"1. open":"17.2500","2. high":"17.9800","3. low":"16.5000","4. close":"17.1800","5. volume":"906000"},"2008-04-25":{"1. open":"17.1600","2. high":"17.5100","3. low":"16.5600","4. close":"17.2600","5. volume":"517300"},"2008-04-18":{"1. open":"15.8500","2. high":"17.5200","3. low":"15.8500","4. close":"17.2500","5. volume":"638000"},"2008-04-11":{"1. open":"16.7500","2. high":"18.1800","3. low":"15.7600","4. close":"15.8200","5. volume":"1203800"},"2008-04-04":{"1. open":"15.1500","2. high":"16.5000","3. low":"15.0500","4. close":"16.4500","5. volume":"787100"},"2008-03-28":{"1. open":"16.9500","2. high":"17.2300","3. low":"14.9300","4. close":"15.0700","5. volume":"968800"},"2008-03-20":{"1. open":"14.6100","2. high":"16.9300","3. low":"14.2300","4. close":"16.7600","5. volume":"1280700"},"2008-03-14":{"1. open":"13.8000","2. high":"15.5500","3. low":"13.7700","4. close":"15.0300","5. volume":"1143100"},"2008-03-07":{"1. open":"15.9720","2. high":"16.1000","3. low":"13.6400","4. close":"13.7800","5. volume":"3189800"},"2008-02-29":{"1. open":"16.0500","2. high":"17.1700","3. low":"15.9100","4. close":"16.0800","5. volume":"1073600"},"2008-02-22":{"1. open":"16.0400","2. high":"16.3200","3. low":"15.2700","4. close":"16.0800","5. volume":"1614900"},"2008-02-15":{"1. open":"17.3600","2. high":"17.7700","3. low":"15.5700","4. close":"15.9000","5. volume":"2334500"},"2008-02-08":{"1. open":"18.7600","2. high":"18.8000","3. low":"17.0400","4. close":"17.3100","5. volume":"2208400"},"2008-02-01":{"1. open":"17.4700","2. high":"18.7800","3. low":"17.0000","4. close":"18.6000","5. volume":"3114200"},"2008-01-25":{"1. open":"14.1400","2. high":"17.6100","3. low":"14.1400","4. close":"17.1700","5. volume":"1313800"},"2008-01-18":{"1. open":"15.3100","2. high":"16.5499","3. low":"14.6000","4. close":"15.0300","5. volume":"1629000"},"2008-01-11":{"1. open":"16.0100","2. high":"16.2200","3. low":"13.4600","4. close":"15.1300","5. volume":"3153100"},"2008-01-04":{"1. open":"16.3900","2. high":"16.7300","3. low":"15.9500","4. close":"16.0600","5. volume":"1743000"},"2007-12-28":{"1. open":"17.5000","2. high":"18.1400","3. low":"16.3500","4. close":"16.4400","5. volume":"966600"},"2007-12-21":{"1. open":"17.4800","2. high":"17.4800","3. low":"16.4200","4. close":"17.1900","5. volume":"1522600"},"2007-12-14":{"1. open":"18.0900","2. high":"19.2000","3. low":"17.2100","4. close":"17.3200","5. volume":"1372900"},"2007-12-07":{"1. open":"17.0500","2. high":"18.1100","3. low":"16.9000","4. close":"17.7600","5. volume":"1271000"},"2007-11-30":{"1. open":"17.4100","2. high":"17.6700","3. low":"16.0200","4. close":"17.1000","5. volume":"1625200"},"2007-11-23":{"1. open":"17.5000","2. high":"17.6100","3. low":"16.1800","4. close":"17.1300","5. volume":"800000"},"2007-11-16":{"1. open":"18.0600","2. high":"19.0400","3. low":"17.0000","4. close":"17.5200","5. volume":"1944400"},"2007-11-09":{"1. open":"16.3400","2. high":"18.4300","3. low":"16.2000","4. close":"17.8300","5. volume":"2713400"},"2007-11-02":{"1. open":"18.8100","2. high":"19.1800","3. low":"16.5400","4. close":"16.5800","5. volume":"1814200"},"2007-10-26":{"1. open":"17.9700","2. high":"19.1900","3. low":"17.8100","4. close":"18.7300","5. volume":"1195900"},"2007-10-19":{"1. open":"19.1400","2. high":"19.2800","3. low":"17.8800","4. close":"18.0600","5. volume":"1478100"},"2007-10-12":{"1. open":"20.4500","2. high":"20.6700","3. low":"18.8800","4. close":"19.0800","5. volume":"1164200"},"2007-10-05":{"1. open":"19.0800","2. high":"21.2600","3. low":"18.9400","4. close":"20.2900","5. volume":"954800"},"2007-09-28":{"1. open":"20.0500","2. high":"20.1000","3. low":"18.8400","4. close":"18.8900","5. volume":"768800"},"2007-09-21":{"1. open":"19.9500","2. high":"21.9700","3. low":"19.0400","4. close":"20.0000","5. volume":"1278000"},"2007-09-14":{"1. open":"18.7400","2. high":"19.9600","3. low":"17.6000","4. close":"19.9300","5. volume":"806000"},"2007-09-07":{"1. open":"20.1100","2. high":"20.6900","3. low":"18.1900","4. close":"18.7100","5. volume":"782700"},"2007-08-31":{"1. open":"19.5000","2. high":"20.0700","3. low":"18.5100","4. close":"20.0200","5. volume":"951800"},"2007-08-24":{"1. open":"19.0100","2. high":"20.4900","3. low":"18.6300","4. close":"19.5600","5. volume":"1590400"},"2007-08-17":{"1. open":"18.3500","2. high":"21.1000","3. low":"13.9100","4. close":"19.0700","5. volume":"4100000"},"2007-08-10":{"1. open":"19.3200","2. high":"22.0800","3. low":"17.7500","4. close":"18.4700","5. volume":"3081400"},"2007-08-03":{"1. open":"21.8200","2. high":"21.8200","3. low":"16.7600","4. close":"19.1900","5. volume":"3820600"},"2007-07-27":{"1. open":"24.4000","2. high":"24.6600","3. low":"21.5600","4. close":"21.7600","5. volume":"1962100"},"2007-07-20":{"1. open":"25.2200","2. high":"25.6000","3. low":"24.0500","4. close":"24.2800","5. volume":"933300"},"2007-07-13":{"1. open":"26.0700","2. high":"26.3200","3. low":"24.8000","4. close":"25.2500","5. volume":"811900"},"2007-07-06":{"1. open":"25.8500","2. high":"26.4800","3. low":"25.5700","4. close":"26.0700","5. volume":"587500"},"2007-06-29":{"1. open":"25.9700","2. high":"26.4800","3. low":"25.5300","4. close":"25.8100","5. volume":"838300"},"2007-06-22":{"1. open":"27.6600","2. high":"27.8000","3. low":"25.4100","4. close":"26.1400","5. volume":"1049700"},"2007-06-15":{"1. open":"27.6600","2. high":"27.7600","3. low":"26.9400","4. close":"27.6300","5. volume":"1426000"},"2007-06-08":{"1. open":"28.8400","2. high":"29.2100","3. low":"27.4800","4. close":"27.7000","5. volume":"1357400"},"2007-06-01":{"1. open":"28.1700","2. high":"29.2800","3. low":"27.8520","4. close":"28.8500","5. volume":"769800"},"2007-05-25":{"1. open":"27.3000","2. high":"28.9800","3. low":"27.3000","4. close":"27.9200","5. volume":"494200"},"2007-05-18":{"1. open":"29.4375","2. high":"29.5000","3. low":"26.6100","4. close":"27.5500","5. volume":"772600"},"2007-05-11":{"1. open":"30.8500","2. high":"31.2200","3. low":"29.3440","4. close":"29.9100","5. volume":"670200"},"2007-05-04":{"1. open":"31.6300","2. high":"31.9300","3. low":"30.4940","4. close":"30.7100","5. volume":"359400"},"2007-04-27":{"1. open":"31.6500","2. high":"32.1300","3. low":"31.3800","4. close":"31.6300","5. volume":"287100"},"2007-04-20":{"1. open":"31.1800","2. high":"32.0700","3. low":"31.1600","4. close":"31.8500","5. volume":"439200"},"2007-04-13":{"1. open":"29.9400","2. high":"31.1600","3. low":"29.6600","4. close":"30.9800","5. volume":"565800"},"2007-04-05":{"1. open":"30.4200","2. high":"30.4500","3. low":"29.5800","4. close":"29.9400","5. volume":"337100"},"2007-03-30":{"1. open":"30.5700","2. high":"31.0000","3. low":"29.6900","4. close":"30.4400","5. volume":"563800"},"2007-03-23":{"1. open":"29.8600","2. high":"30.7100","3. low":"29.6300","4. close":"30.5300","5. volume":"511600"},"2007-03-16":{"1. open":"30.1800","2. high":"30.6000","3. low":"28.0900","4. close":"29.6400","5. volume":"719400"},"2007-03-09":{"1. open":"28.6501","2. high":"30.6500","3. low":"28.0100","4. close":"30.0200","5. volume":"1159800"},"2007-03-02":{"1. open":"32.7700","2. high":"33.0000","3. low":"29.7400","4. close":"29.7400","5. volume":"1341000"},"2007-02-23":{"1. open":"34.0000","2. high":"34.4500","3. low":"33.1000","4. close":"33.1000","5. volume":"869000"},"2007-02-16":{"1. open":"32.7000","2. high":"34.4100","3. low":"31.4200","4. close":"34.0500","5. volume":"901700"},"2007-02-09":{"1. open":"31.6500","2. high":"33.2800","3. low":"31.3805","4. close":"32.5300","5. volume":"1267900"},"2007-02-02":{"1. open":"31.2900","2. high":"32.1400","3. low":"30.9800","4. close":"31.7800","5. volume":"386700"},"2007-01-26":{"1. open":"31.0700","2. high":"31.5400","3. low":"30.8300","4. close":"31.1900","5. volume":"492500"},"2007-01-19":{"1. open":"30.4100","2. high":"31.2400","3. low":"29.9400","4. close":"31.1600","5. volume":"674100"},"2007-01-12":{"1. open":"29.5600","2. high":"30.7000","3. low":"29.3500","4. close":"30.4100","5. volume":"898400"},"2007-01-05":{"1. open":"30.3000","2. high":"30.5000","3. low":"29.3000","4. close":"29.5600","5. volume":"233300"},"2006-12-29":{"1. open":"28.9300","2. high":"30.5700","3. low":"28.9300","4. close":"30.0900","5. volume":"478500"},"2006-12-22":{"1. open":"27.9200","2. high":"29.5700","3. low":"27.9100","4. close":"28.9300","5. volume":"433300"},"2006-12-15":{"1. open":"28.7100","2. high":"29.2500","3. low":"27.9700","4. close":"28.0100","5. volume":"355900"},"2006-12-08":{"1. open":"28.3500","2. high":"29.5900","3. low":"28.3500","4. close":"28.6700","5. volume":"452100"},"2006-12-01":{"1. open":"28.6800","2. high":"28.7100","3. low":"28.0200","4. close":"28.2300","5. volume":"680500"},"2006-11-24":{"1. open":"28.6900","2. high":"28.7700","3. low":"28.0100","4. close":"28.7200","5. volume":"411000"},"2006-11-17":{"1. open":"28.0000","2. high":"28.8300","3. low":"27.9500","4. close":"28.7100","5. volume":"404700"},"2006-11-10":{"1. open":"27.5500","2. high":"28.1300","3. low":"27.1900","4. close":"28.0000","5. volume":"595200"},"2006-11-03":{"1. open":"27.8000","2. high":"28.4500","3. low":"27.6600","4. close":"28.1400","5. volume":"539000"},"2006-10-27":{"1. open":"27.2300","2. high":"28.0000","3. low":"27.1000","4. close":"27.7100","5. volume":"283300"},"2006-10-20":{"1. open":"27.1000","2. high":"27.4000","3. low":"26.4700","4. close":"27.3200","5. volume":"273700"},"2006-10-13":{"1. open":"25.9200","2. high":"27.1700","3. low":"25.8000","4. close":"27.0200","5. volume":"316300"},"2006-10-06":{"1. open":"25.5600","2. high":"26.1694","3. low":"24.4000","4. close":"26.0000","5. volume":"460200"},"2006-09-29":{"1. open":"25.7300","2. high":"26.0500","3. low":"25.4800","4. close":"25.5600","5. volume":"507900"},"2006-09-22":{"1. open":"25.7000","2. high":"25.9300","3. low":"25.3700","4. close":"25.7200","5. volume":"282500"},"2006-09-15":{"1. open":"24.9400","2. high":"25.8600","3. low":"24.7500","4. close":"25.8600","5. volume":"337800"},"2006-09-08":{"1. open":"25.0100","2. high":"25.3600","3. low":"24.7500","4. close":"24.9600","5. volume":"262000"},"2006-09-01":{"1. open":"24.8800","2. high":"25.5000","3. low":"24.7700","4. close":"25.0600","5. volume":"431100"},"2006-08-25":{"1. open":"24.7600","2. high":"25.3000","3. low":"24.6500","4. close":"25.0000","5. volume":"341300"},"2006-08-18":{"1. open":"24.5100","2. high":"25.3399","3. low":"24.3800","4. close":"25.1800","5. volume":"356600"},"2006-08-11":{"1. open":"25.6500","2. high":"25.6500","3. low":"24.1146","4. close":"24.4100","5. volume":"384300"},"2006-08-04":{"1. open":"25.4500","2. high":"25.9500","3. low":"24.8900","4. close":"25.6000","5. volume":"517000"},"2006-07-28":{"1. open":"25.5100","2. high":"25.8900","3. low":"23.8900","4. close":"25.5200","5. volume":"587400"},"2006-07-21":{"1. open":"25.2900","2. high":"26.0000","3. low":"24.8500","4. close":"25.3500","5. volume":"357200"},"2006-07-14":{"1. open":"25.0500","2. high":"25.4400","3. low":"24.8500","4. close":"25.0400","5. volume":"376000"},"2006-07-07":{"1. open":"25.0400","2. high":"25.4899","3. low":"24.8000","4. close":"25.1300","5. volume":"320500"},"2006-06-30":{"1. open":"24.4000","2. high":"25.0500","3. low":"23.9900","4. close":"25.0500","5. volume":"477100"},"2006-06-23":{"1. open":"23.8000","2. high":"24.3300","3. low":"23.4000","4. close":"24.2900","5. volume":"553200"},"2006-06-16":{"1. open":"24.0100","2. high":"24.4200","3. low":"23.2600","4. close":"23.8100","5. volume":"913600"},"2006-06-09":{"1. open":"24.6000","2. high":"24.9500","3. low":"23.8700","4. close":"24.0900","5. volume":"786100"},"2006-06-02":{"1. open":"24.2200","2. high":"24.8000","3. low":"23.8600","4. close":"24.6000","5. volume":"524900"},"2006-05-26":{"1. open":"23.9200","2. high":"24.7700","3. low":"23.3500","4. close":"24.3200","5. volume":"1181000"},"2006-05-19":{"1. open":"24.4900","2. high":"24.5800","3. low":"23.7100","4. close":"23.9200","5. volume":"863200"},"2006-05-12":{"1. open":"25.3400","2. high":"25.4600","3. low":"24.2500","4. close":"24.4900","5. volume":"631800"},"2006-05-05":{"1. open":"25.7600","2. high":"26.0000","3. low":"24.5800","4. close":"25.3400","5. volume":"407200"},"2006-04-28":{"1. open":"26.4500","2. high":"26.4500","3. low":"25.0100","4. close":"25.9000","5. volume":"682100"},"2006-04-21":{"1. open":"25.6100","2. high":"26.3600","3. low":"25.0000","4. close":"26.0000","5. volume":"596200"},"2006-04-13":{"1. open":"26.0500","2. high":"26.3100","3. low":"25.5500","4. close":"25.6100","5. volume":"422500"},"2006-04-07":{"1. open":"27.0000","2. high":"27.0800","3. low":"26.0000","4. close":"26.0600","5. volume":"553100"},"2006-03-31":{"1. open":"27.2000","2. high":"27.3400","3. low":"26.8500","4. close":"26.9900","5. volume":"515600"},"2006-03-24":{"1. open":"26.7100","2. high":"27.3500","3. low":"26.2900","4. close":"27.1100","5. volume":"453400"},"2006-03-17":{"1. open":"26.8000","2. high":"27.1000","3. low":"26.2600","4. close":"26.7500","5. volume":"374700"},"2006-03-10":{"1. open":"25.7000","2. high":"27.0000","3. low":"25.7000","4. close":"26.7000","5. volume":"303200"},"2006-03-03":{"1. open":"26.5000","2. high":"27.3800","3. low":"26.2500","4. close":"26.3700","5. volume":"378100"},"2006-02-24":{"1. open":"27.0400","2. high":"27.2400","3. low":"26.3800","4. close":"26.4400","5. volume":"291800"},"2006-02-17":{"1. open":"25.5200","2. high":"27.1000","3. low":"25.5000","4. close":"26.9400","5. volume":"563700"},"2006-02-10":{"1. open":"25.0500","2. high":"25.8000","3. low":"24.9600","4. close":"25.5000","5. volume":"529900"},"2006-02-03":{"1. open":"26.3000","2. high":"26.3200","3. low":"24.8000","4. close":"24.9500","5. volume":"558400"},"2006-01-27":{"1. open":"26.1300","2. high":"26.6000","3. low":"26.0000","4. close":"26.2300","5. volume":"367600"},"2006-01-20":{"1. open":"27.1000","2. high":"27.4200","3. low":"26.1000","4. close":"26.1400","5. volume":"516700"},"2006-01-13":{"1. open":"26.5600","2. high":"27.7600","3. low":"26.5600","4. close":"27.0500","5. volume":"407700"},"2006-01-06":{"1. open":"26.0800","2. high":"26.7500","3. low":"25.6500","4. close":"26.5900","5. volume":"394000"},"2005-12-30":{"1. open":"26.4500","2. high":"26.5074","3. low":"25.3500","4. close":"25.9200","5. volume":"227000"},"2005-12-23":{"1. open":"25.2300","2. high":"26.5000","3. low":"25.1000","4. close":"26.5000","5. volume":"436600"},"2005-12-16":{"1. open":"26.7500","2. high":"26.7700","3. low":"24.7500","4. close":"25.2400","5. volume":"577800"},"2005-12-09":{"1. open":"27.0500","2. high":"27.1800","3. low":"26.5000","4. close":"26.6800","5. volume":"342100"},"2005-12-02":{"1. open":"27.5000","2. high":"27.5000","3. low":"26.6000","4. close":"27.1800","5. volume":"358900"},"2005-11-25":{"1. open":"27.1500","2. high":"27.5000","3. low":"26.9900","4. close":"27.4800","5. volume":"197600"},"2005-11-18":{"1. open":"27.9000","2. high":"28.1000","3. low":"26.8500","4. close":"27.3700","5. volume":"361900"},"2005-11-11":{"1. open":"26.0000","2. high":"28.0900","3. low":"24.5501","4. close":"27.7900","5. volume":"1185500"},"2005-11-04":{"1. open":"26.5000","2. high":"27.7000","3. low":"26.0200","4. close":"27.4000","5. volume":"369400"},"2005-10-28":{"1. open":"27.9000","2. high":"28.0700","3. low":"26.3900","4. close":"26.4500","5. volume":"491100"},"2005-10-21":{"1. open":"27.8500","2. high":"28.1000","3. low":"26.7800","4. close":"27.5000","5. volume":"719400"},"2005-10-14":{"1. open":"29.0900","2. high":"29.3500","3. low":"26.7600","4. close":"27.8900","5. volume":"782900"},"2005-10-07":{"1. open":"28.0000","2. high":"29.4200","3. low":"27.9300","4. close":"29.1900","5. volume":"635000"},"2005-09-30":{"1. open":"28.3000","2. high":"28.7600","3. low":"28.0000","4. close":"28.1000","5. volume":"387200"},"2005-09-23":{"1. open":"28.7500","2. high":"29.0500","3. low":"28.0520","4. close":"28.2700","5. volume":"584900"},"2005-09-16":{"1. open":"28.2900","2. high":"29.0200","3. low":"28.2100","4. close":"28.7700","5. volume":"595200"},"2005-09-09":{"1. open":"28.2500","2. high":"29.1000","3. low":"28.1600","4. close":"28.5100","5. volume":"605300"},"2005-09-02":{"1. open":"27.5500","2. high":"28.6900","3. low":"27.4000","4. close":"28.2500","5. volume":"557100"},"2005-08-26":{"1. open":"27.1300","2. high":"28.3000","3. low":"27.0500","4. close":"27.3600","5. volume":"1010000"},"2005-08-19":{"1. open":"27.3000","2. high":"27.5500","3. low":"26.7600","4. close":"27.1000","5. volume":"570400"},"2005-08-12":{"1. open":"28.3100","2. high":"28.3100","3. low":"26.6800","4. close":"27.2000","5. volume":"882900"},"2005-08-05":{"1. open":"30.8500","2. high":"31.2000","3. low":"27.3300","4. close":"28.3000","5. volume":"766200"},"2005-07-29":{"1. open":"29.9500","2. high":"31.0700","3. low":"29.6300","4. close":"30.8000","5. volume":"537500"},"2005-07-22":{"1. open":"29.4500","2. high":"30.1900","3. low":"29.2400","4. close":"29.9000","5. volume":"578000"},"2005-07-15":{"1. open":"30.3900","2. high":"30.4000","3. low":"29.1700","4. close":"29.4500","5. volume":"741800"},"2005-07-08":{"1. open":"28.9500","2. high":"30.9900","3. low":"28.9500","4. close":"30.5000","5. volume":"385100"},"2005-07-01":{"1. open":"28.4300","2. high":"28.9500","3. low":"28.1500","4. close":"28.9500","5. volume":"341400"},"2005-06-24":{"1. open":"28.6500","2. high":"29.2000","3. low":"28.0400","4. close":"28.3500","5. volume":"1018300"},"2005-06-17":{"1. open":"27.9000","2. high":"28.4400","3. low":"27.8000","4. close":"28.4000","5. volume":"525600"},"2005-06-10":{"1. open":"27.5000","2. high":"28.0900","3. low":"27.3900","4. close":"27.7000","5. volume":"276900"},"2005-06-03":{"1. open":"26.6500","2. high":"28.1800","3. low":"26.6000","4. close":"27.3400","5. volume":"325900"},"2005-05-27":{"1. open":"26.5000","2. high":"26.7500","3. low":"26.3800","4. close":"26.6500","5. volume":"620200"},"2005-05-20":{"1. open":"26.3500","2. high":"26.6000","3. low":"26.1500","4. close":"26.4300","5. volume":"552100"},"2005-05-13":{"1. open":"26.1100","2. high":"26.6600","3. low":"26.0600","4. close":"26.2000","5. volume":"313500"},"2005-05-06":{"1. open":"24.2500","2. high":"26.0000","3. low":"24.2500","4. close":"25.9500","5. volume":"386300"},"2005-04-29":{"1. open":"26.1000","2. high":"26.2900","3. low":"24.4100","4. close":"24.5000","5. volume":"292900"},"2005-04-22":{"1. open":"25.3500","2. high":"26.1900","3. low":"25.3500","4. close":"26.0000","5. volume":"423500"},"2005-04-15":{"1. open":"25.2500","2. high":"25.5500","3. low":"24.9900","4. close":"25.2500","5. volume":"215700"},"2005-04-08":{"1. open":"24.7000","2. high":"25.7000","3. low":"24.4600","4. close":"25.2400","5. volume":"303600"},"2005-04-01":{"1. open":"25.0000","2. high":"25.0500","3. low":"23.6200","4. close":"24.7000","5. volume":"302200"},"2005-03-24":{"1. open":"25.6400","2. high":"26.0000","3. low":"24.9000","4. close":"25.0000","5. volume":"218400"},"2005-03-18":{"1. open":"26.0000","2. high":"26.1000","3. low":"25.6200","4. close":"25.6800","5. volume":"377900"},"2005-03-11":{"1. open":"26.7500","2. high":"26.8800","3. low":"25.6000","4. close":"26.0800","5. volume":"217000"},"2005-03-04":{"1. open":"25.0000","2. high":"27.0000","3. low":"24.8800","4. close":"26.7300","5. volume":"344500"},"2005-02-25":{"1. open":"26.1300","2. high":"26.3800","3. low":"24.7800","4. close":"24.8700","5. volume":"260400"},"2005-02-18":{"1. open":"24.5000","2. high":"26.4900","3. low":"24.5000","4. close":"26.1300","5. volume":"380600"},"2005-02-11":{"1. open":"24.0000","2. high":"24.4000","3. low":"23.5500","4. close":"24.4000","5. volume":"322300"},"2005-02-04":{"1. open":"24.0500","2. high":"24.1700","3. low":"23.6000","4. close":"23.9600","5. volume":"353600"},"2005-01-28":{"1. open":"24.1200","2. high":"24.9000","3. low":"23.5200","4. close":"23.9500","5. volume":"210900"},"2005-01-21":{"1. open":"24.0000","2. high":"24.1200","3. low":"23.5900","4. close":"23.9500","5. volume":"579000"},"2005-01-14":{"1. open":"24.1200","2. high":"24.2200","3. low":"23.7000","4. close":"23.9600","5. volume":"250200"},"2005-01-07":{"1. open":"24.5400","2. high":"24.6000","3. low":"23.6500","4. close":"23.9700","5. volume":"297700"},"2004-12-31":{"1. open":"24.4000","2. high":"24.8500","3. low":"24.0500","4. close":"24.5400","5. volume":"143200"},"2004-12-23":{"1. open":"24.3000","2. high":"24.4000","3. low":"23.7600","4. close":"24.3500","5. volume":"159800"},"2004-12-17":{"1. open":"23.6500","2. high":"24.3700","3. low":"23.0600","4. close":"24.3100","5. volume":"257100"},"2004-12-10":{"1. open":"23.8100","2. high":"23.8500","3. low":"23.1400","4. close":"23.5800","5. volume":"290500"},"2004-12-03":{"1. open":"23.0900","2. high":"24.2000","3. low":"22.9000","4. close":"23.7700","5. volume":"484400"},"2004-11-26":{"1. open":"21.8400","2. high":"23.2000","3. low":"21.8400","4. close":"23.1400","5. volume":"264200"},"2004-11-19":{"1. open":"21.4300","2. high":"21.9600","3. low":"21.1600","4. close":"21.7500","5. volume":"303100"},"2004-11-12":{"1. open":"20.2500","2. high":"21.5500","3. low":"20.2500","4. close":"21.4400","5. volume":"271900"},"2004-11-05":{"1. open":"21.2000","2. high":"21.6000","3. low":"20.2900","4. close":"20.3800","5. volume":"311600"},"2004-10-29":{"1. open":"20.6400","2. high":"21.4000","3. low":"20.6000","4. close":"20.9000","5. volume":"695500"},"2004-10-22":{"1. open":"21.3500","2. high":"21.6000","3. low":"20.8400","4. close":"20.8400","5. volume":"197400"},"2004-10-15":{"1. open":"22.2000","2. high":"22.3300","3. low":"21.2200","4. close":"21.4500","5. volume":"174600"},"2004-10-08":{"1. open":"23.1100","2. high":"23.2200","3. low":"21.9000","4. close":"22.1500","5. volume":"255700"},"2004-10-01":{"1. open":"20.9500","2. high":"22.8600","3. low":"20.8300","4. close":"22.8600","5. volume":"237200"},"2004-09-24":{"1. open":"21.1400","2. high":"21.2500","3. low":"20.5000","4. close":"20.9500","5. volume":"72500"},"2004-09-17":{"1. open":"21.5000","2. high":"21.7000","3. low":"21.1600","4. close":"21.2400","5. volume":"251800"},"2004-09-10":{"1. open":"20.7500","2. high":"21.7000","3. low":"20.5500","4. close":"21.4100","5. volume":"206800"},"2004-09-03":{"1. open":"20.4600","2. high":"21.0000","3. low":"20.4000","4. close":"20.8000","5. volume":"333700"},"2004-08-27":{"1. open":"20.1500","2. high":"20.6000","3. low":"19.9800","4. close":"20.5000","5. volume":"491800"},"2004-08-20":{"1. open":"19.4000","2. high":"20.1500","3. low":"19.2900","4. close":"20.1000","5. volume":"505600"},"2004-08-13":{"1. open":"18.8500","2. high":"19.6800","3. low":"18.7000","4. close":"19.4000","5. volume":"248400"},"2004-08-06":{"1. open":"19.0000","2. high":"19.3700","3. low":"18.6800","4. close":"18.8000","5. volume":"1112700"},"2004-07-30":{"1. open":"18.8200","2. high":"19.4000","3. low":"18.0500","4. close":"19.0000","5. volume":"762300"},"2004-07-23":{"1. open":"19.2800","2. high":"19.5500","3. low":"18.4100","4. close":"18.7300","5. volume":"81700"},"2004-07-16":{"1. open":"19.9500","2. high":"20.1400","3. low":"19.2500","4. close":"19.3600","5. volume":"138700"},"2004-07-09":{"1. open":"19.9700","2. high":"20.1500","3. low":"19.8500","4. close":"20.0100","5. volume":"141400"},"2004-07-02":{"1. open":"20.0500","2. high":"20.0500","3. low":"19.5000","4. close":"19.9900","5. volume":"194100"},"2004-06-25":{"1. open":"21.0000","2. high":"21.0000","3. low":"19.9100","4. close":"20.0000","5. volume":"364700"},"2004-06-18":{"1. open":"19.6000","2. high":"20.9500","3. low":"19.4900","4. close":"20.9500","5. volume":"440300"},"2004-06-10":{"1. open":"18.9500","2. high":"19.8000","3. low":"18.8700","4. close":"19.6500","5. volume":"433300"},"2004-06-04":{"1. open":"19.0000","2. high":"19.3400","3. low":"18.5000","4. close":"18.9800","5. volume":"111400"},"2004-05-28":{"1. open":"18.9500","2. high":"19.1000","3. low":"18.4000","4. close":"18.9600","5. volume":"94100"},"2004-05-21":{"1. open":"19.3500","2. high":"19.3500","3. low":"18.8500","4. close":"18.9700","5. volume":"149600"},"2004-05-14":{"1. open":"19.1500","2. high":"19.4000","3. low":"18.8000","4. close":"19.3900","5. volume":"177800"},"2004-05-07":{"1. open":"19.4500","2. high":"20.0100","3. low":"19.2800","4. close":"19.3000","5. volume":"198400"},"2004-04-30":{"1. open":"19.5000","2. high":"19.9500","3. low":"19.3600","4. close":"19.4500","5. volume":"157700"},"2004-04-23":{"1. open":"19.5000","2. high":"19.7700","3. low":"19.0000","4. close":"19.5000","5. volume":"168500"},"2004-04-16":{"1. open":"20.4500","2. high":"20.4500","3. low":"19.3500","4. close":"19.5000","5. volume":"1279900"}}} \ No newline at end of file diff --git a/Backend/data/weekly_ABT.json b/Backend/data/weekly_ABT.json index 94c4c6dd..d3ed29a9 100644 --- a/Backend/data/weekly_ABT.json +++ b/Backend/data/weekly_ABT.json @@ -1 +1 @@ -{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file +{"Meta Data":{"1. Information":"Weekly Prices (open, high, low, close) and Volumes","2. Symbol":"ABT","3. Last Refreshed":"2022-03-28","4. Time Zone":"US/Eastern"},"Weekly Time Series":{"2022-03-28":{"1. open":"119.3800","2. high":"120.0000","3. low":"118.7100","4. close":"119.9900","5. volume":"5350889"},"2022-03-25":{"1. open":"121.9300","2. high":"123.0962","3. low":"116.6100","4. close":"118.9500","5. volume":"21413166"},"2022-03-18":{"1. open":"114.9000","2. high":"122.6700","3. low":"114.5800","4. close":"122.4500","5. volume":"26686943"},"2022-03-11":{"1. open":"120.5400","2. high":"120.8900","3. low":"113.8800","4. close":"114.0200","5. volume":"30721157"},"2022-03-04":{"1. open":"121.0500","2. high":"122.0700","3. low":"117.3800","4. close":"121.4100","5. volume":"31080604"},"2022-02-25":{"1. open":"116.5400","2. high":"122.9300","3. low":"114.4275","4. close":"122.4100","5. volume":"23859660"},"2022-02-18":{"1. open":"125.0000","2. high":"125.5700","3. low":"114.8400","4. close":"116.7900","5. volume":"33874497"},"2022-02-11":{"1. open":"129.8700","2. high":"130.7900","3. low":"125.1500","4. close":"125.4900","5. volume":"22081264"},"2022-02-04":{"1. open":"125.5200","2. high":"130.9350","3. low":"125.1300","4. close":"129.7100","5. volume":"30025884"},"2022-01-28":{"1. open":"124.0100","2. high":"125.5300","3. low":"119.0000","4. close":"125.3500","5. volume":"52215031"},"2022-01-21":{"1. open":"127.4000","2. high":"127.9300","3. low":"124.6100","4. close":"125.8300","5. volume":"28582525"},"2022-01-14":{"1. open":"134.7900","2. high":"135.9700","3. low":"127.0200","4. close":"128.1600","5. volume":"36526466"},"2022-01-07":{"1. open":"139.4300","2. high":"139.8301","3. low":"133.8800","4. close":"135.5600","5. volume":"30959737"},"2021-12-31":{"1. open":"139.8200","2. high":"142.6000","3. low":"139.3300","4. close":"140.7400","5. volume":"15906052"},"2021-12-23":{"1. open":"136.2000","2. high":"140.2300","3. low":"133.4000","4. close":"139.1600","5. volume":"23916180"},"2021-12-17":{"1. open":"134.5000","2. high":"139.2700","3. low":"132.0000","4. close":"137.1100","5. volume":"38850884"},"2021-12-10":{"1. open":"130.7600","2. high":"134.5000","3. low":"130.6100","4. close":"134.3700","5. volume":"24170055"},"2021-12-03":{"1. open":"126.3500","2. high":"130.4550","3. low":"125.1200","4. close":"130.2700","5. volume":"28080963"},"2021-11-26":{"1. open":"126.7800","2. high":"129.7500","3. low":"123.2200","4. close":"125.8800","5. volume":"17480316"},"2021-11-19":{"1. open":"128.7700","2. high":"131.6050","3. low":"126.4600","4. close":"126.8400","5. volume":"24801835"},"2021-11-12":{"1. open":"124.0000","2. high":"128.9600","3. low":"123.8100","4. close":"128.4500","5. volume":"26897297"},"2021-11-05":{"1. open":"128.6350","2. high":"129.5300","3. low":"123.9300","4. close":"124.3700","5. volume":"29000156"},"2021-10-29":{"1. open":"126.4900","2. high":"129.4026","3. low":"125.3950","4. close":"128.8900","5. volume":"20887714"},"2021-10-22":{"1. open":"117.2900","2. high":"126.8400","3. low":"116.3035","4. close":"126.7200","5. volume":"30284296"},"2021-10-15":{"1. open":"118.1500","2. high":"118.9400","3. low":"116.4100","4. close":"117.4900","5. volume":"23398721"},"2021-10-08":{"1. open":"116.6100","2. high":"119.3300","3. low":"114.4000","4. close":"118.3900","5. volume":"27339912"},"2021-10-01":{"1. open":"123.3300","2. high":"123.5000","3. low":"115.1000","4. close":"117.2100","5. volume":"29807160"},"2021-09-24":{"1. open":"125.6000","2. high":"126.7800","3. low":"123.8100","4. close":"124.3700","5. volume":"23941824"},"2021-09-17":{"1. open":"129.6700","2. high":"129.6992","3. low":"124.8100","4. close":"126.7900","5. volume":"28175085"},"2021-09-10":{"1. open":"128.1200","2. high":"129.5200","3. low":"127.0500","4. close":"128.8000","5. volume":"14561309"},"2021-09-03":{"1. open":"124.5300","2. high":"129.3988","3. low":"124.3600","4. close":"128.9400","5. volume":"18693639"},"2021-08-27":{"1. open":"126.6700","2. high":"127.3000","3. low":"124.1700","4. close":"124.5900","5. volume":"20318284"},"2021-08-20":{"1. open":"123.6900","2. high":"126.9800","3. low":"123.3300","4. close":"126.3200","5. volume":"22567116"},"2021-08-13":{"1. open":"122.3900","2. high":"123.5600","3. low":"121.0000","4. close":"123.0600","5. volume":"18733860"},"2021-08-06":{"1. open":"121.5000","2. high":"122.6500","3. low":"120.1750","4. close":"122.1700","5. volume":"17664316"},"2021-07-30":{"1. open":"120.2400","2. high":"121.4200","3. low":"118.3800","4. close":"120.9800","5. volume":"22988278"},"2021-07-23":{"1. open":"116.9800","2. high":"121.1000","3. low":"115.8600","4. close":"120.8000","5. volume":"27398001"},"2021-07-16":{"1. open":"118.8100","2. high":"119.6900","3. low":"116.2700","4. close":"117.5100","5. volume":"22182209"},"2021-07-09":{"1. open":"118.0000","2. high":"120.2400","3. low":"117.7600","4. close":"119.7400","5. volume":"17371737"},"2021-07-02":{"1. open":"112.9900","2. high":"118.8400","3. low":"112.7400","4. close":"118.0400","5. volume":"33089380"},"2021-06-25":{"1. open":"110.2500","2. high":"113.4850","3. low":"109.7304","4. close":"112.7200","5. volume":"34088171"},"2021-06-18":{"1. open":"110.0800","2. high":"111.9900","3. low":"109.6300","4. close":"110.3300","5. volume":"32101259"},"2021-06-11":{"1. open":"109.9800","2. high":"110.8800","3. low":"107.6000","4. close":"109.9100","5. volume":"44418105"},"2021-06-04":{"1. open":"110.1500","2. high":"111.3000","3. low":"105.3600","4. close":"109.2900","5. volume":"63654318"},"2021-05-28":{"1. open":"118.0400","2. high":"119.2400","3. low":"115.6100","4. close":"116.6500","5. volume":"29665687"},"2021-05-21":{"1. open":"118.0000","2. high":"118.9500","3. low":"115.1550","4. close":"117.1300","5. volume":"18049428"},"2021-05-14":{"1. open":"119.2000","2. high":"119.9450","3. low":"116.2500","4. close":"118.3100","5. volume":"22509740"},"2021-05-07":{"1. open":"120.5500","2. high":"120.6600","3. low":"116.4300","4. close":"118.9500","5. volume":"26583038"},"2021-04-30":{"1. open":"123.3900","2. high":"123.4000","3. low":"119.3450","4. close":"120.0800","5. volume":"20180957"},"2021-04-23":{"1. open":"123.6000","2. high":"125.4200","3. low":"119.0100","4. close":"123.3100","5. volume":"35395686"},"2021-04-16":{"1. open":"120.5600","2. high":"124.6800","3. low":"120.4800","4. close":"124.3500","5. volume":"23341240"},"2021-04-09":{"1. open":"119.6500","2. high":"122.0100","3. low":"119.0800","4. close":"120.9000","5. volume":"23645368"},"2021-04-01":{"1. open":"121.0000","2. high":"122.7400","3. low":"118.7800","4. close":"118.9400","5. volume":"19672611"},"2021-03-26":{"1. open":"120.2600","2. high":"122.3000","3. low":"117.2400","4. close":"122.0700","5. volume":"25660305"},"2021-03-19":{"1. open":"117.1900","2. high":"120.9900","3. low":"116.5400","4. close":"120.2500","5. volume":"27848068"},"2021-03-12":{"1. open":"117.0000","2. high":"119.3400","3. low":"115.3200","4. close":"116.7100","5. volume":"25377872"},"2021-03-05":{"1. open":"120.9900","2. high":"123.1000","3. low":"114.7400","4. close":"117.2500","5. volume":"25566152"},"2021-02-26":{"1. open":"122.9500","2. high":"123.1800","3. low":"119.6600","4. close":"119.7800","5. volume":"23103960"},"2021-02-19":{"1. open":"128.4900","2. high":"128.5000","3. low":"122.6700","4. close":"123.0400","5. volume":"19966166"},"2021-02-12":{"1. open":"125.0000","2. high":"128.5400","3. low":"123.6149","4. close":"128.2300","5. volume":"18390783"},"2021-02-05":{"1. open":"123.2400","2. high":"124.8200","3. low":"118.7900","4. close":"124.0300","5. volume":"30730468"},"2021-01-29":{"1. open":"113.0600","2. high":"124.7200","3. low":"113.0100","4. close":"123.5900","5. volume":"40228160"},"2021-01-22":{"1. open":"111.7400","2. high":"113.5400","3. low":"110.2600","4. close":"112.8400","5. volume":"18964626"},"2021-01-15":{"1. open":"111.2100","2. high":"112.9000","3. low":"108.2500","4. close":"111.3000","5. volume":"23869178"},"2021-01-08":{"1. open":"109.5300","2. high":"112.5500","3. low":"107.2551","4. close":"111.6100","5. volume":"25866019"},"2020-12-31":{"1. open":"108.9600","2. high":"109.6400","3. low":"107.2600","4. close":"109.4900","5. volume":"10265280"},"2020-12-24":{"1. open":"107.5600","2. high":"109.6792","3. low":"105.3700","4. close":"108.3500","5. volume":"12572105"},"2020-12-18":{"1. open":"107.5000","2. high":"109.6100","3. low":"106.4000","4. close":"108.9700","5. volume":"30559685"},"2020-12-11":{"1. open":"107.7200","2. high":"108.3000","3. low":"105.3200","4. close":"107.0200","5. volume":"28861665"},"2020-12-04":{"1. open":"107.7700","2. high":"109.6000","3. low":"106.9300","4. close":"107.9000","5. volume":"21804525"},"2020-11-27":{"1. open":"111.4300","2. high":"111.5200","3. low":"105.6300","4. close":"107.6200","5. volume":"19441728"},"2020-11-20":{"1. open":"112.0500","2. high":"114.6200","3. low":"109.2600","4. close":"110.8900","5. volume":"20107056"},"2020-11-13":{"1. open":"111.8000","2. high":"113.2100","3. low":"106.1900","4. close":"112.6000","5. volume":"29964974"},"2020-11-06":{"1. open":"107.0900","2. high":"115.1400","3. low":"106.1100","4. close":"114.4200","5. volume":"27982744"},"2020-10-30":{"1. open":"107.5700","2. high":"109.7495","3. low":"103.1300","4. close":"105.1100","5. volume":"27593208"},"2020-10-23":{"1. open":"109.9000","2. high":"111.0350","3. low":"104.7548","4. close":"107.7900","5. volume":"22345319"},"2020-10-16":{"1. open":"110.2500","2. high":"111.5700","3. low":"106.3100","4. close":"109.6700","5. volume":"21050030"},"2020-10-09":{"1. open":"107.1800","2. high":"109.9700","3. low":"106.0500","4. close":"109.6500","5. volume":"18988022"},"2020-10-02":{"1. open":"104.2400","2. high":"110.3300","3. low":"103.8200","4. close":"106.5000","5. volume":"32305810"},"2020-09-25":{"1. open":"105.8000","2. high":"106.4600","3. low":"100.3400","4. close":"103.4500","5. volume":"25444550"},"2020-09-18":{"1. open":"105.5900","2. high":"107.9900","3. low":"104.3922","4. close":"106.8600","5. volume":"23629664"},"2020-09-11":{"1. open":"103.1700","2. high":"106.9299","3. low":"102.4300","4. close":"104.7000","5. volume":"17965287"},"2020-09-04":{"1. open":"110.7000","2. high":"111.7400","3. low":"102.4200","4. close":"104.1600","5. volume":"31879509"},"2020-08-28":{"1. open":"102.7000","2. high":"114.1950","3. low":"100.7000","4. close":"110.7900","5. volume":"62331245"},"2020-08-21":{"1. open":"100.3000","2. high":"102.5400","3. low":"99.7500","4. close":"102.4000","5. volume":"18276757"},"2020-08-14":{"1. open":"100.9400","2. high":"101.2693","3. low":"98.6700","4. close":"99.9900","5. volume":"15961064"},"2020-08-07":{"1. open":"101.0800","2. high":"102.3600","3. low":"99.2800","4. close":"101.2300","5. volume":"17902669"},"2020-07-31":{"1. open":"98.5500","2. high":"102.8931","3. low":"98.4111","4. close":"100.6400","5. volume":"20357719"},"2020-07-24":{"1. open":"100.0000","2. high":"101.9800","3. low":"97.7600","4. close":"98.9500","5. volume":"25842515"},"2020-07-17":{"1. open":"93.1400","2. high":"100.0000","3. low":"91.7100","4. close":"99.2500","5. volume":"30477487"},"2020-07-10":{"1. open":"92.7600","2. high":"94.8800","3. low":"91.5000","4. close":"93.0400","5. volume":"20622366"},"2020-07-02":{"1. open":"89.5800","2. high":"93.0600","3. low":"88.0900","4. close":"92.2300","5. volume":"17128927"},"2020-06-26":{"1. open":"90.3300","2. high":"92.3000","3. low":"86.1600","4. close":"88.7100","5. volume":"29671816"},"2020-06-19":{"1. open":"87.5200","2. high":"92.4000","3. low":"87.0500","4. close":"90.6800","5. volume":"31519603"},"2020-06-12":{"1. open":"88.9800","2. high":"92.8200","3. low":"86.9400","4. close":"89.0200","5. volume":"29866515"},"2020-06-05":{"1. open":"92.9500","2. high":"93.9600","3. low":"87.3200","4. close":"89.8600","5. volume":"40883120"},"2020-05-29":{"1. open":"92.9500","2. high":"95.5900","3. low":"88.1700","4. close":"94.9200","5. volume":"27118202"},"2020-05-22":{"1. open":"91.9000","2. high":"93.0000","3. low":"88.0300","4. close":"91.4700","5. volume":"34190150"},"2020-05-15":{"1. open":"93.2200","2. high":"96.6800","3. low":"88.7900","4. close":"89.8900","5. volume":"46004798"},"2020-05-08":{"1. open":"89.7900","2. high":"94.9400","3. low":"88.7100","4. close":"93.7000","5. volume":"29444099"},"2020-05-01":{"1. open":"95.4800","2. high":"95.9000","3. low":"88.7500","4. close":"89.8500","5. volume":"36501303"},"2020-04-24":{"1. open":"94.8200","2. high":"100.0000","3. low":"92.7800","4. close":"94.0600","5. volume":"57165080"},"2020-04-17":{"1. open":"86.3200","2. high":"97.7500","3. low":"83.5200","4. close":"96.0100","5. volume":"73562025"},"2020-04-09":{"1. open":"81.0800","2. high":"86.5000","3. low":"79.6100","4. close":"86.0400","5. volume":"42953971"},"2020-04-03":{"1. open":"82.8300","2. high":"84.4000","3. low":"75.3500","4. close":"79.4500","5. volume":"102397670"},"2020-03-27":{"1. open":"67.0700","2. high":"77.5000","3. low":"61.6100","4. close":"74.5600","5. volume":"52122749"},"2020-03-20":{"1. open":"70.6500","2. high":"81.9900","3. low":"67.9500","4. close":"68.0000","5. volume":"74786869"},"2020-03-13":{"1. open":"76.6100","2. high":"82.6700","3. low":"72.0100","4. close":"81.6500","5. volume":"63063146"},"2020-03-06":{"1. open":"77.8800","2. high":"83.5000","3. low":"77.2500","4. close":"81.7400","5. volume":"49588310"},"2020-02-28":{"1. open":"85.4500","2. high":"85.6700","3. low":"74.0200","4. close":"77.0300","5. volume":"45277296"},"2020-02-21":{"1. open":"89.4200","2. high":"89.9300","3. low":"87.1600","4. close":"87.4500","5. volume":"17185533"},"2020-02-14":{"1. open":"87.2100","2. high":"89.7100","3. low":"87.2100","4. close":"89.6600","5. volume":"18639331"},"2020-02-07":{"1. open":"87.7800","2. high":"90.0800","3. low":"86.7500","4. close":"87.8700","5. volume":"20888275"},"2020-01-31":{"1. open":"89.1100","2. high":"90.2300","3. low":"86.9000","4. close":"87.1400","5. volume":"24542225"},"2020-01-24":{"1. open":"88.8600","2. high":"92.4500","3. low":"88.6100","4. close":"90.4000","5. volume":"28930918"},"2020-01-17":{"1. open":"85.5000","2. high":"89.2000","3. low":"84.0100","4. close":"89.0000","5. volume":"30614335"},"2020-01-10":{"1. open":"85.6200","2. high":"86.9900","3. low":"85.1700","4. close":"85.3600","5. volume":"25845823"},"2020-01-03":{"1. open":"87.5200","2. high":"87.7900","3. low":"85.5900","4. close":"85.8900","5. volume":"15683223"},"2019-12-27":{"1. open":"86.3100","2. high":"87.7500","3. low":"86.2800","4. close":"87.4000","5. volume":"9676722"},"2019-12-20":{"1. open":"86.9500","2. high":"89.2400","3. low":"86.0000","4. close":"86.6600","5. volume":"31293419"},"2019-12-13":{"1. open":"85.1200","2. high":"86.7100","3. low":"83.7600","4. close":"86.3500","5. volume":"19085651"},"2019-12-06":{"1. open":"85.5700","2. high":"85.9100","3. low":"83.2700","4. close":"85.4800","5. volume":"18359699"},"2019-11-29":{"1. open":"83.9100","2. high":"85.9700","3. low":"83.8800","4. close":"85.4500","5. volume":"19747113"},"2019-11-22":{"1. open":"85.7100","2. high":"85.9000","3. low":"82.3600","4. close":"83.7400","5. volume":"24556649"},"2019-11-15":{"1. open":"83.3100","2. high":"85.7100","3. low":"83.2700","4. close":"85.7100","5. volume":"20796650"},"2019-11-08":{"1. open":"83.0400","2. high":"83.8900","3. low":"80.9000","4. close":"83.7400","5. volume":"27715351"},"2019-11-01":{"1. open":"81.8000","2. high":"84.3500","3. low":"81.7600","4. close":"82.6600","5. volume":"22649483"},"2019-10-25":{"1. open":"83.1400","2. high":"83.2800","3. low":"80.4100","4. close":"81.6500","5. volume":"24104267"},"2019-10-18":{"1. open":"79.6900","2. high":"83.6900","3. low":"79.4200","4. close":"82.7900","5. volume":"30937293"},"2019-10-11":{"1. open":"81.4000","2. high":"81.9800","3. low":"78.5100","4. close":"79.6300","5. volume":"22476081"},"2019-10-04":{"1. open":"82.1900","2. high":"84.7700","3. low":"78.7700","4. close":"81.9900","5. volume":"22285723"},"2019-09-27":{"1. open":"83.4300","2. high":"84.0300","3. low":"81.4200","4. close":"81.8400","5. volume":"15803519"},"2019-09-20":{"1. open":"83.9100","2. high":"84.5000","3. low":"82.8500","4. close":"83.5800","5. volume":"21235373"},"2019-09-13":{"1. open":"86.3400","2. high":"86.4300","3. low":"81.0200","4. close":"84.2700","5. volume":"21634113"},"2019-09-06":{"1. open":"84.4300","2. high":"86.4300","3. low":"83.2600","4. close":"86.0400","5. volume":"16540701"},"2019-08-30":{"1. open":"82.6100","2. high":"85.6200","3. low":"82.0200","4. close":"85.3200","5. volume":"19642868"},"2019-08-23":{"1. open":"85.7900","2. high":"86.1300","3. low":"81.3600","4. close":"81.9300","5. volume":"21232686"},"2019-08-16":{"1. open":"86.3900","2. high":"87.1000","3. low":"83.5200","4. close":"84.7800","5. volume":"23228262"},"2019-08-09":{"1. open":"84.7300","2. high":"87.0500","3. low":"82.3100","4. close":"86.6200","5. volume":"27720940"},"2019-08-02":{"1. open":"88.0600","2. high":"88.7300","3. low":"84.7400","4. close":"85.8200","5. volume":"24464156"},"2019-07-26":{"1. open":"87.3600","2. high":"88.7600","3. low":"87.2700","4. close":"87.7500","5. volume":"23343416"},"2019-07-19":{"1. open":"83.8100","2. high":"88.3300","3. low":"82.9000","4. close":"87.4900","5. volume":"32581640"},"2019-07-12":{"1. open":"85.2800","2. high":"85.9900","3. low":"83.0600","4. close":"83.9200","5. volume":"20353894"},"2019-07-05":{"1. open":"84.7400","2. high":"85.6500","3. low":"83.7500","4. close":"85.4200","5. volume":"14779205"},"2019-06-28":{"1. open":"84.7800","2. high":"85.4500","3. low":"82.6300","4. close":"84.1000","5. volume":"35727025"},"2019-06-21":{"1. open":"82.3900","2. high":"85.3600","3. low":"81.6700","4. close":"85.0000","5. volume":"29754206"},"2019-06-14":{"1. open":"81.0000","2. high":"82.8600","3. low":"80.4400","4. close":"82.2200","5. volume":"21156603"},"2019-06-07":{"1. open":"76.2500","2. high":"81.1600","3. low":"75.4400","4. close":"80.7400","5. volume":"28512196"},"2019-05-31":{"1. open":"77.0300","2. high":"77.9800","3. low":"74.9400","4. close":"76.1300","5. volume":"19602989"},"2019-05-24":{"1. open":"75.6000","2. high":"77.0800","3. low":"75.2000","4. close":"76.9800","5. volume":"21748733"},"2019-05-17":{"1. open":"75.1700","2. high":"77.3700","3. low":"74.9600","4. close":"75.9700","5. volume":"26139199"},"2019-05-10":{"1. open":"77.4200","2. high":"79.1700","3. low":"74.5400","4. close":"76.4500","5. volume":"21422378"},"2019-05-03":{"1. open":"78.5600","2. high":"79.6900","3. low":"77.5800","4. close":"78.6900","5. volume":"27136513"},"2019-04-26":{"1. open":"73.1300","2. high":"78.5700","3. low":"73.0000","4. close":"78.5600","5. volume":"29171135"},"2019-04-18":{"1. open":"78.1100","2. high":"78.7000","3. low":"72.3600","4. close":"73.9200","5. volume":"33247619"},"2019-04-12":{"1. open":"78.9100","2. high":"79.4200","3. low":"77.8200","4. close":"78.0100","5. volume":"25534335"},"2019-04-05":{"1. open":"80.6700","2. high":"80.7400","3. low":"78.0000","4. close":"79.0000","5. volume":"20639223"},"2019-03-29":{"1. open":"77.8100","2. high":"79.9900","3. low":"77.6200","4. close":"79.9400","5. volume":"23109868"},"2019-03-22":{"1. open":"79.9500","2. high":"80.4900","3. low":"77.6900","4. close":"77.9700","5. volume":"32540835"},"2019-03-15":{"1. open":"76.9200","2. high":"80.1500","3. low":"76.7000","4. close":"79.8600","5. volume":"32699383"},"2019-03-08":{"1. open":"78.8400","2. high":"78.9700","3. low":"75.8600","4. close":"76.6300","5. volume":"25880664"},"2019-03-01":{"1. open":"76.3900","2. high":"78.7400","3. low":"76.2400","4. close":"78.5900","5. volume":"28864435"},"2019-02-22":{"1. open":"75.1600","2. high":"76.4500","3. low":"74.6000","4. close":"76.1300","5. volume":"21723794"},"2019-02-15":{"1. open":"73.4800","2. high":"75.4000","3. low":"73.2900","4. close":"75.2500","5. volume":"30466817"},"2019-02-08":{"1. open":"72.3900","2. high":"73.5600","3. low":"71.5000","4. close":"73.3300","5. volume":"27360005"},"2019-02-01":{"1. open":"70.5200","2. high":"73.2400","3. low":"68.8000","4. close":"72.3600","5. volume":"35507906"},"2019-01-25":{"1. open":"70.9700","2. high":"71.7700","3. low":"69.2700","4. close":"71.1500","5. volume":"28002960"},"2019-01-18":{"1. open":"68.4100","2. high":"71.7400","3. low":"68.1300","4. close":"71.4200","5. volume":"32619338"},"2019-01-11":{"1. open":"68.1900","2. high":"69.8600","3. low":"67.0000","4. close":"69.3300","5. volume":"39133293"},"2019-01-04":{"1. open":"71.5700","2. high":"72.7600","3. low":"65.5000","4. close":"68.1100","5. volume":"33701754"},"2018-12-28":{"1. open":"66.8200","2. high":"72.0500","3. low":"65.4400","4. close":"71.0900","5. volume":"24525285"},"2018-12-21":{"1. open":"70.3800","2. high":"71.4700","3. low":"66.9900","4. close":"67.2700","5. volume":"48920086"},"2018-12-14":{"1. open":"70.0400","2. high":"73.8600","3. low":"68.7900","4. close":"70.7600","5. volume":"32214548"},"2018-12-07":{"1. open":"74.2900","2. high":"74.9200","3. low":"69.1900","4. close":"69.9500","5. volume":"32263610"},"2018-11-30":{"1. open":"68.7300","2. high":"74.2300","3. low":"68.3800","4. close":"74.0500","5. volume":"35282377"},"2018-11-23":{"1. open":"72.0000","2. high":"72.4100","3. low":"67.8300","4. close":"68.1100","5. volume":"24498560"},"2018-11-16":{"1. open":"72.7300","2. high":"72.9000","3. low":"67.9400","4. close":"72.0400","5. volume":"34953734"},"2018-11-09":{"1. open":"70.4800","2. high":"73.0800","3. low":"69.9900","4. close":"72.7900","5. volume":"27563312"},"2018-11-02":{"1. open":"68.0000","2. high":"71.3800","3. low":"66.3900","4. close":"70.1900","5. volume":"34885439"},"2018-10-26":{"1. open":"67.7400","2. high":"69.2000","3. low":"65.7800","4. close":"66.9900","5. volume":"39939118"},"2018-10-19":{"1. open":"69.3400","2. high":"71.1800","3. low":"67.2300","4. close":"67.5900","5. volume":"43639075"},"2018-10-12":{"1. open":"71.5800","2. high":"72.3900","3. low":"67.6500","4. close":"69.3300","5. volume":"43255592"},"2018-10-05":{"1. open":"73.8100","2. high":"74.1500","3. low":"71.0500","4. close":"71.5800","5. volume":"32530979"},"2018-09-28":{"1. open":"70.7900","2. high":"73.5800","3. low":"70.3200","4. close":"73.3600","5. volume":"39290038"},"2018-09-21":{"1. open":"68.4200","2. high":"69.2500","3. low":"67.5100","4. close":"69.0500","5. volume":"27065659"},"2018-09-14":{"1. open":"66.4500","2. high":"68.8200","3. low":"66.1150","4. close":"68.4200","5. volume":"20171470"},"2018-09-07":{"1. open":"66.7400","2. high":"67.1100","3. low":"65.2200","4. close":"66.2100","5. volume":"22774545"},"2018-08-31":{"1. open":"66.4500","2. high":"67.3600","3. low":"66.3300","4. close":"66.8400","5. volume":"22068660"},"2018-08-24":{"1. open":"65.0000","2. high":"66.2600","3. low":"64.3800","4. close":"66.1000","5. volume":"22584028"},"2018-08-17":{"1. open":"64.0200","2. high":"64.9200","3. low":"63.0700","4. close":"64.7200","5. volume":"19862325"},"2018-08-10":{"1. open":"65.0900","2. high":"65.5000","3. low":"63.8700","4. close":"64.0300","5. volume":"17542475"},"2018-08-03":{"1. open":"64.9700","2. high":"65.7700","3. low":"63.9100","4. close":"65.2300","5. volume":"23322210"},"2018-07-27":{"1. open":"63.2600","2. high":"65.9000","3. low":"62.8700","4. close":"65.2600","5. volume":"27395378"},"2018-07-20":{"1. open":"62.9500","2. high":"65.5000","3. low":"61.5500","4. close":"63.3200","5. volume":"36935950"},"2018-07-13":{"1. open":"62.2300","2. high":"63.4400","3. low":"62.1400","4. close":"63.0600","5. volume":"20095898"},"2018-07-06":{"1. open":"60.6300","2. high":"62.4000","3. low":"60.3200","4. close":"62.1600","5. volume":"14323521"},"2018-06-29":{"1. open":"61.7000","2. high":"62.1400","3. low":"60.3200","4. close":"60.9900","5. volume":"27026116"},"2018-06-22":{"1. open":"62.5900","2. high":"62.8700","3. low":"61.4500","4. close":"61.9400","5. volume":"23162516"},"2018-06-15":{"1. open":"63.2800","2. high":"63.4800","3. low":"62.2600","4. close":"62.9100","5. volume":"32237939"},"2018-06-08":{"1. open":"62.3200","2. high":"63.8500","3. low":"62.2800","4. close":"63.2700","5. volume":"21106654"},"2018-06-01":{"1. open":"61.5800","2. high":"62.6500","3. low":"60.8500","4. close":"62.4100","5. volume":"20839356"},"2018-05-25":{"1. open":"62.0000","2. high":"62.7200","3. low":"60.9600","4. close":"62.3700","5. volume":"25353414"},"2018-05-18":{"1. open":"61.5000","2. high":"62.1700","3. low":"60.3200","4. close":"61.7100","5. volume":"27143351"},"2018-05-11":{"1. open":"58.9900","2. high":"61.3000","3. low":"58.2400","4. close":"61.2600","5. volume":"27097119"},"2018-05-04":{"1. open":"59.7600","2. high":"59.8000","3. low":"56.8100","4. close":"58.7400","5. volume":"28496589"},"2018-04-27":{"1. open":"59.2800","2. high":"59.6900","3. low":"57.6700","4. close":"59.5600","5. volume":"29273847"},"2018-04-20":{"1. open":"59.0000","2. high":"60.0300","3. low":"57.4500","4. close":"59.1900","5. volume":"38603601"},"2018-04-13":{"1. open":"57.8600","2. high":"59.6100","3. low":"57.4500","4. close":"58.4900","5. volume":"27797958"},"2018-04-06":{"1. open":"59.8200","2. high":"60.1500","3. low":"56.9900","4. close":"57.5700","5. volume":"34296921"},"2018-03-29":{"1. open":"60.2800","2. high":"61.6200","3. low":"59.1800","4. close":"59.9200","5. volume":"26387836"},"2018-03-23":{"1. open":"63.1300","2. high":"63.2400","3. low":"59.3600","4. close":"59.5000","5. volume":"23526844"},"2018-03-16":{"1. open":"63.5900","2. high":"63.9500","3. low":"62.5200","4. close":"63.1800","5. volume":"32301025"},"2018-03-09":{"1. open":"58.9100","2. high":"63.7000","3. low":"58.9000","4. close":"63.6000","5. volume":"36489766"},"2018-03-02":{"1. open":"59.8600","2. high":"61.2400","3. low":"58.4300","4. close":"59.4600","5. volume":"38029526"},"2018-02-23":{"1. open":"59.6800","2. high":"59.9900","3. low":"58.8000","4. close":"59.7100","5. volume":"23448814"},"2018-02-16":{"1. open":"57.7000","2. high":"60.5400","3. low":"56.8100","4. close":"60.1700","5. volume":"28946787"},"2018-02-09":{"1. open":"61.6000","2. high":"61.8700","3. low":"55.5800","4. close":"57.1700","5. volume":"47584461"},"2018-02-02":{"1. open":"63.0900","2. high":"63.4700","3. low":"61.6400","4. close":"61.6900","5. volume":"41590448"},"2018-01-26":{"1. open":"58.8800","2. high":"64.6000","3. low":"58.4500","4. close":"63.4200","5. volume":"51655677"},"2018-01-19":{"1. open":"58.8900","2. high":"59.6800","3. low":"58.2300","4. close":"59.3100","5. volume":"23010040"},"2018-01-12":{"1. open":"58.8500","2. high":"59.2400","3. low":"58.2900","4. close":"58.8400","5. volume":"27779196"},"2018-01-05":{"1. open":"58.2000","2. high":"59.6000","3. low":"57.8200","4. close":"58.9900","5. volume":"27801853"},"2017-12-29":{"1. open":"57.0100","2. high":"57.7700","3. low":"56.9000","4. close":"57.0700","5. volume":"15733627"},"2017-12-22":{"1. open":"55.5200","2. high":"57.3200","3. low":"55.4200","4. close":"56.9300","5. volume":"36507159"},"2017-12-15":{"1. open":"54.7700","2. high":"55.8700","3. low":"54.4800","4. close":"55.5000","5. volume":"42838367"},"2017-12-08":{"1. open":"56.1400","2. high":"56.2000","3. low":"54.3200","4. close":"54.6400","5. volume":"25893449"},"2017-12-01":{"1. open":"56.1700","2. high":"56.6800","3. low":"55.2700","4. close":"55.9800","5. volume":"33470334"},"2017-11-24":{"1. open":"55.6600","2. high":"56.3200","3. low":"55.1300","4. close":"56.1300","5. volume":"13646559"},"2017-11-17":{"1. open":"54.6900","2. high":"55.8400","3. low":"54.5400","4. close":"55.5600","5. volume":"27612170"},"2017-11-10":{"1. open":"55.3200","2. high":"55.5000","3. low":"54.3700","4. close":"54.8000","5. volume":"19923965"},"2017-11-03":{"1. open":"55.1800","2. high":"55.5000","3. low":"53.6101","4. close":"55.4700","5. volume":"34337763"},"2017-10-27":{"1. open":"56.2100","2. high":"56.6850","3. low":"55.0800","4. close":"55.3700","5. volume":"24931664"},"2017-10-20":{"1. open":"54.6200","2. high":"56.6000","3. low":"54.4000","4. close":"56.3200","5. volume":"28031435"},"2017-10-13":{"1. open":"55.0500","2. high":"55.4300","3. low":"54.1100","4. close":"54.6500","5. volume":"24927502"},"2017-10-06":{"1. open":"53.6400","2. high":"55.1100","3. low":"53.1950","4. close":"55.0000","5. volume":"27790106"},"2017-09-29":{"1. open":"52.4600","2. high":"54.8000","3. low":"51.5500","4. close":"53.3600","5. volume":"47498980"},"2017-09-22":{"1. open":"51.8900","2. high":"52.5800","3. low":"51.3700","4. close":"52.5100","5. volume":"25631602"},"2017-09-15":{"1. open":"52.3500","2. high":"52.6000","3. low":"51.4900","4. close":"51.7600","5. volume":"23415833"},"2017-09-08":{"1. open":"50.8400","2. high":"52.1500","3. low":"50.6400","4. close":"52.0200","5. volume":"22287142"},"2017-09-01":{"1. open":"49.5400","2. high":"51.4100","3. low":"49.4943","4. close":"51.1800","5. volume":"23938490"},"2017-08-25":{"1. open":"48.7800","2. high":"49.8500","3. low":"48.5800","4. close":"49.3500","5. volume":"21006524"},"2017-08-18":{"1. open":"48.7400","2. high":"50.1500","3. low":"48.6800","4. close":"48.7400","5. volume":"23839671"},"2017-08-11":{"1. open":"49.2600","2. high":"49.3800","3. low":"48.0500","4. close":"48.5400","5. volume":"18951142"},"2017-08-04":{"1. open":"49.7600","2. high":"49.8400","3. low":"48.7200","4. close":"49.2600","5. volume":"23499015"},"2017-07-28":{"1. open":"50.8100","2. high":"51.0000","3. low":"49.5100","4. close":"49.6100","5. volume":"33194020"},"2017-07-21":{"1. open":"48.9100","2. high":"51.1300","3. low":"48.2800","4. close":"50.8400","5. volume":"34086757"},"2017-07-14":{"1. open":"48.4200","2. high":"49.1050","3. low":"47.8300","4. close":"48.9100","5. volume":"22513974"},"2017-07-07":{"1. open":"48.7300","2. high":"49.1000","3. low":"47.9000","4. close":"48.4400","5. volume":"17875868"},"2017-06-30":{"1. open":"49.2100","2. high":"49.4500","3. low":"48.3500","4. close":"48.6100","5. volume":"28263825"},"2017-06-23":{"1. open":"48.3400","2. high":"49.5900","3. low":"48.1500","4. close":"49.0800","5. volume":"41566512"},"2017-06-16":{"1. open":"47.2900","2. high":"48.3800","3. low":"46.8301","4. close":"48.2100","5. volume":"39811702"},"2017-06-09":{"1. open":"46.5700","2. high":"47.3100","3. low":"45.9200","4. close":"47.2900","5. volume":"35605473"},"2017-06-02":{"1. open":"44.4600","2. high":"46.5500","3. low":"44.2100","4. close":"46.5000","5. volume":"32715588"},"2017-05-26":{"1. open":"43.2700","2. high":"44.8500","3. low":"43.1000","4. close":"44.7100","5. volume":"28154463"},"2017-05-19":{"1. open":"43.9200","2. high":"44.5900","3. low":"42.8800","4. close":"43.1600","5. volume":"28212877"},"2017-05-12":{"1. open":"44.7000","2. high":"44.9000","3. low":"43.7750","4. close":"43.9600","5. volume":"29269213"},"2017-05-05":{"1. open":"43.5700","2. high":"44.6900","3. low":"43.3200","4. close":"44.6400","5. volume":"28250385"},"2017-04-28":{"1. open":"44.0700","2. high":"44.3854","3. low":"43.5000","4. close":"43.6400","5. volume":"32001905"},"2017-04-21":{"1. open":"42.6700","2. high":"44.1500","3. low":"42.3100","4. close":"43.5300","5. volume":"45046009"},"2017-04-13":{"1. open":"43.8300","2. high":"43.9600","3. low":"42.3900","4. close":"42.6700","5. volume":"25399091"},"2017-04-07":{"1. open":"44.4200","2. high":"44.6100","3. low":"43.3500","4. close":"43.8300","5. volume":"32353591"},"2017-03-31":{"1. open":"44.5300","2. high":"44.8350","3. low":"44.2600","4. close":"44.4100","5. volume":"28037088"},"2017-03-24":{"1. open":"45.1900","2. high":"45.3800","3. low":"44.5900","4. close":"44.7300","5. volume":"22993929"},"2017-03-17":{"1. open":"45.6500","2. high":"45.7800","3. low":"44.6150","4. close":"45.1900","5. volume":"40371095"},"2017-03-10":{"1. open":"44.9900","2. high":"45.8400","3. low":"44.6700","4. close":"45.7200","5. volume":"30673406"},"2017-03-03":{"1. open":"45.5100","2. high":"45.8350","3. low":"44.8300","4. close":"45.2500","5. volume":"47195664"},"2017-02-24":{"1. open":"44.6500","2. high":"45.6800","3. low":"44.5400","4. close":"45.6800","5. volume":"35990473"},"2017-02-17":{"1. open":"43.0000","2. high":"44.7000","3. low":"42.8600","4. close":"44.6900","5. volume":"40685120"},"2017-02-10":{"1. open":"42.5700","2. high":"42.9800","3. low":"42.2300","4. close":"42.7400","5. volume":"32994606"},"2017-02-03":{"1. open":"40.8600","2. high":"43.1300","3. low":"40.6000","4. close":"42.7800","5. volume":"61557442"},"2017-01-27":{"1. open":"40.3200","2. high":"41.3100","3. low":"39.2500","4. close":"41.0000","5. volume":"48459436"},"2017-01-20":{"1. open":"40.6700","2. high":"41.1000","3. low":"40.2400","4. close":"40.4600","5. volume":"28536053"},"2017-01-13":{"1. open":"40.7900","2. high":"41.6200","3. low":"40.3100","4. close":"40.9300","5. volume":"49115374"},"2017-01-06":{"1. open":"38.6334","2. high":"40.9900","3. low":"38.3400","4. close":"40.7800","5. volume":"59030916"},"2016-12-30":{"1. open":"38.4800","2. high":"38.9400","3. low":"38.0750","4. close":"38.4100","5. volume":"30958650"},"2016-12-23":{"1. open":"38.2300","2. high":"38.6500","3. low":"37.9000","4. close":"38.4200","5. volume":"38943441"},"2016-12-16":{"1. open":"39.2000","2. high":"39.7900","3. low":"37.9800","4. close":"38.1000","5. volume":"50876283"},"2016-12-09":{"1. open":"38.1100","2. high":"39.3400","3. low":"37.4200","4. close":"39.2000","5. volume":"41388786"},"2016-12-02":{"1. open":"39.2200","2. high":"39.2200","3. low":"37.3800","4. close":"37.9000","5. volume":"44242354"},"2016-11-25":{"1. open":"39.8500","2. high":"40.1300","3. low":"37.8100","4. close":"39.1600","5. volume":"37160699"},"2016-11-18":{"1. open":"40.1100","2. high":"40.5000","3. low":"39.0500","4. close":"39.8400","5. volume":"42949856"},"2016-11-11":{"1. open":"39.6400","2. high":"41.5300","3. low":"39.1700","4. close":"40.1400","5. volume":"41661606"},"2016-11-04":{"1. open":"39.4300","2. high":"39.5400","3. low":"38.3000","4. close":"39.0900","5. volume":"38845135"},"2016-10-28":{"1. open":"40.7900","2. high":"40.9200","3. low":"39.5100","4. close":"39.5400","5. volume":"39896890"},"2016-10-21":{"1. open":"40.7300","2. high":"41.4100","3. low":"39.9400","4. close":"40.5000","5. volume":"52159966"},"2016-10-14":{"1. open":"43.1500","2. high":"43.7800","3. low":"40.4100","4. close":"40.7900","5. volume":"53948526"},"2016-10-07":{"1. open":"42.0600","2. high":"43.1900","3. low":"41.8600","4. close":"42.9700","5. volume":"33536827"},"2016-09-30":{"1. open":"42.0100","2. high":"42.5300","3. low":"41.2600","4. close":"42.2900","5. volume":"31808108"},"2016-09-23":{"1. open":"42.0360","2. high":"42.4900","3. low":"41.2600","4. close":"42.1900","5. volume":"30622909"},"2016-09-16":{"1. open":"40.8500","2. high":"42.0300","3. low":"40.4800","4. close":"41.8700","5. volume":"44286192"},"2016-09-09":{"1. open":"42.1000","2. high":"42.3200","3. low":"41.0000","4. close":"41.0100","5. volume":"36814936"},"2016-09-02":{"1. open":"43.0000","2. high":"43.5700","3. low":"41.7400","4. close":"42.0900","5. volume":"51792671"},"2016-08-26":{"1. open":"44.0800","2. high":"44.4200","3. low":"42.0900","4. close":"42.9800","5. volume":"78737472"},"2016-08-19":{"1. open":"45.2000","2. high":"45.2300","3. low":"43.6450","4. close":"44.2400","5. volume":"38729209"},"2016-08-12":{"1. open":"45.0600","2. high":"45.4100","3. low":"44.5500","4. close":"45.0400","5. volume":"32612764"},"2016-08-05":{"1. open":"44.7500","2. high":"45.7900","3. low":"44.7200","4. close":"45.2600","5. volume":"43427110"},"2016-07-29":{"1. open":"43.0800","2. high":"45.1600","3. low":"43.0650","4. close":"44.7500","5. volume":"67086215"},"2016-07-22":{"1. open":"42.0500","2. high":"43.4193","3. low":"41.6000","4. close":"43.1700","5. volume":"51357257"},"2016-07-15":{"1. open":"42.0300","2. high":"42.6500","3. low":"41.8500","4. close":"42.1000","5. volume":"41946273"},"2016-07-08":{"1. open":"39.3100","2. high":"42.2700","3. low":"39.2100","4. close":"41.8900","5. volume":"51901773"},"2016-07-01":{"1. open":"37.5100","2. high":"39.7100","3. low":"36.7600","4. close":"39.5400","5. volume":"46890741"},"2016-06-24":{"1. open":"37.8800","2. high":"39.6300","3. low":"37.7000","4. close":"37.9100","5. volume":"54695237"},"2016-06-17":{"1. open":"38.3200","2. high":"38.5600","3. low":"36.8800","4. close":"37.3900","5. volume":"48605395"},"2016-06-10":{"1. open":"39.2500","2. high":"39.3799","3. low":"38.2300","4. close":"38.4000","5. volume":"46512654"},"2016-06-03":{"1. open":"39.3300","2. high":"39.6700","3. low":"39.0200","4. close":"39.1800","5. volume":"51041484"},"2016-05-27":{"1. open":"37.7200","2. high":"39.4000","3. low":"37.2700","4. close":"39.3000","5. volume":"56730707"},"2016-05-20":{"1. open":"37.6000","2. high":"38.4100","3. low":"36.8900","4. close":"37.6000","5. volume":"45205922"},"2016-05-13":{"1. open":"38.1100","2. high":"38.5800","3. low":"37.4700","4. close":"37.6000","5. volume":"52712176"},"2016-05-06":{"1. open":"38.8500","2. high":"39.1200","3. low":"37.7100","4. close":"37.9700","5. volume":"81438164"},"2016-04-29":{"1. open":"44.0100","2. high":"44.2500","3. low":"38.5800","4. close":"38.9000","5. volume":"97711397"},"2016-04-22":{"1. open":"43.1800","2. high":"44.5800","3. low":"43.1800","4. close":"44.0800","5. volume":"31612237"},"2016-04-15":{"1. open":"42.4700","2. high":"43.6600","3. low":"42.3600","4. close":"43.4100","5. volume":"19928627"},"2016-04-08":{"1. open":"42.3400","2. high":"43.1600","3. low":"41.8900","4. close":"42.3700","5. volume":"27071668"},"2016-04-01":{"1. open":"40.7700","2. high":"42.2600","3. low":"40.6100","4. close":"42.1900","5. volume":"20029508"},"2016-03-24":{"1. open":"40.5800","2. high":"41.3400","3. low":"40.3400","4. close":"40.7500","5. volume":"19056083"},"2016-03-18":{"1. open":"40.3100","2. high":"40.9400","3. low":"39.5350","4. close":"40.7900","5. volume":"32644417"},"2016-03-11":{"1. open":"39.0000","2. high":"40.4500","3. low":"38.8200","4. close":"40.3700","5. volume":"40334827"},"2016-03-04":{"1. open":"39.3400","2. high":"39.8364","3. low":"38.0900","4. close":"39.1800","5. volume":"46588641"},"2016-02-26":{"1. open":"39.0000","2. high":"39.8800","3. low":"37.9700","4. close":"39.5200","5. volume":"34495135"},"2016-02-19":{"1. open":"37.1300","2. high":"38.8900","3. low":"37.1200","4. close":"38.5300","5. volume":"25672433"},"2016-02-12":{"1. open":"37.1900","2. high":"38.1800","3. low":"36.0200","4. close":"37.1300","5. volume":"38551818"},"2016-02-05":{"1. open":"36.1700","2. high":"38.7300","3. low":"36.1700","4. close":"37.4100","5. volume":"41652451"},"2016-01-29":{"1. open":"40.0300","2. high":"41.4900","3. low":"36.0000","4. close":"37.8500","5. volume":"60864247"},"2016-01-22":{"1. open":"41.1000","2. high":"41.3200","3. low":"39.0800","4. close":"40.0300","5. volume":"38221016"},"2016-01-15":{"1. open":"40.7700","2. high":"41.6900","3. low":"39.7500","4. close":"40.5400","5. volume":"38715054"},"2016-01-08":{"1. open":"43.9400","2. high":"44.0500","3. low":"40.5400","4. close":"40.6700","5. volume":"41007718"},"2015-12-31":{"1. open":"44.9200","2. high":"46.0300","3. low":"44.8200","4. close":"44.9100","5. volume":"15918409"},"2015-12-24":{"1. open":"44.0500","2. high":"45.3000","3. low":"43.5650","4. close":"45.1000","5. volume":"15636475"},"2015-12-18":{"1. open":"44.4500","2. high":"46.2200","3. low":"43.7000","4. close":"43.7000","5. volume":"38375690"},"2015-12-11":{"1. open":"45.5700","2. high":"45.7500","3. low":"44.2900","4. close":"44.3600","5. volume":"26492870"},"2015-12-04":{"1. open":"45.4400","2. high":"45.7200","3. low":"44.0100","4. close":"45.3000","5. volume":"31552519"},"2015-11-27":{"1. open":"46.0300","2. high":"46.1000","3. low":"45.0300","4. close":"45.4200","5. volume":"13991173"},"2015-11-20":{"1. open":"43.9000","2. high":"46.3800","3. low":"43.8000","4. close":"46.0100","5. volume":"31819251"},"2015-11-13":{"1. open":"45.4700","2. high":"45.8700","3. low":"43.4500","4. close":"43.9600","5. volume":"28581902"},"2015-11-06":{"1. open":"44.8800","2. high":"45.7200","3. low":"44.6000","4. close":"45.6300","5. volume":"27611699"},"2015-10-30":{"1. open":"43.5800","2. high":"45.3400","3. low":"43.4200","4. close":"44.8000","5. volume":"32948426"},"2015-10-23":{"1. open":"42.1100","2. high":"43.8600","3. low":"41.5700","4. close":"43.6000","5. volume":"42333182"},"2015-10-16":{"1. open":"41.6300","2. high":"42.2700","3. low":"40.6600","4. close":"42.2200","5. volume":"31997157"},"2015-10-09":{"1. open":"41.6200","2. high":"41.9800","3. low":"39.2800","4. close":"41.8900","5. volume":"50359064"},"2015-10-02":{"1. open":"40.7400","2. high":"41.4100","3. low":"39.0000","4. close":"41.3800","5. volume":"56270716"},"2015-09-25":{"1. open":"43.6500","2. high":"43.8200","3. low":"40.4185","4. close":"40.8600","5. volume":"35961580"},"2015-09-18":{"1. open":"43.6000","2. high":"45.1500","3. low":"42.9000","4. close":"43.3300","5. volume":"30936690"},"2015-09-11":{"1. open":"43.6600","2. high":"44.5100","3. low":"42.6800","4. close":"43.4100","5. volume":"23355613"},"2015-09-04":{"1. open":"45.8100","2. high":"46.6300","3. low":"42.7200","4. close":"43.0700","5. volume":"37471856"},"2015-08-28":{"1. open":"44.5100","2. high":"46.1100","3. low":"42.3032","4. close":"46.0200","5. volume":"69131242"},"2015-08-21":{"1. open":"50.0100","2. high":"50.5950","3. low":"47.1300","4. close":"47.1300","5. volume":"27782986"},"2015-08-14":{"1. open":"50.4200","2. high":"51.1700","3. low":"49.2200","4. close":"50.2300","5. volume":"21119925"},"2015-08-07":{"1. open":"50.8900","2. high":"51.0068","3. low":"49.3650","4. close":"50.1100","5. volume":"22559373"},"2015-07-31":{"1. open":"50.6400","2. high":"51.2400","3. low":"50.2100","4. close":"50.6900","5. volume":"23988264"},"2015-07-24":{"1. open":"50.0100","2. high":"51.7400","3. low":"49.2550","4. close":"51.0500","5. volume":"34288288"},"2015-07-17":{"1. open":"50.0000","2. high":"50.3800","3. low":"49.1400","4. close":"49.9000","5. volume":"25522550"},"2015-07-10":{"1. open":"49.0200","2. high":"50.2400","3. low":"48.9200","4. close":"49.9300","5. volume":"28325780"},"2015-07-02":{"1. open":"49.5400","2. high":"49.8500","3. low":"48.9100","4. close":"49.4100","5. volume":"15997472"},"2015-06-26":{"1. open":"49.9600","2. high":"50.4700","3. low":"49.2700","4. close":"49.9700","5. volume":"22824974"},"2015-06-19":{"1. open":"48.3000","2. high":"50.1600","3. low":"47.7200","4. close":"49.8900","5. volume":"29789613"},"2015-06-12":{"1. open":"48.3700","2. high":"49.2500","3. low":"48.0100","4. close":"48.6700","5. volume":"24163213"},"2015-06-05":{"1. open":"48.7700","2. high":"49.2000","3. low":"48.0100","4. close":"48.4500","5. volume":"21732229"},"2015-05-29":{"1. open":"49.1000","2. high":"49.3800","3. low":"48.3900","4. close":"48.6000","5. volume":"22875923"},"2015-05-22":{"1. open":"48.7800","2. high":"49.4300","3. low":"48.6700","4. close":"49.0300","5. volume":"19689901"},"2015-05-15":{"1. open":"47.2800","2. high":"48.8400","3. low":"46.8800","4. close":"48.7100","5. volume":"23128075"},"2015-05-08":{"1. open":"46.7800","2. high":"47.7000","3. low":"46.2300","4. close":"47.5700","5. volume":"20122589"},"2015-05-01":{"1. open":"48.2800","2. high":"48.4000","3. low":"46.2600","4. close":"46.6900","5. volume":"21983203"},"2015-04-24":{"1. open":"46.4200","2. high":"48.6200","3. low":"46.3700","4. close":"48.3200","5. volume":"29478497"},"2015-04-17":{"1. open":"46.7800","2. high":"47.1100","3. low":"45.8100","4. close":"46.2500","5. volume":"18435884"},"2015-04-10":{"1. open":"45.8000","2. high":"47.1950","3. low":"45.6500","4. close":"47.1500","5. volume":"21353696"},"2015-04-02":{"1. open":"47.0000","2. high":"47.2100","3. low":"45.5450","4. close":"46.1300","5. volume":"18668313"},"2015-03-27":{"1. open":"47.4700","2. high":"47.7300","3. low":"46.1000","4. close":"46.7800","5. volume":"21399696"},"2015-03-20":{"1. open":"47.1200","2. high":"47.8500","3. low":"46.3900","4. close":"47.4700","5. volume":"28605942"},"2015-03-13":{"1. open":"46.5000","2. high":"47.3100","3. low":"46.1600","4. close":"46.8800","5. volume":"24555967"},"2015-03-06":{"1. open":"47.3400","2. high":"47.6300","3. low":"46.3500","4. close":"46.5000","5. volume":"30701191"},"2015-02-27":{"1. open":"47.3300","2. high":"47.8800","3. low":"47.0235","4. close":"47.3700","5. volume":"26093512"},"2015-02-20":{"1. open":"46.0500","2. high":"47.5700","3. low":"46.0000","4. close":"47.4800","5. volume":"23520716"},"2015-02-13":{"1. open":"45.2100","2. high":"46.1700","3. low":"44.3000","4. close":"46.0900","5. volume":"27308179"},"2015-02-06":{"1. open":"44.9300","2. high":"46.2100","3. low":"44.2800","4. close":"45.5000","5. volume":"35900665"},"2015-01-30":{"1. open":"43.7400","2. high":"45.6300","3. low":"43.3550","4. close":"44.7600","5. volume":"36533023"},"2015-01-23":{"1. open":"44.6700","2. high":"44.7500","3. low":"43.6200","4. close":"43.8600","5. volume":"22484951"},"2015-01-16":{"1. open":"45.3800","2. high":"45.7600","3. low":"43.7200","4. close":"44.4900","5. volume":"27274127"},"2015-01-09":{"1. open":"44.8000","2. high":"45.8700","3. low":"43.9300","4. close":"45.2000","5. volume":"26552944"},"2015-01-02":{"1. open":"45.5900","2. high":"46.0500","3. low":"44.6350","4. close":"44.9000","5. volume":"12173784"},"2014-12-26":{"1. open":"45.9300","2. high":"46.5000","3. low":"45.4700","4. close":"45.8500","5. volume":"13501013"},"2014-12-19":{"1. open":"44.1600","2. high":"46.4500","3. low":"43.1000","4. close":"46.0500","5. volume":"34265022"},"2014-12-12":{"1. open":"45.3500","2. high":"46.1000","3. low":"43.6700","4. close":"43.6900","5. volume":"22409639"},"2014-12-05":{"1. open":"44.2700","2. high":"45.9500","3. low":"44.1950","4. close":"45.3000","5. volume":"31840146"},"2014-11-28":{"1. open":"43.5900","2. high":"44.7600","3. low":"43.5900","4. close":"44.5100","5. volume":"13767316"},"2014-11-21":{"1. open":"43.7100","2. high":"44.1900","3. low":"43.0500","4. close":"43.8100","5. volume":"25722851"},"2014-11-14":{"1. open":"43.3500","2. high":"44.7700","3. low":"43.1700","4. close":"43.8100","5. volume":"19692192"},"2014-11-07":{"1. open":"43.5600","2. high":"43.9900","3. low":"43.0200","4. close":"43.3700","5. volume":"20547690"},"2014-10-31":{"1. open":"42.4300","2. high":"44.0600","3. low":"41.9500","4. close":"43.5900","5. volume":"24256898"},"2014-10-24":{"1. open":"40.8500","2. high":"43.0300","3. low":"40.6700","4. close":"42.4600","5. volume":"26629760"},"2014-10-17":{"1. open":"41.4700","2. high":"41.9400","3. low":"39.2800","4. close":"40.8600","5. volume":"36643119"},"2014-10-10":{"1. open":"42.0400","2. high":"42.5400","3. low":"41.3500","4. close":"41.5400","5. volume":"28452672"},"2014-10-03":{"1. open":"41.6700","2. high":"42.0600","3. low":"40.9100","4. close":"41.7900","5. volume":"23467712"},"2014-09-26":{"1. open":"43.5900","2. high":"43.6700","3. low":"41.9100","4. close":"42.0100","5. volume":"26892341"},"2014-09-19":{"1. open":"42.6100","2. high":"44.2000","3. low":"42.4400","4. close":"43.5900","5. volume":"22207900"},"2014-09-12":{"1. open":"42.8800","2. high":"43.0800","3. low":"42.3800","4. close":"42.5500","5. volume":"21707200"},"2014-09-05":{"1. open":"42.1700","2. high":"43.0800","3. low":"41.9400","4. close":"42.9500","5. volume":"16051900"},"2014-08-29":{"1. open":"42.4100","2. high":"42.8800","3. low":"42.0600","4. close":"42.2400","5. volume":"15367900"},"2014-08-22":{"1. open":"42.6200","2. high":"42.6200","3. low":"41.9601","4. close":"42.1100","5. volume":"16674900"},"2014-08-15":{"1. open":"41.9200","2. high":"42.6500","3. low":"41.4200","4. close":"42.0600","5. volume":"19120900"},"2014-08-08":{"1. open":"42.1200","2. high":"42.4900","3. low":"41.1510","4. close":"41.6900","5. volume":"17384805"},"2014-08-01":{"1. open":"42.9500","2. high":"43.0900","3. low":"41.8300","4. close":"42.0300","5. volume":"17281741"},"2014-07-25":{"1. open":"42.5000","2. high":"43.2700","3. low":"42.2600","4. close":"43.0400","5. volume":"29528800"},"2014-07-18":{"1. open":"41.9500","2. high":"42.9800","3. low":"41.0000","4. close":"42.7300","5. volume":"27946396"},"2014-07-11":{"1. open":"41.6800","2. high":"41.8200","3. low":"40.9200","4. close":"41.3000","5. volume":"22312400"},"2014-07-03":{"1. open":"40.6700","2. high":"41.9600","3. low":"40.6000","4. close":"41.8900","5. volume":"20949400"},"2014-06-27":{"1. open":"40.9700","2. high":"41.1200","3. low":"40.2100","4. close":"40.5400","5. volume":"27839500"},"2014-06-20":{"1. open":"39.8300","2. high":"41.3000","3. low":"39.5900","4. close":"40.8500","5. volume":"34323700"},"2014-06-13":{"1. open":"39.9400","2. high":"40.5600","3. low":"39.6600","4. close":"39.7900","5. volume":"24919600"},"2014-06-06":{"1. open":"40.0200","2. high":"40.2500","3. low":"39.6000","4. close":"40.0500","5. volume":"18164000"},"2014-05-30":{"1. open":"39.5200","2. high":"40.1300","3. low":"39.3600","4. close":"40.0100","5. volume":"17516800"},"2014-05-23":{"1. open":"39.6200","2. high":"39.9400","3. low":"39.2400","4. close":"39.6000","5. volume":"23578600"},"2014-05-16":{"1. open":"39.0700","2. high":"40.1200","3. low":"38.8400","4. close":"39.0600","5. volume":"37307600"},"2014-05-09":{"1. open":"38.2700","2. high":"39.1300","3. low":"38.2500","4. close":"38.9900","5. volume":"25732000"},"2014-05-02":{"1. open":"38.2800","2. high":"38.9400","3. low":"37.7800","4. close":"38.5600","5. volume":"22615800"},"2014-04-25":{"1. open":"38.8700","2. high":"38.9900","3. low":"37.8900","4. close":"38.0300","5. volume":"25351100"},"2014-04-17":{"1. open":"37.1800","2. high":"39.0100","3. low":"37.1100","4. close":"38.9300","5. volume":"44230400"},"2014-04-11":{"1. open":"38.5600","2. high":"38.8400","3. low":"36.6500","4. close":"37.0200","5. volume":"49426100"},"2014-04-04":{"1. open":"38.4800","2. high":"39.5000","3. low":"38.0700","4. close":"38.6300","5. volume":"33407100"},"2014-03-28":{"1. open":"38.6600","2. high":"39.1400","3. low":"38.0800","4. close":"38.3100","5. volume":"41117900"},"2014-03-21":{"1. open":"39.0500","2. high":"40.2200","3. low":"38.3600","4. close":"38.3900","5. volume":"53041900"},"2014-03-14":{"1. open":"39.5000","2. high":"40.1600","3. low":"38.9100","4. close":"38.9700","5. volume":"32327400"},"2014-03-07":{"1. open":"39.5000","2. high":"40.4900","3. low":"38.8330","4. close":"39.5700","5. volume":"43824400"},"2014-02-28":{"1. open":"38.8650","2. high":"39.9800","3. low":"38.8200","4. close":"39.7800","5. volume":"42694600"},"2014-02-21":{"1. open":"38.9600","2. high":"39.4500","3. low":"38.5300","4. close":"38.8200","5. volume":"30834300"},"2014-02-14":{"1. open":"37.1700","2. high":"38.9800","3. low":"36.9550","4. close":"38.8100","5. volume":"43150400"},"2014-02-07":{"1. open":"36.5800","2. high":"37.2100","3. low":"35.8000","4. close":"37.1800","5. volume":"50076900"},"2014-01-31":{"1. open":"36.6800","2. high":"36.8900","3. low":"35.6500","4. close":"36.6600","5. volume":"47566700"},"2014-01-24":{"1. open":"39.5200","2. high":"39.5700","3. low":"36.5700","4. close":"36.5800","5. volume":"40574300"},"2014-01-17":{"1. open":"39.1100","2. high":"39.8600","3. low":"39.0600","4. close":"39.4000","5. volume":"34917800"},"2014-01-10":{"1. open":"39.1900","2. high":"39.6900","3. low":"38.7235","4. close":"39.5700","5. volume":"35957700"},"2014-01-03":{"1. open":"38.4800","2. high":"38.7800","3. low":"38.0000","4. close":"38.6400","5. volume":"16944900"},"2013-12-27":{"1. open":"37.9700","2. high":"38.5463","3. low":"37.9500","4. close":"38.3700","5. volume":"14882200"},"2013-12-20":{"1. open":"36.4500","2. high":"38.2400","3. low":"36.3100","4. close":"37.8400","5. volume":"41062700"},"2013-12-13":{"1. open":"37.5700","2. high":"37.5800","3. low":"36.2700","4. close":"36.4000","5. volume":"27622300"},"2013-12-06":{"1. open":"38.2400","2. high":"38.3100","3. low":"36.8900","4. close":"37.5300","5. volume":"27877400"},"2013-11-29":{"1. open":"38.3800","2. high":"38.7400","3. low":"37.9000","4. close":"38.1900","5. volume":"17446400"},"2013-11-22":{"1. open":"38.0400","2. high":"38.8100","3. low":"37.8700","4. close":"38.2500","5. volume":"30413000"},"2013-11-15":{"1. open":"38.1700","2. high":"38.4600","3. low":"37.1700","4. close":"38.0500","5. volume":"29901400"},"2013-11-08":{"1. open":"36.9800","2. high":"38.1400","3. low":"36.6700","4. close":"38.1200","5. volume":"39991600"},"2013-11-01":{"1. open":"37.3300","2. high":"37.4600","3. low":"36.5500","4. close":"36.9600","5. volume":"28762100"},"2013-10-25":{"1. open":"37.1700","2. high":"37.6200","3. low":"36.7200","4. close":"37.2500","5. volume":"37583000"},"2013-10-18":{"1. open":"33.5100","2. high":"37.2900","3. low":"33.3800","4. close":"37.2900","5. volume":"63930200"},"2013-10-11":{"1. open":"33.2200","2. high":"33.8950","3. low":"32.7500","4. close":"33.7600","5. volume":"34637800"},"2013-10-04":{"1. open":"33.0500","2. high":"33.9200","3. low":"33.0200","4. close":"33.5600","5. volume":"40688300"},"2013-09-27":{"1. open":"35.2500","2. high":"35.2600","3. low":"33.0500","4. close":"33.1400","5. volume":"61605400"},"2013-09-20":{"1. open":"35.1000","2. high":"35.7200","3. low":"34.8200","4. close":"35.2900","5. volume":"31636000"},"2013-09-13":{"1. open":"33.5000","2. high":"34.9500","3. low":"33.4600","4. close":"34.8700","5. volume":"34489800"},"2013-09-06":{"1. open":"33.6800","2. high":"33.7839","3. low":"32.7000","4. close":"33.5000","5. volume":"38887900"},"2013-08-30":{"1. open":"34.8300","2. high":"34.9000","3. low":"33.2300","4. close":"33.3300","5. volume":"28981300"},"2013-08-23":{"1. open":"34.8500","2. high":"34.9600","3. low":"34.4300","4. close":"34.8400","5. volume":"23726500"},"2013-08-16":{"1. open":"35.7900","2. high":"36.0300","3. low":"34.5500","4. close":"34.9700","5. volume":"31591300"},"2013-08-09":{"1. open":"36.6400","2. high":"36.7800","3. low":"35.6600","4. close":"35.8900","5. volume":"33076700"},"2013-08-02":{"1. open":"36.6200","2. high":"37.1600","3. low":"36.5000","4. close":"36.7500","5. volume":"35170900"},"2013-07-26":{"1. open":"35.7600","2. high":"36.8500","3. low":"35.5800","4. close":"36.7800","5. volume":"32827300"},"2013-07-19":{"1. open":"35.2300","2. high":"36.4800","3. low":"35.1500","4. close":"35.8700","5. volume":"36992500"},"2013-07-12":{"1. open":"34.9500","2. high":"35.5700","3. low":"34.7100","4. close":"35.3200","5. volume":"42182800"},"2013-07-05":{"1. open":"34.9700","2. high":"35.4700","3. low":"33.7200","4. close":"34.9200","5. volume":"25185500"},"2013-06-28":{"1. open":"35.2900","2. high":"35.8200","3. low":"34.6900","4. close":"34.8800","5. volume":"46398400"},"2013-06-21":{"1. open":"37.0700","2. high":"37.6400","3. low":"35.0700","4. close":"35.5800","5. volume":"37098400"},"2013-06-14":{"1. open":"37.4700","2. high":"37.5800","3. low":"36.1210","4. close":"36.8100","5. volume":"26719400"},"2013-06-07":{"1. open":"36.6300","2. high":"37.5500","3. low":"36.0300","4. close":"37.5100","5. volume":"36615100"},"2013-05-31":{"1. open":"37.9800","2. high":"38.6400","3. low":"36.6200","4. close":"36.6700","5. volume":"36468900"},"2013-05-24":{"1. open":"36.9500","2. high":"38.7700","3. low":"36.8700","4. close":"37.7600","5. volume":"38351700"},"2013-05-17":{"1. open":"36.0500","2. high":"37.7000","3. low":"36.0400","4. close":"36.5900","5. volume":"33566600"},"2013-05-10":{"1. open":"36.7500","2. high":"36.7800","3. low":"35.5800","4. close":"36.1700","5. volume":"35248700"},"2013-05-03":{"1. open":"36.4900","2. high":"37.2500","3. low":"36.4000","4. close":"36.8000","5. volume":"24562100"},"2013-04-26":{"1. open":"37.0000","2. high":"37.3500","3. low":"36.2500","4. close":"36.4600","5. volume":"27527700"},"2013-04-19":{"1. open":"36.8400","2. high":"37.4800","3. low":"35.9000","4. close":"37.2000","5. volume":"44872200"},"2013-04-12":{"1. open":"36.3100","2. high":"37.5500","3. low":"35.9300","4. close":"37.1300","5. volume":"29903500"},"2013-04-05":{"1. open":"35.1800","2. high":"36.8900","3. low":"34.9500","4. close":"36.3100","5. volume":"43088200"},"2013-03-28":{"1. open":"33.7600","2. high":"35.3400","3. low":"33.5700","4. close":"35.3200","5. volume":"32982900"},"2013-03-22":{"1. open":"33.9400","2. high":"34.0100","3. low":"33.2700","4. close":"33.6900","5. volume":"34049900"},"2013-03-15":{"1. open":"34.5900","2. high":"35.1400","3. low":"34.1300","4. close":"34.1400","5. volume":"34830900"},"2013-03-08":{"1. open":"33.5100","2. high":"34.7000","3. low":"33.4000","4. close":"34.6800","5. volume":"31497700"},"2013-03-01":{"1. open":"34.6000","2. high":"34.8400","3. low":"33.5500","4. close":"33.6000","5. volume":"57902900"},"2013-02-22":{"1. open":"35.1800","2. high":"35.2900","3. low":"34.0100","4. close":"34.5500","5. volume":"31874600"},"2013-02-15":{"1. open":"34.4200","2. high":"35.1000","3. low":"34.2100","4. close":"35.0800","5. volume":"40261300"},"2013-02-08":{"1. open":"33.3700","2. high":"34.6600","3. low":"33.3700","4. close":"34.4100","5. volume":"64278500"},"2013-02-01":{"1. open":"32.8100","2. high":"34.1200","3. low":"32.7500","4. close":"33.8700","5. volume":"90931300"},"2013-01-25":{"1. open":"32.7800","2. high":"33.1450","3. low":"32.5500","4. close":"32.7900","5. volume":"66359700"},"2013-01-18":{"1. open":"33.4800","2. high":"33.5700","3. low":"32.6001","4. close":"32.7400","5. volume":"72418900"},"2013-01-11":{"1. open":"33.0200","2. high":"33.9400","3. low":"32.8500","4. close":"33.3700","5. volume":"57698400"},"2013-01-04":{"1. open":"64.1300","2. high":"65.5300","3. low":"31.6400","4. close":"33.0700","5. volume":"77252800"},"2012-12-28":{"1. open":"66.0500","2. high":"66.0500","3. low":"64.3650","4. close":"64.4200","5. volume":"35887300"},"2012-12-21":{"1. open":"65.5800","2. high":"66.1000","3. low":"64.7200","4. close":"66.0500","5. volume":"98667300"},"2012-12-14":{"1. open":"65.0700","2. high":"66.8500","3. low":"64.7300","4. close":"65.3500","5. volume":"78512200"},"2012-12-07":{"1. open":"65.0900","2. high":"65.6200","3. low":"64.0600","4. close":"65.5300","5. volume":"65206000"},"2012-11-30":{"1. open":"64.0800","2. high":"65.4000","3. low":"63.5200","4. close":"65.0000","5. volume":"54834800"},"2012-11-23":{"1. open":"63.2500","2. high":"64.4900","3. low":"62.6200","4. close":"64.4700","5. volume":"50456700"},"2012-11-16":{"1. open":"64.9700","2. high":"65.3700","3. low":"62.7700","4. close":"62.8800","5. volume":"70996800"},"2012-11-09":{"1. open":"64.7800","2. high":"65.3000","3. low":"63.4100","4. close":"64.8400","5. volume":"81842700"},"2012-11-02":{"1. open":"65.8100","2. high":"66.2800","3. low":"64.9000","4. close":"64.9600","5. volume":"42747100"},"2012-10-26":{"1. open":"65.6600","2. high":"66.3000","3. low":"64.7301","4. close":"65.4800","5. volume":"94997000"},"2012-10-19":{"1. open":"69.5000","2. high":"72.4700","3. low":"64.5200","4. close":"66.1500","5. volume":"186370900"},"2012-10-12":{"1. open":"71.4700","2. high":"71.5600","3. low":"69.1900","4. close":"69.2800","5. volume":"52724000"},"2012-10-05":{"1. open":"68.4900","2. high":"71.9100","3. low":"68.3000","4. close":"71.6100","5. volume":"72937100"},"2012-09-28":{"1. open":"69.6000","2. high":"70.4100","3. low":"68.4115","4. close":"68.5600","5. volume":"68028300"},"2012-09-21":{"1. open":"68.1600","2. high":"69.9900","3. low":"68.1500","4. close":"69.6200","5. volume":"67240000"},"2012-09-14":{"1. open":"66.8000","2. high":"69.2700","3. low":"66.6600","4. close":"68.2700","5. volume":"64575400"},"2012-09-07":{"1. open":"65.2600","2. high":"67.2400","3. low":"64.5700","4. close":"66.6900","5. volume":"38590200"},"2012-08-31":{"1. open":"65.7900","2. high":"65.9980","3. low":"65.0600","4. close":"65.5400","5. volume":"32511100"},"2012-08-24":{"1. open":"65.9800","2. high":"66.1000","3. low":"65.0720","4. close":"65.8400","5. volume":"37597300"},"2012-08-17":{"1. open":"65.8600","2. high":"66.6800","3. low":"65.6800","4. close":"65.9200","5. volume":"32628200"},"2012-08-10":{"1. open":"66.7000","2. high":"66.8300","3. low":"65.5600","4. close":"66.1100","5. volume":"38733300"},"2012-08-03":{"1. open":"66.1600","2. high":"67.4500","3. low":"65.6500","4. close":"66.5900","5. volume":"62185700"},"2012-07-27":{"1. open":"63.9200","2. high":"66.7950","3. low":"63.5100","4. close":"66.3900","5. volume":"65206900"},"2012-07-20":{"1. open":"65.2500","2. high":"66.8000","3. low":"64.8900","4. close":"65.0600","5. volume":"62102400"},"2012-07-13":{"1. open":"64.8400","2. high":"66.3000","3. low":"64.7100","4. close":"65.4500","5. volume":"112634600"},"2012-07-06":{"1. open":"64.2200","2. high":"65.0000","3. low":"64.0000","4. close":"64.7500","5. volume":"104310200"},"2012-06-29":{"1. open":"61.9200","2. high":"64.4700","3. low":"61.6200","4. close":"64.4700","5. volume":"61538100"},"2012-06-22":{"1. open":"62.4800","2. high":"63.1200","3. low":"62.1100","4. close":"62.3200","5. volume":"54902900"},"2012-06-15":{"1. open":"62.0700","2. high":"62.7900","3. low":"61.2000","4. close":"62.5000","5. volume":"56697100"},"2012-06-08":{"1. open":"60.5400","2. high":"61.9000","3. low":"59.4600","4. close":"61.8800","5. volume":"75259100"},"2012-06-01":{"1. open":"62.4500","2. high":"62.5500","3. low":"60.3600","4. close":"60.5200","5. volume":"51517500"},"2012-05-25":{"1. open":"61.6000","2. high":"62.8500","3. low":"61.0400","4. close":"62.2500","5. volume":"65353000"},"2012-05-18":{"1. open":"61.4600","2. high":"62.8000","3. low":"61.4300","4. close":"61.5700","5. volume":"65196000"},"2012-05-11":{"1. open":"61.9000","2. high":"62.7400","3. low":"61.1600","4. close":"62.0400","5. volume":"82668600"},"2012-05-04":{"1. open":"61.7400","2. high":"63.2000","3. low":"61.5500","4. close":"62.4100","5. volume":"75432200"},"2012-04-27":{"1. open":"59.5500","2. high":"62.2500","3. low":"59.3500","4. close":"61.9900","5. volume":"77697900"},"2012-04-20":{"1. open":"59.7200","2. high":"61.0600","3. low":"59.0400","4. close":"59.8800","5. volume":"81603400"},"2012-04-13":{"1. open":"60.8100","2. high":"61.3500","3. low":"59.3800","4. close":"59.5900","5. volume":"69020300"},"2012-04-05":{"1. open":"61.1400","2. high":"62.5700","3. low":"60.7500","4. close":"61.3000","5. volume":"72623300"},"2012-03-30":{"1. open":"60.6100","2. high":"61.4900","3. low":"60.5900","4. close":"61.2900","5. volume":"73021200"},"2012-03-23":{"1. open":"59.6800","2. high":"60.5600","3. low":"59.6800","4. close":"60.4000","5. volume":"78077800"},"2012-03-16":{"1. open":"57.8000","2. high":"59.7154","3. low":"57.8000","4. close":"59.4200","5. volume":"88653600"},"2012-03-09":{"1. open":"57.2600","2. high":"57.9900","3. low":"55.9100","4. close":"57.9500","5. volume":"83348900"},"2012-03-02":{"1. open":"56.3800","2. high":"57.5200","3. low":"56.1200","4. close":"57.3900","5. volume":"64024600"},"2012-02-24":{"1. open":"56.3800","2. high":"56.7400","3. low":"55.9700","4. close":"56.7000","5. volume":"51076900"},"2012-02-17":{"1. open":"55.1800","2. high":"56.4800","3. low":"54.7400","4. close":"56.3600","5. volume":"63620000"},"2012-02-10":{"1. open":"54.7400","2. high":"55.8600","3. low":"54.6700","4. close":"55.1100","5. volume":"63383000"},"2012-02-03":{"1. open":"54.6300","2. high":"55.1400","3. low":"53.9600","4. close":"55.0000","5. volume":"110921000"},"2012-01-27":{"1. open":"55.8700","2. high":"55.9850","3. low":"54.6600","4. close":"55.0200","5. volume":"81875900"},"2012-01-20":{"1. open":"55.9100","2. high":"56.2400","3. low":"55.0500","4. close":"55.7600","5. volume":"61351400"},"2012-01-13":{"1. open":"56.0000","2. high":"56.2700","3. low":"54.9400","4. close":"55.4300","5. volume":"66491900"},"2012-01-06":{"1. open":"56.5800","2. high":"56.8400","3. low":"55.8000","4. close":"55.8600","5. volume":"56168900"},"2011-12-30":{"1. open":"55.8200","2. high":"56.4400","3. low":"55.7700","4. close":"56.2300","5. volume":"33505800"},"2011-12-23":{"1. open":"54.8200","2. high":"56.0300","3. low":"54.1600","4. close":"56.0200","5. volume":"80315900"},"2011-12-16":{"1. open":"54.2300","2. high":"54.9600","3. low":"53.8000","4. close":"54.8900","5. volume":"77955900"},"2011-12-09":{"1. open":"54.4500","2. high":"54.8800","3. low":"53.9799","4. close":"54.5700","5. volume":"65078500"},"2011-12-02":{"1. open":"52.6850","2. high":"54.8200","3. low":"52.6500","4. close":"54.1500","5. volume":"72786700"},"2011-11-25":{"1. open":"52.7600","2. high":"53.2900","3. low":"52.0500","4. close":"52.0500","5. volume":"40755800"},"2011-11-18":{"1. open":"54.5200","2. high":"54.7800","3. low":"52.8900","4. close":"53.5200","5. volume":"59049400"},"2011-11-11":{"1. open":"53.1200","2. high":"54.6000","3. low":"52.6500","4. close":"54.5300","5. volume":"61366700"},"2011-11-04":{"1. open":"53.5500","2. high":"54.4100","3. low":"52.6700","4. close":"53.3300","5. volume":"73490800"},"2011-10-28":{"1. open":"53.5700","2. high":"54.4100","3. low":"52.9400","4. close":"54.2200","5. volume":"96806500"},"2011-10-21":{"1. open":"52.4100","2. high":"55.6100","3. low":"51.5300","4. close":"53.8600","5. volume":"171041200"},"2011-10-14":{"1. open":"52.2000","2. high":"52.8800","3. low":"51.8200","4. close":"52.7300","5. volume":"104102500"},"2011-10-07":{"1. open":"50.8900","2. high":"52.0000","3. low":"48.9600","4. close":"51.5300","5. volume":"173869900"},"2011-09-30":{"1. open":"51.1500","2. high":"52.2900","3. low":"50.2100","4. close":"51.1400","5. volume":"82254700"},"2011-09-23":{"1. open":"51.4100","2. high":"53.2800","3. low":"49.9500","4. close":"50.9600","5. volume":"93332900"},"2011-09-16":{"1. open":"49.7600","2. high":"52.1800","3. low":"49.6344","4. close":"52.1700","5. volume":"76524000"},"2011-09-09":{"1. open":"49.7500","2. high":"52.4580","3. low":"49.4100","4. close":"50.4300","5. volume":"66769300"},"2011-09-02":{"1. open":"50.5800","2. high":"52.9100","3. low":"50.4410","4. close":"51.0400","5. volume":"71807100"},"2011-08-26":{"1. open":"49.8800","2. high":"51.2400","3. low":"48.6300","4. close":"50.1500","5. volume":"77706000"},"2011-08-19":{"1. open":"50.0100","2. high":"50.5200","3. low":"48.2200","4. close":"49.0800","5. volume":"80054900"},"2011-08-12":{"1. open":"49.3000","2. high":"50.1300","3. low":"46.2900","4. close":"49.6300","5. volume":"158093800"},"2011-08-05":{"1. open":"51.6200","2. high":"51.6200","3. low":"48.4500","4. close":"50.2300","5. volume":"128802400"},"2011-07-29":{"1. open":"52.7000","2. high":"53.2000","3. low":"51.1600","4. close":"51.3200","5. volume":"68615900"},"2011-07-22":{"1. open":"52.9300","2. high":"53.2400","3. low":"51.9100","4. close":"52.9500","5. volume":"67100000"},"2011-07-15":{"1. open":"52.9400","2. high":"53.5500","3. low":"52.6000","4. close":"53.0400","5. volume":"65701600"},"2011-07-08":{"1. open":"53.1000","2. high":"53.6000","3. low":"52.9300","4. close":"53.3300","5. volume":"38959300"},"2011-07-01":{"1. open":"51.8400","2. high":"53.1000","3. low":"51.6400","4. close":"53.1000","5. volume":"55077300"},"2011-06-24":{"1. open":"51.6900","2. high":"52.4800","3. low":"51.2100","4. close":"51.7500","5. volume":"57541600"},"2011-06-17":{"1. open":"51.2400","2. high":"52.2200","3. low":"51.0400","4. close":"51.6800","5. volume":"79946600"},"2011-06-10":{"1. open":"51.0900","2. high":"52.1100","3. low":"50.8800","4. close":"50.9000","5. volume":"69301500"},"2011-06-03":{"1. open":"51.9200","2. high":"52.4700","3. low":"50.6200","4. close":"51.0800","5. volume":"69550600"},"2011-05-27":{"1. open":"52.9600","2. high":"53.5400","3. low":"51.3700","4. close":"51.5500","5. volume":"92235900"},"2011-05-20":{"1. open":"53.4800","2. high":"54.1900","3. low":"52.9300","4. close":"53.5100","5. volume":"72310900"},"2011-05-13":{"1. open":"52.5100","2. high":"54.2400","3. low":"52.2600","4. close":"53.4900","5. volume":"69787300"},"2011-05-06":{"1. open":"52.2200","2. high":"53.0000","3. low":"52.1000","4. close":"52.5200","5. volume":"77334600"},"2011-04-29":{"1. open":"51.5000","2. high":"52.3800","3. low":"50.7000","4. close":"52.0400","5. volume":"70351000"},"2011-04-21":{"1. open":"51.5800","2. high":"52.9600","3. low":"50.0500","4. close":"51.8000","5. volume":"104521300"},"2011-04-15":{"1. open":"50.5000","2. high":"51.9700","3. low":"50.2800","4. close":"51.9000","5. volume":"95352900"},"2011-04-08":{"1. open":"50.0000","2. high":"50.7300","3. low":"49.7500","4. close":"50.4900","5. volume":"77026100"},"2011-04-01":{"1. open":"48.1300","2. high":"49.4500","3. low":"47.9000","4. close":"49.3700","5. volume":"78163200"},"2011-03-25":{"1. open":"48.1300","2. high":"48.2300","3. low":"47.2800","4. close":"48.0300","5. volume":"70701700"},"2011-03-18":{"1. open":"48.3100","2. high":"48.3400","3. low":"46.5000","4. close":"47.9100","5. volume":"98739500"},"2011-03-11":{"1. open":"48.9000","2. high":"49.1300","3. low":"48.0300","4. close":"48.4600","5. volume":"74096900"},"2011-03-04":{"1. open":"47.8700","2. high":"48.9500","3. low":"47.1800","4. close":"48.6900","5. volume":"100067700"},"2011-02-25":{"1. open":"46.4700","2. high":"47.7300","3. low":"46.3450","4. close":"47.6400","5. volume":"96407700"},"2011-02-18":{"1. open":"45.7200","2. high":"46.8900","3. low":"45.6000","4. close":"46.8800","5. volume":"96604700"},"2011-02-11":{"1. open":"46.1600","2. high":"46.1600","3. low":"45.2800","4. close":"45.5600","5. volume":"93166700"},"2011-02-04":{"1. open":"45.8500","2. high":"46.2000","3. low":"45.0700","4. close":"46.1200","5. volume":"126570200"},"2011-01-28":{"1. open":"47.9000","2. high":"48.2010","3. low":"45.3400","4. close":"45.4900","5. volume":"152125600"},"2011-01-21":{"1. open":"46.8500","2. high":"48.1699","3. low":"46.6300","4. close":"47.9200","5. volume":"83516300"},"2011-01-14":{"1. open":"48.3000","2. high":"48.4400","3. low":"46.7800","4. close":"46.8900","5. volume":"102558800"},"2011-01-07":{"1. open":"48.2900","2. high":"48.8200","3. low":"47.7700","4. close":"48.3700","5. volume":"120294500"},"2010-12-31":{"1. open":"47.7900","2. high":"48.1800","3. low":"47.2300","4. close":"47.9100","5. volume":"60172700"},"2010-12-23":{"1. open":"48.5600","2. high":"48.7700","3. low":"47.7100","4. close":"47.8100","5. volume":"54554100"},"2010-12-17":{"1. open":"47.6800","2. high":"48.6200","3. low":"47.1300","4. close":"48.4000","5. volume":"92334700"},"2010-12-10":{"1. open":"47.5000","2. high":"47.6700","3. low":"46.4000","4. close":"47.6200","5. volume":"99714300"},"2010-12-03":{"1. open":"46.7600","2. high":"47.6500","3. low":"46.0300","4. close":"47.3700","5. volume":"94246100"},"2010-11-26":{"1. open":"47.5500","2. high":"47.5700","3. low":"46.7200","4. close":"46.8000","5. volume":"59691300"},"2010-11-19":{"1. open":"48.8900","2. high":"49.2500","3. low":"47.2000","4. close":"47.4000","5. volume":"115080200"},"2010-11-12":{"1. open":"50.9300","2. high":"50.9300","3. low":"48.4800","4. close":"48.5800","5. volume":"92691200"},"2010-11-05":{"1. open":"51.5800","2. high":"51.6400","3. low":"50.3200","4. close":"50.9200","5. volume":"81479900"},"2010-10-29":{"1. open":"52.8500","2. high":"53.2300","3. low":"50.9300","4. close":"51.3200","5. volume":"76733900"},"2010-10-22":{"1. open":"53.1800","2. high":"53.6700","3. low":"51.6700","4. close":"52.5600","5. volume":"73633100"},"2010-10-15":{"1. open":"52.9000","2. high":"53.7500","3. low":"52.5800","4. close":"53.1700","5. volume":"86915100"},"2010-10-08":{"1. open":"52.5700","2. high":"53.2300","3. low":"52.1700","4. close":"52.8100","5. volume":"100007300"},"2010-10-01":{"1. open":"51.9500","2. high":"52.8600","3. low":"51.7933","4. close":"52.5800","5. volume":"54453300"},"2010-09-24":{"1. open":"51.6000","2. high":"52.4295","3. low":"51.5000","4. close":"51.9400","5. volume":"56505300"},"2010-09-17":{"1. open":"51.7900","2. high":"51.9300","3. low":"51.0000","4. close":"51.6400","5. volume":"57970000"},"2010-09-10":{"1. open":"50.5000","2. high":"51.5900","3. low":"50.3500","4. close":"51.5400","5. volume":"41441700"},"2010-09-03":{"1. open":"49.8900","2. high":"50.9900","3. low":"49.0200","4. close":"50.7400","5. volume":"58350100"},"2010-08-27":{"1. open":"49.5500","2. high":"50.1800","3. low":"49.0100","4. close":"49.8400","5. volume":"70308100"},"2010-08-20":{"1. open":"50.0500","2. high":"50.8900","3. low":"48.9300","4. close":"49.3400","5. volume":"70034000"},"2010-08-13":{"1. open":"50.6300","2. high":"51.7000","3. low":"49.7300","4. close":"50.0600","5. volume":"61050100"},"2010-08-06":{"1. open":"49.7100","2. high":"50.6800","3. low":"49.6200","4. close":"50.5700","5. volume":"76380100"},"2010-07-30":{"1. open":"48.8200","2. high":"49.7700","3. low":"48.3000","4. close":"49.0800","5. volume":"71024400"},"2010-07-23":{"1. open":"47.4100","2. high":"49.5400","3. low":"46.8600","4. close":"48.9300","5. volume":"69352500"},"2010-07-16":{"1. open":"48.1000","2. high":"48.1400","3. low":"47.0200","4. close":"47.0700","5. volume":"69099500"},"2010-07-09":{"1. open":"46.7800","2. high":"48.1600","3. low":"46.3100","4. close":"48.0300","5. volume":"65173200"},"2010-07-02":{"1. open":"47.2500","2. high":"47.6000","3. low":"45.7100","4. close":"46.4600","5. volume":"79941600"},"2010-06-25":{"1. open":"49.1600","2. high":"49.2300","3. low":"47.1000","4. close":"47.1900","5. volume":"85131900"},"2010-06-18":{"1. open":"47.4400","2. high":"49.0000","3. low":"47.2800","4. close":"48.7700","5. volume":"88806400"},"2010-06-11":{"1. open":"46.3400","2. high":"47.4700","3. low":"45.6723","4. close":"47.2000","5. volume":"91890400"},"2010-06-04":{"1. open":"47.4400","2. high":"47.8200","3. low":"46.3700","4. close":"46.5300","5. volume":"67482500"},"2010-05-28":{"1. open":"47.0400","2. high":"48.5800","3. low":"46.3100","4. close":"47.5600","5. volume":"118771200"},"2010-05-21":{"1. open":"48.5800","2. high":"48.9300","3. low":"45.2600","4. close":"46.9400","5. volume":"106276800"},"2010-05-14":{"1. open":"49.8000","2. high":"50.2300","3. low":"47.7800","4. close":"48.5000","5. volume":"97695800"},"2010-05-07":{"1. open":"51.4500","2. high":"51.5900","3. low":"45.6000","4. close":"48.7200","5. volume":"113581000"},"2010-04-30":{"1. open":"51.0800","2. high":"51.7700","3. low":"49.4100","4. close":"51.1600","5. volume":"102475100"},"2010-04-23":{"1. open":"52.2600","2. high":"53.2500","3. low":"50.2700","4. close":"51.2000","5. volume":"94369100"},"2010-04-16":{"1. open":"53.0000","2. high":"53.0000","3. low":"51.9300","4. close":"52.2600","5. volume":"78505600"},"2010-04-09":{"1. open":"52.9900","2. high":"53.2500","3. low":"52.2000","4. close":"52.7300","5. volume":"73558500"},"2010-04-01":{"1. open":"53.0800","2. high":"53.2600","3. low":"52.2100","4. close":"52.9600","5. volume":"78766400"},"2010-03-26":{"1. open":"53.4000","2. high":"54.3900","3. low":"52.4400","4. close":"52.9000","5. volume":"81329600"},"2010-03-19":{"1. open":"54.4100","2. high":"54.9900","3. low":"53.1900","4. close":"53.4600","5. volume":"109269200"},"2010-03-12":{"1. open":"54.3700","2. high":"55.5500","3. low":"53.7200","4. close":"54.5200","5. volume":"84004300"},"2010-03-05":{"1. open":"54.3700","2. high":"54.8400","3. low":"53.9100","4. close":"54.3200","5. volume":"62447200"},"2010-02-26":{"1. open":"54.4900","2. high":"54.5400","3. low":"53.6100","4. close":"54.2800","5. volume":"67049600"},"2010-02-19":{"1. open":"54.2400","2. high":"55.0000","3. low":"53.7700","4. close":"54.3800","5. volume":"60315800"},"2010-02-12":{"1. open":"53.8500","2. high":"54.0000","3. low":"52.6700","4. close":"53.9300","5. volume":"84549000"},"2010-02-05":{"1. open":"53.1100","2. high":"54.7800","3. low":"53.0800","4. close":"53.9700","5. volume":"91449500"},"2010-01-29":{"1. open":"54.7600","2. high":"55.5100","3. low":"52.8900","4. close":"52.9400","5. volume":"81719900"},"2010-01-22":{"1. open":"55.5500","2. high":"56.7900","3. low":"54.4000","4. close":"54.5100","5. volume":"62660600"},"2010-01-15":{"1. open":"55.3000","2. high":"55.6200","3. low":"54.8500","4. close":"55.4900","5. volume":"57540300"},"2010-01-08":{"1. open":"54.1900","2. high":"55.2500","3. low":"53.7500","4. close":"55.0500","5. volume":"57798300"},"2009-12-31":{"1. open":"54.1600","2. high":"54.9300","3. low":"53.9000","4. close":"53.9900","5. volume":"31519400"},"2009-12-24":{"1. open":"53.5800","2. high":"54.4200","3. low":"53.4200","4. close":"54.1500","5. volume":"31296200"},"2009-12-18":{"1. open":"53.7800","2. high":"54.4500","3. low":"53.0000","4. close":"53.3400","5. volume":"60682700"},"2009-12-11":{"1. open":"53.8400","2. high":"54.3500","3. low":"52.9400","4. close":"53.7700","5. volume":"57004200"},"2009-12-04":{"1. open":"54.2000","2. high":"54.9700","3. low":"53.4000","4. close":"53.7800","5. volume":"71828800"},"2009-11-27":{"1. open":"53.7200","2. high":"54.5900","3. low":"52.5000","4. close":"54.0800","5. volume":"52198700"},"2009-11-20":{"1. open":"53.5300","2. high":"53.8900","3. low":"52.5000","4. close":"53.6400","5. volume":"63252700"},"2009-11-13":{"1. open":"51.7800","2. high":"53.8000","3. low":"51.5500","4. close":"52.9500","5. volume":"57602700"},"2009-11-06":{"1. open":"50.8300","2. high":"51.7700","3. low":"50.0700","4. close":"51.5300","5. volume":"54994500"},"2009-10-30":{"1. open":"51.3800","2. high":"51.7200","3. low":"50.2800","4. close":"50.5700","5. volume":"65390200"},"2009-10-23":{"1. open":"51.4600","2. high":"52.3600","3. low":"50.8100","4. close":"51.3100","5. volume":"76831600"},"2009-10-16":{"1. open":"50.4300","2. high":"52.1600","3. low":"49.3200","4. close":"51.4300","5. volume":"99024300"},"2009-10-09":{"1. open":"49.9300","2. high":"52.1000","3. low":"49.6150","4. close":"50.0800","5. volume":"77641400"},"2009-10-02":{"1. open":"49.1500","2. high":"50.0000","3. low":"48.4100","4. close":"49.8400","5. volume":"134502700"},"2009-09-25":{"1. open":"45.8100","2. high":"47.7800","3. low":"45.8000","4. close":"47.3300","5. volume":"93341400"},"2009-09-18":{"1. open":"46.8200","2. high":"47.5000","3. low":"45.8000","4. close":"45.9700","5. volume":"98030100"},"2009-09-11":{"1. open":"45.6700","2. high":"46.9800","3. low":"45.2500","4. close":"46.8300","5. volume":"69946100"},"2009-09-04":{"1. open":"45.7700","2. high":"46.2700","3. low":"44.7200","4. close":"45.6300","5. volume":"72495400"},"2009-08-28":{"1. open":"45.7300","2. high":"46.6600","3. low":"45.2500","4. close":"45.9200","5. volume":"76764700"},"2009-08-21":{"1. open":"44.0000","2. high":"46.0000","3. low":"43.9000","4. close":"45.3900","5. volume":"81331900"},"2009-08-14":{"1. open":"43.7000","2. high":"44.8800","3. low":"43.5100","4. close":"44.3600","5. volume":"88152800"},"2009-08-07":{"1. open":"45.0800","2. high":"45.1200","3. low":"43.4900","4. close":"43.8400","5. volume":"94458300"},"2009-07-31":{"1. open":"45.1300","2. high":"46.2900","3. low":"44.4900","4. close":"44.9900","5. volume":"81652600"},"2009-07-24":{"1. open":"44.6100","2. high":"45.3900","3. low":"43.4500","4. close":"45.0100","5. volume":"109779300"},"2009-07-17":{"1. open":"45.1800","2. high":"46.8200","3. low":"44.2000","4. close":"44.4700","5. volume":"138445800"},"2009-07-10":{"1. open":"45.6300","2. high":"46.5900","3. low":"45.2200","4. close":"45.4100","5. volume":"82553300"},"2009-07-02":{"1. open":"47.5900","2. high":"47.8400","3. low":"45.7500","4. close":"45.8400","5. volume":"76997500"},"2009-06-26":{"1. open":"47.1800","2. high":"48.3700","3. low":"46.3000","4. close":"47.4300","5. volume":"78227900"},"2009-06-19":{"1. open":"45.6500","2. high":"48.2600","3. low":"44.2200","4. close":"47.5800","5. volume":"115503900"},"2009-06-12":{"1. open":"44.6400","2. high":"46.0000","3. low":"43.9019","4. close":"45.4200","5. volume":"83982800"},"2009-06-05":{"1. open":"45.3000","2. high":"45.5290","3. low":"44.3500","4. close":"44.9800","5. volume":"73952600"},"2009-05-29":{"1. open":"44.2400","2. high":"45.1200","3. low":"43.6500","4. close":"45.0600","5. volume":"55562100"},"2009-05-22":{"1. open":"43.5900","2. high":"44.5500","3. low":"42.7500","4. close":"43.9400","5. volume":"87139400"},"2009-05-15":{"1. open":"44.9600","2. high":"46.3100","3. low":"43.2600","4. close":"43.3200","5. volume":"102091000"},"2009-05-08":{"1. open":"42.3700","2. high":"45.5000","3. low":"42.1000","4. close":"44.9300","5. volume":"111704500"},"2009-05-01":{"1. open":"43.0000","2. high":"43.8600","3. low":"41.2700","4. close":"41.5200","5. volume":"101170200"},"2009-04-24":{"1. open":"43.9200","2. high":"44.9300","3. low":"42.0100","4. close":"43.0900","5. volume":"115563600"},"2009-04-17":{"1. open":"43.8600","2. high":"45.0300","3. low":"41.8800","4. close":"43.8900","5. volume":"167441900"},"2009-04-09":{"1. open":"43.8600","2. high":"44.5000","3. low":"42.6200","4. close":"44.0300","5. volume":"126369700"},"2009-04-03":{"1. open":"46.6900","2. high":"48.8000","3. low":"43.7700","4. close":"44.1200","5. volume":"142115400"},"2009-03-27":{"1. open":"48.2800","2. high":"48.9200","3. low":"44.7500","4. close":"46.6000","5. volume":"145887800"},"2009-03-20":{"1. open":"47.2800","2. high":"49.5600","3. low":"47.0100","4. close":"47.5400","5. volume":"103641300"},"2009-03-13":{"1. open":"46.4500","2. high":"47.4300","3. low":"44.1000","4. close":"46.8500","5. volume":"130417100"},"2009-03-06":{"1. open":"46.6900","2. high":"47.8600","3. low":"45.3900","4. close":"46.8900","5. volume":"127908600"},"2009-02-27":{"1. open":"53.4400","2. high":"54.9300","3. low":"47.2400","4. close":"47.3400","5. volume":"120308600"},"2009-02-20":{"1. open":"54.5800","2. high":"54.8000","3. low":"53.3400","4. close":"54.0300","5. volume":"62845500"},"2009-02-13":{"1. open":"57.2000","2. high":"57.3600","3. low":"54.5600","4. close":"54.9400","5. volume":"92636500"},"2009-02-06":{"1. open":"53.9200","2. high":"57.3900","3. low":"53.1100","4. close":"57.1500","5. volume":"114431000"},"2009-01-30":{"1. open":"53.1500","2. high":"55.8300","3. low":"52.3500","4. close":"55.4400","5. volume":"129969700"},"2009-01-23":{"1. open":"50.4400","2. high":"53.2200","3. low":"49.1400","4. close":"52.8100","5. volume":"91760300"},"2009-01-16":{"1. open":"51.3200","2. high":"51.3200","3. low":"48.1700","4. close":"49.9200","5. volume":"107187200"},"2009-01-09":{"1. open":"53.2000","2. high":"53.4800","3. low":"50.0600","4. close":"51.1700","5. volume":"97398200"},"2009-01-02":{"1. open":"53.1700","2. high":"53.8500","3. low":"51.5500","4. close":"53.5600","5. volume":"45003100"},"2008-12-26":{"1. open":"52.3900","2. high":"53.2800","3. low":"51.5400","4. close":"52.5100","5. volume":"39392300"},"2008-12-19":{"1. open":"50.9000","2. high":"53.4400","3. low":"50.5400","4. close":"52.2700","5. volume":"96677600"},"2008-12-12":{"1. open":"53.7000","2. high":"54.0200","3. low":"49.3400","4. close":"50.7500","5. volume":"83253700"},"2008-12-05":{"1. open":"51.1000","2. high":"53.4800","3. low":"50.0100","4. close":"52.7500","5. volume":"81698700"},"2008-11-28":{"1. open":"51.9500","2. high":"52.6700","3. low":"49.6000","4. close":"52.3900","5. volume":"87278800"},"2008-11-21":{"1. open":"54.3200","2. high":"57.2700","3. low":"48.2700","4. close":"51.5200","5. volume":"134389800"},"2008-11-14":{"1. open":"56.0000","2. high":"57.3300","3. low":"53.5700","4. close":"55.0600","5. volume":"85414800"},"2008-11-07":{"1. open":"55.1200","2. high":"57.4000","3. low":"53.3700","4. close":"55.3000","5. volume":"78665100"},"2008-10-31":{"1. open":"53.6600","2. high":"56.0000","3. low":"52.1200","4. close":"55.1500","5. volume":"102303900"},"2008-10-24":{"1. open":"55.9200","2. high":"57.9900","3. low":"51.2000","4. close":"54.3000","5. volume":"108117500"},"2008-10-17":{"1. open":"52.7500","2. high":"58.2400","3. low":"51.0500","4. close":"55.4600","5. volume":"150606000"},"2008-10-10":{"1. open":"57.6000","2. high":"58.7600","3. low":"45.7500","4. close":"49.4500","5. volume":"153772200"},"2008-10-03":{"1. open":"58.8800","2. high":"60.7800","3. low":"56.4200","4. close":"58.5100","5. volume":"110669400"},"2008-09-26":{"1. open":"58.3600","2. high":"59.7300","3. low":"56.9100","4. close":"59.4000","5. volume":"71752100"},"2008-09-19":{"1. open":"58.2400","2. high":"59.9500","3. low":"56.5000","4. close":"58.7100","5. volume":"109003700"},"2008-09-12":{"1. open":"58.1600","2. high":"59.4300","3. low":"57.1600","4. close":"59.0900","5. volume":"73846100"},"2008-09-05":{"1. open":"58.1200","2. high":"59.3400","3. low":"55.9600","4. close":"57.0100","5. volume":"58227400"},"2008-08-29":{"1. open":"58.3700","2. high":"58.8700","3. low":"57.1000","4. close":"57.4300","5. volume":"37920700"},"2008-08-22":{"1. open":"59.7400","2. high":"59.7400","3. low":"57.5100","4. close":"58.4800","5. volume":"41058500"},"2008-08-15":{"1. open":"59.0700","2. high":"59.8200","3. low":"57.6200","4. close":"59.6200","5. volume":"54082300"},"2008-08-08":{"1. open":"56.0700","2. high":"59.1900","3. low":"55.9300","4. close":"59.0300","5. volume":"77408800"},"2008-08-01":{"1. open":"57.1800","2. high":"57.6900","3. low":"55.6600","4. close":"56.0700","5. volume":"80711200"},"2008-07-25":{"1. open":"57.3100","2. high":"58.7300","3. low":"56.0800","4. close":"57.4200","5. volume":"85856100"},"2008-07-18":{"1. open":"56.8100","2. high":"58.5000","3. low":"55.0800","4. close":"57.5800","5. volume":"107686600"},"2008-07-11":{"1. open":"54.8700","2. high":"57.9200","3. low":"53.7100","4. close":"56.4300","5. volume":"94962900"},"2008-07-03":{"1. open":"52.9700","2. high":"55.1700","3. low":"52.6000","4. close":"54.7500","5. volume":"62388500"},"2008-06-27":{"1. open":"53.4700","2. high":"54.5300","3. low":"52.5600","4. close":"53.0000","5. volume":"70654800"},"2008-06-20":{"1. open":"53.6500","2. high":"55.2400","3. low":"53.0000","4. close":"53.3500","5. volume":"59223000"},"2008-06-13":{"1. open":"55.2300","2. high":"55.2800","3. low":"53.1000","4. close":"54.1100","5. volume":"43450200"},"2008-06-06":{"1. open":"56.1300","2. high":"57.0400","3. low":"54.7000","4. close":"54.7600","5. volume":"63007700"},"2008-05-30":{"1. open":"54.2900","2. high":"56.6600","3. low":"53.7500","4. close":"56.3500","5. volume":"48459500"},"2008-05-23":{"1. open":"54.8800","2. high":"55.4500","3. low":"54.0000","4. close":"54.2600","5. volume":"49419300"},"2008-05-16":{"1. open":"52.2600","2. high":"55.2000","3. low":"51.9700","4. close":"54.7100","5. volume":"85570800"},"2008-05-09":{"1. open":"53.0900","2. high":"53.5800","3. low":"50.5000","4. close":"51.7800","5. volume":"56243000"},"2008-05-02":{"1. open":"51.4900","2. high":"54.3000","3. low":"51.0000","4. close":"53.1700","5. volume":"107972800"},"2008-04-25":{"1. open":"50.5500","2. high":"51.5500","3. low":"50.0900","4. close":"51.2800","5. volume":"106836200"},"2008-04-18":{"1. open":"52.8900","2. high":"52.9000","3. low":"50.4900","4. close":"50.7200","5. volume":"114760400"},"2008-04-11":{"1. open":"55.1300","2. high":"55.3000","3. low":"52.8000","4. close":"52.8000","5. volume":"55407500"},"2008-04-04":{"1. open":"53.8100","2. high":"55.4000","3. low":"53.6200","4. close":"54.8400","5. volume":"59492400"},"2008-03-28":{"1. open":"55.7900","2. high":"55.9000","3. low":"52.9500","4. close":"53.0700","5. volume":"57502400"},"2008-03-20":{"1. open":"50.8300","2. high":"55.7800","3. low":"50.0900","4. close":"55.6600","5. volume":"68321200"},"2008-03-14":{"1. open":"51.1900","2. high":"53.0000","3. low":"50.3200","4. close":"51.3800","5. volume":"70971400"},"2008-03-07":{"1. open":"53.1700","2. high":"53.5200","3. low":"50.8700","4. close":"51.0400","5. volume":"62281100"},"2008-02-29":{"1. open":"54.4700","2. high":"56.0100","3. low":"53.2300","4. close":"53.5500","5. volume":"49428500"},"2008-02-22":{"1. open":"56.1100","2. high":"56.3200","3. low":"53.7300","4. close":"54.5400","5. volume":"58683700"},"2008-02-15":{"1. open":"56.9000","2. high":"57.3600","3. low":"55.1100","4. close":"55.5500","5. volume":"62522400"},"2008-02-08":{"1. open":"57.4400","2. high":"58.5000","3. low":"56.5000","4. close":"56.8000","5. volume":"75007100"},"2008-02-01":{"1. open":"55.3600","2. high":"57.6900","3. low":"52.8900","4. close":"57.5500","5. volume":"92713900"},"2008-01-25":{"1. open":"57.5800","2. high":"60.0400","3. low":"54.6700","4. close":"55.4800","5. volume":"88424100"},"2008-01-18":{"1. open":"60.5700","2. high":"61.0700","3. low":"58.7500","4. close":"59.4300","5. volume":"90828500"},"2008-01-11":{"1. open":"56.0300","2. high":"61.0900","3. low":"56.0000","4. close":"60.5000","5. volume":"97510600"},"2008-01-04":{"1. open":"56.8200","2. high":"57.1000","3. low":"55.0000","4. close":"55.7900","5. volume":"44855800"},"2007-12-28":{"1. open":"58.1400","2. high":"58.6200","3. low":"56.6000","4. close":"57.2300","5. volume":"25405000"},"2007-12-21":{"1. open":"57.2500","2. high":"58.8700","3. low":"56.5600","4. close":"58.2600","5. volume":"57846600"},"2007-12-14":{"1. open":"58.2200","2. high":"59.4800","3. low":"57.4800","4. close":"57.5100","5. volume":"62588400"},"2007-12-07":{"1. open":"57.1200","2. high":"58.5000","3. low":"56.5600","4. close":"58.2200","5. volume":"54504400"},"2007-11-30":{"1. open":"55.2100","2. high":"58.1700","3. low":"54.1100","4. close":"57.5100","5. volume":"80560400"},"2007-11-23":{"1. open":"54.8600","2. high":"55.8000","3. low":"54.5600","4. close":"55.4900","5. volume":"39975200"},"2007-11-16":{"1. open":"54.1200","2. high":"55.4700","3. low":"53.6400","4. close":"55.2100","5. volume":"62737100"},"2007-11-09":{"1. open":"54.5000","2. high":"54.7800","3. low":"52.9500","4. close":"54.1200","5. volume":"55934300"},"2007-11-02":{"1. open":"54.1300","2. high":"55.7000","3. low":"53.6000","4. close":"54.0500","5. volume":"57435400"},"2007-10-26":{"1. open":"50.9000","2. high":"54.3500","3. low":"50.5100","4. close":"54.0700","5. volume":"70174000"},"2007-10-19":{"1. open":"52.7100","2. high":"53.0800","3. low":"51.0200","4. close":"51.4000","5. volume":"91408000"},"2007-10-12":{"1. open":"55.0800","2. high":"55.4900","3. low":"52.3800","4. close":"52.6400","5. volume":"70160700"},"2007-10-05":{"1. open":"53.5600","2. high":"56.6600","3. low":"53.5600","4. close":"55.0000","5. volume":"54298400"},"2007-09-28":{"1. open":"54.2100","2. high":"54.6800","3. low":"53.4100","4. close":"53.6200","5. volume":"52808300"},"2007-09-21":{"1. open":"51.9100","2. high":"54.7200","3. low":"51.5100","4. close":"54.4400","5. volume":"66726500"},"2007-09-14":{"1. open":"51.9900","2. high":"52.9900","3. low":"51.2700","4. close":"52.1000","5. volume":"48944300"},"2007-09-07":{"1. open":"51.8200","2. high":"53.0500","3. low":"51.1500","4. close":"51.8600","5. volume":"41014000"},"2007-08-31":{"1. open":"52.3200","2. high":"52.3800","3. low":"50.3400","4. close":"51.9100","5. volume":"52173400"},"2007-08-24":{"1. open":"52.6600","2. high":"53.2100","3. low":"51.6400","4. close":"52.5300","5. volume":"45718100"},"2007-08-17":{"1. open":"55.2100","2. high":"55.2100","3. low":"50.7800","4. close":"52.7300","5. volume":"75886500"},"2007-08-10":{"1. open":"52.1200","2. high":"56.9100","3. low":"51.2400","4. close":"55.2200","5. volume":"101363500"},"2007-08-03":{"1. open":"51.4500","2. high":"52.1300","3. low":"49.5800","4. close":"51.0900","5. volume":"79432700"},"2007-07-27":{"1. open":"53.3500","2. high":"54.9000","3. low":"50.0000","4. close":"50.0300","5. volume":"85477500"},"2007-07-20":{"1. open":"53.2500","2. high":"54.9700","3. low":"52.7000","4. close":"52.8700","5. volume":"74022400"},"2007-07-13":{"1. open":"54.0000","2. high":"54.1700","3. low":"51.9000","4. close":"53.2400","5. volume":"74230800"},"2007-07-06":{"1. open":"53.9900","2. high":"54.6800","3. low":"53.7500","4. close":"54.0000","5. volume":"29464400"},"2007-06-29":{"1. open":"53.3400","2. high":"55.5000","3. low":"52.9900","4. close":"53.5500","5. volume":"68827800"},"2007-06-22":{"1. open":"54.7200","2. high":"55.2200","3. low":"52.8000","4. close":"52.8600","5. volume":"63639400"},"2007-06-15":{"1. open":"54.1100","2. high":"55.0500","3. low":"53.2000","4. close":"54.7200","5. volume":"53995900"},"2007-06-08":{"1. open":"55.5300","2. high":"56.1600","3. low":"53.6300","4. close":"54.2900","5. volume":"69869600"},"2007-06-01":{"1. open":"56.1700","2. high":"56.8900","3. low":"55.5200","4. close":"56.3000","5. volume":"50814400"},"2007-05-25":{"1. open":"59.2500","2. high":"59.3500","3. low":"55.0700","4. close":"56.3700","5. volume":"59843900"},"2007-05-18":{"1. open":"57.8500","2. high":"59.5000","3. low":"57.4500","4. close":"59.4300","5. volume":"47371200"},"2007-05-11":{"1. open":"58.8100","2. high":"59.1400","3. low":"57.0789","4. close":"57.8400","5. volume":"47091100"},"2007-05-04":{"1. open":"56.9300","2. high":"58.3800","3. low":"56.3700","4. close":"58.3000","5. volume":"47430500"},"2007-04-27":{"1. open":"57.5000","2. high":"57.8000","3. low":"55.6700","4. close":"56.7600","5. volume":"53442200"},"2007-04-20":{"1. open":"58.7900","2. high":"59.4000","3. low":"56.9200","4. close":"57.8500","5. volume":"80142500"},"2007-04-13":{"1. open":"57.0500","2. high":"58.6600","3. low":"56.1700","4. close":"58.4900","5. volume":"63596700"},"2007-04-05":{"1. open":"55.8000","2. high":"57.1100","3. low":"55.1600","4. close":"57.0200","5. volume":"49109200"},"2007-03-30":{"1. open":"55.3600","2. high":"57.2600","3. low":"55.0100","4. close":"55.8000","5. volume":"123893700"},"2007-03-23":{"1. open":"53.0200","2. high":"54.9200","3. low":"52.8800","4. close":"53.8600","5. volume":"73435600"},"2007-03-16":{"1. open":"54.4400","2. high":"54.7100","3. low":"52.8000","4. close":"52.8800","5. volume":"77225400"},"2007-03-09":{"1. open":"52.7200","2. high":"54.4600","3. low":"52.3700","4. close":"54.3900","5. volume":"91139200"},"2007-03-02":{"1. open":"53.6500","2. high":"55.0600","3. low":"52.4000","4. close":"53.0100","5. volume":"102531700"},"2007-02-23":{"1. open":"52.4900","2. high":"53.7700","3. low":"52.2800","4. close":"53.5900","5. volume":"43351600"},"2007-02-16":{"1. open":"52.3400","2. high":"53.1800","3. low":"52.0800","4. close":"52.4900","5. volume":"44766000"},"2007-02-09":{"1. open":"52.4000","2. high":"52.7500","3. low":"52.0600","4. close":"52.2700","5. volume":"39403200"},"2007-02-02":{"1. open":"51.9100","2. high":"53.2400","3. low":"51.5100","4. close":"52.6700","5. volume":"64996700"},"2007-01-26":{"1. open":"53.2000","2. high":"53.8500","3. low":"51.9500","4. close":"52.5500","5. volume":"79384200"},"2007-01-19":{"1. open":"50.5100","2. high":"53.7500","3. low":"50.3800","4. close":"53.5200","5. volume":"81502500"},"2007-01-12":{"1. open":"49.8200","2. high":"50.9800","3. low":"49.6400","4. close":"50.4500","5. volume":"67271000"},"2007-01-05":{"1. open":"48.8300","2. high":"50.2400","3. low":"48.7500","4. close":"49.9000","5. volume":"47050000"},"2006-12-29":{"1. open":"47.7100","2. high":"49.1000","3. low":"47.6700","4. close":"48.7100","5. volume":"34024400"},"2006-12-22":{"1. open":"48.3000","2. high":"48.3700","3. low":"47.4300","4. close":"47.7300","5. volume":"36937500"},"2006-12-15":{"1. open":"47.9000","2. high":"48.6500","3. low":"47.5700","4. close":"48.4700","5. volume":"41853600"},"2006-12-08":{"1. open":"48.0000","2. high":"48.7000","3. low":"47.1900","4. close":"47.9600","5. volume":"54426800"},"2006-12-01":{"1. open":"46.6900","2. high":"47.0000","3. low":"46.2200","4. close":"46.5700","5. volume":"48280000"},"2006-11-24":{"1. open":"47.4500","2. high":"47.9200","3. low":"46.8400","4. close":"46.9500","5. volume":"24650300"},"2006-11-17":{"1. open":"45.8500","2. high":"47.7100","3. low":"45.5000","4. close":"47.6700","5. volume":"55772300"},"2006-11-10":{"1. open":"47.0200","2. high":"48.3200","3. low":"45.4100","4. close":"45.9700","5. volume":"75389500"},"2006-11-03":{"1. open":"47.5500","2. high":"47.8000","3. low":"46.9500","4. close":"47.6400","5. volume":"46770200"},"2006-10-27":{"1. open":"48.5000","2. high":"48.9400","3. low":"47.2500","4. close":"47.6700","5. volume":"47986000"},"2006-10-20":{"1. open":"46.8000","2. high":"48.8800","3. low":"46.7500","4. close":"48.7800","5. volume":"58890600"},"2006-10-13":{"1. open":"46.3900","2. high":"47.0600","3. low":"46.0400","4. close":"46.9300","5. volume":"60725800"},"2006-10-06":{"1. open":"47.7500","2. high":"48.7000","3. low":"46.0700","4. close":"46.1900","5. volume":"78216000"},"2006-09-29":{"1. open":"48.2800","2. high":"48.6900","3. low":"47.5400","4. close":"48.5600","5. volume":"47649400"},"2006-09-22":{"1. open":"49.2000","2. high":"49.4000","3. low":"47.6800","4. close":"47.9000","5. volume":"45347400"},"2006-09-15":{"1. open":"48.6600","2. high":"49.8700","3. low":"48.2300","4. close":"49.4800","5. volume":"56407900"},"2006-09-08":{"1. open":"48.5700","2. high":"48.9600","3. low":"47.3100","4. close":"48.9000","5. volume":"43478100"},"2006-09-01":{"1. open":"48.9900","2. high":"49.4300","3. low":"48.0600","4. close":"48.3700","5. volume":"48550100"},"2006-08-25":{"1. open":"48.6200","2. high":"49.2600","3. low":"48.2800","4. close":"48.7900","5. volume":"45923100"},"2006-08-18":{"1. open":"47.4100","2. high":"49.2800","3. low":"47.3900","4. close":"49.0000","5. volume":"59174600"},"2006-08-11":{"1. open":"47.2400","2. high":"47.7700","3. low":"45.9000","4. close":"47.4100","5. volume":"43225700"},"2006-08-04":{"1. open":"47.7000","2. high":"47.9200","3. low":"46.9100","4. close":"47.2400","5. volume":"48734500"},"2006-07-28":{"1. open":"45.9000","2. high":"48.1900","3. low":"45.8400","4. close":"47.8200","5. volume":"78903300"},"2006-07-21":{"1. open":"43.9000","2. high":"46.9900","3. low":"43.9000","4. close":"46.8400","5. volume":"77320800"},"2006-07-14":{"1. open":"44.1400","2. high":"44.6900","3. low":"43.5700","4. close":"44.0100","5. volume":"59069300"},"2006-07-07":{"1. open":"43.6900","2. high":"44.2000","3. low":"43.2500","4. close":"43.8000","5. volume":"28401500"},"2006-06-30":{"1. open":"42.0000","2. high":"43.6100","3. low":"41.4400","4. close":"43.6100","5. volume":"51655700"},"2006-06-23":{"1. open":"42.9600","2. high":"42.9600","3. low":"41.5600","4. close":"41.9500","5. volume":"35031400"},"2006-06-16":{"1. open":"43.0000","2. high":"43.2900","3. low":"42.1900","4. close":"42.7800","5. volume":"47069000"},"2006-06-09":{"1. open":"43.0000","2. high":"43.4500","3. low":"42.0000","4. close":"43.1900","5. volume":"50261200"},"2006-06-02":{"1. open":"42.5000","2. high":"43.3500","3. low":"42.1100","4. close":"43.1300","5. volume":"39147400"},"2006-05-26":{"1. open":"41.8000","2. high":"42.9500","3. low":"41.5000","4. close":"42.6700","5. volume":"42930900"},"2006-05-19":{"1. open":"41.6700","2. high":"43.0100","3. low":"41.1300","4. close":"41.8200","5. volume":"54686100"},"2006-05-12":{"1. open":"42.3100","2. high":"42.5400","3. low":"41.4100","4. close":"41.4200","5. volume":"37798000"},"2006-05-05":{"1. open":"42.7500","2. high":"43.0400","3. low":"41.8200","4. close":"42.7700","5. volume":"45425600"},"2006-04-28":{"1. open":"41.8200","2. high":"42.7500","3. low":"40.5500","4. close":"42.7400","5. volume":"48797200"},"2006-04-21":{"1. open":"41.3800","2. high":"42.1000","3. low":"40.9000","4. close":"42.0000","5. volume":"52016600"},"2006-04-13":{"1. open":"42.1100","2. high":"42.3900","3. low":"41.0500","4. close":"41.5000","5. volume":"35811000"},"2006-04-07":{"1. open":"42.4700","2. high":"43.1000","3. low":"42.0500","4. close":"42.0900","5. volume":"51001000"},"2006-03-31":{"1. open":"44.6000","2. high":"44.6000","3. low":"42.3200","4. close":"42.4700","5. volume":"50293300"},"2006-03-24":{"1. open":"44.9000","2. high":"44.9600","3. low":"43.1600","4. close":"43.8700","5. volume":"51109000"},"2006-03-17":{"1. open":"44.7750","2. high":"45.5800","3. low":"44.5000","4. close":"45.1800","5. volume":"54536200"},"2006-03-10":{"1. open":"43.8000","2. high":"44.1300","3. low":"43.0000","4. close":"43.9200","5. volume":"41809400"},"2006-03-03":{"1. open":"43.8400","2. high":"44.8100","3. low":"43.0300","4. close":"43.7800","5. volume":"50018100"},"2006-02-24":{"1. open":"44.2500","2. high":"44.3800","3. low":"43.3000","4. close":"43.9500","5. volume":"36118000"},"2006-02-17":{"1. open":"42.8500","2. high":"44.5000","3. low":"42.3000","4. close":"44.3400","5. volume":"50579100"},"2006-02-10":{"1. open":"42.2900","2. high":"42.8400","3. low":"41.7000","4. close":"42.4700","5. volume":"42009100"},"2006-02-03":{"1. open":"42.4500","2. high":"43.2700","3. low":"42.0000","4. close":"42.4900","5. volume":"61082100"},"2006-01-27":{"1. open":"40.5000","2. high":"43.8500","3. low":"39.8800","4. close":"43.0000","5. volume":"66441600"},"2006-01-20":{"1. open":"40.8200","2. high":"41.7300","3. low":"40.3100","4. close":"40.3500","5. volume":"35755700"},"2006-01-13":{"1. open":"42.5000","2. high":"42.7500","3. low":"40.9900","4. close":"41.1900","5. volume":"58393900"},"2006-01-06":{"1. open":"39.5500","2. high":"40.9800","3. low":"39.1800","4. close":"40.8900","5. volume":"58891900"},"2005-12-30":{"1. open":"41.0000","2. high":"41.1500","3. low":"39.3600","4. close":"39.4300","5. volume":"30871600"},"2005-12-23":{"1. open":"41.0000","2. high":"41.0000","3. low":"39.9000","4. close":"40.8600","5. volume":"53446500"},"2005-12-16":{"1. open":"38.8000","2. high":"40.4200","3. low":"38.5300","4. close":"40.1700","5. volume":"58304700"},"2005-12-09":{"1. open":"38.5200","2. high":"39.2300","3. low":"37.7900","4. close":"38.9900","5. volume":"61802000"},"2005-12-02":{"1. open":"39.0000","2. high":"39.1400","3. low":"37.5000","4. close":"38.5600","5. volume":"81283900"},"2005-11-25":{"1. open":"40.8200","2. high":"40.8500","3. low":"38.1000","4. close":"38.9800","5. volume":"57280500"},"2005-11-18":{"1. open":"43.5600","2. high":"43.5800","3. low":"39.8100","4. close":"40.9000","5. volume":"84989300"},"2005-11-11":{"1. open":"42.5700","2. high":"43.8500","3. low":"42.1600","4. close":"43.7300","5. volume":"46461100"},"2005-11-04":{"1. open":"43.4000","2. high":"43.6000","3. low":"42.1500","4. close":"42.5700","5. volume":"43727300"},"2005-10-28":{"1. open":"43.0300","2. high":"43.7400","3. low":"42.0716","4. close":"42.7500","5. volume":"35749800"},"2005-10-21":{"1. open":"42.4000","2. high":"44.1000","3. low":"42.0500","4. close":"42.7500","5. volume":"61329700"},"2005-10-14":{"1. open":"42.6400","2. high":"42.8200","3. low":"41.5775","4. close":"42.6400","5. volume":"48872000"},"2005-10-07":{"1. open":"42.4000","2. high":"44.3600","3. low":"42.2100","4. close":"42.7000","5. volume":"64727600"},"2005-09-30":{"1. open":"43.4700","2. high":"43.8000","3. low":"41.5700","4. close":"42.4000","5. volume":"73533900"},"2005-09-23":{"1. open":"43.5000","2. high":"44.5300","3. low":"42.7000","4. close":"44.2200","5. volume":"49270900"},"2005-09-16":{"1. open":"45.2100","2. high":"46.2000","3. low":"43.4500","4. close":"43.7400","5. volume":"64948700"},"2005-09-09":{"1. open":"44.8800","2. high":"45.8900","3. low":"44.8800","4. close":"45.5700","5. volume":"25120100"},"2005-09-02":{"1. open":"44.4500","2. high":"45.6100","3. low":"44.4000","4. close":"44.8800","5. volume":"36602000"},"2005-08-26":{"1. open":"45.8400","2. high":"46.2500","3. low":"44.7000","4. close":"44.7300","5. volume":"30048300"},"2005-08-19":{"1. open":"46.5000","2. high":"46.9300","3. low":"45.7800","4. close":"45.8300","5. volume":"24502800"},"2005-08-12":{"1. open":"46.6500","2. high":"47.1800","3. low":"46.2200","4. close":"46.5400","5. volume":"27321800"},"2005-08-05":{"1. open":"46.8500","2. high":"47.3700","3. low":"46.4500","4. close":"46.4900","5. volume":"32599100"},"2005-07-29":{"1. open":"46.1800","2. high":"47.1500","3. low":"45.2000","4. close":"46.6300","5. volume":"40229800"},"2005-07-22":{"1. open":"46.9500","2. high":"47.2100","3. low":"45.9200","4. close":"46.0400","5. volume":"42914700"},"2005-07-15":{"1. open":"49.6000","2. high":"50.0000","3. low":"46.4000","4. close":"46.8700","5. volume":"83576000"},"2005-07-08":{"1. open":"48.9200","2. high":"49.4600","3. low":"48.7200","4. close":"49.3500","5. volume":"32551200"},"2005-07-01":{"1. open":"49.0000","2. high":"49.6400","3. low":"48.7800","4. close":"49.0300","5. volume":"33362600"},"2005-06-24":{"1. open":"49.1400","2. high":"49.8400","3. low":"48.6600","4. close":"49.0200","5. volume":"29288900"},"2005-06-17":{"1. open":"48.7200","2. high":"49.5800","3. low":"48.4200","4. close":"49.4300","5. volume":"28962000"},"2005-06-10":{"1. open":"48.6500","2. high":"49.0500","3. low":"48.2500","4. close":"48.9000","5. volume":"31436600"},"2005-06-03":{"1. open":"48.1500","2. high":"48.6500","3. low":"47.8800","4. close":"48.2700","5. volume":"23382800"},"2005-05-27":{"1. open":"49.2000","2. high":"49.2000","3. low":"47.2800","4. close":"48.0000","5. volume":"28562500"},"2005-05-20":{"1. open":"48.9000","2. high":"49.6500","3. low":"48.6600","4. close":"48.8800","5. volume":"31633600"},"2005-05-13":{"1. open":"48.9600","2. high":"49.5000","3. low":"48.2900","4. close":"48.7600","5. volume":"31231000"},"2005-05-06":{"1. open":"49.0000","2. high":"49.8400","3. low":"48.6700","4. close":"49.0200","5. volume":"34362800"},"2005-04-29":{"1. open":"47.6000","2. high":"49.1900","3. low":"47.3200","4. close":"49.1600","5. volume":"37961800"},"2005-04-22":{"1. open":"49.4000","2. high":"49.6900","3. low":"46.7600","4. close":"47.5700","5. volume":"44141800"},"2005-04-15":{"1. open":"48.0000","2. high":"49.9800","3. low":"47.0500","4. close":"49.8700","5. volume":"51205300"},"2005-04-08":{"1. open":"46.3600","2. high":"48.4900","3. low":"45.9800","4. close":"47.8600","5. volume":"40250500"},"2005-04-01":{"1. open":"44.9500","2. high":"47.0000","3. low":"44.6500","4. close":"46.1900","5. volume":"46956400"},"2005-03-24":{"1. open":"44.3800","2. high":"45.2900","3. low":"43.3400","4. close":"44.9400","5. volume":"30591900"},"2005-03-18":{"1. open":"46.0000","2. high":"46.3600","3. low":"43.8300","4. close":"44.4700","5. volume":"44018600"},"2005-03-11":{"1. open":"46.5800","2. high":"46.7400","3. low":"45.7800","4. close":"46.0000","5. volume":"30272500"},"2005-03-04":{"1. open":"46.2700","2. high":"46.5000","3. low":"45.3000","4. close":"46.4100","5. volume":"31906000"},"2005-02-25":{"1. open":"46.0000","2. high":"46.5000","3. low":"45.3500","4. close":"46.2700","5. volume":"31448700"},"2005-02-18":{"1. open":"46.1000","2. high":"47.0000","3. low":"46.0300","4. close":"46.4000","5. volume":"34661000"},"2005-02-11":{"1. open":"45.5000","2. high":"46.4500","3. low":"44.8700","4. close":"46.2000","5. volume":"32363500"},"2005-02-04":{"1. open":"45.2700","2. high":"46.0000","3. low":"44.8400","4. close":"45.5200","5. volume":"34784600"},"2005-01-28":{"1. open":"45.9900","2. high":"46.3400","3. low":"44.8900","4. close":"45.2700","5. volume":"37244000"},"2005-01-21":{"1. open":"46.0500","2. high":"46.4900","3. low":"45.5000","4. close":"45.9800","5. volume":"37959500"},"2005-01-14":{"1. open":"47.4900","2. high":"48.1600","3. low":"45.5500","4. close":"46.2500","5. volume":"48771100"},"2005-01-07":{"1. open":"46.5000","2. high":"47.5500","3. low":"45.6700","4. close":"47.5000","5. volume":"47569400"},"2004-12-31":{"1. open":"46.4100","2. high":"47.3000","3. low":"46.0000","4. close":"46.6500","5. volume":"23897600"},"2004-12-23":{"1. open":"46.9000","2. high":"47.0100","3. low":"45.8000","4. close":"46.4200","5. volume":"28717400"},"2004-12-17":{"1. open":"43.8000","2. high":"47.6300","3. low":"43.4500","4. close":"46.9900","5. volume":"59933900"},"2004-12-10":{"1. open":"43.2700","2. high":"44.9200","3. low":"42.6300","4. close":"43.7400","5. volume":"33777900"},"2004-12-03":{"1. open":"42.5900","2. high":"43.9000","3. low":"41.6100","4. close":"43.4300","5. volume":"35537300"},"2004-11-26":{"1. open":"42.9100","2. high":"43.0800","3. low":"42.0300","4. close":"42.5900","5. volume":"23858600"},"2004-11-19":{"1. open":"44.3000","2. high":"44.7152","3. low":"42.6200","4. close":"42.7500","5. volume":"39641300"},"2004-11-12":{"1. open":"44.7000","2. high":"45.4800","3. low":"43.6700","4. close":"44.1800","5. volume":"46531100"},"2004-11-05":{"1. open":"42.5000","2. high":"44.7000","3. low":"42.1200","4. close":"44.4500","5. volume":"54965400"},"2004-10-29":{"1. open":"40.8600","2. high":"42.7500","3. low":"40.2500","4. close":"42.6300","5. volume":"37808800"},"2004-10-22":{"1. open":"41.4500","2. high":"41.7400","3. low":"40.6700","4. close":"40.8600","5. volume":"36717600"},"2004-10-15":{"1. open":"40.8400","2. high":"41.8800","3. low":"40.8400","4. close":"41.3600","5. volume":"39938100"},"2004-10-08":{"1. open":"42.2000","2. high":"42.4800","3. low":"40.7500","4. close":"40.8300","5. volume":"37729800"},"2004-10-01":{"1. open":"42.1700","2. high":"42.8600","3. low":"41.9200","4. close":"42.1900","5. volume":"40297000"},"2004-09-24":{"1. open":"42.7500","2. high":"43.2000","3. low":"41.9200","4. close":"42.3400","5. volume":"33732100"},"2004-09-17":{"1. open":"42.2500","2. high":"43.1600","3. low":"42.1000","4. close":"42.9200","5. volume":"29808800"},"2004-09-10":{"1. open":"42.6700","2. high":"42.9600","3. low":"41.7000","4. close":"42.3100","5. volume":"25185000"},"2004-09-03":{"1. open":"41.5100","2. high":"43.0400","3. low":"41.1200","4. close":"42.6700","5. volume":"27876800"},"2004-08-27":{"1. open":"41.0900","2. high":"41.5900","3. low":"40.8500","4. close":"41.5100","5. volume":"22290500"},"2004-08-20":{"1. open":"39.7000","2. high":"41.1600","3. low":"39.4700","4. close":"41.0100","5. volume":"35887500"},"2004-08-13":{"1. open":"38.4000","2. high":"39.9200","3. low":"38.2600","4. close":"39.5900","5. volume":"28574300"},"2004-08-06":{"1. open":"39.3500","2. high":"39.5400","3. low":"38.3500","4. close":"38.6900","5. volume":"27108900"},"2004-07-30":{"1. open":"38.6500","2. high":"39.4800","3. low":"38.2700","4. close":"39.3500","5. volume":"26433400"},"2004-07-23":{"1. open":"39.3100","2. high":"39.9500","3. low":"38.4000","4. close":"38.6300","5. volume":"27434800"},"2004-07-16":{"1. open":"40.1000","2. high":"40.6900","3. low":"39.0400","4. close":"39.1000","5. volume":"40077800"},"2004-07-09":{"1. open":"40.2500","2. high":"40.9000","3. low":"39.3500","4. close":"39.9000","5. volume":"36436000"},"2004-07-02":{"1. open":"40.8000","2. high":"41.4700","3. low":"40.2100","4. close":"40.5900","5. volume":"38867600"},"2004-06-25":{"1. open":"43.0000","2. high":"43.0100","3. low":"40.5100","4. close":"40.5600","5. volume":"52431400"},"2004-06-18":{"1. open":"42.4000","2. high":"43.2600","3. low":"42.2800","4. close":"43.0000","5. volume":"42071100"},"2004-06-10":{"1. open":"41.9500","2. high":"42.8700","3. low":"41.9500","4. close":"42.7000","5. volume":"27437900"},"2004-06-04":{"1. open":"41.0600","2. high":"41.8200","3. low":"40.7700","4. close":"41.7400","5. volume":"23426600"},"2004-05-28":{"1. open":"40.1200","2. high":"41.7100","3. low":"39.4300","4. close":"41.2100","5. volume":"35250100"},"2004-05-21":{"1. open":"40.9000","2. high":"41.5500","3. low":"39.8900","4. close":"39.9500","5. volume":"33419700"},"2004-05-14":{"1. open":"41.4500","2. high":"41.7200","3. low":"40.3300","4. close":"41.1500","5. volume":"32932600"},"2004-05-07":{"1. open":"41.3700","2. high":"42.5000","3. low":"41.1700","4. close":"41.5000","5. volume":"40719500"},"2004-04-30":{"1. open":"44.0400","2. high":"44.6700","3. low":"43.8000","4. close":"44.0200","5. volume":"46362500"},"2004-04-23":{"1. open":"43.8200","2. high":"44.3200","3. low":"42.6100","4. close":"43.9000","5. volume":"52525000"},"2004-04-16":{"1. open":"41.2500","2. high":"44.4000","3. low":"40.0000","4. close":"44.1300","5. volume":"92083200"},"2004-04-08":{"1. open":"42.4300","2. high":"43.4500","3. low":"42.1600","4. close":"42.3200","5. volume":"49339300"},"2004-04-02":{"1. open":"40.4000","2. high":"42.4900","3. low":"40.1000","4. close":"42.3700","5. volume":"50639200"},"2004-03-26":{"1. open":"40.0000","2. high":"40.3800","3. low":"39.2800","4. close":"40.1400","5. volume":"48776500"},"2004-03-19":{"1. open":"41.2000","2. high":"41.8300","3. low":"39.8200","4. close":"40.2100","5. volume":"71546200"},"2004-03-12":{"1. open":"43.5800","2. high":"43.6400","3. low":"41.1100","4. close":"41.4400","5. volume":"56279700"},"2004-03-05":{"1. open":"42.8000","2. high":"43.9900","3. low":"42.5800","4. close":"43.5800","5. volume":"41403100"},"2004-02-27":{"1. open":"43.5000","2. high":"43.9300","3. low":"42.5600","4. close":"42.8000","5. volume":"37467200"},"2004-02-20":{"1. open":"44.4100","2. high":"45.1000","3. low":"43.1800","4. close":"43.3800","5. volume":"52213800"},"2004-02-13":{"1. open":"44.5000","2. high":"44.8500","3. low":"43.7100","4. close":"44.3100","5. volume":"42794200"},"2004-02-06":{"1. open":"43.1200","2. high":"44.7000","3. low":"42.9000","4. close":"44.3700","5. volume":"51025700"},"2004-01-30":{"1. open":"42.9900","2. high":"44.0900","3. low":"42.9000","4. close":"43.0800","5. volume":"51388000"},"2004-01-23":{"1. open":"43.3500","2. high":"44.1100","3. low":"42.9200","4. close":"42.9700","5. volume":"48278900"},"2004-01-16":{"1. open":"44.9300","2. high":"44.9900","3. low":"43.1400","4. close":"43.2500","5. volume":"65140000"},"2004-01-09":{"1. open":"47.1000","2. high":"47.2500","3. low":"44.9000","4. close":"44.9300","5. volume":"60299600"},"2004-01-02":{"1. open":"46.7400","2. high":"47.1500","3. low":"46.3400","4. close":"46.7500","5. volume":"29164700"},"2003-12-26":{"1. open":"46.2800","2. high":"47.0000","3. low":"46.0500","4. close":"46.8400","5. volume":"22756200"},"2003-12-19":{"1. open":"45.8400","2. high":"46.7400","3. low":"45.0900","4. close":"46.4000","5. volume":"44311700"},"2003-12-12":{"1. open":"44.9600","2. high":"45.9700","3. low":"44.7800","4. close":"45.8300","5. volume":"31586000"},"2003-12-05":{"1. open":"44.4500","2. high":"46.0000","3. low":"44.2700","4. close":"44.9600","5. volume":"38042500"},"2003-11-28":{"1. open":"43.6700","2. high":"44.7400","3. low":"43.5900","4. close":"44.2000","5. volume":"26909600"},"2003-11-21":{"1. open":"44.2000","2. high":"44.9000","3. low":"43.3600","4. close":"43.6700","5. volume":"36889800"},"2003-11-14":{"1. open":"41.6100","2. high":"44.9900","3. low":"41.0500","4. close":"44.2000","5. volume":"50164800"},"2003-11-07":{"1. open":"42.6500","2. high":"42.9400","3. low":"39.9500","4. close":"41.5100","5. volume":"35992300"},"2003-10-31":{"1. open":"41.7600","2. high":"43.0000","3. low":"41.3000","4. close":"42.6200","5. volume":"39851500"},"2003-10-24":{"1. open":"41.7900","2. high":"42.6800","3. low":"40.9800","4. close":"41.7600","5. volume":"40090200"},"2003-10-17":{"1. open":"42.0000","2. high":"42.6200","3. low":"41.5000","4. close":"41.7800","5. volume":"40555300"},"2003-10-10":{"1. open":"42.6300","2. high":"43.0500","3. low":"40.9400","4. close":"41.7900","5. volume":"43618000"},"2003-10-03":{"1. open":"42.3350","2. high":"43.8500","3. low":"41.9000","4. close":"42.6300","5. volume":"48271400"},"2003-09-26":{"1. open":"42.7000","2. high":"43.1700","3. low":"41.7300","4. close":"42.3200","5. volume":"39924900"},"2003-09-19":{"1. open":"44.0600","2. high":"44.4200","3. low":"43.4000","4. close":"43.4600","5. volume":"35086200"},"2003-09-12":{"1. open":"42.0400","2. high":"44.1900","3. low":"42.0100","4. close":"44.0600","5. volume":"41412900"},"2003-09-05":{"1. open":"40.5500","2. high":"42.0000","3. low":"40.3000","4. close":"42.0000","5. volume":"37413900"},"2003-08-29":{"1. open":"38.9300","2. high":"40.3900","3. low":"38.4300","4. close":"40.3000","5. volume":"46354100"},"2003-08-22":{"1. open":"40.0000","2. high":"40.0600","3. low":"38.3500","4. close":"38.9800","5. volume":"51539600"},"2003-08-15":{"1. open":"39.9000","2. high":"40.1700","3. low":"39.0600","4. close":"39.6800","5. volume":"33253900"},"2003-08-08":{"1. open":"38.5400","2. high":"40.5000","3. low":"37.6500","4. close":"39.9000","5. volume":"51077200"},"2003-08-01":{"1. open":"40.2300","2. high":"40.2300","3. low":"38.3100","4. close":"38.5400","5. volume":"58721800"},"2003-07-25":{"1. open":"41.3900","2. high":"41.7600","3. low":"39.7500","4. close":"40.2300","5. volume":"52648700"},"2003-07-18":{"1. open":"44.2600","2. high":"44.8000","3. low":"40.8300","4. close":"41.4000","5. volume":"45054000"},"2003-07-11":{"1. open":"44.2300","2. high":"45.0900","3. low":"42.4000","4. close":"44.0200","5. volume":"39224200"},"2003-07-03":{"1. open":"43.8000","2. high":"44.6200","3. low":"42.3000","4. close":"44.2200","5. volume":"26975200"},"2003-06-27":{"1. open":"45.4500","2. high":"45.5000","3. low":"43.3000","4. close":"43.6000","5. volume":"35860300"},"2003-06-20":{"1. open":"45.6100","2. high":"46.9400","3. low":"45.1000","4. close":"45.6100","5. volume":"47781400"},"2003-06-13":{"1. open":"45.2200","2. high":"45.9400","3. low":"44.7100","4. close":"45.6000","5. volume":"32389500"},"2003-06-06":{"1. open":"44.8000","2. high":"46.3900","3. low":"43.6500","4. close":"45.2100","5. volume":"34554900"},"2003-05-30":{"1. open":"42.0800","2. high":"45.6000","3. low":"41.7000","4. close":"44.5500","5. volume":"40335200"},"2003-05-23":{"1. open":"42.9500","2. high":"42.9500","3. low":"40.6700","4. close":"42.0800","5. volume":"39770500"},"2003-05-16":{"1. open":"42.9500","2. high":"44.2000","3. low":"42.5000","4. close":"43.0500","5. volume":"41309300"},"2003-05-09":{"1. open":"42.3200","2. high":"43.5000","3. low":"41.3500","4. close":"43.3800","5. volume":"38673600"},"2003-05-02":{"1. open":"39.3000","2. high":"42.4700","3. low":"39.2200","4. close":"42.3100","5. volume":"36863400"},"2003-04-25":{"1. open":"39.6400","2. high":"40.2200","3. low":"38.5100","4. close":"39.4900","5. volume":"35319700"},"2003-04-17":{"1. open":"39.3300","2. high":"40.1500","3. low":"38.4600","4. close":"39.6400","5. volume":"28685400"},"2003-04-11":{"1. open":"40.9000","2. high":"41.0200","3. low":"38.8900","4. close":"39.1200","5. volume":"46865200"},"2003-04-04":{"1. open":"37.5000","2. high":"40.7000","3. low":"37.0400","4. close":"40.1800","5. volume":"43062100"},"2003-03-28":{"1. open":"38.4000","2. high":"39.2500","3. low":"37.8000","4. close":"38.2100","5. volume":"40684400"},"2003-03-21":{"1. open":"35.2000","2. high":"39.4300","3. low":"35.0100","4. close":"39.2900","5. volume":"43395700"},"2003-03-14":{"1. open":"35.0500","2. high":"36.0000","3. low":"34.0400","4. close":"35.1900","5. volume":"38425500"},"2003-03-07":{"1. open":"35.6200","2. high":"36.1200","3. low":"34.5100","4. close":"35.4500","5. volume":"36609200"},"2003-02-28":{"1. open":"35.2500","2. high":"35.9400","3. low":"33.7500","4. close":"35.6200","5. volume":"43120500"},"2003-02-21":{"1. open":"36.3000","2. high":"36.9400","3. low":"34.5100","4. close":"35.0800","5. volume":"35385400"},"2003-02-14":{"1. open":"37.3600","2. high":"37.3600","3. low":"34.3000","4. close":"35.8100","5. volume":"57769700"},"2003-02-07":{"1. open":"37.9500","2. high":"38.6000","3. low":"36.3000","4. close":"37.3500","5. volume":"39234800"},"2003-01-31":{"1. open":"37.2500","2. high":"38.8500","3. low":"36.4800","4. close":"38.1200","5. volume":"41783800"},"2003-01-24":{"1. open":"38.4000","2. high":"38.9800","3. low":"37.1500","4. close":"37.3500","5. volume":"36362800"},"2003-01-17":{"1. open":"39.8500","2. high":"40.1300","3. low":"37.5700","4. close":"38.0000","5. volume":"84346500"},"2003-01-10":{"1. open":"40.1800","2. high":"40.8500","3. low":"38.6900","4. close":"39.7800","5. volume":"48133100"},"2003-01-03":{"1. open":"36.7800","2. high":"40.7400","3. low":"36.6700","4. close":"40.4400","5. volume":"60777000"},"2002-12-27":{"1. open":"38.7000","2. high":"38.8000","3. low":"36.2600","4. close":"36.7800","5. volume":"30654700"},"2002-12-20":{"1. open":"40.6000","2. high":"41.8900","3. low":"38.3100","4. close":"38.7000","5. volume":"52457400"},"2002-12-13":{"1. open":"42.7000","2. high":"43.3500","3. low":"39.7400","4. close":"40.4800","5. volume":"46658700"},"2002-12-06":{"1. open":"44.0000","2. high":"44.1600","3. low":"41.1900","4. close":"42.9400","5. volume":"46517700"},"2002-11-29":{"1. open":"43.5000","2. high":"44.2500","3. low":"43.0000","4. close":"43.7800","5. volume":"27859700"},"2002-11-22":{"1. open":"45.0500","2. high":"45.8900","3. low":"43.7500","4. close":"43.8000","5. volume":"41902100"},"2002-11-15":{"1. open":"45.3000","2. high":"45.4500","3. low":"42.3800","4. close":"44.9500","5. volume":"43912100"},"2002-11-08":{"1. open":"41.9000","2. high":"46.0800","3. low":"41.5800","4. close":"45.8900","5. volume":"50014500"},"2002-11-01":{"1. open":"43.7500","2. high":"43.7500","3. low":"41.0200","4. close":"41.7300","5. volume":"40506800"},"2002-10-25":{"1. open":"43.3000","2. high":"43.8500","3. low":"41.5500","4. close":"43.0800","5. volume":"37023500"},"2002-10-18":{"1. open":"42.5000","2. high":"44.9500","3. low":"42.4000","4. close":"44.0000","5. volume":"48337700"},"2002-10-11":{"1. open":"40.5000","2. high":"41.8500","3. low":"38.0800","4. close":"41.4900","5. volume":"76365800"},"2002-10-04":{"1. open":"40.3400","2. high":"42.9900","3. low":"38.8500","4. close":"40.8900","5. volume":"53078500"},"2002-09-27":{"1. open":"41.8100","2. high":"43.8500","3. low":"40.1000","4. close":"40.3500","5. volume":"74166100"},"2002-09-20":{"1. open":"37.6400","2. high":"42.2700","3. low":"37.5000","4. close":"41.8000","5. volume":"62078500"},"2002-09-13":{"1. open":"37.4500","2. high":"39.2500","3. low":"37.1300","4. close":"37.6200","5. volume":"40011000"},"2002-09-06":{"1. open":"39.5000","2. high":"39.6300","3. low":"37.2400","4. close":"37.5000","5. volume":"37944000"},"2002-08-30":{"1. open":"40.9000","2. high":"41.7000","3. low":"38.9600","4. close":"40.0300","5. volume":"29789000"},"2002-08-23":{"1. open":"39.9500","2. high":"41.9300","3. low":"38.7500","4. close":"40.5300","5. volume":"34659200"},"2002-08-16":{"1. open":"40.3300","2. high":"40.9500","3. low":"39.1000","4. close":"39.9500","5. volume":"43094300"},"2002-08-09":{"1. open":"40.0500","2. high":"40.9000","3. low":"36.2800","4. close":"40.3300","5. volume":"54998700"},"2002-08-02":{"1. open":"39.3500","2. high":"41.4100","3. low":"39.0100","4. close":"40.1200","5. volume":"58746100"},"2002-07-26":{"1. open":"32.1400","2. high":"38.7500","3. low":"29.8000","4. close":"38.6500","5. volume":"93692200"},"2002-07-19":{"1. open":"33.9000","2. high":"35.8200","3. low":"31.9700","4. close":"32.1400","5. volume":"59308500"},"2002-07-12":{"1. open":"37.2000","2. high":"37.3000","3. low":"30.9700","4. close":"33.1500","5. volume":"98253900"},"2002-07-05":{"1. open":"38.0800","2. high":"38.7000","3. low":"36.3500","4. close":"37.4700","5. volume":"37382200"},"2002-06-28":{"1. open":"36.2500","2. high":"39.8500","3. low":"35.7600","4. close":"37.6500","5. volume":"68786800"},"2002-06-21":{"1. open":"36.9200","2. high":"39.3000","3. low":"36.1300","4. close":"36.1300","5. volume":"69546700"},"2002-06-14":{"1. open":"45.3600","2. high":"46.3400","3. low":"35.2500","4. close":"36.7500","5. volume":"143878400"},"2002-06-07":{"1. open":"47.7000","2. high":"48.0500","3. low":"44.0100","4. close":"45.3600","5. volume":"46566200"},"2002-05-31":{"1. open":"47.0000","2. high":"47.9000","3. low":"45.8100","4. close":"47.5000","5. volume":"35351400"},"2002-05-24":{"1. open":"47.3500","2. high":"48.0500","3. low":"46.3500","4. close":"46.9000","5. volume":"46693100"},"2002-05-17":{"1. open":"51.0000","2. high":"51.7900","3. low":"44.0500","4. close":"47.6000","5. volume":"145275500"},"2002-05-10":{"1. open":"53.7500","2. high":"53.8000","3. low":"50.2500","4. close":"51.2500","5. volume":"39291600"},"2002-05-03":{"1. open":"54.1200","2. high":"55.0000","3. low":"52.4300","4. close":"53.4300","5. volume":"43240000"},"2002-04-26":{"1. open":"54.8000","2. high":"55.2300","3. low":"52.7500","4. close":"54.1200","5. volume":"37058300"},"2002-04-19":{"1. open":"53.5500","2. high":"55.1700","3. low":"53.3400","4. close":"54.7500","5. volume":"29782300"},"2002-04-12":{"1. open":"52.3000","2. high":"54.8500","3. low":"51.3400","4. close":"53.6900","5. volume":"50897600"},"2002-04-05":{"1. open":"53.5500","2. high":"54.5000","3. low":"51.5000","4. close":"51.9100","5. volume":"43448100"},"2002-03-28":{"1. open":"53.5500","2. high":"53.6500","3. low":"51.5600","4. close":"52.6000","5. volume":"34466200"},"2002-03-22":{"1. open":"54.2500","2. high":"54.3000","3. low":"51.4000","4. close":"53.7000","5. volume":"60562100"},"2002-03-15":{"1. open":"53.9000","2. high":"55.8500","3. low":"52.4000","4. close":"54.0100","5. volume":"49742100"},"2002-03-08":{"1. open":"57.4900","2. high":"57.7000","3. low":"53.7000","4. close":"54.0900","5. volume":"47373100"},"2002-03-01":{"1. open":"57.6100","2. high":"57.8200","3. low":"56.0000","4. close":"57.4900","5. volume":"36682900"},"2002-02-22":{"1. open":"57.4000","2. high":"58.0000","3. low":"56.4900","4. close":"57.6100","5. volume":"29183300"},"2002-02-15":{"1. open":"54.7500","2. high":"57.9000","3. low":"54.5400","4. close":"57.3400","5. volume":"43783100"},"2002-02-08":{"1. open":"57.1900","2. high":"57.4000","3. low":"54.3900","4. close":"55.2900","5. volume":"40200500"},"2002-02-01":{"1. open":"57.4800","2. high":"57.9700","3. low":"56.0200","4. close":"57.4400","5. volume":"36486600"},"2002-01-25":{"1. open":"57.2600","2. high":"57.8800","3. low":"56.8000","4. close":"57.2400","5. volume":"33441400"},"2002-01-18":{"1. open":"56.0000","2. high":"57.7400","3. low":"55.1400","4. close":"57.4100","5. volume":"47145300"},"2002-01-11":{"1. open":"55.9000","2. high":"55.9400","3. low":"54.5000","4. close":"55.8800","5. volume":"29392200"},"2002-01-04":{"1. open":"56.2500","2. high":"56.4700","3. low":"54.9200","4. close":"55.7900","5. volume":"23876000"},"2001-12-28":{"1. open":"56.5000","2. high":"57.1700","3. low":"56.1200","4. close":"56.4800","5. volume":"14488600"},"2001-12-21":{"1. open":"54.0500","2. high":"56.7000","3. low":"53.4000","4. close":"56.5900","5. volume":"44709400"},"2001-12-14":{"1. open":"55.1400","2. high":"55.9700","3. low":"52.8500","4. close":"54.4000","5. volume":"41837900"},"2001-12-07":{"1. open":"56.0000","2. high":"56.0000","3. low":"54.5700","4. close":"55.1400","5. volume":"41406600"},"2001-11-30":{"1. open":"54.2000","2. high":"55.0000","3. low":"53.0700","4. close":"55.0000","5. volume":"31746800"},"2001-11-23":{"1. open":"51.9700","2. high":"54.1900","3. low":"51.2400","4. close":"53.9500","5. volume":"23895700"},"2001-11-16":{"1. open":"52.9500","2. high":"53.8400","3. low":"51.5600","4. close":"52.0300","5. volume":"35630700"},"2001-11-09":{"1. open":"54.9400","2. high":"54.9400","3. low":"52.9000","4. close":"53.2000","5. volume":"36559900"},"2001-11-02":{"1. open":"54.3500","2. high":"54.7000","3. low":"52.7600","4. close":"54.4500","5. volume":"36170700"},"2001-10-26":{"1. open":"52.5000","2. high":"54.9000","3. low":"52.4800","4. close":"54.3000","5. volume":"39407000"},"2001-10-19":{"1. open":"51.8500","2. high":"53.9500","3. low":"51.8000","4. close":"53.0500","5. volume":"37343600"},"2001-10-12":{"1. open":"52.2000","2. high":"52.7500","3. low":"50.4000","4. close":"51.9100","5. volume":"40543300"},"2001-10-05":{"1. open":"51.7500","2. high":"53.4100","3. low":"50.9800","4. close":"51.9800","5. volume":"47568700"},"2001-09-28":{"1. open":"47.8500","2. high":"51.9600","3. low":"46.3500","4. close":"51.8500","5. volume":"45798000"},"2001-09-21":{"1. open":"48.0000","2. high":"51.1000","3. low":"46.8400","4. close":"47.0500","5. volume":"61190400"},"2001-09-10":{"1. open":"48.9000","2. high":"50.1400","3. low":"48.4300","4. close":"49.5300","5. volume":"6017700"},"2001-09-07":{"1. open":"50.2000","2. high":"51.8800","3. low":"48.5600","4. close":"48.9000","5. volume":"29858700"},"2001-08-31":{"1. open":"52.4500","2. high":"52.5400","3. low":"49.3900","4. close":"49.7000","5. volume":"22048200"},"2001-08-24":{"1. open":"52.2500","2. high":"53.6000","3. low":"51.8000","4. close":"52.5000","5. volume":"33020600"},"2001-08-17":{"1. open":"51.8500","2. high":"53.5200","3. low":"51.6000","4. close":"52.2900","5. volume":"26761300"},"2001-08-10":{"1. open":"52.4800","2. high":"52.7500","3. low":"51.2400","4. close":"52.2800","5. volume":"26188700"},"2001-08-03":{"1. open":"51.9000","2. high":"53.8200","3. low":"51.1400","4. close":"52.2600","5. volume":"32769700"},"2001-07-27":{"1. open":"52.0800","2. high":"52.2500","3. low":"50.5100","4. close":"51.5400","5. volume":"24978300"},"2001-07-20":{"1. open":"50.1200","2. high":"52.4900","3. low":"49.3300","4. close":"52.2800","5. volume":"35692800"},"2001-07-13":{"1. open":"47.5000","2. high":"51.0000","3. low":"46.6000","4. close":"49.6000","5. volume":"60640500"},"2001-07-06":{"1. open":"49.0500","2. high":"49.8000","3. low":"46.8600","4. close":"47.3100","5. volume":"28447300"},"2001-06-29":{"1. open":"52.1500","2. high":"52.9000","3. low":"47.0000","4. close":"48.0000","5. volume":"40736400"},"2001-06-22":{"1. open":"50.5000","2. high":"53.2500","3. low":"50.5000","4. close":"52.0200","5. volume":"52694400"},"2001-06-15":{"1. open":"51.5000","2. high":"51.7200","3. low":"50.0500","4. close":"50.5600","5. volume":"35721500"},"2001-06-08":{"1. open":"51.2000","2. high":"52.8500","3. low":"50.6900","4. close":"51.5200","5. volume":"34756300"},"2001-06-01":{"1. open":"51.2000","2. high":"52.1000","3. low":"50.5100","4. close":"51.6200","5. volume":"26672200"},"2001-05-25":{"1. open":"53.0200","2. high":"53.5000","3. low":"50.5500","4. close":"51.4000","5. volume":"39839800"},"2001-05-18":{"1. open":"49.2600","2. high":"54.0000","3. low":"49.1200","4. close":"53.0200","5. volume":"62638100"},"2001-05-11":{"1. open":"46.2500","2. high":"49.4000","3. low":"46.2500","4. close":"49.2600","5. volume":"42764700"},"2001-05-04":{"1. open":"46.0000","2. high":"46.8500","3. low":"44.5600","4. close":"46.5900","5. volume":"31069500"},"2001-04-27":{"1. open":"45.4000","2. high":"46.1000","3. low":"44.1600","4. close":"45.9800","5. volume":"30692400"},"2001-04-20":{"1. open":"46.4000","2. high":"47.4900","3. low":"44.3400","4. close":"45.0900","5. volume":"40709600"},"2001-04-12":{"1. open":"47.2800","2. high":"49.5000","3. low":"45.4000","4. close":"45.6700","5. volume":"30223000"},"2001-04-06":{"1. open":"46.7500","2. high":"47.5000","3. low":"43.4300","4. close":"47.2800","5. volume":"38566500"},"2001-03-30":{"1. open":"44.0000","2. high":"47.4000","3. low":"43.6200","4. close":"47.1900","5. volume":"33891900"},"2001-03-23":{"1. open":"44.0500","2. high":"45.0000","3. low":"42.2500","4. close":"43.4800","5. volume":"44327800"},"2001-03-16":{"1. open":"47.2500","2. high":"48.5500","3. low":"44.0900","4. close":"45.0000","5. volume":"41471600"},"2001-03-09":{"1. open":"49.6000","2. high":"49.6300","3. low":"45.9200","4. close":"47.7600","5. volume":"29400100"},"2001-03-02":{"1. open":"49.2500","2. high":"49.9900","3. low":"48.0000","4. close":"49.6800","5. volume":"32555600"},"2001-02-23":{"1. open":"48.3000","2. high":"50.5500","3. low":"47.8700","4. close":"48.9000","5. volume":"28497900"},"2001-02-16":{"1. open":"48.9000","2. high":"49.5000","3. low":"46.3900","4. close":"48.5000","5. volume":"37531900"},"2001-02-09":{"1. open":"45.2900","2. high":"49.2000","3. low":"45.2900","4. close":"48.4000","5. volume":"35254300"},"2001-02-02":{"1. open":"46.9500","2. high":"47.2000","3. low":"43.4400","4. close":"45.5100","5. volume":"27184700"},"2001-01-26":{"1. open":"44.7500","2. high":"46.8800","3. low":"42.8800","4. close":"46.1900","5. volume":"45007400"},"2001-01-19":{"1. open":"43.5000","2. high":"45.8800","3. low":"43.5000","4. close":"44.0600","5. volume":"36757200"},"2001-01-12":{"1. open":"42.5000","2. high":"44.3800","3. low":"42.0000","4. close":"43.5600","5. volume":"46585800"},"2001-01-05":{"1. open":"48.1300","2. high":"49.5600","3. low":"42.2500","4. close":"43.0000","5. volume":"64103000"},"2000-12-29":{"1. open":"47.0000","2. high":"50.5600","3. low":"47.0000","4. close":"48.4400","5. volume":"19407300"},"2000-12-22":{"1. open":"47.9400","2. high":"50.7500","3. low":"46.6900","4. close":"47.3800","5. volume":"60858900"},"2000-12-15":{"1. open":"49.9400","2. high":"52.8100","3. low":"45.4400","4. close":"46.8100","5. volume":"68700000"},"2000-12-08":{"1. open":"51.8100","2. high":"55.7500","3. low":"49.0600","4. close":"49.6900","5. volume":"40452400"},"2000-12-01":{"1. open":"53.0000","2. high":"56.2500","3. low":"51.7500","4. close":"52.8800","5. volume":"41426300"},"2000-11-24":{"1. open":"52.6300","2. high":"54.1300","3. low":"52.0000","4. close":"53.0600","5. volume":"21828500"},"2000-11-17":{"1. open":"52.3800","2. high":"53.3800","3. low":"49.2500","4. close":"52.1300","5. volume":"34264600"},"2000-11-10":{"1. open":"52.0600","2. high":"53.7500","3. low":"50.5600","4. close":"52.5600","5. volume":"33910200"},"2000-11-03":{"1. open":"51.8800","2. high":"54.0600","3. low":"51.6300","4. close":"52.7500","5. volume":"41707100"},"2000-10-27":{"1. open":"49.0600","2. high":"52.5600","3. low":"48.3100","4. close":"51.6900","5. volume":"46888600"},"2000-10-20":{"1. open":"50.2500","2. high":"52.7500","3. low":"47.8100","4. close":"48.8100","5. volume":"55181900"},"2000-10-13":{"1. open":"48.3800","2. high":"50.8800","3. low":"46.6300","4. close":"50.2500","5. volume":"55327400"},"2000-10-06":{"1. open":"47.9400","2. high":"48.9400","3. low":"47.2500","4. close":"47.9400","5. volume":"31928200"},"2000-09-29":{"1. open":"48.0000","2. high":"48.2500","3. low":"45.4400","4. close":"47.5600","5. volume":"37292900"},"2000-09-22":{"1. open":"44.9400","2. high":"48.5000","3. low":"43.0600","4. close":"48.5000","5. volume":"55258100"},"2000-09-15":{"1. open":"43.9400","2. high":"45.0000","3. low":"43.2500","4. close":"44.0000","5. volume":"30845600"},"2000-09-08":{"1. open":"42.8100","2. high":"44.1900","3. low":"41.7500","4. close":"44.1300","5. volume":"21201700"},"2000-09-01":{"1. open":"42.5000","2. high":"45.0000","3. low":"42.0000","4. close":"43.2500","5. volume":"36708500"},"2000-08-25":{"1. open":"42.2500","2. high":"42.2500","3. low":"40.3800","4. close":"41.8800","5. volume":"28390500"},"2000-08-18":{"1. open":"40.3100","2. high":"41.1900","3. low":"39.6300","4. close":"40.1900","5. volume":"35903500"},"2000-08-11":{"1. open":"41.5000","2. high":"42.0000","3. low":"39.3100","4. close":"40.9300","5. volume":"37866200"},"2000-08-04":{"1. open":"42.0000","2. high":"42.9400","3. low":"41.3800","4. close":"42.0000","5. volume":"40759600"},"2000-07-28":{"1. open":"40.0000","2. high":"42.1300","3. low":"39.6900","4. close":"41.5000","5. volume":"25437600"},"2000-07-21":{"1. open":"41.5600","2. high":"43.3800","3. low":"40.0000","4. close":"40.3800","5. volume":"27003300"},"2000-07-14":{"1. open":"43.4400","2. high":"45.0000","3. low":"41.0000","4. close":"42.5000","5. volume":"41967900"},"2000-07-07":{"1. open":"44.1300","2. high":"45.1900","3. low":"43.0000","4. close":"43.3100","5. volume":"27609000"},"2000-06-30":{"1. open":"40.3800","2. high":"44.6900","3. low":"40.1300","4. close":"44.5600","5. volume":"42755900"},"2000-06-23":{"1. open":"42.5600","2. high":"43.0000","3. low":"40.0600","4. close":"40.4400","5. volume":"24073900"},"2000-06-16":{"1. open":"40.8800","2. high":"43.0600","3. low":"40.1900","4. close":"42.4400","5. volume":"22586700"},"2000-06-09":{"1. open":"38.8800","2. high":"41.7500","3. low":"38.8100","4. close":"40.8100","5. volume":"19474800"},"2000-06-02":{"1. open":"41.6900","2. high":"41.7500","3. low":"38.9400","4. close":"39.1300","5. volume":"20993800"},"2000-05-26":{"1. open":"41.6300","2. high":"44.0000","3. low":"41.3800","4. close":"41.6900","5. volume":"41892900"},"2000-05-19":{"1. open":"37.4400","2. high":"41.8800","3. low":"37.3800","4. close":"41.5600","5. volume":"47431400"},"2000-05-12":{"1. open":"38.0000","2. high":"39.0000","3. low":"36.7500","4. close":"37.0000","5. volume":"27958600"},"2000-05-05":{"1. open":"38.1300","2. high":"38.3800","3. low":"36.7500","4. close":"37.9400","5. volume":"36157900"},"2000-04-28":{"1. open":"38.7500","2. high":"40.2500","3. low":"37.6900","4. close":"38.4400","5. volume":"34455300"},"2000-04-20":{"1. open":"37.0000","2. high":"39.3800","3. low":"36.5600","4. close":"39.2500","5. volume":"26143000"},"2000-04-14":{"1. open":"36.2500","2. high":"40.0600","3. low":"35.5600","4. close":"36.8100","5. volume":"55979400"},"2000-04-07":{"1. open":"35.5600","2. high":"39.7500","3. low":"35.3800","4. close":"36.6300","5. volume":"47366400"},"2000-03-31":{"1. open":"33.5000","2. high":"36.0000","3. low":"32.5600","4. close":"35.1900","5. volume":"46474700"},"2000-03-24":{"1. open":"34.2500","2. high":"34.4400","3. low":"32.9400","4. close":"33.6200","5. volume":"32645400"},"2000-03-17":{"1. open":"30.0000","2. high":"34.8800","3. low":"29.8800","4. close":"33.5000","5. volume":"45650800"},"2000-03-10":{"1. open":"32.1900","2. high":"32.1900","3. low":"29.5000","4. close":"30.9400","5. volume":"62090200"},"2000-03-03":{"1. open":"33.5000","2. high":"34.0000","3. low":"31.8800","4. close":"32.4400","5. volume":"44908300"},"2000-02-25":{"1. open":"33.4400","2. high":"33.5000","3. low":"31.0000","4. close":"32.0600","5. volume":"34012800"},"2000-02-18":{"1. open":"34.7500","2. high":"35.3800","3. low":"32.3800","4. close":"32.6300","5. volume":"39419800"},"2000-02-11":{"1. open":"34.5000","2. high":"36.5000","3. low":"33.3800","4. close":"34.0000","5. volume":"52132600"},"2000-02-04":{"1. open":"31.8800","2. high":"35.0600","3. low":"30.9400","4. close":"34.4400","5. volume":"51295700"},"2000-01-28":{"1. open":"30.6300","2. high":"32.1900","3. low":"29.3800","4. close":"31.8800","5. volume":"87305800"},"2000-01-21":{"1. open":"33.8100","2. high":"34.5000","3. low":"30.7500","4. close":"31.1900","5. volume":"62530900"},"2000-01-14":{"1. open":"36.0000","2. high":"36.0600","3. low":"33.6900","4. close":"34.5000","5. volume":"50138300"},"2000-01-07":{"1. open":"35.2500","2. high":"36.2500","3. low":"33.5600","4. close":"35.5000","5. volume":"66327500"},"1999-12-31":{"1. open":"37.0000","2. high":"37.4400","3. low":"36.1300","4. close":"36.3100","5. volume":"31266800"},"1999-12-23":{"1. open":"37.0000","2. high":"38.0000","3. low":"36.8100","4. close":"37.0600","5. volume":"49679500"},"1999-12-17":{"1. open":"34.6300","2. high":"41.0000","3. low":"33.0000","4. close":"37.2500","5. volume":"107514700"},"1999-12-10":{"1. open":"37.1300","2. high":"37.3100","3. low":"34.1300","4. close":"34.8800","5. volume":"51824200"},"1999-12-03":{"1. open":"37.6900","2. high":"38.8800","3. low":"37.0000","4. close":"37.4400","5. volume":"39101700"},"1999-11-26":{"1. open":"38.0000","2. high":"39.0000","3. low":"37.3800","4. close":"38.0000","5. volume":"32254700"},"1999-11-19":{"1. open":"36.4400","2. high":"38.5600","3. low":"36.3800","4. close":"37.5000","5. volume":"64809900"},"1999-11-12":{"1. open":"38.5600","2. high":"39.0000","3. low":"36.1300","4. close":"36.4400","5. volume":"72396600"}}} \ No newline at end of file diff --git a/Backend/data/weekly_ACA.json b/Backend/data/weekly_ACA.json new file mode 100644 index 00000000..1ba68308 --- /dev/null +++ b/Backend/data/weekly_ACA.json @@ -0,0 +1 @@ +{"Meta Data":{"1. Information":"Weekly Prices (open, high, low, close) and Volumes","2. Symbol":"ACA","3. Last Refreshed":"2022-03-28","4. Time Zone":"US/Eastern"},"Weekly Time Series":{"2022-03-28":{"1. open":"57.8900","2. high":"58.1000","3. low":"57.3300","4. close":"57.9300","5. volume":"169219"},"2022-03-25":{"1. open":"57.3500","2. high":"59.1000","3. low":"56.2300","4. close":"58.1400","5. volume":"1154152"},"2022-03-18":{"1. open":"57.7100","2. high":"58.7900","3. low":"55.6900","4. close":"57.4800","5. volume":"1764852"},"2022-03-11":{"1. open":"54.5200","2. high":"58.5100","3. low":"53.6500","4. close":"57.5100","5. volume":"2092580"},"2022-03-04":{"1. open":"50.7100","2. high":"55.1900","3. low":"50.7100","4. close":"54.4800","5. volume":"1496676"},"2022-02-25":{"1. open":"47.0800","2. high":"51.5300","3. low":"45.3600","4. close":"51.5000","5. volume":"1039482"},"2022-02-18":{"1. open":"44.3900","2. high":"48.4200","3. low":"43.9500","4. close":"47.3200","5. volume":"1358733"},"2022-02-11":{"1. open":"44.0000","2. high":"46.2100","3. low":"43.4200","4. close":"44.1700","5. volume":"1308901"},"2022-02-04":{"1. open":"45.4900","2. high":"46.9300","3. low":"43.4900","4. close":"44.1100","5. volume":"955884"},"2022-01-28":{"1. open":"47.1400","2. high":"49.9900","3. low":"43.8500","4. close":"45.9100","5. volume":"1053461"},"2022-01-21":{"1. open":"51.8300","2. high":"52.8000","3. low":"47.4800","4. close":"47.8600","5. volume":"955125"},"2022-01-14":{"1. open":"51.2100","2. high":"52.4600","3. low":"49.5050","4. close":"52.4100","5. volume":"981405"},"2022-01-07":{"1. open":"53.2400","2. high":"55.6800","3. low":"51.3100","4. close":"51.3600","5. volume":"734649"},"2021-12-31":{"1. open":"51.9500","2. high":"53.3500","3. low":"51.2501","4. close":"52.7000","5. volume":"625368"},"2021-12-23":{"1. open":"50.4200","2. high":"52.5700","3. low":"47.6500","4. close":"51.8900","5. volume":"767568"},"2021-12-17":{"1. open":"54.8100","2. high":"55.7650","3. low":"50.9200","4. close":"51.5000","5. volume":"2560059"},"2021-12-10":{"1. open":"54.5200","2. high":"57.0400","3. low":"54.2400","4. close":"55.0500","5. volume":"907954"},"2021-12-03":{"1. open":"55.2500","2. high":"55.2500","3. low":"50.6500","4. close":"53.4900","5. volume":"1152289"},"2021-11-26":{"1. open":"57.9900","2. high":"58.9600","3. low":"53.7000","4. close":"54.5000","5. volume":"565297"},"2021-11-19":{"1. open":"55.8700","2. high":"57.9200","3. low":"54.9500","4. close":"57.4300","5. volume":"1340971"},"2021-11-12":{"1. open":"55.7200","2. high":"57.0550","3. low":"54.7250","4. close":"55.4000","5. volume":"890674"},"2021-11-05":{"1. open":"52.0700","2. high":"55.4000","3. low":"50.7450","4. close":"55.0500","5. volume":"1114675"},"2021-10-29":{"1. open":"52.7600","2. high":"54.0500","3. low":"51.5900","4. close":"51.7300","5. volume":"820068"},"2021-10-22":{"1. open":"51.4900","2. high":"53.7300","3. low":"51.2050","4. close":"52.9200","5. volume":"514881"},"2021-10-15":{"1. open":"52.0200","2. high":"53.6800","3. low":"50.8200","4. close":"52.0200","5. volume":"592667"},"2021-10-08":{"1. open":"51.1700","2. high":"52.9100","3. low":"49.6200","4. close":"51.8100","5. volume":"973940"},"2021-10-01":{"1. open":"49.2000","2. high":"51.9200","3. low":"49.0900","4. close":"51.4100","5. volume":"1174492"},"2021-09-24":{"1. open":"49.4500","2. high":"50.3900","3. low":"48.3500","4. close":"48.8800","5. volume":"1277907"},"2021-09-17":{"1. open":"49.4700","2. high":"50.7700","3. low":"48.1800","4. close":"50.2500","5. volume":"1883470"},"2021-09-10":{"1. open":"50.7800","2. high":"50.7800","3. low":"48.2600","4. close":"49.1600","5. volume":"737970"},"2021-09-03":{"1. open":"52.4900","2. high":"52.5300","3. low":"49.7800","4. close":"50.6400","5. volume":"1093613"},"2021-08-27":{"1. open":"50.8100","2. high":"52.8900","3. low":"50.3600","4. close":"52.2300","5. volume":"994189"},"2021-08-20":{"1. open":"50.3400","2. high":"50.9050","3. low":"48.5100","4. close":"50.5700","5. volume":"1267369"},"2021-08-13":{"1. open":"50.7900","2. high":"52.0800","3. low":"49.2900","4. close":"50.8800","5. volume":"2934719"},"2021-08-06":{"1. open":"54.9100","2. high":"56.4400","3. low":"50.3800","4. close":"51.3600","5. volume":"1465302"},"2021-07-30":{"1. open":"53.0600","2. high":"55.8800","3. low":"52.0400","4. close":"54.7600","5. volume":"820073"},"2021-07-23":{"1. open":"51.7200","2. high":"54.7142","3. low":"49.9300","4. close":"52.5900","5. volume":"1224042"},"2021-07-16":{"1. open":"55.4000","2. high":"56.5800","3. low":"52.4900","4. close":"52.8000","5. volume":"792603"},"2021-07-09":{"1. open":"58.0900","2. high":"58.0900","3. low":"53.7100","4. close":"56.0100","5. volume":"662122"},"2021-07-02":{"1. open":"59.4200","2. high":"60.3220","3. low":"57.5000","4. close":"58.0400","5. volume":"908137"},"2021-06-25":{"1. open":"56.8800","2. high":"60.4700","3. low":"56.2300","4. close":"59.3300","5. volume":"1174015"},"2021-06-18":{"1. open":"61.3200","2. high":"61.3200","3. low":"55.3500","4. close":"56.0700","5. volume":"1456167"},"2021-06-11":{"1. open":"60.1600","2. high":"61.4500","3. low":"58.2700","4. close":"61.0900","5. volume":"1051173"},"2021-06-04":{"1. open":"64.0700","2. high":"64.1300","3. low":"59.7600","4. close":"60.1500","5. volume":"826673"},"2021-05-28":{"1. open":"62.7200","2. high":"64.5000","3. low":"61.5500","4. close":"63.5000","5. volume":"860636"},"2021-05-21":{"1. open":"62.0700","2. high":"62.9900","3. low":"58.7100","4. close":"62.2600","5. volume":"881538"},"2021-05-14":{"1. open":"65.2400","2. high":"65.6600","3. low":"59.0700","4. close":"62.8800","5. volume":"1021773"},"2021-05-07":{"1. open":"61.5100","2. high":"65.7800","3. low":"60.9000","4. close":"65.0400","5. volume":"1075396"},"2021-04-30":{"1. open":"64.0100","2. high":"64.7700","3. low":"59.1800","4. close":"60.2900","5. volume":"1113486"},"2021-04-23":{"1. open":"63.5800","2. high":"63.8700","3. low":"60.9300","4. close":"63.3800","5. volume":"933295"},"2021-04-16":{"1. open":"63.4700","2. high":"64.9200","3. low":"61.3400","4. close":"64.1800","5. volume":"1012153"},"2021-04-09":{"1. open":"65.8100","2. high":"66.1800","3. low":"61.6200","4. close":"63.3300","5. volume":"2206758"},"2021-04-01":{"1. open":"64.1100","2. high":"65.8300","3. low":"61.3100","4. close":"65.8100","5. volume":"1559864"},"2021-03-26":{"1. open":"60.6500","2. high":"64.5400","3. low":"57.0000","4. close":"64.4400","5. volume":"2014208"},"2021-03-19":{"1. open":"65.9700","2. high":"67.8500","3. low":"60.4000","4. close":"61.0400","5. volume":"2065812"},"2021-03-12":{"1. open":"59.7100","2. high":"66.4700","3. low":"59.3800","4. close":"66.3700","5. volume":"1384932"},"2021-03-05":{"1. open":"58.0900","2. high":"59.2300","3. low":"56.3900","4. close":"59.1500","5. volume":"1424626"},"2021-02-26":{"1. open":"64.1600","2. high":"68.4600","3. low":"54.5800","4. close":"56.7300","5. volume":"2237285"},"2021-02-19":{"1. open":"65.0000","2. high":"65.7900","3. low":"62.9650","4. close":"65.3200","5. volume":"806139"},"2021-02-12":{"1. open":"61.9000","2. high":"64.5900","3. low":"60.3150","4. close":"64.5700","5. volume":"1161200"},"2021-02-05":{"1. open":"56.2700","2. high":"61.7900","3. low":"55.7000","4. close":"61.5300","5. volume":"1005061"},"2021-01-29":{"1. open":"63.0100","2. high":"63.0100","3. low":"55.3300","4. close":"55.7900","5. volume":"1066328"},"2021-01-22":{"1. open":"63.6800","2. high":"63.6800","3. low":"60.4500","4. close":"62.4800","5. volume":"859687"},"2021-01-15":{"1. open":"60.3100","2. high":"64.1150","3. low":"60.3100","4. close":"63.1400","5. volume":"1601471"},"2021-01-08":{"1. open":"54.6700","2. high":"62.1300","3. low":"53.6000","4. close":"61.0000","5. volume":"2148063"},"2020-12-31":{"1. open":"54.9100","2. high":"55.8000","3. low":"53.8600","4. close":"54.9300","5. volume":"682284"},"2020-12-24":{"1. open":"52.8600","2. high":"55.0500","3. low":"52.1950","4. close":"54.2800","5. volume":"677471"},"2020-12-18":{"1. open":"55.0600","2. high":"55.7900","3. low":"52.5600","4. close":"53.9800","5. volume":"2216140"},"2020-12-11":{"1. open":"54.5900","2. high":"55.8700","3. low":"53.6700","4. close":"54.3900","5. volume":"889966"},"2020-12-04":{"1. open":"53.7600","2. high":"54.8700","3. low":"51.4100","4. close":"54.7500","5. volume":"1040292"},"2020-11-27":{"1. open":"53.4100","2. high":"57.2600","3. low":"53.1400","4. close":"54.4200","5. volume":"874046"},"2020-11-20":{"1. open":"52.2900","2. high":"55.7100","3. low":"51.7000","4. close":"52.9400","5. volume":"1296655"},"2020-11-13":{"1. open":"53.1700","2. high":"54.7700","3. low":"49.2200","4. close":"51.0300","5. volume":"1469695"},"2020-11-06":{"1. open":"46.7800","2. high":"50.8400","3. low":"45.2200","4. close":"49.2700","5. volume":"1523818"},"2020-10-30":{"1. open":"47.5600","2. high":"47.9988","3. low":"44.8572","4. close":"46.1700","5. volume":"1134570"},"2020-10-23":{"1. open":"48.6900","2. high":"51.4900","3. low":"47.3200","4. close":"48.1300","5. volume":"1778070"},"2020-10-16":{"1. open":"46.8900","2. high":"49.3900","3. low":"46.1000","4. close":"48.4000","5. volume":"882084"},"2020-10-09":{"1. open":"45.1200","2. high":"47.4000","3. low":"45.1200","4. close":"46.7700","5. volume":"1154313"},"2020-10-02":{"1. open":"43.9200","2. high":"45.4200","3. low":"43.1400","4. close":"44.8400","5. volume":"1013287"},"2020-09-25":{"1. open":"44.5000","2. high":"45.1000","3. low":"41.7300","4. close":"43.3800","5. volume":"1608636"},"2020-09-18":{"1. open":"44.7900","2. high":"46.2500","3. low":"42.8700","4. close":"45.4000","5. volume":"1787063"},"2020-09-11":{"1. open":"47.8800","2. high":"47.8800","3. low":"43.7600","4. close":"44.4600","5. volume":"1128103"},"2020-09-04":{"1. open":"46.3000","2. high":"48.6400","3. low":"45.8800","4. close":"48.0800","5. volume":"1086414"},"2020-08-28":{"1. open":"45.8900","2. high":"46.6500","3. low":"45.3600","4. close":"46.5000","5. volume":"778979"},"2020-08-21":{"1. open":"45.3400","2. high":"46.8100","3. low":"44.4000","4. close":"45.3200","5. volume":"1104834"},"2020-08-14":{"1. open":"45.9000","2. high":"47.0300","3. low":"44.2400","4. close":"45.1200","5. volume":"960797"},"2020-08-07":{"1. open":"42.8600","2. high":"45.8300","3. low":"42.0000","4. close":"45.7500","5. volume":"1516125"},"2020-07-31":{"1. open":"41.5400","2. high":"43.0799","3. low":"40.4400","4. close":"42.2200","5. volume":"1232770"},"2020-07-24":{"1. open":"42.4200","2. high":"43.9900","3. low":"41.5200","4. close":"41.6000","5. volume":"944711"},"2020-07-17":{"1. open":"39.4700","2. high":"43.9800","3. low":"38.8100","4. close":"42.8500","5. volume":"1292149"},"2020-07-10":{"1. open":"42.1000","2. high":"42.3000","3. low":"37.2500","4. close":"38.9900","5. volume":"1105465"},"2020-07-02":{"1. open":"39.7800","2. high":"42.6600","3. low":"39.7800","4. close":"41.3400","5. volume":"819973"},"2020-06-26":{"1. open":"40.6300","2. high":"42.3400","3. low":"38.8600","4. close":"39.4100","5. volume":"1529877"},"2020-06-19":{"1. open":"37.9300","2. high":"44.4240","3. low":"37.9300","4. close":"40.8300","5. volume":"1719458"},"2020-06-12":{"1. open":"44.5100","2. high":"45.5700","3. low":"38.3800","4. close":"39.5900","5. volume":"1860768"},"2020-06-05":{"1. open":"38.2800","2. high":"45.8700","3. low":"37.7400","4. close":"45.0300","5. volume":"2237871"},"2020-05-29":{"1. open":"37.2200","2. high":"40.0500","3. low":"36.8500","4. close":"38.1700","5. volume":"1516067"},"2020-05-22":{"1. open":"33.8800","2. high":"35.9900","3. low":"33.2100","4. close":"35.7200","5. volume":"1703860"},"2020-05-15":{"1. open":"31.9300","2. high":"33.9100","3. low":"31.0300","4. close":"32.3000","5. volume":"1691708"},"2020-05-08":{"1. open":"34.6100","2. high":"36.3360","3. low":"31.8500","4. close":"32.6100","5. volume":"2358138"},"2020-05-01":{"1. open":"38.3000","2. high":"42.7800","3. low":"33.2500","4. close":"35.2300","5. volume":"2293433"},"2020-04-24":{"1. open":"38.8600","2. high":"40.9000","3. low":"37.5100","4. close":"38.2900","5. volume":"1646089"},"2020-04-17":{"1. open":"41.5000","2. high":"42.3600","3. low":"37.1900","4. close":"41.3800","5. volume":"1705239"},"2020-04-09":{"1. open":"39.1100","2. high":"42.4700","3. low":"36.4300","4. close":"41.5000","5. volume":"1650176"},"2020-04-03":{"1. open":"36.4800","2. high":"39.9000","3. low":"35.7700","4. close":"37.5000","5. volume":"2063010"},"2020-03-27":{"1. open":"31.7900","2. high":"39.4000","3. low":"29.2100","4. close":"36.3800","5. volume":"2168829"},"2020-03-20":{"1. open":"32.4500","2. high":"37.0500","3. low":"28.1400","4. close":"31.1600","5. volume":"2375866"},"2020-03-13":{"1. open":"36.2300","2. high":"39.0700","3. low":"32.7200","4. close":"37.1800","5. volume":"1834361"},"2020-03-06":{"1. open":"43.0000","2. high":"44.8500","3. low":"40.2100","4. close":"41.4700","5. volume":"1895025"},"2020-02-28":{"1. open":"42.9900","2. high":"44.2300","3. low":"38.2200","4. close":"42.9600","5. volume":"2182542"},"2020-02-21":{"1. open":"46.8300","2. high":"47.1600","3. low":"44.2000","4. close":"44.3900","5. volume":"989260"},"2020-02-14":{"1. open":"45.0200","2. high":"47.8500","3. low":"44.8720","4. close":"46.9900","5. volume":"1028056"},"2020-02-07":{"1. open":"43.9300","2. high":"46.8700","3. low":"43.7200","4. close":"45.2400","5. volume":"1373461"},"2020-01-31":{"1. open":"44.0300","2. high":"45.4900","3. low":"43.6900","4. close":"43.7500","5. volume":"1634271"},"2020-01-24":{"1. open":"46.2100","2. high":"46.4500","3. low":"44.2100","4. close":"44.7700","5. volume":"1115563"},"2020-01-17":{"1. open":"45.9300","2. high":"47.4700","3. low":"45.1200","4. close":"46.5200","5. volume":"1220245"},"2020-01-10":{"1. open":"45.2600","2. high":"46.3300","3. low":"44.7100","4. close":"45.5500","5. volume":"1596150"},"2020-01-03":{"1. open":"44.8100","2. high":"45.9800","3. low":"44.1800","4. close":"45.7000","5. volume":"1658483"},"2019-12-27":{"1. open":"45.3700","2. high":"45.4600","3. low":"44.7650","4. close":"44.9000","5. volume":"758992"},"2019-12-20":{"1. open":"43.5200","2. high":"46.3300","3. low":"43.5000","4. close":"45.2200","5. volume":"3158693"},"2019-12-13":{"1. open":"40.3500","2. high":"43.6300","3. low":"39.6380","4. close":"43.3300","5. volume":"1747096"},"2019-12-06":{"1. open":"39.3000","2. high":"40.9600","3. low":"37.7800","4. close":"40.4900","5. volume":"1778372"},"2019-11-29":{"1. open":"38.2400","2. high":"39.9200","3. low":"38.0500","4. close":"39.2100","5. volume":"1048858"},"2019-11-22":{"1. open":"38.1400","2. high":"38.6200","3. low":"37.7850","4. close":"38.2800","5. volume":"1530187"},"2019-11-15":{"1. open":"38.6600","2. high":"38.8400","3. low":"37.3330","4. close":"38.2200","5. volume":"864848"},"2019-11-08":{"1. open":"38.3900","2. high":"40.2900","3. low":"37.9000","4. close":"38.8700","5. volume":"2229856"},"2019-11-01":{"1. open":"36.0000","2. high":"38.9500","3. low":"35.6700","4. close":"37.8800","5. volume":"1968439"},"2019-10-25":{"1. open":"33.6700","2. high":"36.2200","3. low":"33.3500","4. close":"35.8600","5. volume":"1796834"},"2019-10-18":{"1. open":"32.8600","2. high":"34.2000","3. low":"32.5100","4. close":"33.3300","5. volume":"2970168"},"2019-10-11":{"1. open":"33.7700","2. high":"34.1800","3. low":"32.4700","4. close":"33.0100","5. volume":"1570858"},"2019-10-04":{"1. open":"34.0900","2. high":"34.5900","3. low":"32.9200","4. close":"33.8900","5. volume":"1708219"},"2019-09-27":{"1. open":"34.0900","2. high":"34.9500","3. low":"33.7100","4. close":"34.0500","5. volume":"1498486"},"2019-09-20":{"1. open":"34.7500","2. high":"35.0450","3. low":"34.0200","4. close":"34.3500","5. volume":"1978215"},"2019-09-13":{"1. open":"33.9700","2. high":"35.1100","3. low":"33.8800","4. close":"34.9300","5. volume":"2768553"},"2019-09-06":{"1. open":"32.0900","2. high":"34.3100","3. low":"31.6200","4. close":"33.8300","5. volume":"1568250"},"2019-08-30":{"1. open":"32.3300","2. high":"32.8400","3. low":"30.7100","4. close":"32.4900","5. volume":"1063588"},"2019-08-23":{"1. open":"32.5500","2. high":"33.8100","3. low":"31.5200","4. close":"31.8200","5. volume":"1669119"},"2019-08-16":{"1. open":"32.8800","2. high":"33.7200","3. low":"30.7210","4. close":"32.0300","5. volume":"1982003"},"2019-08-09":{"1. open":"34.7000","2. high":"35.0000","3. low":"32.8000","4. close":"33.1100","5. volume":"2101300"},"2019-08-02":{"1. open":"36.3700","2. high":"37.9900","3. low":"34.5500","4. close":"35.1600","5. volume":"2440107"},"2019-07-26":{"1. open":"36.3400","2. high":"37.9000","3. low":"35.5100","4. close":"36.4500","5. volume":"1125939"},"2019-07-19":{"1. open":"36.0300","2. high":"37.0200","3. low":"35.1300","4. close":"36.4400","5. volume":"1322087"},"2019-07-12":{"1. open":"37.1000","2. high":"37.7600","3. low":"35.8710","4. close":"36.0300","5. volume":"2556907"},"2019-07-05":{"1. open":"38.1500","2. high":"38.6800","3. low":"36.2600","4. close":"37.2900","5. volume":"1417509"},"2019-06-28":{"1. open":"36.5600","2. high":"37.9300","3. low":"35.6100","4. close":"37.6300","5. volume":"7323716"},"2019-06-21":{"1. open":"36.5500","2. high":"37.2400","3. low":"35.4400","4. close":"36.5700","5. volume":"2460042"},"2019-06-14":{"1. open":"38.4800","2. high":"39.7400","3. low":"35.6400","4. close":"36.3400","5. volume":"2963861"},"2019-06-07":{"1. open":"33.8700","2. high":"39.1400","3. low":"33.6100","4. close":"38.3400","5. volume":"2136577"},"2019-05-31":{"1. open":"34.3600","2. high":"35.6650","3. low":"33.6600","4. close":"33.8900","5. volume":"888682"},"2019-05-24":{"1. open":"35.4000","2. high":"36.6860","3. low":"34.2700","4. close":"34.4200","5. volume":"1866115"},"2019-05-17":{"1. open":"35.1700","2. high":"37.0600","3. low":"35.1200","4. close":"35.5800","5. volume":"1191973"},"2019-05-10":{"1. open":"36.1900","2. high":"38.0000","3. low":"35.1300","4. close":"35.8800","5. volume":"1535128"},"2019-05-03":{"1. open":"30.8100","2. high":"38.6500","3. low":"29.7500","4. close":"37.4300","5. volume":"2422910"},"2019-04-26":{"1. open":"29.7200","2. high":"31.5500","3. low":"29.4500","4. close":"30.8600","5. volume":"1632061"},"2019-04-18":{"1. open":"30.4900","2. high":"31.0100","3. low":"29.5200","4. close":"29.9100","5. volume":"674047"},"2019-04-12":{"1. open":"31.2700","2. high":"31.5850","3. low":"30.2450","4. close":"30.6000","5. volume":"653577"},"2019-04-05":{"1. open":"30.8000","2. high":"32.3100","3. low":"30.0600","4. close":"31.3000","5. volume":"1213560"},"2019-03-29":{"1. open":"29.1400","2. high":"30.8400","3. low":"28.3400","4. close":"30.5500","5. volume":"2423782"},"2019-03-22":{"1. open":"31.6700","2. high":"32.2800","3. low":"28.9100","4. close":"29.0400","5. volume":"2248961"},"2019-03-15":{"1. open":"33.6500","2. high":"34.6300","3. low":"31.5500","4. close":"31.9300","5. volume":"1972945"},"2019-03-08":{"1. open":"34.1600","2. high":"35.1500","3. low":"32.2700","4. close":"33.7200","5. volume":"1411148"},"2019-03-01":{"1. open":"31.1700","2. high":"34.9900","3. low":"30.9600","4. close":"33.9300","5. volume":"1441274"},"2019-02-22":{"1. open":"31.3200","2. high":"32.5000","3. low":"30.8003","4. close":"31.0000","5. volume":"1222083"},"2019-02-15":{"1. open":"29.4900","2. high":"31.6000","3. low":"28.5100","4. close":"31.4600","5. volume":"1522950"},"2019-02-08":{"1. open":"28.9400","2. high":"30.0970","3. low":"28.7000","4. close":"29.5300","5. volume":"873454"},"2019-02-01":{"1. open":"28.9800","2. high":"29.9100","3. low":"28.2200","4. close":"29.0000","5. volume":"957727"},"2019-01-25":{"1. open":"29.3600","2. high":"29.6200","3. low":"28.1800","4. close":"29.3500","5. volume":"1035054"},"2019-01-18":{"1. open":"29.1900","2. high":"30.2500","3. low":"28.2900","4. close":"29.8100","5. volume":"1306407"},"2019-01-11":{"1. open":"29.0000","2. high":"31.0000","3. low":"28.2500","4. close":"29.2800","5. volume":"1847433"},"2019-01-04":{"1. open":"27.6200","2. high":"29.3500","3. low":"26.5694","4. close":"29.0100","5. volume":"1074988"},"2018-12-28":{"1. open":"24.4900","2. high":"27.8752","3. low":"24.3800","4. close":"27.4500","5. volume":"1111251"},"2018-12-21":{"1. open":"24.3000","2. high":"24.7000","3. low":"22.9400","4. close":"24.4900","5. volume":"3557869"},"2018-12-14":{"1. open":"25.8600","2. high":"26.4400","3. low":"23.4020","4. close":"24.3700","5. volume":"2665808"},"2018-12-07":{"1. open":"28.0000","2. high":"29.8200","3. low":"26.2027","4. close":"26.3300","5. volume":"1680520"},"2018-11-30":{"1. open":"28.4200","2. high":"28.8600","3. low":"26.0000","4. close":"27.3400","5. volume":"1977756"},"2018-11-23":{"1. open":"31.3000","2. high":"32.2500","3. low":"27.5800","4. close":"27.8000","5. volume":"1146316"},"2018-11-16":{"1. open":"32.6000","2. high":"32.6000","3. low":"30.0500","4. close":"31.3000","5. volume":"3319975"},"2018-11-09":{"1. open":"28.3900","2. high":"34.9150","3. low":"27.5700","4. close":"32.5800","5. volume":"9600177"}}} \ No newline at end of file diff --git a/Backend/data/weekly_IBM.json b/Backend/data/weekly_IBM.json index 94c4c6dd..71459edb 100644 --- a/Backend/data/weekly_IBM.json +++ b/Backend/data/weekly_IBM.json @@ -1 +1 @@ -{"Note":"Thank you for using Alpha Vantage! Our standard API call frequency is 5 calls per minute and 500 calls per day. Please visit https://www.alphavantage.co/premium/ if you would like to target a higher API call frequency."} \ No newline at end of file +{"Meta Data":{"1. Information":"Weekly Prices (open, high, low, close) and Volumes","2. Symbol":"IBM","3. Last Refreshed":"2022-03-28","4. Time Zone":"US/Eastern"},"Weekly Time Series":{"2022-03-28":{"1. open":"130.8200","2. high":"131.5000","3. low":"129.6000","4. close":"131.4700","5. volume":"2483492"},"2022-03-25":{"1. open":"129.0000","2. high":"131.4000","3. low":"127.4000","4. close":"131.3500","5. volume":"15440952"},"2022-03-18":{"1. open":"124.4500","2. high":"128.9300","3. low":"122.6850","4. close":"128.7600","5. volume":"22675632"},"2022-03-11":{"1. open":"126.4700","2. high":"128.3450","3. low":"123.1250","4. close":"123.9600","5. volume":"23784887"},"2022-03-04":{"1. open":"122.2100","2. high":"127.3500","3. low":"120.7000","4. close":"126.6200","5. volume":"26131658"},"2022-02-25":{"1. open":"124.2000","2. high":"125.0000","3. low":"118.8100","4. close":"124.1800","5. volume":"20417161"},"2022-02-18":{"1. open":"132.5900","2. high":"132.6500","3. low":"123.6100","4. close":"124.3500","5. volume":"26022824"},"2022-02-11":{"1. open":"137.4500","2. high":"138.3500","3. low":"132.3800","4. close":"132.6900","5. volume":"23489144"},"2022-02-04":{"1. open":"134.0900","2. high":"138.8200","3. low":"132.3000","4. close":"137.1500","5. volume":"27665550"},"2022-01-28":{"1. open":"127.9900","2. high":"137.3361","3. low":"124.1930","4. close":"134.5000","5. volume":"52800401"},"2022-01-21":{"1. open":"132.9500","2. high":"133.9000","3. low":"129.2700","4. close":"129.3500","5. volume":"20520487"},"2022-01-14":{"1. open":"134.4700","2. high":"136.2000","3. low":"127.9700","4. close":"134.2100","5. volume":"32044685"},"2022-01-07":{"1. open":"134.0700","2. high":"142.2000","3. low":"132.5100","4. close":"134.8300","5. volume":"36013766"},"2021-12-31":{"1. open":"130.6300","2. high":"134.9900","3. low":"129.9500","4. close":"133.6600","5. volume":"18454937"},"2021-12-23":{"1. open":"125.7200","2. high":"130.9600","3. low":"124.7000","4. close":"130.6300","5. volume":"17369625"},"2021-12-17":{"1. open":"123.7600","2. high":"128.6400","3. low":"120.7900","4. close":"127.4000","5. volume":"35216850"},"2021-12-10":{"1. open":"119.4000","2. high":"125.3300","3. low":"119.4000","4. close":"124.0900","5. volume":"25031512"},"2021-12-03":{"1. open":"118.6200","2. high":"119.6100","3. low":"116.4500","4. close":"118.8400","5. volume":"36059651"},"2021-11-26":{"1. open":"116.0000","2. high":"118.8100","3. low":"114.5600","4. close":"115.8100","5. volume":"17875027"},"2021-11-19":{"1. open":"119.5400","2. high":"120.1600","3. low":"115.2700","4. close":"116.0500","5. volume":"24272797"},"2021-11-12":{"1. open":"123.9850","2. high":"124.7800","3. low":"118.7800","4. close":"118.9600","5. volume":"29109912"},"2021-11-05":{"1. open":"125.0500","2. high":"127.2900","3. low":"119.9000","4. close":"123.6100","5. volume":"29791780"},"2021-10-29":{"1. open":"127.5300","2. high":"128.6500","3. low":"124.6200","4. close":"125.1000","5. volume":"34288134"},"2021-10-22":{"1. open":"144.0000","2. high":"144.9400","3. low":"126.6110","4. close":"127.8800","5. volume":"59731582"},"2021-10-15":{"1. open":"143.5000","2. high":"144.8500","3. low":"139.6600","4. close":"144.6100","5. volume":"16262687"},"2021-10-08":{"1. open":"142.7400","2. high":"146.0000","3. low":"140.8900","4. close":"143.2200","5. volume":"27211291"},"2021-10-01":{"1. open":"137.9600","2. high":"143.9700","3. low":"136.4400","4. close":"143.3200","5. volume":"23824191"},"2021-09-24":{"1. open":"133.9000","2. high":"138.4800","3. low":"132.7800","4. close":"137.4900","5. volume":"18425230"},"2021-09-17":{"1. open":"138.4000","2. high":"138.9900","3. low":"135.0500","4. close":"135.2300","5. volume":"20130213"},"2021-09-10":{"1. open":"139.6500","2. high":"139.7900","3. low":"137.0000","4. close":"137.0200","5. volume":"13754250"},"2021-09-03":{"1. open":"139.5000","2. high":"140.9400","3. low":"138.8150","4. close":"139.5800","5. volume":"13345045"},"2021-08-27":{"1. open":"139.6200","2. high":"140.8000","3. low":"138.4000","4. close":"139.4100","5. volume":"12376600"},"2021-08-20":{"1. open":"143.2300","2. high":"143.7400","3. low":"137.2100","4. close":"139.1100","5. volume":"16189007"},"2021-08-13":{"1. open":"142.2000","2. high":"143.5800","3. low":"140.3400","4. close":"143.1800","5. volume":"18462255"},"2021-08-06":{"1. open":"141.4500","2. high":"144.7000","3. low":"141.0300","4. close":"144.0900","5. volume":"16428567"},"2021-07-30":{"1. open":"141.3900","2. high":"143.6400","3. low":"140.7900","4. close":"140.9600","5. volume":"16120616"},"2021-07-23":{"1. open":"136.4500","2. high":"144.9200","3. low":"136.2089","4. close":"141.3400","5. volume":"34786264"},"2021-07-16":{"1. open":"141.4300","2. high":"141.9599","3. low":"138.5900","4. close":"138.9000","5. volume":"18659679"},"2021-07-09":{"1. open":"139.9900","2. high":"141.9800","3. low":"137.1000","4. close":"141.5200","5. volume":"21544898"},"2021-07-02":{"1. open":"147.0100","2. high":"147.5000","3. low":"139.4600","4. close":"140.0200","5. volume":"29077036"},"2021-06-25":{"1. open":"144.1100","2. high":"147.0700","3. low":"144.0600","4. close":"146.8400","5. volume":"17129373"},"2021-06-18":{"1. open":"150.7100","2. high":"151.0300","3. low":"143.0400","4. close":"143.1200","5. volume":"23177438"},"2021-06-11":{"1. open":"147.5500","2. high":"152.8400","3. low":"147.1700","4. close":"151.2800","5. volume":"22042806"},"2021-06-04":{"1. open":"145.0000","2. high":"147.5500","3. low":"143.7500","4. close":"147.4200","5. volume":"12453017"},"2021-05-28":{"1. open":"145.0600","2. high":"145.3900","3. low":"143.0400","4. close":"143.7400","5. volume":"18483838"},"2021-05-21":{"1. open":"144.4400","2. high":"145.8000","3. low":"140.9200","4. close":"144.7400","5. volume":"20546126"},"2021-05-14":{"1. open":"145.8000","2. high":"148.3800","3. low":"141.1400","4. close":"144.6800","5. volume":"27415665"},"2021-05-07":{"1. open":"143.8100","2. high":"148.5150","3. low":"143.5500","4. close":"145.4600","5. volume":"31590796"},"2021-04-30":{"1. open":"142.4200","2. high":"148.7400","3. low":"140.5500","4. close":"141.8800","5. volume":"25588990"},"2021-04-23":{"1. open":"133.6000","2. high":"144.7400","3. low":"132.5800","4. close":"142.4300","5. volume":"47246234"},"2021-04-16":{"1. open":"135.0200","2. high":"135.3700","3. low":"130.3800","4. close":"133.5900","5. volume":"26831249"},"2021-04-09":{"1. open":"133.6400","2. high":"136.6900","3. low":"133.4000","4. close":"135.7300","5. volume":"19179860"},"2021-04-01":{"1. open":"135.9800","2. high":"137.0700","3. low":"132.2700","4. close":"133.2300","5. volume":"18432506"},"2021-03-26":{"1. open":"128.5000","2. high":"136.4800","3. low":"127.8900","4. close":"136.3800","5. volume":"23647858"},"2021-03-19":{"1. open":"127.7700","2. high":"130.9950","3. low":"127.3400","4. close":"128.9000","5. volume":"28046462"},"2021-03-12":{"1. open":"122.9900","2. high":"128.6400","3. low":"122.8800","4. close":"127.6100","5. volume":"29253064"},"2021-03-05":{"1. open":"120.3500","2. high":"123.7500","3. low":"118.7550","4. close":"122.8300","5. volume":"32662092"},"2021-02-26":{"1. open":"118.5000","2. high":"124.3500","3. low":"118.4400","4. close":"118.9300","5. volume":"30731807"},"2021-02-19":{"1. open":"120.1500","2. high":"120.9400","3. low":"118.3800","4. close":"118.9900","5. volume":"22567552"},"2021-02-12":{"1. open":"122.6200","2. high":"123.9767","3. low":"120.0900","4. close":"120.8000","5. volume":"24634263"},"2021-02-05":{"1. open":"119.9000","2. high":"121.8100","3. low":"118.1200","4. close":"121.7900","5. volume":"28405606"},"2021-01-29":{"1. open":"118.7624","2. high":"124.7900","3. low":"117.4500","4. close":"119.1100","5. volume":"56437187"},"2021-01-22":{"1. open":"129.2800","2. high":"132.2400","3. low":"117.3600","4. close":"118.6100","5. volume":"61879427"},"2021-01-15":{"1. open":"127.9500","2. high":"130.1600","3. low":"126.4550","4. close":"128.3900","5. volume":"29417959"},"2021-01-08":{"1. open":"125.8500","2. high":"131.8800","3. low":"123.0400","4. close":"128.5300","5. volume":"28434389"},"2020-12-31":{"1. open":"125.1000","2. high":"126.6000","3. low":"123.2400","4. close":"125.8800","5. volume":"14025419"},"2020-12-24":{"1. open":"123.9700","2. high":"125.2100","3. low":"121.7200","4. close":"124.6900","5. volume":"14908439"},"2020-12-18":{"1. open":"125.3200","2. high":"126.5728","3. low":"123.4400","4. close":"125.8500","5. volume":"25280527"},"2020-12-11":{"1. open":"126.4900","2. high":"127.6900","3. low":"123.6100","4. close":"124.2700","5. volume":"29511629"},"2020-12-04":{"1. open":"124.1000","2. high":"127.3800","3. low":"122.4100","4. close":"127.2000","5. volume":"24848983"},"2020-11-27":{"1. open":"117.4300","2. high":"125.3130","3. low":"117.2700","4. close":"124.3500","5. volume":"19418148"},"2020-11-20":{"1. open":"118.3000","2. high":"118.8800","3. low":"115.8900","4. close":"116.9400","5. volume":"22498909"},"2020-11-13":{"1. open":"117.8800","2. high":"119.7400","3. low":"113.4800","4. close":"116.8500","5. volume":"30088820"},"2020-11-06":{"1. open":"112.6500","2. high":"115.6500","3. low":"111.1600","4. close":"114.0400","5. volume":"25467232"},"2020-10-30":{"1. open":"114.4500","2. high":"114.9000","3. low":"105.9200","4. close":"111.6600","5. volume":"37250916"},"2020-10-23":{"1. open":"126.8000","2. high":"127.3500","3. low":"112.9800","4. close":"116.0000","5. volume":"50486636"},"2020-10-16":{"1. open":"128.0700","2. high":"128.2500","3. low":"123.8500","4. close":"125.9300","5. volume":"21874963"},"2020-10-09":{"1. open":"121.8400","2. high":"135.5000","3. low":"121.0500","4. close":"127.7900","5. volume":"43381507"},"2020-10-02":{"1. open":"120.5700","2. high":"123.3000","3. low":"118.8200","4. close":"120.5700","5. volume":"15038264"},"2020-09-25":{"1. open":"120.4800","2. high":"121.5900","3. low":"116.4800","4. close":"118.9500","5. volume":"18708494"},"2020-09-18":{"1. open":"122.3600","2. high":"125.8200","3. low":"121.7600","4. close":"122.7600","5. volume":"18909398"},"2020-09-11":{"1. open":"122.1600","2. high":"123.7000","3. low":"120.2400","4. close":"121.4600","5. volume":"16507866"},"2020-09-04":{"1. open":"125.2500","2. high":"129.9500","3. low":"121.2400","4. close":"122.3000","5. volume":"26310920"},"2020-08-28":{"1. open":"123.7900","2. high":"126.8200","3. low":"123.3600","4. close":"125.0700","5. volume":"16959794"},"2020-08-21":{"1. open":"125.2500","2. high":"125.5900","3. low":"122.3100","4. close":"123.1600","5. volume":"15908978"},"2020-08-14":{"1. open":"125.4200","2. high":"130.4700","3. low":"123.9100","4. close":"125.2700","5. volume":"18634659"},"2020-08-07":{"1. open":"123.5000","2. high":"126.7500","3. low":"122.1500","4. close":"124.9600","5. volume":"17701697"},"2020-07-31":{"1. open":"124.8600","2. high":"126.3400","3. low":"121.0900","4. close":"122.9400","5. volume":"20010578"},"2020-07-24":{"1. open":"126.0700","2. high":"132.1700","3. low":"125.1400","4. close":"125.7900","5. volume":"41040414"},"2020-07-17":{"1. open":"119.7800","2. high":"125.6300","3. low":"117.9200","4. close":"125.1100","5. volume":"21958911"},"2020-07-10":{"1. open":"121.2500","2. high":"121.8500","3. low":"115.2000","4. close":"118.3500","5. volume":"22560031"},"2020-07-02":{"1. open":"117.9800","2. high":"121.4200","3. low":"117.3700","4. close":"119.7000","5. volume":"16478700"},"2020-06-26":{"1. open":"122.1200","2. high":"122.9000","3. low":"115.8800","4. close":"117.1900","5. volume":"35016186"},"2020-06-19":{"1. open":"119.1900","2. high":"127.5000","3. low":"118.2900","4. close":"122.4700","5. volume":"24867689"},"2020-06-12":{"1. open":"132.2700","2. high":"135.8800","3. low":"117.8400","4. close":"121.9100","5. volume":"33456639"},"2020-06-05":{"1. open":"124.6400","2. high":"134.2300","3. low":"124.0300","4. close":"132.0600","5. volume":"19514867"},"2020-05-29":{"1. open":"121.3000","2. high":"126.9700","3. low":"121.0100","4. close":"124.9000","5. volume":"23037728"},"2020-05-22":{"1. open":"119.8800","2. high":"122.4700","3. low":"117.5900","4. close":"118.3900","5. volume":"19484187"},"2020-05-15":{"1. open":"121.8100","2. high":"124.3200","3. low":"111.8100","4. close":"116.9800","5. volume":"24229073"},"2020-05-08":{"1. open":"120.8200","2. high":"124.3200","3. low":"119.3900","4. close":"122.9900","5. volume":"21189890"},"2020-05-01":{"1. open":"125.5600","2. high":"129.3100","3. low":"121.3900","4. close":"121.8700","5. volume":"26502989"},"2020-04-24":{"1. open":"119.1500","2. high":"125.0000","3. low":"112.0600","4. close":"124.7200","5. volume":"41252209"},"2020-04-17":{"1. open":"121.6300","2. high":"125.1800","3. low":"114.4200","4. close":"120.1200","5. volume":"27240371"},"2020-04-09":{"1. open":"110.3500","2. high":"122.9200","3. low":"110.1300","4. close":"121.5000","5. volume":"23351117"},"2020-04-03":{"1. open":"108.0900","2. high":"113.8100","3. low":"104.5200","4. close":"106.3400","5. volume":"28882211"},"2020-03-27":{"1. open":"94.6000","2. high":"113.1500","3. low":"90.5600","4. close":"108.0300","5. volume":"39907532"},"2020-03-20":{"1. open":"98.0000","2. high":"107.4100","3. low":"94.7100","4. close":"95.3900","5. volume":"47138046"},"2020-03-13":{"1. open":"120.1600","2. high":"124.8800","3. low":"100.8100","4. close":"107.9500","5. volume":"55580046"},"2020-03-06":{"1. open":"130.7500","2. high":"136.1000","3. low":"124.5200","4. close":"127.7300","5. volume":"35054761"},"2020-02-28":{"1. open":"145.5100","2. high":"148.0500","3. low":"126.3600","4. close":"130.1500","5. volume":"38480655"},"2020-02-21":{"1. open":"149.7900","2. high":"151.8900","3. low":"148.8400","4. close":"149.8400","5. volume":"12493166"},"2020-02-14":{"1. open":"152.9700","2. high":"155.6000","3. low":"149.7700","4. close":"150.7000","5. volume":"23423757"},"2020-02-07":{"1. open":"144.2500","2. high":"158.7500","3. low":"143.9000","4. close":"153.4100","5. volume":"43694755"},"2020-01-31":{"1. open":"138.5000","2. high":"144.0500","3. low":"134.9700","4. close":"143.7300","5. volume":"34661511"},"2020-01-24":{"1. open":"137.8100","2. high":"145.7900","3. low":"137.6000","4. close":"140.5600","5. volume":"34829367"},"2020-01-17":{"1. open":"135.4800","2. high":"138.3300","3. low":"135.0700","4. close":"138.3100","5. volume":"20831539"},"2020-01-10":{"1. open":"133.4200","2. high":"137.8700","3. low":"133.2000","4. close":"136.6900","5. volume":"17020619"},"2020-01-03":{"1. open":"135.2000","2. high":"135.9200","3. low":"132.4000","4. close":"134.3400","5. volume":"13418364"},"2019-12-27":{"1. open":"135.7800","2. high":"136.1500","3. low":"134.6100","4. close":"135.2700","5. volume":"8887084"},"2019-12-20":{"1. open":"134.9400","2. high":"136.4200","3. low":"133.4600","4. close":"135.5900","5. volume":"20036502"},"2019-12-13":{"1. open":"133.3500","2. high":"135.6600","3. low":"133.2600","4. close":"134.2100","5. volume":"17504239"},"2019-12-06":{"1. open":"134.4500","2. high":"134.5000","3. low":"130.6900","4. close":"133.2200","5. volume":"17337693"},"2019-11-29":{"1. open":"134.4700","2. high":"136.1500","3. low":"133.0300","4. close":"134.4500","5. volume":"11502959"},"2019-11-22":{"1. open":"134.3000","2. high":"135.3800","3. low":"132.7500","4. close":"134.3400","5. volume":"16963107"},"2019-11-15":{"1. open":"137.2000","2. high":"137.2000","3. low":"133.3300","4. close":"134.4000","5. volume":"16169172"},"2019-11-08":{"1. open":"136.2400","2. high":"139.1400","3. low":"136.1600","4. close":"137.6100","5. volume":"17174941"},"2019-11-01":{"1. open":"136.0000","2. high":"136.6300","3. low":"133.2000","4. close":"135.5300","5. volume":"16136475"},"2019-10-25":{"1. open":"132.6100","2. high":"135.9300","3. low":"130.9000","4. close":"135.4400","5. volume":"19388201"},"2019-10-18":{"1. open":"142.3100","2. high":"143.7200","3. low":"132.2500","4. close":"134.0900","5. volume":"34208011"},"2019-10-11":{"1. open":"142.2600","2. high":"144.5000","3. low":"138.2500","4. close":"142.7600","5. volume":"14096608"},"2019-10-04":{"1. open":"143.7300","2. high":"147.3500","3. low":"139.1800","4. close":"142.9900","5. volume":"15911420"},"2019-09-27":{"1. open":"141.1900","2. high":"145.0900","3. low":"140.5600","4. close":"143.2400","5. volume":"12376163"},"2019-09-20":{"1. open":"142.5600","2. high":"145.0300","3. low":"140.5100","4. close":"141.8800","5. volume":"15262993"},"2019-09-13":{"1. open":"140.5900","2. high":"145.4600","3. low":"140.4600","4. close":"143.6700","5. volume":"17776693"},"2019-09-06":{"1. open":"134.8500","2. high":"141.7000","3. low":"133.3300","4. close":"140.5700","5. volume":"12663912"},"2019-08-30":{"1. open":"131.0500","2. high":"136.0700","3. low":"129.1600","4. close":"135.5300","5. volume":"16211916"},"2019-08-23":{"1. open":"134.8800","2. high":"136.3300","3. low":"128.8300","4. close":"129.5700","5. volume":"16504912"},"2019-08-16":{"1. open":"135.6600","2. high":"136.5700","3. low":"130.2500","4. close":"133.7600","5. volume":"20933133"},"2019-08-09":{"1. open":"144.9800","2. high":"145.1000","3. low":"135.3500","4. close":"136.1300","5. volume":"28623442"},"2019-08-02":{"1. open":"151.1100","2. high":"152.9500","3. low":"145.5900","4. close":"147.2500","5. volume":"22876887"},"2019-07-26":{"1. open":"150.1600","2. high":"151.9400","3. low":"148.3800","4. close":"151.3600","5. volume":"16794485"},"2019-07-19":{"1. open":"142.8900","2. high":"151.5800","3. low":"141.9500","4. close":"149.6800","5. volume":"31893327"},"2019-07-12":{"1. open":"141.0500","2. high":"142.9200","3. low":"139.1300","4. close":"142.7400","5. volume":"13194248"},"2019-07-05":{"1. open":"139.6000","2. high":"141.8200","3. low":"139.2800","4. close":"141.3800","5. volume":"9862722"},"2019-06-28":{"1. open":"139.2000","2. high":"140.1500","3. low":"137.8400","4. close":"137.9000","5. volume":"15575818"},"2019-06-21":{"1. open":"135.3900","2. high":"139.5400","3. low":"134.7000","4. close":"139.2000","5. volume":"15851123"},"2019-06-14":{"1. open":"134.3800","2. high":"136.4600","3. low":"133.9100","4. close":"135.1500","5. volume":"13722199"},"2019-06-07":{"1. open":"127.1000","2. high":"134.7200","3. low":"127.0600","4. close":"133.3100","5. volume":"16193845"},"2019-05-31":{"1. open":"132.1300","2. high":"132.6400","3. low":"126.8500","4. close":"126.9900","5. volume":"14869322"},"2019-05-24":{"1. open":"133.5300","2. high":"137.0600","3. low":"130.4400","4. close":"132.2800","5. volume":"15557532"},"2019-05-17":{"1. open":"133.2800","2. high":"136.1100","3. low":"130.9600","4. close":"134.3200","5. volume":"16426011"},"2019-05-10":{"1. open":"138.3000","2. high":"140.6900","3. low":"132.4200","4. close":"135.3200","5. volume":"19509963"},"2019-05-03":{"1. open":"139.1500","2. high":"141.8100","3. low":"138.6800","4. close":"140.2500","5. volume":"16772230"},"2019-04-26":{"1. open":"139.4200","2. high":"141.3100","3. low":"137.7100","4. close":"139.4400","5. volume":"16961387"},"2019-04-18":{"1. open":"144.4000","2. high":"145.3900","3. low":"136.2600","4. close":"140.3300","5. volume":"27390537"},"2019-04-12":{"1. open":"143.0200","2. high":"144.4400","3. low":"141.8400","4. close":"144.3500","5. volume":"13675882"},"2019-04-05":{"1. open":"141.5100","2. high":"144.2200","3. low":"141.5100","4. close":"143.2800","5. volume":"14574262"},"2019-03-29":{"1. open":"139.0600","2. high":"141.2200","3. low":"138.3500","4. close":"141.1000","5. volume":"14257045"},"2019-03-22":{"1. open":"139.8300","2. high":"142.1200","3. low":"138.7200","4. close":"139.4500","5. volume":"17883337"},"2019-03-15":{"1. open":"136.0300","2. high":"140.3300","3. low":"135.8400","4. close":"139.4300","5. volume":"20959826"},"2019-03-08":{"1. open":"139.9900","2. high":"140.0800","3. low":"133.5800","4. close":"135.0900","5. volume":"18558647"},"2019-03-01":{"1. open":"140.0000","2. high":"140.4900","3. low":"137.7200","4. close":"139.2000","5. volume":"15273342"},"2019-02-22":{"1. open":"137.8100","2. high":"139.3800","3. low":"137.2200","4. close":"139.2500","5. volume":"13238819"},"2019-02-15":{"1. open":"134.2900","2. high":"138.1900","3. low":"133.9100","4. close":"138.0300","5. volume":"17299173"},"2019-02-08":{"1. open":"134.0200","2. high":"136.6500","3. low":"132.1200","4. close":"133.7100","5. volume":"21874687"},"2019-02-01":{"1. open":"133.1000","2. high":"135.4100","3. low":"132.5800","4. close":"134.1000","5. volume":"23585862"},"2019-01-25":{"1. open":"123.3000","2. high":"135.0000","3. low":"121.5400","4. close":"133.9700","5. volume":"44147478"},"2019-01-18":{"1. open":"120.5100","2. high":"124.7200","3. low":"119.7600","4. close":"123.8200","5. volume":"23616108"},"2019-01-11":{"1. open":"117.5000","2. high":"121.8600","3. low":"116.6700","4. close":"121.4600","5. volume":"19780844"},"2019-01-04":{"1. open":"113.3300","2. high":"117.4900","3. low":"111.6900","4. close":"117.3200","5. volume":"18047093"},"2018-12-28":{"1. open":"109.9000","2. high":"114.8000","3. low":"105.9400","4. close":"113.0300","5. volume":"21630293"},"2018-12-21":{"1. open":"119.0700","2. high":"120.2700","3. low":"110.4400","4. close":"110.9400","5. volume":"39485288"},"2018-12-14":{"1. open":"119.7400","2. high":"123.8100","3. low":"118.5200","4. close":"119.9000","5. volume":"23701178"},"2018-12-07":{"1. open":"125.6700","2. high":"126.5900","3. low":"118.8700","4. close":"119.3400","5. volume":"25801474"},"2018-11-30":{"1. open":"118.3700","2. high":"124.6900","3. low":"118.0600","4. close":"124.2700","5. volume":"27471124"},"2018-11-23":{"1. open":"121.6300","2. high":"122.1800","3. low":"116.7000","4. close":"117.1900","5. volume":"18035587"},"2018-11-16":{"1. open":"123.5000","2. high":"123.5700","3. low":"119.5100","4. close":"121.5700","5. volume":"23510061"},"2018-11-09":{"1. open":"116.1000","2. high":"125.0600","3. low":"116.0000","4. close":"123.5400","5. volume":"48482997"},"2018-11-02":{"1. open":"119.3400","2. high":"123.9500","3. low":"114.0900","4. close":"115.6700","5. volume":"87773431"},"2018-10-26":{"1. open":"129.5800","2. high":"131.9000","3. low":"123.7100","4. close":"124.7900","5. volume":"36964774"},"2018-10-19":{"1. open":"140.3800","2. high":"145.4500","3. low":"127.9600","4. close":"129.1000","5. volume":"50928336"},"2018-10-12":{"1. open":"148.5000","2. high":"149.0700","3. low":"138.7800","4. close":"140.8500","5. volume":"27703434"},"2018-10-05":{"1. open":"151.7100","2. high":"154.3600","3. low":"147.8700","4. close":"149.0300","5. volume":"18943237"},"2018-09-28":{"1. open":"151.1000","2. high":"153.3500","3. low":"148.3600","4. close":"151.2100","5. volume":"22847744"},"2018-09-21":{"1. open":"148.4400","2. high":"152.6000","3. low":"147.4700","4. close":"151.3500","5. volume":"37327961"},"2018-09-14":{"1. open":"146.6000","2. high":"149.3000","3. low":"145.2500","4. close":"148.3300","5. volume":"20298346"},"2018-09-07":{"1. open":"145.9800","2. high":"147.6600","3. low":"144.8100","4. close":"145.4500","5. volume":"15394651"},"2018-08-31":{"1. open":"146.9400","2. high":"147.9300","3. low":"145.2500","4. close":"146.4800","5. volume":"15929583"},"2018-08-24":{"1. open":"146.3700","2. high":"147.1600","3. low":"144.7500","4. close":"146.0400","5. volume":"12992907"},"2018-08-17":{"1. open":"144.1500","2. high":"146.3900","3. low":"142.0000","4. close":"146.0600","5. volume":"17890077"},"2018-08-10":{"1. open":"146.9500","2. high":"147.6400","3. low":"143.8800","4. close":"144.4800","5. volume":"17100909"},"2018-08-03":{"1. open":"144.8000","2. high":"147.9200","3. low":"142.3300","4. close":"147.7000","5. volume":"24366161"},"2018-07-27":{"1. open":"146.3500","2. high":"149.2700","3. low":"144.6600","4. close":"145.1500","5. volume":"19940363"},"2018-07-20":{"1. open":"145.6700","2. high":"150.5400","3. low":"142.7400","4. close":"146.3500","5. volume":"36572622"},"2018-07-13":{"1. open":"142.5900","2. high":"146.9800","3. low":"142.4700","4. close":"145.9000","5. volume":"17395351"},"2018-07-06":{"1. open":"138.2800","2. high":"142.9400","3. low":"138.2000","4. close":"142.4800","5. volume":"12024030"},"2018-06-29":{"1. open":"140.4000","2. high":"141.3600","3. low":"137.4500","4. close":"139.7000","5. volume":"25451478"},"2018-06-22":{"1. open":"144.1800","2. high":"144.5200","3. low":"140.7800","4. close":"141.2800","5. volume":"21004666"},"2018-06-15":{"1. open":"146.6200","2. high":"147.5200","3. low":"143.7000","4. close":"145.3900","5. volume":"21311072"},"2018-06-08":{"1. open":"142.3000","2. high":"146.7000","3. low":"142.1800","4. close":"146.1400","5. volume":"18618365"},"2018-06-01":{"1. open":"142.5300","2. high":"143.1000","3. low":"140.2100","4. close":"141.9500","5. volume":"20343954"},"2018-05-25":{"1. open":"144.9500","2. high":"146.2000","3. low":"142.9500","4. close":"143.6400","5. volume":"16951460"},"2018-05-18":{"1. open":"144.4700","2. high":"145.1900","3. low":"142.9200","4. close":"144.0800","5. volume":"16304020"},"2018-05-11":{"1. open":"144.0000","2. high":"144.8500","3. low":"141.2800","4. close":"144.1400","5. volume":"20021856"},"2018-05-04":{"1. open":"146.8600","2. high":"147.3800","3. low":"139.9000","4. close":"143.9100","5. volume":"23464605"},"2018-04-27":{"1. open":"145.0300","2. high":"147.3600","3. low":"144.1100","4. close":"146.4800","5. volume":"25028049"},"2018-04-20":{"1. open":"157.9900","2. high":"162.0000","3. low":"144.5100","4. close":"144.9000","5. volume":"51127683"},"2018-04-13":{"1. open":"151.8000","2. high":"159.2200","3. low":"151.7400","4. close":"156.7100","5. volume":"21372171"},"2018-04-06":{"1. open":"153.3400","2. high":"154.9200","3. low":"147.4500","4. close":"150.5700","5. volume":"20949699"},"2018-03-29":{"1. open":"151.2100","2. high":"154.8700","3. low":"150.2800","4. close":"153.4300","5. volume":"14934365"},"2018-03-23":{"1. open":"159.7100","2. high":"159.8900","3. low":"148.5400","4. close":"148.8900","5. volume":"21959274"},"2018-03-16":{"1. open":"159.6400","2. high":"162.1100","3. low":"157.7400","4. close":"160.2600","5. volume":"25076217"},"2018-03-09":{"1. open":"154.1200","2. high":"159.5800","3. low":"153.7500","4. close":"159.3100","5. volume":"22842811"},"2018-03-02":{"1. open":"155.8100","2. high":"159.7800","3. low":"151.8800","4. close":"154.4900","5. volume":"18831762"},"2018-02-23":{"1. open":"155.7900","2. high":"156.7900","3. low":"152.7900","4. close":"155.5200","5. volume":"14987102"},"2018-02-16":{"1. open":"150.9000","2. high":"157.7900","3. low":"149.6400","4. close":"156.1800","5. volume":"25701914"},"2018-02-09":{"1. open":"157.8900","2. high":"158.5000","3. low":"144.4000","4. close":"149.5100","5. volume":"38856237"},"2018-02-02":{"1. open":"167.4500","2. high":"168.3900","3. low":"158.8700","4. close":"159.0300","5. volume":"21842492"},"2018-01-26":{"1. open":"161.5100","2. high":"168.7200","3. low":"161.1100","4. close":"167.3400","5. volume":"28170112"},"2018-01-19":{"1. open":"165.1000","2. high":"171.1300","3. low":"161.3000","4. close":"162.3700","5. volume":"51246304"},"2018-01-12":{"1. open":"162.6600","2. high":"164.9400","3. low":"161.7000","4. close":"163.1400","5. volume":"22376145"},"2018-01-05":{"1. open":"154.5000","2. high":"162.9000","3. low":"153.5400","4. close":"162.4900","5. volume":"26160206"},"2017-12-29":{"1. open":"152.5100","2. high":"154.7200","3. low":"152.5000","4. close":"153.4200","5. volume":"10573732"},"2017-12-22":{"1. open":"153.4100","2. high":"154.1800","3. low":"151.4900","4. close":"152.5000","5. volume":"20045931"},"2017-12-15":{"1. open":"154.9700","2. high":"157.8500","3. low":"152.0300","4. close":"152.5000","5. volume":"31101402"},"2017-12-08":{"1. open":"155.6700","2. high":"156.8000","3. low":"153.2600","4. close":"154.8100","5. volume":"20236835"},"2017-12-01":{"1. open":"152.0600","2. high":"155.0200","3. low":"151.6200","4. close":"154.7600","5. volume":"24386604"},"2017-11-24":{"1. open":"150.6400","2. high":"152.4500","3. low":"149.9000","4. close":"151.8400","5. volume":"13728716"},"2017-11-17":{"1. open":"148.8800","2. high":"150.1500","3. low":"146.2110","4. close":"148.9700","5. volume":"23731918"},"2017-11-10":{"1. open":"151.7700","2. high":"151.8200","3. low":"149.1400","4. close":"149.1600","5. volume":"21891991"},"2017-11-03":{"1. open":"153.7600","2. high":"154.9300","3. low":"151.4900","4. close":"151.5800","5. volume":"19467703"},"2017-10-27":{"1. open":"162.0500","2. high":"162.5100","3. low":"152.9110","4. close":"153.6800","5. volume":"28529638"},"2017-10-20":{"1. open":"147.2200","2. high":"162.4800","3. low":"146.1800","4. close":"162.0700","5. volume":"56148944"},"2017-10-13":{"1. open":"146.5000","2. high":"148.9500","3. low":"146.3500","4. close":"147.1000","5. volume":"16128636"},"2017-10-06":{"1. open":"145.3500","2. high":"147.5400","3. low":"145.2100","4. close":"146.4800","5. volume":"12252293"},"2017-09-29":{"1. open":"145.1200","2. high":"147.4200","3. low":"144.2100","4. close":"145.0800","5. volume":"18131168"},"2017-09-22":{"1. open":"144.8100","2. high":"145.8911","3. low":"144.2200","4. close":"145.1300","5. volume":"16890140"},"2017-09-15":{"1. open":"143.5400","2. high":"146.3800","3. low":"143.0100","4. close":"144.8200","5. volume":"24882951"},"2017-09-08":{"1. open":"143.5000","2. high":"144.6400","3. low":"141.6400","4. close":"142.4500","5. volume":"13803467"},"2017-09-01":{"1. open":"144.1100","2. high":"144.5600","3. low":"141.9000","4. close":"144.0800","5. volume":"17765494"},"2017-08-25":{"1. open":"139.5900","2. high":"144.1900","3. low":"139.1300","4. close":"143.7400","5. volume":"15927109"},"2017-08-18":{"1. open":"142.0000","2. high":"143.3400","3. low":"139.5800","4. close":"139.7000","5. volume":"18585485"},"2017-08-11":{"1. open":"145.0000","2. high":"145.0900","3. low":"141.1900","4. close":"141.8400","5. volume":"18161288"},"2017-08-04":{"1. open":"144.3800","2. high":"145.6700","3. low":"144.1700","4. close":"145.1600","5. volume":"16503121"},"2017-07-28":{"1. open":"147.0000","2. high":"147.4900","3. low":"143.6400","4. close":"144.2900","5. volume":"21206630"},"2017-07-21":{"1. open":"153.5900","2. high":"154.2900","3. low":"146.5100","4. close":"147.0800","5. volume":"39223438"},"2017-07-14":{"1. open":"152.9100","2. high":"154.6150","3. low":"152.0500","4. close":"154.2400","5. volume":"15015697"},"2017-07-07":{"1. open":"153.5800","2. high":"156.0250","3. low":"152.1400","4. close":"152.9400","5. volume":"11462576"},"2017-06-30":{"1. open":"154.7100","2. high":"155.7500","3. low":"153.1400","4. close":"153.8300","5. volume":"13465670"},"2017-06-23":{"1. open":"155.5100","2. high":"155.8600","3. low":"153.3900","4. close":"154.1100","5. volume":"18294998"},"2017-06-16":{"1. open":"154.1900","2. high":"157.2000","3. low":"152.9400","4. close":"155.3800","5. volume":"23761609"},"2017-06-09":{"1. open":"151.8200","2. high":"154.2650","3. low":"150.8000","4. close":"154.1000","5. volume":"20653101"},"2017-06-02":{"1. open":"151.9500","2. high":"153.2000","3. low":"151.5900","4. close":"152.0500","5. volume":"13583558"},"2017-05-26":{"1. open":"152.1000","2. high":"153.7300","3. low":"151.2300","4. close":"152.4900","5. volume":"14563625"},"2017-05-19":{"1. open":"150.6200","2. high":"154.1400","3. low":"150.1100","4. close":"151.9800","5. volume":"23606431"},"2017-05-12":{"1. open":"152.8000","2. high":"153.4700","3. low":"149.7900","4. close":"150.3700","5. volume":"28432713"},"2017-05-05":{"1. open":"160.0500","2. high":"160.4200","3. low":"153.0000","4. close":"155.0500","5. volume":"28746997"},"2017-04-28":{"1. open":"161.2900","2. high":"162.0400","3. low":"159.6300","4. close":"160.2900","5. volume":"22585454"},"2017-04-21":{"1. open":"169.7500","2. high":"171.6900","3. low":"159.6000","4. close":"160.3800","5. volume":"22353091"},"2017-04-13":{"1. open":"172.5300","2. high":"172.5600","3. low":"168.9800","4. close":"169.5300","5. volume":"15162492"},"2017-04-07":{"1. open":"173.8200","2. high":"176.3300","3. low":"171.2800","4. close":"172.1400","5. volume":"20657952"},"2017-03-31":{"1. open":"172.6900","2. high":"175.0000","3. low":"172.0937","4. close":"174.1400","5. volume":"15949938"},"2017-03-24":{"1. open":"175.6500","2. high":"176.2300","3. low":"172.8000","4. close":"173.8300","5. volume":"16816026"},"2017-03-17":{"1. open":"177.8500","2. high":"179.0000","3. low":"174.7500","4. close":"175.6500","5. volume":"20678038"},"2017-03-10":{"1. open":"179.7200","2. high":"181.2900","3. low":"175.8800","4. close":"177.8300","5. volume":"18283618"},"2017-03-03":{"1. open":"181.1900","2. high":"182.5500","3. low":"179.2800","4. close":"180.0500","5. volume":"14713309"},"2017-02-24":{"1. open":"180.6000","2. high":"182.5000","3. low":"179.1200","4. close":"181.3500","5. volume":"13082284"},"2017-02-17":{"1. open":"179.2400","2. high":"182.7900","3. low":"178.3500","4. close":"180.6700","5. volume":"15587334"},"2017-02-10":{"1. open":"175.3100","2. high":"178.8701","3. low":"174.3800","4. close":"178.6800","5. volume":"15458288"},"2017-02-03":{"1. open":"176.9800","2. high":"177.0700","3. low":"172.8900","4. close":"175.8200","5. volume":"16952754"},"2017-01-27":{"1. open":"170.0800","2. high":"179.2500","3. low":"170.0100","4. close":"177.3000","5. volume":"24898161"},"2017-01-20":{"1. open":"166.6900","2. high":"170.6400","3. low":"165.8000","4. close":"170.5500","5. volume":"26891514"},"2017-01-13":{"1. open":"169.4700","2. high":"169.8000","3. low":"165.3400","4. close":"167.3400","5. volume":"16710843"},"2017-01-06":{"1. open":"167.0000","2. high":"169.9200","3. low":"166.0100","4. close":"169.5300","5. volume":"11943248"},"2016-12-30":{"1. open":"166.9800","2. high":"167.9800","3. low":"165.5000","4. close":"165.9900","5. volume":"7770697"},"2016-12-23":{"1. open":"166.8300","2. high":"168.2500","3. low":"165.2500","4. close":"166.7100","5. volume":"13209502"},"2016-12-16":{"1. open":"166.7200","2. high":"169.9520","3. low":"165.0700","4. close":"166.7300","5. volume":"23953742"},"2016-12-09":{"1. open":"160.8500","2. high":"166.7200","3. low":"158.9300","4. close":"166.5200","5. volume":"17154330"},"2016-12-02":{"1. open":"163.2000","2. high":"164.6600","3. low":"158.3000","4. close":"160.0200","5. volume":"19370850"},"2016-11-25":{"1. open":"160.6900","2. high":"163.1900","3. low":"160.3697","4. close":"163.1400","5. volume":"11269212"},"2016-11-18":{"1. open":"161.2500","2. high":"161.8600","3. low":"157.5500","4. close":"160.3900","5. volume":"16168917"},"2016-11-11":{"1. open":"153.9900","2. high":"161.3400","3. low":"151.0000","4. close":"161.2700","5. volume":"25292112"},"2016-11-04":{"1. open":"152.7600","2. high":"154.3300","3. low":"151.6700","4. close":"152.4300","5. volume":"15168515"},"2016-10-28":{"1. open":"150.4000","2. high":"154.4400","3. low":"149.8300","4. close":"152.6100","5. volume":"16009359"},"2016-10-21":{"1. open":"154.4500","2. high":"155.8900","3. low":"147.7900","4. close":"149.6300","5. volume":"31731091"},"2016-10-14":{"1. open":"156.7100","2. high":"158.4900","3. low":"152.2700","4. close":"154.4500","5. volume":"15614452"},"2016-10-07":{"1. open":"158.0600","2. high":"158.5300","3. low":"154.8600","4. close":"155.6700","5. volume":"11417766"},"2016-09-30":{"1. open":"154.4600","2. high":"165.0000","3. low":"153.4600","4. close":"158.8500","5. volume":"15801644"},"2016-09-23":{"1. open":"154.8700","2. high":"157.2200","3. low":"153.8700","4. close":"154.9800","5. volume":"12476162"},"2016-09-16":{"1. open":"155.2600","2. high":"158.5300","3. low":"153.2100","4. close":"153.8400","5. volume":"21990587"},"2016-09-09":{"1. open":"159.8800","2. high":"161.7600","3. low":"155.6500","4. close":"155.6900","5. volume":"15009419"},"2016-09-02":{"1. open":"158.8300","2. high":"160.5700","3. low":"158.1000","4. close":"159.5500","5. volume":"11286596"},"2016-08-26":{"1. open":"160.0000","2. high":"161.3400","3. low":"157.8500","4. close":"158.3200","5. volume":"13571765"},"2016-08-19":{"1. open":"162.4000","2. high":"162.9700","3. low":"159.5200","4. close":"160.0400","5. volume":"14873739"},"2016-08-12":{"1. open":"162.7300","2. high":"164.9500","3. low":"161.5200","4. close":"161.9500","5. volume":"19554950"},"2016-08-05":{"1. open":"160.6500","2. high":"163.5100","3. low":"159.8000","4. close":"163.5000","5. volume":"15067283"},"2016-07-29":{"1. open":"162.0000","2. high":"163.6000","3. low":"160.0300","4. close":"160.6200","5. volume":"13747991"},"2016-07-22":{"1. open":"159.3000","2. high":"162.1700","3. low":"157.8900","4. close":"162.0700","5. volume":"24775973"},"2016-07-15":{"1. open":"154.6000","2. high":"161.4000","3. low":"154.5000","4. close":"159.7800","5. volume":"18535456"},"2016-07-08":{"1. open":"151.1900","2. high":"154.6000","3. low":"149.9200","4. close":"154.4600","5. volume":"10213227"},"2016-07-01":{"1. open":"146.1800","2. high":"152.9700","3. low":"142.5000","4. close":"152.3500","5. volume":"19155814"},"2016-06-24":{"1. open":"152.6000","2. high":"155.4800","3. low":"146.1800","4. close":"146.5900","5. volume":"22214411"},"2016-06-17":{"1. open":"151.6300","2. high":"152.7200","3. low":"149.0000","4. close":"151.9900","5. volume":"15849580"},"2016-06-10":{"1. open":"153.0900","2. high":"154.0900","3. low":"151.8600","4. close":"152.3700","5. volume":"14920842"},"2016-06-03":{"1. open":"152.5600","2. high":"153.8100","3. low":"151.5400","4. close":"152.8900","5. volume":"13470239"},"2016-05-27":{"1. open":"147.6100","2. high":"152.9300","3. low":"146.6600","4. close":"152.8400","5. volume":"14910875"},"2016-05-20":{"1. open":"147.6500","2. high":"149.9900","3. low":"143.9550","4. close":"147.2500","5. volume":"16406443"},"2016-05-13":{"1. open":"147.7000","2. high":"151.0900","3. low":"147.0100","4. close":"147.7200","5. volume":"17034303"},"2016-05-06":{"1. open":"146.5600","2. high":"147.9700","3. low":"142.9000","4. close":"147.2900","5. volume":"21059912"},"2016-04-29":{"1. open":"148.1600","2. high":"150.7800","3. low":"144.1910","4. close":"145.9400","5. volume":"16956550"},"2016-04-22":{"1. open":"151.7500","2. high":"153.1400","3. low":"142.6100","4. close":"148.5000","5. volume":"37688644"},"2016-04-15":{"1. open":"150.2600","2. high":"152.7600","3. low":"148.5800","4. close":"151.7200","5. volume":"17443203"},"2016-04-08":{"1. open":"152.3400","2. high":"153.5200","3. low":"147.8100","4. close":"149.3500","5. volume":"18417556"},"2016-04-01":{"1. open":"147.7500","2. high":"153.1000","3. low":"147.2300","4. close":"152.5200","5. volume":"20439783"},"2016-03-24":{"1. open":"147.3000","2. high":"149.2800","3. low":"144.4900","4. close":"147.9500","5. volume":"17611709"},"2016-03-18":{"1. open":"142.0100","2. high":"147.5100","3. low":"141.0400","4. close":"147.0900","5. volume":"29886417"},"2016-03-11":{"1. open":"137.2800","2. high":"142.9236","3. low":"136.8718","4. close":"142.3600","5. volume":"23556160"},"2016-03-04":{"1. open":"132.0000","2. high":"139.4200","3. low":"130.9000","4. close":"137.8000","5. volume":"22557187"},"2016-02-26":{"1. open":"133.8400","2. high":"134.9200","3. low":"129.6800","4. close":"132.0300","5. volume":"20763400"},"2016-02-19":{"1. open":"121.8300","2. high":"134.0000","3. low":"121.3400","4. close":"133.0800","5. volume":"23958762"},"2016-02-12":{"1. open":"126.0000","2. high":"127.5100","3. low":"116.9010","4. close":"121.0400","5. volume":"32025579"},"2016-02-05":{"1. open":"124.4000","2. high":"128.6400","3. low":"122.2900","4. close":"128.5700","5. volume":"25527891"},"2016-01-29":{"1. open":"122.1000","2. high":"124.7900","3. low":"120.6500","4. close":"124.7900","5. volume":"27278749"},"2016-01-22":{"1. open":"130.1100","2. high":"132.1000","3. low":"118.0000","4. close":"122.5000","5. volume":"44203492"},"2016-01-15":{"1. open":"131.8100","2. high":"134.2799","3. low":"128.8700","4. close":"130.0300","5. volume":"29470082"},"2016-01-08":{"1. open":"135.6000","2. high":"136.8900","3. low":"131.3200","4. close":"131.6300","5. volume":"25251873"},"2015-12-31":{"1. open":"137.7400","2. high":"140.4400","3. low":"136.5400","4. close":"137.6200","5. volume":"13538507"},"2015-12-24":{"1. open":"135.8300","2. high":"139.3050","3. low":"134.0200","4. close":"138.2500","5. volume":"16540309"},"2015-12-18":{"1. open":"135.3100","2. high":"139.6500","3. low":"134.0200","4. close":"134.9000","5. volume":"27823388"},"2015-12-11":{"1. open":"140.1600","2. high":"140.4100","3. low":"133.9100","4. close":"134.5700","5. volume":"21354563"},"2015-12-04":{"1. open":"138.6100","2. high":"141.4000","3. low":"137.9900","4. close":"140.4300","5. volume":"22935841"},"2015-11-27":{"1. open":"138.5300","2. high":"139.3400","3. low":"137.1200","4. close":"138.4600","5. volume":"13199481"},"2015-11-20":{"1. open":"131.7900","2. high":"138.9150","3. low":"131.7900","4. close":"138.5000","5. volume":"21083793"},"2015-11-13":{"1. open":"137.9200","2. high":"138.0800","3. low":"131.6500","4. close":"131.7500","5. volume":"25069755"},"2015-11-06":{"1. open":"140.5000","2. high":"142.8000","3. low":"137.8700","4. close":"138.2500","5. volume":"21526383"},"2015-10-30":{"1. open":"144.7500","2. high":"145.0000","3. low":"137.3300","4. close":"140.0800","5. volume":"34698762"},"2015-10-23":{"1. open":"149.8500","2. high":"149.9700","3. low":"139.3000","4. close":"144.6800","5. volume":"42068316"},"2015-10-16":{"1. open":"152.4000","2. high":"152.5800","3. low":"148.5800","4. close":"150.3900","5. volume":"17455488"},"2015-10-09":{"1. open":"145.8200","2. high":"153.1470","3. low":"145.8200","4. close":"152.3900","5. volume":"19465122"},"2015-10-02":{"1. open":"144.4200","2. high":"145.7100","3. low":"140.5600","4. close":"144.5800","5. volume":"19914471"},"2015-09-25":{"1. open":"145.3900","2. high":"146.9800","3. low":"141.9500","4. close":"145.4200","5. volume":"16815584"},"2015-09-18":{"1. open":"147.3700","2. high":"149.6800","3. low":"143.9800","4. close":"144.5100","5. volume":"20721826"},"2015-09-11":{"1. open":"145.8600","2. high":"149.0400","3. low":"144.5100","4. close":"147.3700","5. volume":"13916382"},"2015-09-04":{"1. open":"147.2600","2. high":"148.4000","3. low":"141.8500","4. close":"143.7000","5. volume":"21421138"},"2015-08-28":{"1. open":"143.4700","2. high":"148.9700","3. low":"140.6200","4. close":"147.9800","5. volume":"32508092"},"2015-08-21":{"1. open":"155.2000","2. high":"156.6900","3. low":"148.7000","4. close":"148.8500","5. volume":"19846207"},"2015-08-14":{"1. open":"156.7700","2. high":"157.4652","3. low":"153.9500","4. close":"155.7500","5. volume":"17165086"},"2015-08-07":{"1. open":"161.7000","2. high":"161.8500","3. low":"154.3350","4. close":"155.1200","5. volume":"20138504"},"2015-07-31":{"1. open":"159.0000","2. high":"162.0600","3. low":"158.5000","4. close":"161.9900","5. volume":"15380412"},"2015-07-24":{"1. open":"172.7900","2. high":"173.7800","3. low":"159.4100","4. close":"159.7500","5. volume":"37075256"},"2015-07-17":{"1. open":"167.9300","2. high":"172.5200","3. low":"167.5200","4. close":"172.5100","5. volume":"17138495"},"2015-07-10":{"1. open":"163.8300","2. high":"167.4000","3. low":"162.2317","4. close":"166.9500","5. volume":"18143986"},"2015-07-02":{"1. open":"163.9200","2. high":"165.6100","3. low":"162.1200","4. close":"165.0900","5. volume":"12979210"},"2015-06-26":{"1. open":"167.6500","2. high":"169.9700","3. low":"165.2300","4. close":"165.4600","5. volume":"20939777"},"2015-06-19":{"1. open":"165.3300","2. high":"168.7200","3. low":"164.2500","4. close":"166.9900","5. volume":"20761376"},"2015-06-12":{"1. open":"167.1700","2. high":"170.4400","3. low":"163.3700","4. close":"166.9900","5. volume":"18364270"},"2015-06-05":{"1. open":"170.2100","2. high":"171.5601","3. low":"167.2000","4. close":"167.4000","5. volume":"13868111"},"2015-05-29":{"1. open":"172.1100","2. high":"172.4800","3. low":"169.1300","4. close":"169.6500","5. volume":"12435919"},"2015-05-22":{"1. open":"173.4400","2. high":"174.4400","3. low":"171.9300","4. close":"172.2200","5. volume":"11939607"},"2015-05-15":{"1. open":"172.6500","2. high":"174.4100","3. low":"168.8400","4. close":"173.2600","5. volume":"13435074"},"2015-05-08":{"1. open":"174.4700","2. high":"176.3000","3. low":"168.8600","4. close":"172.6800","5. volume":"16793441"},"2015-05-01":{"1. open":"170.8900","2. high":"175.1303","3. low":"170.0200","4. close":"173.6700","5. volume":"21874751"},"2015-04-24":{"1. open":"162.1000","2. high":"171.9100","3. low":"161.9000","4. close":"169.7800","5. volume":"35436301"},"2015-04-17":{"1. open":"162.3700","2. high":"164.9600","3. low":"160.0300","4. close":"160.6700","5. volume":"17532781"},"2015-04-10":{"1. open":"159.6900","2. high":"163.8400","3. low":"158.7020","4. close":"162.8600","5. volume":"13917063"},"2015-04-02":{"1. open":"161.3100","2. high":"163.6000","3. low":"158.3900","4. close":"160.4500","5. volume":"16765545"},"2015-03-27":{"1. open":"162.7700","2. high":"165.3500","3. low":"158.9100","4. close":"160.4000","5. volume":"23569213"},"2015-03-20":{"1. open":"155.0500","2. high":"163.0000","3. low":"154.8000","4. close":"162.8800","5. volume":"25684872"},"2015-03-13":{"1. open":"158.2000","2. high":"161.1500","3. low":"153.4000","4. close":"154.2800","5. volume":"26135448"},"2015-03-06":{"1. open":"161.6800","2. high":"161.8900","3. low":"158.0600","4. close":"158.5000","5. volume":"21117049"},"2015-02-27":{"1. open":"164.2300","2. high":"164.9900","3. low":"159.7700","4. close":"161.9400","5. volume":"22941227"},"2015-02-20":{"1. open":"159.7500","2. high":"164.4900","3. low":"159.7300","4. close":"163.6500","5. volume":"14108892"},"2015-02-13":{"1. open":"156.0000","2. high":"160.8000","3. low":"155.0800","4. close":"160.4000","5. volume":"18164756"},"2015-02-06":{"1. open":"154.0000","2. high":"158.7100","3. low":"151.5100","4. close":"156.7200","5. volume":"22439830"},"2015-01-30":{"1. open":"158.2600","2. high":"159.4600","3. low":"149.5200","4. close":"153.3100","5. volume":"32927307"},"2015-01-23":{"1. open":"156.7000","2. high":"157.6000","3. low":"151.0700","4. close":"155.8700","5. volume":"31230797"},"2015-01-16":{"1. open":"159.0000","2. high":"159.9700","3. low":"153.7400","4. close":"157.1400","5. volume":"23272056"},"2015-01-09":{"1. open":"161.2700","2. high":"161.2700","3. low":"154.0300","4. close":"159.1100","5. volume":"24440360"},"2015-01-02":{"1. open":"162.0000","2. high":"163.3100","3. low":"159.4500","4. close":"162.0600","5. volume":"15698987"},"2014-12-26":{"1. open":"158.3300","2. high":"163.0900","3. low":"158.3300","4. close":"162.3400","5. volume":"12508916"},"2014-12-19":{"1. open":"155.9300","2. high":"160.4100","3. low":"150.5000","4. close":"158.5100","5. volume":"34588770"},"2014-12-12":{"1. open":"163.2900","2. high":"163.3300","3. low":"155.3300","4. close":"155.3800","5. volume":"23397756"},"2014-12-05":{"1. open":"161.6400","2. high":"164.5200","3. low":"161.3500","4. close":"163.2700","5. volume":"20945441"},"2014-11-28":{"1. open":"161.5400","2. high":"163.8600","3. low":"161.0100","4. close":"162.1700","5. volume":"17053892"},"2014-11-21":{"1. open":"164.1600","2. high":"164.9700","3. low":"159.8000","4. close":"160.9200","5. volume":"22273217"},"2014-11-14":{"1. open":"161.9000","2. high":"164.4900","3. low":"161.6100","4. close":"164.1600","5. volume":"20088151"},"2014-11-07":{"1. open":"164.2500","2. high":"164.5400","3. low":"160.0500","4. close":"162.0700","5. volume":"20603321"},"2014-10-31":{"1. open":"162.0000","2. high":"165.5900","3. low":"161.8000","4. close":"164.4000","5. volume":"27342119"},"2014-10-24":{"1. open":"166.8450","2. high":"170.3310","3. low":"161.1000","4. close":"162.0800","5. volume":"69701346"},"2014-10-17":{"1. open":"185.4900","2. high":"186.6500","3. low":"178.6900","4. close":"182.0500","5. volume":"24355568"},"2014-10-10":{"1. open":"189.6900","2. high":"190.8900","3. low":"185.1000","4. close":"185.9300","5. volume":"15795271"},"2014-10-03":{"1. open":"188.5100","2. high":"190.8500","3. low":"186.2400","4. close":"188.6700","5. volume":"14352364"},"2014-09-26":{"1. open":"193.7200","2. high":"194.1400","3. low":"188.6100","4. close":"190.0600","5. volume":"16209901"},"2014-09-19":{"1. open":"191.4200","2. high":"195.0000","3. low":"190.5800","4. close":"194.0000","5. volume":"20044000"},"2014-09-12":{"1. open":"190.7500","2. high":"192.7800","3. low":"189.5100","4. close":"191.2800","5. volume":"12878100"},"2014-09-05":{"1. open":"192.6800","2. high":"192.9700","3. low":"190.0600","4. close":"191.2000","5. volume":"9627700"},"2014-08-29":{"1. open":"191.3900","2. high":"194.1330","3. low":"190.6600","4. close":"192.3000","5. volume":"11487700"},"2014-08-22":{"1. open":"188.1000","2. high":"192.0700","3. low":"187.7600","4. close":"190.4100","5. volume":"11074800"},"2014-08-15":{"1. open":"187.8100","2. high":"188.8800","3. low":"186.2800","4. close":"187.3800","5. volume":"10927100"},"2014-08-08":{"1. open":"189.3500","2. high":"189.9500","3. low":"183.5800","4. close":"186.6300","5. volume":"14770900"},"2014-08-01":{"1. open":"194.3000","2. high":"196.4000","3. low":"188.8600","4. close":"189.1500","5. volume":"19838900"},"2014-07-25":{"1. open":"191.3000","2. high":"195.9000","3. low":"189.2500","4. close":"194.4000","5. volume":"19580700"},"2014-07-18":{"1. open":"188.5500","2. high":"195.9500","3. low":"188.2100","4. close":"192.5000","5. volume":"34217100"},"2014-07-11":{"1. open":"187.6100","2. high":"188.9000","3. low":"186.2100","4. close":"188.0000","5. volume":"14983700"},"2014-07-03":{"1. open":"181.3300","2. high":"188.9900","3. low":"180.2600","4. close":"188.5300","5. volume":"18382300"},"2014-06-27":{"1. open":"181.9200","2. high":"183.0000","3. low":"179.2700","4. close":"181.7100","5. volume":"17703900"},"2014-06-20":{"1. open":"182.4000","2. high":"184.4700","3. low":"181.2350","4. close":"181.5500","5. volume":"24186800"},"2014-06-13":{"1. open":"186.2200","2. high":"187.6400","3. low":"180.9100","4. close":"182.5600","5. volume":"18143900"},"2014-06-06":{"1. open":"184.7600","2. high":"187.6500","3. low":"183.9200","4. close":"186.3700","5. volume":"14243300"},"2014-05-30":{"1. open":"184.8000","2. high":"185.6500","3. low":"182.3300","4. close":"184.3600","5. volume":"15895800"},"2014-05-23":{"1. open":"186.6100","2. high":"187.1600","3. low":"184.7000","4. close":"185.9400","5. volume":"14066100"},"2014-05-16":{"1. open":"191.1200","2. high":"193.0300","3. low":"185.9300","4. close":"187.0600","5. volume":"19407200"},"2014-05-09":{"1. open":"191.0500","2. high":"191.4900","3. low":"186.9300","4. close":"190.0800","5. volume":"13925300"},"2014-05-02":{"1. open":"191.1400","2. high":"196.8600","3. low":"190.5800","4. close":"191.4400","5. volume":"21195300"},"2014-04-25":{"1. open":"189.8000","2. high":"193.0000","3. low":"189.1100","4. close":"189.6300","5. volume":"22312800"},"2014-04-17":{"1. open":"196.2400","2. high":"198.7100","3. low":"187.0100","4. close":"190.0100","5. volume":"30565200"},"2014-04-11":{"1. open":"191.7200","2. high":"199.2100","3. low":"191.5700","4. close":"195.1900","5. volume":"30598500"},"2014-04-04":{"1. open":"191.6400","2. high":"195.1300","3. low":"191.2800","4. close":"191.7700","5. volume":"29036500"},"2014-03-28":{"1. open":"187.4300","2. high":"195.6300","3. low":"187.3700","4. close":"190.4500","5. volume":"35465000"},"2014-03-21":{"1. open":"182.6600","2. high":"188.7000","3. low":"182.6600","4. close":"186.6700","5. volume":"30821100"},"2014-03-14":{"1. open":"187.5500","2. high":"188.4500","3. low":"182.2100","4. close":"182.2100","5. volume":"24057200"},"2014-03-07":{"1. open":"183.3300","2. high":"188.9200","3. low":"182.8200","4. close":"187.6800","5. volume":"20103400"},"2014-02-28":{"1. open":"182.8200","2. high":"186.1200","3. low":"182.8200","4. close":"185.1700","5. volume":"20734000"},"2014-02-21":{"1. open":"183.1800","2. high":"185.7100","3. low":"182.3200","4. close":"182.7900","5. volume":"19774200"},"2014-02-14":{"1. open":"176.9700","2. high":"184.4300","3. low":"176.2500","4. close":"183.6900","5. volume":"21312600"},"2014-02-07":{"1. open":"176.0200","2. high":"177.5600","3. low":"172.1900","4. close":"177.2500","5. volume":"25234000"},"2014-01-31":{"1. open":"179.6050","2. high":"179.6500","3. low":"175.3400","4. close":"176.6800","5. volume":"25559900"},"2014-01-24":{"1. open":"190.2300","2. high":"190.3900","3. low":"179.6400","4. close":"179.6400","5. volume":"38736900"},"2014-01-17":{"1. open":"186.2600","2. high":"190.8100","3. low":"183.8600","4. close":"190.0900","5. volume":"27635300"},"2014-01-10":{"1. open":"187.1500","2. high":"190.3500","3. low":"185.3000","4. close":"187.2600","5. volume":"22947500"},"2014-01-03":{"1. open":"185.3200","2. high":"187.7900","3. low":"184.6700","4. close":"186.6400","5. volume":"15248000"},"2013-12-27":{"1. open":"181.0500","2. high":"186.5000","3. low":"180.6100","4. close":"185.0800","5. volume":"12400800"},"2013-12-20":{"1. open":"173.2200","2. high":"182.0000","3. low":"172.7300","4. close":"180.0200","5. volume":"32267100"},"2013-12-13":{"1. open":"177.9900","2. high":"178.1520","3. low":"172.7300","4. close":"172.8000","5. volume":"21870800"},"2013-12-06":{"1. open":"179.4600","2. high":"179.5900","3. low":"175.1600","4. close":"177.6700","5. volume":"24816100"},"2013-11-29":{"1. open":"180.2500","2. high":"180.7600","3. low":"177.3100","4. close":"179.6800","5. volume":"20384900"},"2013-11-22":{"1. open":"183.5200","2. high":"186.2400","3. low":"179.9200","4. close":"181.3000","5. volume":"25637400"},"2013-11-15":{"1. open":"180.1900","2. high":"184.0487","3. low":"179.6600","4. close":"183.1900","5. volume":"25682800"},"2013-11-08":{"1. open":"179.9000","2. high":"181.3900","3. low":"177.3500","4. close":"179.9900","5. volume":"25635300"},"2013-11-01":{"1. open":"177.0400","2. high":"182.3200","3. low":"176.2000","4. close":"179.2300","5. volume":"25853600"},"2013-10-25":{"1. open":"174.4200","2. high":"179.1000","3. low":"172.6301","4. close":"176.8500","5. volume":"29861500"},"2013-10-18":{"1. open":"185.4100","2. high":"186.9900","3. low":"172.5700","4. close":"173.7800","5. volume":"45663100"},"2013-10-11":{"1. open":"181.8500","2. high":"186.2300","3. low":"178.7100","4. close":"186.1600","5. volume":"20859700"},"2013-10-04":{"1. open":"185.5600","2. high":"186.7400","3. low":"183.0000","4. close":"184.1000","5. volume":"16351900"},"2013-09-27":{"1. open":"190.0600","2. high":"192.4100","3. low":"186.4500","4. close":"186.9200","5. volume":"15079700"},"2013-09-20":{"1. open":"193.7000","2. high":"194.8900","3. low":"190.0200","4. close":"190.0200","5. volume":"22379100"},"2013-09-13":{"1. open":"183.6800","2. high":"193.1000","3. low":"183.3100","4. close":"192.1700","5. volume":"18194900"},"2013-09-06":{"1. open":"183.6300","2. high":"185.0000","3. low":"182.3100","4. close":"183.0300","5. volume":"11856200"},"2013-08-30":{"1. open":"185.2700","2. high":"187.0000","3. low":"181.1000","4. close":"182.2700","5. volume":"15052200"},"2013-08-23":{"1. open":"185.3000","2. high":"186.5700","3. low":"183.1685","4. close":"185.4200","5. volume":"14564700"},"2013-08-16":{"1. open":"186.9700","2. high":"189.9900","3. low":"185.3400","4. close":"185.3400","5. volume":"16580500"},"2013-08-09":{"1. open":"195.1600","2. high":"195.8800","3. low":"186.7900","4. close":"187.8200","5. volume":"20128300"},"2013-08-02":{"1. open":"196.8300","2. high":"197.8300","3. low":"193.2215","4. close":"195.1600","5. volume":"15338600"},"2013-07-26":{"1. open":"193.4000","2. high":"197.8300","3. low":"193.2804","4. close":"197.3500","5. volume":"14719100"},"2013-07-19":{"1. open":"192.4200","2. high":"200.9400","3. low":"191.6800","4. close":"193.5400","5. volume":"31679400"},"2013-07-12":{"1. open":"195.6000","2. high":"195.7800","3. low":"190.7800","4. close":"192.0700","5. volume":"20715900"},"2013-07-05":{"1. open":"192.1500","2. high":"195.1600","3. low":"190.2600","4. close":"194.9300","5. volume":"12378100"},"2013-06-28":{"1. open":"193.9900","2. high":"196.9000","3. low":"188.4100","4. close":"191.1100","5. volume":"25092600"},"2013-06-21":{"1. open":"203.4400","2. high":"206.0900","3. low":"193.5401","4. close":"195.4600","5. volume":"22773400"},"2013-06-14":{"1. open":"206.9700","2. high":"206.9800","3. low":"200.3400","4. close":"202.2000","5. volume":"14580500"},"2013-06-07":{"1. open":"208.2500","2. high":"210.0500","3. low":"201.4700","4. close":"206.3500","5. volume":"17768500"},"2013-05-31":{"1. open":"207.4400","2. high":"211.9800","3. low":"206.0400","4. close":"208.0200","5. volume":"16799600"},"2013-05-24":{"1. open":"208.0200","2. high":"210.1500","3. low":"204.4200","4. close":"205.7200","5. volume":"20259100"},"2013-05-17":{"1. open":"204.1800","2. high":"209.5000","3. low":"202.0400","4. close":"208.4400","5. volume":"21587300"},"2013-05-10":{"1. open":"203.7900","2. high":"205.0000","3. low":"201.5200","4. close":"204.4700","5. volume":"18700700"},"2013-05-03":{"1. open":"194.7800","2. high":"205.3190","3. low":"194.6500","4. close":"204.5100","5. volume":"26809200"},"2013-04-26":{"1. open":"191.1500","2. high":"195.1700","3. low":"187.6800","4. close":"194.3100","5. volume":"27976600"},"2013-04-19":{"1. open":"210.4400","2. high":"212.0000","3. low":"189.7600","4. close":"190.0000","5. volume":"35696400"},"2013-04-12":{"1. open":"209.0700","2. high":"213.0900","3. low":"207.3300","4. close":"211.3800","5. volume":"15273700"},"2013-04-05":{"1. open":"212.8000","2. high":"214.8900","3. low":"206.3400","4. close":"209.4100","5. volume":"16247600"},"2013-03-28":{"1. open":"212.5400","2. high":"213.4400","3. low":"209.7350","4. close":"213.3000","5. volume":"12516100"},"2013-03-22":{"1. open":"212.9000","2. high":"215.8200","3. low":"210.1100","4. close":"212.0800","5. volume":"18085500"},"2013-03-15":{"1. open":"210.0400","2. high":"215.9000","3. low":"209.0400","4. close":"214.9200","5. volume":"23433000"},"2013-03-08":{"1. open":"202.5900","2. high":"210.7400","3. low":"202.5500","4. close":"210.3800","5. volume":"18680900"},"2013-03-01":{"1. open":"201.6700","2. high":"203.1230","3. low":"197.5100","4. close":"202.9100","5. volume":"19419000"},"2013-02-22":{"1. open":"200.6000","2. high":"201.8900","3. low":"198.1100","4. close":"201.0900","5. volume":"13744500"},"2013-02-15":{"1. open":"200.9800","2. high":"201.9500","3. low":"199.0200","4. close":"200.9800","5. volume":"14498300"},"2013-02-08":{"1. open":"204.1900","2. high":"205.0200","3. low":"198.6800","4. close":"201.6800","5. volume":"16419900"},"2013-02-01":{"1. open":"204.8500","2. high":"206.2200","3. low":"202.9600","4. close":"205.1800","5. volume":"15901300"},"2013-01-25":{"1. open":"194.3600","2. high":"208.5800","3. low":"194.0100","4. close":"204.9700","5. volume":"27508900"},"2013-01-18":{"1. open":"192.8200","2. high":"195.0000","3. low":"190.3900","4. close":"194.4700","5. volume":"19748400"},"2013-01-11":{"1. open":"193.4000","2. high":"195.0000","3. low":"191.2800","4. close":"194.4500","5. volume":"16589700"},"2013-01-04":{"1. open":"189.2300","2. high":"196.3500","3. low":"188.8400","4. close":"193.9900","5. volume":"15943900"},"2012-12-28":{"1. open":"193.0500","2. high":"193.8300","3. low":"189.8300","4. close":"189.8300","5. volume":"11911900"},"2012-12-21":{"1. open":"191.7600","2. high":"196.4500","3. low":"191.5700","4. close":"193.4200","5. volume":"24598600"},"2012-12-14":{"1. open":"192.1700","2. high":"194.8000","3. low":"191.2600","4. close":"191.7600","5. volume":"19274500"},"2012-12-07":{"1. open":"190.7600","2. high":"192.2000","3. low":"186.9400","4. close":"191.9500","5. volume":"18850300"},"2012-11-30":{"1. open":"192.4500","2. high":"193.3700","3. low":"189.2700","4. close":"190.0700","5. volume":"21119100"},"2012-11-23":{"1. open":"188.6200","2. high":"193.4900","3. low":"188.2500","4. close":"193.4900","5. volume":"15826300"},"2012-11-16":{"1. open":"190.0300","2. high":"190.8800","3. low":"184.7800","4. close":"186.9400","5. volume":"18951000"},"2012-11-09":{"1. open":"192.3600","2. high":"196.7500","3. low":"188.8800","4. close":"189.6400","5. volume":"17977200"},"2012-11-02":{"1. open":"194.8000","2. high":"198.0000","3. low":"193.2900","4. close":"193.4300","5. volume":"14071200"},"2012-10-26":{"1. open":"193.7100","2. high":"194.6800","3. low":"190.5600","4. close":"193.2700","5. volume":"19824000"},"2012-10-19":{"1. open":"208.8800","2. high":"211.0000","3. low":"193.1800","4. close":"193.3600","5. volume":"37283100"},"2012-10-12":{"1. open":"210.0200","2. high":"210.7400","3. low":"205.0500","4. close":"207.8000","5. volume":"15209500"},"2012-10-05":{"1. open":"208.0100","2. high":"211.7900","3. low":"207.9400","4. close":"210.5900","5. volume":"17786100"},"2012-09-28":{"1. open":"205.0200","2. high":"208.3200","3. low":"203.9000","4. close":"207.4500","5. volume":"17962400"},"2012-09-21":{"1. open":"205.5500","2. high":"207.9900","3. low":"205.3000","4. close":"205.9800","5. volume":"24867400"},"2012-09-14":{"1. open":"199.3900","2. high":"207.6500","3. low":"198.7300","4. close":"206.8100","5. volume":"19339300"},"2012-09-07":{"1. open":"196.6100","2. high":"199.5000","3. low":"193.2500","4. close":"199.5000","5. volume":"15172300"},"2012-08-31":{"1. open":"197.9600","2. high":"198.3000","3. low":"193.1800","4. close":"194.8500","5. volume":"13113600"},"2012-08-24":{"1. open":"200.6900","2. high":"201.1300","3. low":"194.2000","4. close":"197.7700","5. volume":"14140300"},"2012-08-17":{"1. open":"198.8800","2. high":"202.0000","3. low":"197.7200","4. close":"201.2200","5. volume":"12373700"},"2012-08-10":{"1. open":"198.7600","2. high":"200.8800","3. low":"197.2400","4. close":"199.2900","5. volume":"12376100"},"2012-08-03":{"1. open":"196.3200","2. high":"198.9500","3. low":"193.0200","4. close":"198.5200","5. volume":"14944000"},"2012-07-27":{"1. open":"189.7800","2. high":"197.4100","3. low":"188.2000","4. close":"196.3900","5. volume":"18795600"},"2012-07-20":{"1. open":"185.5800","2. high":"196.8500","3. low":"183.2000","4. close":"192.4500","5. volume":"31507600"},"2012-07-13":{"1. open":"190.7600","2. high":"191.1400","3. low":"181.8500","4. close":"186.0100","5. volume":"22998800"},"2012-07-06":{"1. open":"196.3600","2. high":"197.2000","3. low":"189.7400","4. close":"191.4100","5. volume":"11920500"},"2012-06-29":{"1. open":"192.4800","2. high":"195.8100","3. low":"188.9000","4. close":"195.5800","5. volume":"18637100"},"2012-06-22":{"1. open":"197.5700","2. high":"199.9900","3. low":"193.1900","4. close":"193.7000","5. volume":"23194300"},"2012-06-15":{"1. open":"196.6000","2. high":"199.2700","3. low":"192.1400","4. close":"199.1000","5. volume":"19518700"},"2012-06-08":{"1. open":"188.3400","2. high":"195.8299","3. low":"187.0000","4. close":"195.1400","5. volume":"18002600"},"2012-06-01":{"1. open":"195.2200","2. high":"198.0800","3. low":"188.6000","4. close":"189.0800","5. volume":"21714900"},"2012-05-25":{"1. open":"195.9800","2. high":"198.2600","3. low":"193.2000","4. close":"194.3000","5. volume":"17970000"},"2012-05-18":{"1. open":"199.9200","2. high":"201.4679","3. low":"195.1600","4. close":"195.8800","5. volume":"22381000"},"2012-05-11":{"1. open":"203.9600","2. high":"204.7700","3. low":"199.0600","4. close":"201.1700","5. volume":"17219400"},"2012-05-04":{"1. open":"206.7100","2. high":"208.9290","3. low":"204.4000","4. close":"204.9900","5. volume":"14699600"},"2012-04-27":{"1. open":"197.8900","2. high":"208.1700","3. low":"196.7910","4. close":"206.8100","5. volume":"20048100"},"2012-04-20":{"1. open":"204.7400","2. high":"207.6400","3. low":"197.5210","4. close":"199.6000","5. volume":"30566700"},"2012-04-13":{"1. open":"204.4000","2. high":"206.1700","3. low":"202.1700","4. close":"202.8000","5. volume":"17522600"},"2012-04-05":{"1. open":"208.9600","2. high":"210.6900","3. low":"204.4600","4. close":"205.4700","5. volume":"15692400"},"2012-03-30":{"1. open":"206.4500","2. high":"209.1200","3. low":"206.0200","4. close":"208.6500","5. volume":"16007300"},"2012-03-23":{"1. open":"205.7100","2. high":"206.5300","3. low":"203.7020","4. close":"205.4800","5. volume":"17132200"},"2012-03-16":{"1. open":"200.9300","2. high":"207.5200","3. low":"200.2300","4. close":"206.0100","5. volume":"25846100"},"2012-03-09":{"1. open":"198.3600","2. high":"201.1900","3. low":"196.8120","4. close":"200.6200","5. volume":"21823600"},"2012-03-02":{"1. open":"196.7800","2. high":"199.1700","3. low":"196.1000","4. close":"198.8100","5. volume":"19330600"},"2012-02-24":{"1. open":"193.7300","2. high":"199.2300","3. low":"192.4600","4. close":"197.7600","5. volume":"17955300"},"2012-02-17":{"1. open":"193.3100","2. high":"193.8600","3. low":"190.8310","4. close":"193.4200","5. volume":"17149800"},"2012-02-10":{"1. open":"192.4800","2. high":"194.4600","3. low":"191.2800","4. close":"192.4200","5. volume":"18144100"},"2012-02-03":{"1. open":"189.3900","2. high":"194.8100","3. low":"188.2200","4. close":"193.6400","5. volume":"22703600"},"2012-01-27":{"1. open":"187.9100","2. high":"192.7900","3. low":"187.6700","4. close":"190.4600","5. volume":"22822200"},"2012-01-20":{"1. open":"180.3600","2. high":"188.9700","3. low":"179.3200","4. close":"188.5200","5. volume":"32020900"},"2012-01-13":{"1. open":"182.2000","2. high":"183.7200","3. low":"177.3472","4. close":"179.1600","5. volume":"26633200"},"2012-01-06":{"1. open":"186.7300","2. high":"188.7100","3. low":"182.3100","4. close":"182.5400","5. volume":"19352900"},"2011-12-30":{"1. open":"184.9700","2. high":"186.4800","3. low":"183.3400","4. close":"183.8800","5. volume":"12119700"},"2011-12-23":{"1. open":"184.5100","2. high":"187.3300","3. low":"179.0400","4. close":"184.7500","5. volume":"27166800"},"2011-12-16":{"1. open":"193.6400","2. high":"194.3000","3. low":"181.9100","4. close":"183.5700","5. volume":"30186100"},"2011-12-09":{"1. open":"191.1800","2. high":"194.9000","3. low":"190.3200","4. close":"194.5600","5. volume":"24142900"},"2011-12-02":{"1. open":"182.7100","2. high":"191.3300","3. low":"180.6700","4. close":"189.6600","5. volume":"25843600"},"2011-11-25":{"1. open":"183.3700","2. high":"183.9600","3. low":"177.0600","4. close":"177.0600","5. volume":"16357400"},"2011-11-18":{"1. open":"189.1700","2. high":"189.9700","3. low":"183.3900","4. close":"185.2400","5. volume":"25522100"},"2011-11-11":{"1. open":"186.2200","2. high":"187.8800","3. low":"181.1600","4. close":"187.3800","5. volume":"20903100"},"2011-11-04":{"1. open":"185.5900","2. high":"187.7800","3. low":"180.7400","4. close":"186.3800","5. volume":"22918900"},"2011-10-28":{"1. open":"181.5100","2. high":"188.0700","3. low":"179.0300","4. close":"187.4500","5. volume":"28719000"},"2011-10-21":{"1. open":"189.7100","2. high":"190.1600","3. low":"176.1700","4. close":"181.6300","5. volume":"46796000"},"2011-10-14":{"1. open":"183.0000","2. high":"190.5300","3. low":"182.9000","4. close":"190.5300","5. volume":"26220900"},"2011-10-07":{"1. open":"174.3600","2. high":"183.7200","3. low":"168.8800","4. close":"182.3900","5. volume":"38117800"},"2011-09-30":{"1. open":"170.9600","2. high":"180.9100","3. low":"169.8600","4. close":"174.8700","5. volume":"36868400"},"2011-09-23":{"1. open":"169.5000","2. high":"177.6700","3. low":"165.7600","4. close":"169.3400","5. volume":"31790500"},"2011-09-16":{"1. open":"159.6400","2. high":"172.9900","3. low":"158.7600","4. close":"172.9900","5. volume":"33464200"},"2011-09-09":{"1. open":"163.0600","2. high":"169.5800","3. low":"160.8100","4. close":"161.3700","5. volume":"25328900"},"2011-09-02":{"1. open":"170.5800","2. high":"173.7200","3. low":"166.0000","4. close":"166.9800","5. volume":"26288300"},"2011-08-26":{"1. open":"161.3500","2. high":"169.3300","3. low":"157.6200","4. close":"169.1400","5. volume":"33789200"},"2011-08-19":{"1. open":"171.3200","2. high":"174.0000","3. low":"157.1300","4. close":"157.5400","5. volume":"47511700"},"2011-08-12":{"1. open":"168.8300","2. high":"172.6100","3. low":"161.8500","4. close":"168.2000","5. volume":"56678700"},"2011-08-05":{"1. open":"182.6000","2. high":"183.6900","3. low":"166.5200","4. close":"172.9800","5. volume":"41229200"},"2011-07-29":{"1. open":"183.8900","2. high":"184.9600","3. low":"179.7300","4. close":"181.8500","5. volume":"26294400"},"2011-07-22":{"1. open":"174.7300","2. high":"185.6300","3. low":"173.5800","4. close":"185.1800","5. volume":"37500900"},"2011-07-15":{"1. open":"174.9000","2. high":"176.3200","3. low":"173.8400","4. close":"175.5400","5. volume":"23838300"},"2011-07-08":{"1. open":"173.5200","2. high":"177.7700","3. low":"173.5200","4. close":"176.4900","5. volume":"20777900"},"2011-07-01":{"1. open":"165.7400","2. high":"174.6500","3. low":"165.2100","4. close":"174.5400","5. volume":"23400700"},"2011-06-24":{"1. open":"163.7000","2. high":"166.8100","3. low":"163.5900","4. close":"165.0700","5. volume":"22978000"},"2011-06-17":{"1. open":"164.4400","2. high":"165.1000","3. low":"161.5200","4. close":"164.4400","5. volume":"29385600"},"2011-06-10":{"1. open":"164.7600","2. high":"165.9600","3. low":"162.8700","4. close":"163.1800","5. volume":"20640600"},"2011-06-03":{"1. open":"168.4400","2. high":"169.8900","3. low":"164.1300","4. close":"165.0500","5. volume":"23342600"},"2011-05-27":{"1. open":"168.5800","2. high":"168.6900","3. low":"165.9000","4. close":"167.5000","5. volume":"22718600"},"2011-05-20":{"1. open":"169.8100","2. high":"171.4100","3. low":"166.5300","4. close":"170.1600","5. volume":"25997900"},"2011-05-13":{"1. open":"168.3900","2. high":"172.7700","3. low":"167.8200","4. close":"169.9200","5. volume":"23498700"},"2011-05-06":{"1. open":"172.1100","2. high":"173.5400","3. low":"167.5000","4. close":"168.8900","5. volume":"29465600"},"2011-04-29":{"1. open":"167.6500","2. high":"173.0000","3. low":"167.2300","4. close":"170.5800","5. volume":"26858900"},"2011-04-21":{"1. open":"164.6400","2. high":"168.4500","3. low":"162.1900","4. close":"168.2800","5. volume":"29758000"},"2011-04-15":{"1. open":"163.4400","2. high":"166.3400","3. low":"162.3000","4. close":"166.2100","5. volume":"22168000"},"2011-04-08":{"1. open":"164.4200","2. high":"164.7500","3. low":"163.1600","4. close":"164.0500","5. volume":"17602700"},"2011-04-01":{"1. open":"161.5400","2. high":"164.4200","3. low":"161.1200","4. close":"164.2700","5. volume":"19066300"},"2011-03-25":{"1. open":"157.6400","2. high":"162.7400","3. low":"157.0700","4. close":"162.1800","5. volume":"25371800"},"2011-03-18":{"1. open":"161.1600","2. high":"161.9804","3. low":"151.7100","4. close":"155.8900","5. volume":"41798000"},"2011-03-11":{"1. open":"161.6000","2. high":"167.7200","3. low":"158.8500","4. close":"162.4300","5. volume":"31095800"},"2011-03-04":{"1. open":"162.3600","2. high":"164.3100","3. low":"159.4100","4. close":"161.8300","5. volume":"21537300"},"2011-02-25":{"1. open":"163.5700","2. high":"164.2600","3. low":"159.0300","4. close":"162.2800","5. volume":"21433300"},"2011-02-18":{"1. open":"164.1800","2. high":"164.8400","3. low":"162.5200","4. close":"164.8400","5. volume":"18590000"},"2011-02-11":{"1. open":"164.0800","2. high":"166.2500","3. low":"163.1800","4. close":"163.8500","5. volume":"26097300"},"2011-02-04":{"1. open":"159.1800","2. high":"164.2000","3. low":"158.6800","4. close":"164.0000","5. volume":"25371100"},"2011-01-28":{"1. open":"155.4200","2. high":"164.3500","3. low":"155.3300","4. close":"159.2100","5. volume":"32502900"},"2011-01-21":{"1. open":"149.8200","2. high":"156.7800","3. low":"149.3800","4. close":"155.5000","5. volume":"35766800"},"2011-01-14":{"1. open":"147.5800","2. high":"150.0000","3. low":"146.7500","4. close":"150.0000","5. volume":"19878500"},"2011-01-07":{"1. open":"147.2100","2. high":"148.8600","3. low":"146.6400","4. close":"147.9300","5. volume":"23486200"},"2010-12-31":{"1. open":"145.1200","2. high":"147.5000","3. low":"145.0000","4. close":"146.7600","5. volume":"14684300"},"2010-12-23":{"1. open":"145.3900","2. high":"146.4000","3. low":"144.3300","4. close":"145.8900","5. volume":"13585400"},"2010-12-17":{"1. open":"145.1400","2. high":"146.0100","3. low":"144.1500","4. close":"145.0000","5. volume":"28194800"},"2010-12-10":{"1. open":"144.5400","2. high":"146.2999","3. low":"143.5200","4. close":"144.8200","5. volume":"21020900"},"2010-12-03":{"1. open":"143.5300","2. high":"145.8500","3. low":"141.2800","4. close":"145.3800","5. volume":"28622500"},"2010-11-26":{"1. open":"144.0000","2. high":"146.4400","3. low":"142.3300","4. close":"143.9000","5. volume":"15256400"},"2010-11-19":{"1. open":"143.8900","2. high":"145.3500","3. low":"141.1800","4. close":"145.0500","5. volume":"24207800"},"2010-11-12":{"1. open":"145.3500","2. high":"147.5300","3. low":"143.3500","4. close":"143.7400","5. volume":"24816000"},"2010-11-05":{"1. open":"143.6400","2. high":"146.9300","3. low":"142.3200","4. close":"146.9200","5. volume":"27101400"},"2010-10-29":{"1. open":"140.4200","2. high":"144.0000","3. low":"138.5300","4. close":"143.6000","5. volume":"32583300"},"2010-10-22":{"1. open":"140.9000","2. high":"143.0300","3. low":"136.7000","4. close":"139.6700","5. volume":"41753800"},"2010-10-15":{"1. open":"138.7900","2. high":"142.1000","3. low":"138.2700","4. close":"141.0600","5. volume":"31299400"},"2010-10-08":{"1. open":"135.2300","2. high":"139.0900","3. low":"134.3900","4. close":"138.8500","5. volume":"26027000"},"2010-10-01":{"1. open":"133.5100","2. high":"136.2800","3. low":"133.5100","4. close":"135.6400","5. volume":"30834900"},"2010-09-24":{"1. open":"130.2400","2. high":"134.1500","3. low":"130.1100","4. close":"134.1100","5. volume":"28357000"},"2010-09-17":{"1. open":"128.6300","2. high":"130.6000","3. low":"128.4300","4. close":"130.1900","5. volume":"29966700"},"2010-09-10":{"1. open":"126.9900","2. high":"128.2900","3. low":"125.3900","4. close":"127.9900","5. volume":"16686200"},"2010-09-03":{"1. open":"125.0800","2. high":"127.6000","3. low":"122.2800","4. close":"127.5800","5. volume":"25097500"},"2010-08-27":{"1. open":"127.5700","2. high":"128.0300","3. low":"122.4200","4. close":"124.7300","5. volume":"28851700"},"2010-08-20":{"1. open":"127.4700","2. high":"130.1950","3. low":"126.9600","4. close":"127.5000","5. volume":"24839400"},"2010-08-13":{"1. open":"130.7900","2. high":"132.4900","3. low":"127.3300","4. close":"127.8700","5. volume":"27721100"},"2010-08-06":{"1. open":"129.2500","2. high":"131.9800","3. low":"128.7600","4. close":"130.1400","5. volume":"26753600"},"2010-07-30":{"1. open":"128.1800","2. high":"129.5000","3. low":"127.0400","4. close":"128.4000","5. volume":"29087100"},"2010-07-23":{"1. open":"128.6700","2. high":"130.3800","3. low":"122.9300","4. close":"128.3800","5. volume":"45328500"},"2010-07-16":{"1. open":"127.3700","2. high":"131.6000","3. low":"127.1600","4. close":"128.0300","5. volume":"30691500"},"2010-07-09":{"1. open":"123.5800","2. high":"128.2000","3. low":"122.1700","4. close":"127.9600","5. volume":"22776300"},"2010-07-02":{"1. open":"127.6500","2. high":"129.4700","3. low":"120.6100","4. close":"121.8600","5. volume":"39925900"},"2010-06-25":{"1. open":"131.4200","2. high":"131.9400","3. low":"127.1200","4. close":"127.1200","5. volume":"35729700"},"2010-06-18":{"1. open":"128.5000","2. high":"131.2500","3. low":"128.3400","4. close":"130.1500","5. volume":"34958900"},"2010-06-11":{"1. open":"125.5700","2. high":"128.8000","3. low":"122.8200","4. close":"128.4500","5. volume":"36446000"},"2010-06-04":{"1. open":"124.6900","2. high":"128.2200","3. low":"124.2000","4. close":"125.2800","5. volume":"31155200"},"2010-05-28":{"1. open":"125.2600","2. high":"126.3900","3. low":"121.4700","4. close":"125.2600","5. volume":"40594400"},"2010-05-21":{"1. open":"130.6800","2. high":"131.9900","3. low":"121.4000","4. close":"125.4200","5. volume":"52738700"},"2010-05-14":{"1. open":"126.2700","2. high":"133.1000","3. low":"125.0600","4. close":"131.1900","5. volume":"52007600"},"2010-05-07":{"1. open":"129.3900","2. high":"130.1400","3. low":"116.0000","4. close":"122.1000","5. volume":"43103500"},"2010-04-30":{"1. open":"129.7600","2. high":"132.0000","3. low":"128.7100","4. close":"129.0000","5. volume":"35378000"},"2010-04-23":{"1. open":"130.3800","2. high":"132.2800","3. low":"127.7700","4. close":"129.9900","5. volume":"46345200"},"2010-04-16":{"1. open":"128.5700","2. high":"132.1700","3. low":"127.8400","4. close":"130.6300","5. volume":"35328700"},"2010-04-09":{"1. open":"128.3800","2. high":"129.8000","3. low":"127.1200","4. close":"128.7600","5. volume":"24394000"},"2010-04-01":{"1. open":"129.3000","2. high":"129.9500","3. low":"127.5500","4. close":"128.2500","5. volume":"17954900"},"2010-03-26":{"1. open":"127.1100","2. high":"130.7300","3. low":"126.5700","4. close":"129.2600","5. volume":"31453700"},"2010-03-19":{"1. open":"127.4000","2. high":"128.9300","3. low":"126.7800","4. close":"127.7100","5. volume":"32679700"},"2010-03-12":{"1. open":"127.0600","2. high":"128.3700","3. low":"125.2000","4. close":"127.9400","5. volume":"33736000"},"2010-03-05":{"1. open":"127.5000","2. high":"129.0900","3. low":"125.4700","4. close":"127.2500","5. volume":"29153500"},"2010-02-26":{"1. open":"127.3000","2. high":"128.2700","3. low":"125.5700","4. close":"127.1600","5. volume":"23624900"},"2010-02-19":{"1. open":"124.9100","2. high":"128.0600","3. low":"124.1100","4. close":"127.1900","5. volume":"24433700"},"2010-02-12":{"1. open":"123.1500","2. high":"124.2000","3. low":"121.6100","4. close":"124.0000","5. volume":"30088800"},"2010-02-05":{"1. open":"123.2300","2. high":"126.0700","3. low":"121.8300","4. close":"122.9700","5. volume":"35063800"},"2010-01-29":{"1. open":"126.3300","2. high":"127.7500","3. low":"121.9000","4. close":"122.3900","5. volume":"42786400"},"2010-01-22":{"1. open":"131.6300","2. high":"134.2500","3. low":"125.3700","4. close":"125.5000","5. volume":"48810900"},"2010-01-15":{"1. open":"131.0600","2. high":"132.8900","3. low":"128.6700","4. close":"131.7800","5. volume":"35873500"},"2010-01-08":{"1. open":"131.1800","2. high":"132.9700","3. low":"128.9100","4. close":"130.8500","5. volume":"28639800"},"2009-12-31":{"1. open":"130.9900","2. high":"132.8500","3. low":"130.6800","4. close":"130.9000","5. volume":"18075000"},"2009-12-24":{"1. open":"127.8000","2. high":"130.5700","3. low":"127.6800","4. close":"130.5700","5. volume":"18700700"},"2009-12-18":{"1. open":"129.6500","2. high":"129.9800","3. low":"127.0000","4. close":"127.9100","5. volume":"34452500"},"2009-12-11":{"1. open":"126.8800","2. high":"129.7700","3. low":"126.1100","4. close":"129.6800","5. volume":"29242700"},"2009-12-04":{"1. open":"125.1200","2. high":"128.9000","3. low":"124.9200","4. close":"127.2500","5. volume":"30307700"},"2009-11-27":{"1. open":"127.7000","2. high":"128.9400","3. low":"124.2600","4. close":"125.7000","5. volume":"19106900"},"2009-11-20":{"1. open":"127.1700","2. high":"128.6550","3. low":"126.4600","4. close":"126.9600","5. volume":"23482700"},"2009-11-13":{"1. open":"123.9200","2. high":"127.8000","3. low":"123.4900","4. close":"127.0300","5. volume":"31065000"},"2009-11-06":{"1. open":"120.6100","2. high":"123.5000","3. low":"119.5000","4. close":"123.4900","5. volume":"30790900"},"2009-10-30":{"1. open":"120.6100","2. high":"124.3000","3. low":"119.1500","4. close":"120.6100","5. volume":"38785400"},"2009-10-23":{"1. open":"121.7600","2. high":"124.1100","3. low":"120.0000","4. close":"120.3600","5. volume":"36292000"},"2009-10-16":{"1. open":"125.4400","2. high":"128.6100","3. low":"121.2500","4. close":"121.6400","5. volume":"55978800"},"2009-10-09":{"1. open":"118.9000","2. high":"126.0000","3. low":"118.1300","4. close":"125.9300","5. volume":"37825500"},"2009-10-02":{"1. open":"120.5200","2. high":"122.0000","3. low":"117.2600","4. close":"119.0200","5. volume":"37380100"},"2009-09-25":{"1. open":"121.0300","2. high":"122.7400","3. low":"120.1000","4. close":"121.0800","5. volume":"26232600"},"2009-09-18":{"1. open":"117.0000","2. high":"122.8800","3. low":"116.9400","4. close":"122.1100","5. volume":"40859700"},"2009-09-11":{"1. open":"117.9400","2. high":"119.2500","3. low":"116.1600","4. close":"118.0500","5. volume":"21828700"},"2009-09-04":{"1. open":"117.1000","2. high":"118.9300","3. low":"115.1500","4. close":"117.4600","5. volume":"25309900"},"2009-08-28":{"1. open":"119.9200","2. high":"120.8800","3. low":"117.5100","4. close":"118.2200","5. volume":"26123700"},"2009-08-21":{"1. open":"116.6900","2. high":"120.0100","3. low":"116.1200","4. close":"119.9000","5. volume":"27622200"},"2009-08-14":{"1. open":"118.1700","2. high":"119.9600","3. low":"117.3200","4. close":"118.5700","5. volume":"25401100"},"2009-08-07":{"1. open":"118.8800","2. high":"119.9600","3. low":"116.7000","4. close":"119.3300","5. volume":"27893800"},"2009-07-31":{"1. open":"116.9500","2. high":"119.3700","3. low":"116.0500","4. close":"117.9300","5. volume":"28085700"},"2009-07-24":{"1. open":"114.5300","2. high":"118.1500","3. low":"114.3900","4. close":"117.6400","5. volume":"42520000"},"2009-07-17":{"1. open":"101.2800","2. high":"115.5300","3. low":"100.1900","4. close":"115.4200","5. volume":"58793700"},"2009-07-10":{"1. open":"101.5700","2. high":"102.7800","3. low":"99.5000","4. close":"100.8300","5. volume":"34208000"},"2009-07-02":{"1. open":"105.9900","2. high":"106.2700","3. low":"101.7300","4. close":"101.7300","5. volume":"24758400"},"2009-06-26":{"1. open":"105.1800","2. high":"106.7850","3. low":"103.5100","4. close":"105.6800","5. volume":"30871700"},"2009-06-19":{"1. open":"107.6300","2. high":"109.1400","3. low":"105.5000","4. close":"105.8900","5. volume":"42930700"},"2009-06-12":{"1. open":"106.6400","2. high":"110.6400","3. low":"105.5000","4. close":"108.2100","5. volume":"38913000"},"2009-06-05":{"1. open":"106.9400","2. high":"108.8000","3. low":"105.1100","4. close":"107.2400","5. volume":"35592300"},"2009-05-29":{"1. open":"101.3200","2. high":"106.5000","3. low":"101.0200","4. close":"106.2800","5. volume":"27330100"},"2009-05-22":{"1. open":"102.0000","2. high":"106.1200","3. low":"101.7400","4. close":"101.8900","5. volume":"34599500"},"2009-05-15":{"1. open":"101.0900","2. high":"104.3800","3. low":"100.5700","4. close":"101.3700","5. volume":"42229200"},"2009-05-08":{"1. open":"105.2600","2. high":"106.8200","3. low":"99.8300","4. close":"101.4900","5. volume":"42691700"},"2009-05-01":{"1. open":"99.6100","2. high":"106.0500","3. low":"99.2500","4. close":"104.6100","5. volume":"46394300"},"2009-04-24":{"1. open":"100.2900","2. high":"103.8600","3. low":"98.2000","4. close":"100.0800","5. volume":"59469300"},"2009-04-17":{"1. open":"100.2800","2. high":"102.0400","3. low":"96.4400","4. close":"101.2700","5. volume":"41711800"},"2009-04-09":{"1. open":"100.9000","2. high":"102.4500","3. low":"98.5200","4. close":"101.7000","5. volume":"32887100"},"2009-04-03":{"1. open":"92.0000","2. high":"102.6600","3. low":"91.8000","4. close":"102.2200","5. volume":"64912500"},"2009-03-27":{"1. open":"93.7000","2. high":"99.8600","3. low":"92.7500","4. close":"94.1500","5. volume":"60950700"},"2009-03-20":{"1. open":"91.3400","2. high":"95.0000","3. low":"89.4100","4. close":"92.5100","5. volume":"63330900"},"2009-03-13":{"1. open":"84.7000","2. high":"90.6500","3. low":"83.0200","4. close":"90.3600","5. volume":"61831600"},"2009-03-06":{"1. open":"91.1700","2. high":"91.9000","3. low":"83.8100","4. close":"85.8100","5. volume":"74483600"},"2009-02-27":{"1. open":"89.3000","2. high":"93.2800","3. low":"82.8500","4. close":"92.0300","5. volume":"77805700"},"2009-02-20":{"1. open":"91.7300","2. high":"92.4900","3. low":"87.3400","4. close":"88.7900","5. volume":"42419500"},"2009-02-13":{"1. open":"95.9300","2. high":"96.9800","3. low":"92.2000","4. close":"93.8400","5. volume":"49132900"},"2009-02-06":{"1. open":"90.6000","2. high":"97.1000","3. low":"89.6900","4. close":"96.1400","5. volume":"53659500"},"2009-01-30":{"1. open":"89.7700","2. high":"94.9400","3. low":"89.5200","4. close":"91.6500","5. volume":"50819300"},"2009-01-23":{"1. open":"84.7600","2. high":"91.6000","3. low":"81.7600","4. close":"89.4900","5. volume":"61309500"},"2009-01-16":{"1. open":"84.5700","2. high":"86.6000","3. low":"82.1100","4. close":"84.9200","5. volume":"48180000"},"2009-01-09":{"1. open":"86.4200","2. high":"90.4100","3. low":"84.2500","4. close":"84.7000","5. volume":"41092400"},"2009-01-02":{"1. open":"81.7200","2. high":"87.5900","3. low":"79.6800","4. close":"87.3700","5. volume":"26062900"},"2008-12-26":{"1. open":"83.2700","2. high":"83.4500","3. low":"79.9200","4. close":"81.3300","5. volume":"18974200"},"2008-12-19":{"1. open":"82.5100","2. high":"87.2700","3. low":"80.0000","4. close":"83.5200","5. volume":"50128100"},"2008-12-12":{"1. open":"82.5700","2. high":"85.8800","3. low":"78.0600","4. close":"82.2000","5. volume":"49785100"},"2008-12-05":{"1. open":"80.9500","2. high":"81.5000","3. low":"75.3100","4. close":"80.5900","5. volume":"51454000"},"2008-11-28":{"1. open":"75.7400","2. high":"82.4000","3. low":"75.0000","4. close":"81.6000","5. volume":"39691800"},"2008-11-21":{"1. open":"79.4000","2. high":"81.0000","3. low":"69.5000","4. close":"74.8800","5. volume":"73411500"},"2008-11-14":{"1. open":"87.9900","2. high":"88.1000","3. low":"75.4000","4. close":"80.3300","5. volume":"58194400"},"2008-11-07":{"1. open":"92.6400","2. high":"94.7600","3. low":"84.2500","4. close":"86.2700","5. volume":"47015300"},"2008-10-31":{"1. open":"80.2700","2. high":"94.1900","3. low":"79.0100","4. close":"92.9700","5. volume":"60537100"},"2008-10-24":{"1. open":"92.2100","2. high":"93.3100","3. low":"78.8200","4. close":"82.0700","5. volume":"58306900"},"2008-10-17":{"1. open":"90.4400","2. high":"99.0000","3. low":"84.3500","4. close":"90.7800","5. volume":"75048600"},"2008-10-10":{"1. open":"101.2100","2. high":"103.0000","3. low":"83.5100","4. close":"87.7500","5. volume":"86848900"},"2008-10-03":{"1. open":"117.4400","2. high":"118.4300","3. low":"103.0300","4. close":"103.4400","5. volume":"62809100"},"2008-09-26":{"1. open":"118.4500","2. high":"121.9900","3. low":"114.1400","4. close":"119.4200","5. volume":"34730600"},"2008-09-19":{"1. open":"115.3600","2. high":"124.0000","3. low":"110.6100","4. close":"118.8500","5. volume":"66307100"},"2008-09-12":{"1. open":"118.0000","2. high":"119.9500","3. low":"115.0000","4. close":"118.9700","5. volume":"46783800"},"2008-09-05":{"1. open":"122.8700","2. high":"124.0000","3. low":"113.1700","4. close":"114.3300","5. volume":"42011600"},"2008-08-29":{"1. open":"124.4800","2. high":"125.4500","3. low":"121.5000","4. close":"121.7300","5. volume":"30493600"},"2008-08-22":{"1. open":"126.4900","2. high":"127.0000","3. low":"121.5500","4. close":"124.9300","5. volume":"34457400"},"2008-08-15":{"1. open":"128.4300","2. high":"128.4300","3. low":"124.4000","4. close":"126.3600","5. volume":"32724200"},"2008-08-08":{"1. open":"126.7700","2. high":"129.9700","3. low":"126.2500","4. close":"128.8100","5. volume":"34413900"},"2008-08-01":{"1. open":"127.6900","2. high":"129.5000","3. low":"126.1300","4. close":"126.6400","5. volume":"28699300"},"2008-07-25":{"1. open":"129.8300","2. high":"130.9300","3. low":"127.2600","4. close":"128.5300","5. volume":"45950300"},"2008-07-18":{"1. open":"121.8000","2. high":"130.0000","3. low":"119.9000","4. close":"129.8900","5. volume":"59542700"},"2008-07-11":{"1. open":"119.6200","2. high":"124.5000","3. low":"119.6200","4. close":"122.1200","5. volume":"47346100"},"2008-07-03":{"1. open":"119.9900","2. high":"120.7800","3. low":"116.6000","4. close":"119.5400","5. volume":"32716800"},"2008-06-27":{"1. open":"123.0000","2. high":"125.8300","3. low":"118.2600","4. close":"120.0500","5. volume":"41907700"},"2008-06-20":{"1. open":"125.4600","2. high":"127.1400","3. low":"122.3600","4. close":"122.7400","5. volume":"35367900"},"2008-06-13":{"1. open":"125.3800","2. high":"126.7220","3. low":"122.8600","4. close":"126.1500","5. volume":"31303600"},"2008-06-06":{"1. open":"128.6700","2. high":"129.3700","3. low":"124.7400","4. close":"124.9400","5. volume":"35309300"},"2008-05-30":{"1. open":"124.0100","2. high":"129.9900","3. low":"124.0000","4. close":"129.4300","5. volume":"33079200"},"2008-05-23":{"1. open":"127.6800","2. high":"128.2100","3. low":"123.0200","4. close":"124.2000","5. volume":"31469600"},"2008-05-16":{"1. open":"123.8000","2. high":"128.8300","3. low":"123.5600","4. close":"127.8200","5. volume":"40848500"},"2008-05-09":{"1. open":"122.7600","2. high":"125.1700","3. low":"120.7800","4. close":"124.0600","5. volume":"38973400"},"2008-05-02":{"1. open":"122.9800","2. high":"124.4300","3. low":"120.5000","4. close":"123.1800","5. volume":"36106300"},"2008-04-25":{"1. open":"122.0500","2. high":"124.9000","3. low":"122.0500","4. close":"123.0800","5. volume":"32273700"},"2008-04-18":{"1. open":"116.2000","2. high":"125.0000","3. low":"115.5400","4. close":"124.4000","5. volume":"67195200"},"2008-04-11":{"1. open":"116.3700","2. high":"119.2200","3. low":"115.2800","4. close":"116.0000","5. volume":"38989700"},"2008-04-04":{"1. open":"113.9500","2. high":"118.3700","3. low":"113.3400","4. close":"115.7600","5. volume":"42376300"},"2008-03-28":{"1. open":"118.5700","2. high":"119.7900","3. low":"114.2100","4. close":"114.5700","5. volume":"41496800"},"2008-03-20":{"1. open":"113.0000","2. high":"118.5000","3. low":"113.0000","4. close":"118.3300","5. volume":"39979100"},"2008-03-14":{"1. open":"113.1200","2. high":"118.0000","3. low":"112.6900","4. close":"115.2301","5. volume":"48594600"},"2008-03-07":{"1. open":"114.0900","2. high":"116.4100","3. low":"111.8000","4. close":"113.9400","5. volume":"39506500"},"2008-02-29":{"1. open":"107.6800","2. high":"116.6300","3. low":"107.4300","4. close":"113.8600","5. volume":"54366700"},"2008-02-22":{"1. open":"106.7900","2. high":"109.6000","3. low":"104.5300","4. close":"108.0700","5. volume":"31292600"},"2008-02-15":{"1. open":"102.9000","2. high":"108.9300","3. low":"102.8700","4. close":"106.1600","5. volume":"33932900"},"2008-02-08":{"1. open":"108.4000","2. high":"109.0000","3. low":"100.6000","4. close":"103.2700","5. volume":"40641500"},"2008-02-01":{"1. open":"104.4100","2. high":"109.4000","3. low":"103.7000","4. close":"109.0800","5. volume":"39007500"},"2008-01-25":{"1. open":"99.1600","2. high":"107.7900","3. low":"98.5000","4. close":"104.5200","5. volume":"57768700"},"2008-01-18":{"1. open":"105.0000","2. high":"106.7200","3. low":"100.0500","4. close":"103.4000","5. volume":"78126300"},"2008-01-11":{"1. open":"100.3550","2. high":"101.0000","3. low":"97.0400","4. close":"97.6700","5. volume":"52601500"},"2008-01-04":{"1. open":"109.2500","2. high":"110.0000","3. low":"100.4800","4. close":"101.1300","5. volume":"33799300"},"2007-12-28":{"1. open":"111.2000","2. high":"112.1900","3. low":"109.1080","4. close":"110.0900","5. volume":"16539900"},"2007-12-21":{"1. open":"105.3700","2. high":"111.1600","3. low":"104.0000","4. close":"111.0500","5. volume":"43481700"},"2007-12-14":{"1. open":"109.0000","2. high":"110.4000","3. low":"104.1000","4. close":"105.7700","5. volume":"36725700"},"2007-12-07":{"1. open":"105.4500","2. high":"110.0000","3. low":"104.5800","4. close":"108.8600","5. volume":"31672000"},"2007-11-30":{"1. open":"104.4000","2. high":"109.1900","3. low":"101.5000","4. close":"105.1800","5. volume":"46569900"},"2007-11-23":{"1. open":"104.3400","2. high":"105.3900","3. low":"101.3400","4. close":"104.0500","5. volume":"27820500"},"2007-11-16":{"1. open":"101.8900","2. high":"106.4200","3. low":"100.7000","4. close":"104.7900","5. volume":"50102700"},"2007-11-09":{"1. open":"115.1100","2. high":"115.1100","3. low":"99.2700","4. close":"100.2542","5. volume":"62718300"},"2007-11-02":{"1. open":"113.9000","2. high":"116.2500","3. low":"113.2800","4. close":"114.5900","5. volume":"30044700"},"2007-10-26":{"1. open":"110.9700","2. high":"114.8000","3. low":"110.9600","4. close":"113.7300","5. volume":"32762600"},"2007-10-19":{"1. open":"117.9500","2. high":"119.9400","3. low":"111.8000","4. close":"112.2800","5. volume":"53958800"},"2007-10-12":{"1. open":"116.1000","2. high":"121.4600","3. low":"115.8800","4. close":"117.8100","5. volume":"35082300"},"2007-10-05":{"1. open":"117.6100","2. high":"119.6000","3. low":"115.0000","4. close":"116.3000","5. volume":"33529800"},"2007-09-28":{"1. open":"116.9000","2. high":"118.5000","3. low":"115.7900","4. close":"117.8000","5. volume":"33029400"},"2007-09-21":{"1. open":"114.7000","2. high":"118.1000","3. low":"114.3000","4. close":"116.7800","5. volume":"38076800"},"2007-09-14":{"1. open":"116.1500","2. high":"117.7800","3. low":"114.6500","4. close":"115.1300","5. volume":"32211300"},"2007-09-07":{"1. open":"116.3400","2. high":"118.8900","3. low":"115.3300","4. close":"115.5500","5. volume":"28916300"},"2007-08-31":{"1. open":"113.0000","2. high":"117.3500","3. low":"111.6300","4. close":"116.6900","5. volume":"32617900"},"2007-08-24":{"1. open":"110.9000","2. high":"113.2500","3. low":"108.0800","4. close":"113.2400","5. volume":"39957700"},"2007-08-17":{"1. open":"112.9900","2. high":"113.9500","3. low":"103.7000","4. close":"110.9000","5. volume":"55388900"},"2007-08-10":{"1. open":"111.9700","2. high":"114.6000","3. low":"109.7000","4. close":"112.6400","5. volume":"41626500"},"2007-08-03":{"1. open":"115.6200","2. high":"115.7500","3. low":"110.0200","4. close":"111.8900","5. volume":"66192100"},"2007-07-27":{"1. open":"114.8800","2. high":"118.8200","3. low":"114.8500","4. close":"115.6200","5. volume":"64841000"},"2007-07-20":{"1. open":"108.5700","2. high":"116.4800","3. low":"108.4200","4. close":"114.8100","5. volume":"55626100"},"2007-07-13":{"1. open":"108.7300","2. high":"109.6500","3. low":"108.1000","4. close":"108.6000","5. volume":"34811600"},"2007-07-06":{"1. open":"105.3900","2. high":"109.6600","3. low":"104.5800","4. close":"109.0300","5. volume":"24567300"},"2007-06-29":{"1. open":"104.7300","2. high":"106.9200","3. low":"104.1000","4. close":"105.2500","5. volume":"31559100"},"2007-06-22":{"1. open":"105.2700","2. high":"107.0200","3. low":"104.4400","4. close":"104.4400","5. volume":"35051000"},"2007-06-15":{"1. open":"102.8700","2. high":"105.1900","3. low":"102.1000","4. close":"105.0900","5. volume":"34517000"},"2007-06-08":{"1. open":"106.5000","2. high":"106.5900","3. low":"101.5600","4. close":"103.0700","5. volume":"63185700"},"2007-06-01":{"1. open":"105.5700","2. high":"107.6700","3. low":"105.2100","4. close":"106.5400","5. volume":"23208200"},"2007-05-25":{"1. open":"107.1500","2. high":"108.0000","3. low":"103.5700","4. close":"105.1800","5. volume":"30271700"},"2007-05-18":{"1. open":"105.8100","2. high":"108.0500","3. low":"104.5300","4. close":"107.9900","5. volume":"35014200"},"2007-05-11":{"1. open":"102.7600","2. high":"105.9900","3. low":"102.2100","4. close":"105.9800","5. volume":"34979100"},"2007-05-04":{"1. open":"101.1100","2. high":"103.1700","3. low":"100.9700","4. close":"102.9600","5. volume":"38307800"},"2007-04-27":{"1. open":"95.3500","2. high":"101.7000","3. low":"95.0500","4. close":"101.1700","5. volume":"58275300"},"2007-04-20":{"1. open":"94.9900","2. high":"97.6600","3. low":"93.9110","4. close":"94.5800","5. volume":"51786700"},"2007-04-13":{"1. open":"96.4300","2. high":"96.9400","3. low":"94.5300","4. close":"94.9300","5. volume":"27497000"},"2007-04-05":{"1. open":"94.5100","2. high":"96.7500","3. low":"94.0600","4. close":"96.5200","5. volume":"19197800"},"2007-03-30":{"1. open":"94.8400","2. high":"95.2500","3. low":"93.5700","4. close":"94.2600","5. volume":"34042800"},"2007-03-23":{"1. open":"93.9500","2. high":"95.8100","3. low":"93.3900","4. close":"95.0300","5. volume":"26906600"},"2007-03-16":{"1. open":"93.2900","2. high":"94.4700","3. low":"92.1000","4. close":"93.2500","5. volume":"36423000"},"2007-03-09":{"1. open":"90.2500","2. high":"94.8500","3. low":"90.1000","4. close":"93.2800","5. volume":"43505100"},"2007-03-02":{"1. open":"97.8600","2. high":"97.8600","3. low":"88.7700","4. close":"90.9000","5. volume":"52427400"},"2007-02-23":{"1. open":"98.6600","2. high":"99.5000","3. low":"97.4100","4. close":"97.7300","5. volume":"20682500"},"2007-02-16":{"1. open":"98.8000","2. high":"99.5200","3. low":"97.8000","4. close":"98.9900","5. volume":"27047900"},"2007-02-09":{"1. open":"99.1700","2. high":"100.4400","3. low":"97.8100","4. close":"98.5500","5. volume":"34668400"},"2007-02-02":{"1. open":"98.1000","2. high":"99.7300","3. low":"97.4500","4. close":"99.1700","5. volume":"34172300"},"2007-01-26":{"1. open":"96.4200","2. high":"97.9200","3. low":"96.1200","4. close":"97.4500","5. volume":"41549100"},"2007-01-19":{"1. open":"99.4000","2. high":"100.9000","3. low":"94.5500","4. close":"96.1700","5. volume":"58474800"},"2007-01-12":{"1. open":"98.5000","2. high":"100.3300","3. low":"97.9300","4. close":"99.3400","5. volume":"44830200"},"2007-01-05":{"1. open":"97.1700","2. high":"98.7900","3. low":"96.2600","4. close":"97.4200","5. volume":"26942600"},"2006-12-29":{"1. open":"95.0000","2. high":"97.8800","3. low":"94.9200","4. close":"97.1500","5. volume":"15807900"},"2006-12-22":{"1. open":"94.9500","2. high":"96.5000","3. low":"94.8000","4. close":"95.2500","5. volume":"24009800"},"2006-12-15":{"1. open":"93.7200","2. high":"95.8000","3. low":"93.3000","4. close":"95.3000","5. volume":"30414900"},"2006-12-08":{"1. open":"92.5000","2. high":"94.8700","3. low":"92.2500","4. close":"93.8600","5. volume":"28792200"},"2006-12-01":{"1. open":"92.7100","2. high":"93.2400","3. low":"90.4300","4. close":"91.2500","5. volume":"27785200"},"2006-11-24":{"1. open":"93.7700","2. high":"93.8000","3. low":"92.8000","4. close":"93.3500","5. volume":"13559900"},"2006-11-17":{"1. open":"91.7500","2. high":"94.0500","3. low":"91.4100","4. close":"93.8100","5. volume":"23826600"},"2006-11-10":{"1. open":"91.5000","2. high":"93.4000","3. low":"91.5000","4. close":"91.7600","5. volume":"29456500"},"2006-11-03":{"1. open":"90.3000","2. high":"92.6800","3. low":"89.8000","4. close":"91.4100","5. volume":"30108500"},"2006-10-27":{"1. open":"90.0500","2. high":"92.0000","3. low":"90.0100","4. close":"90.7600","5. volume":"35037300"},"2006-10-20":{"1. open":"86.0800","2. high":"92.0400","3. low":"85.7500","4. close":"90.4800","5. volume":"67866100"},"2006-10-13":{"1. open":"83.1400","2. high":"86.2100","3. low":"83.0000","4. close":"86.0800","5. volume":"26864000"},"2006-10-06":{"1. open":"81.7600","2. high":"83.7800","3. low":"81.5600","4. close":"83.1400","5. volume":"25738600"},"2006-09-29":{"1. open":"81.6400","2. high":"82.7900","3. low":"81.2800","4. close":"81.9400","5. volume":"25658300"},"2006-09-22":{"1. open":"82.5600","2. high":"83.7900","3. low":"81.0100","4. close":"81.2100","5. volume":"30290000"},"2006-09-15":{"1. open":"80.6000","2. high":"83.5900","3. low":"80.2500","4. close":"82.9400","5. volume":"27425800"},"2006-09-08":{"1. open":"81.1900","2. high":"81.5400","3. low":"79.3100","4. close":"80.6600","5. volume":"16108000"},"2006-09-01":{"1. open":"79.9100","2. high":"81.6800","3. low":"79.7600","4. close":"81.4100","5. volume":"22236900"},"2006-08-25":{"1. open":"79.5100","2. high":"80.0000","3. low":"78.4200","4. close":"79.8800","5. volume":"18060100"},"2006-08-18":{"1. open":"75.8500","2. high":"79.9700","3. low":"75.6000","4. close":"79.9000","5. volume":"29303900"},"2006-08-11":{"1. open":"75.6300","2. high":"76.2800","3. low":"75.0500","4. close":"75.4800","5. volume":"19054700"},"2006-08-04":{"1. open":"76.4400","2. high":"77.5000","3. low":"74.9000","4. close":"75.9100","5. volume":"20900500"},"2006-07-28":{"1. open":"74.9200","2. high":"77.3000","3. low":"74.9200","4. close":"76.9600","5. volume":"25666400"},"2006-07-21":{"1. open":"73.3400","2. high":"77.0600","3. low":"72.7300","4. close":"74.8600","5. volume":"50614500"},"2006-07-14":{"1. open":"76.1800","2. high":"76.8300","3. low":"73.3700","4. close":"73.5700","5. volume":"37325800"},"2006-07-07":{"1. open":"77.5400","2. high":"78.5300","3. low":"76.1200","4. close":"76.4200","5. volume":"18199800"},"2006-06-30":{"1. open":"77.0400","2. high":"77.9300","3. low":"76.0600","4. close":"76.8200","5. volume":"26797500"},"2006-06-23":{"1. open":"78.0600","2. high":"78.5600","3. low":"76.9400","4. close":"77.1000","5. volume":"27070000"},"2006-06-16":{"1. open":"77.6800","2. high":"78.7800","3. low":"76.8200","4. close":"77.9500","5. volume":"33150500"},"2006-06-09":{"1. open":"79.1000","2. high":"80.7400","3. low":"76.7500","4. close":"78.0100","5. volume":"40341000"},"2006-06-02":{"1. open":"80.3500","2. high":"80.9600","3. low":"79.1500","4. close":"79.5200","5. volume":"23532800"},"2006-05-26":{"1. open":"79.9400","2. high":"81.3000","3. low":"79.0000","4. close":"80.7500","5. volume":"26222700"},"2006-05-19":{"1. open":"81.8000","2. high":"83.2500","3. low":"79.5100","4. close":"80.2800","5. volume":"28629900"},"2006-05-12":{"1. open":"82.6000","2. high":"83.6900","3. low":"82.3000","4. close":"82.3900","5. volume":"22319900"},"2006-05-05":{"1. open":"82.5900","2. high":"83.5500","3. low":"82.0000","4. close":"82.9800","5. volume":"24540000"},"2006-04-28":{"1. open":"81.3000","2. high":"84.4000","3. low":"81.1000","4. close":"82.3400","5. volume":"36485300"},"2006-04-21":{"1. open":"81.7700","2. high":"84.0000","3. low":"81.2600","4. close":"81.6600","5. volume":"35449300"},"2006-04-13":{"1. open":"82.4900","2. high":"82.7400","3. low":"80.6300","4. close":"81.9800","5. volume":"18292300"},"2006-04-07":{"1. open":"82.7200","2. high":"84.4500","3. low":"82.4400","4. close":"82.4800","5. volume":"23780100"},"2006-03-31":{"1. open":"82.9800","2. high":"83.7000","3. low":"82.2000","4. close":"82.4700","5. volume":"23139800"},"2006-03-24":{"1. open":"83.1100","2. high":"84.9900","3. low":"82.9300","4. close":"83.3600","5. volume":"25547800"},"2006-03-17":{"1. open":"81.5600","2. high":"83.7600","3. low":"81.4500","4. close":"83.3000","5. volume":"25173700"},"2006-03-10":{"1. open":"80.0500","2. high":"82.2500","3. low":"79.8600","4. close":"81.5700","5. volume":"23708100"},"2006-03-03":{"1. open":"80.0000","2. high":"80.8900","3. low":"79.5100","4. close":"79.9600","5. volume":"23693200"},"2006-02-24":{"1. open":"80.1000","2. high":"81.6500","3. low":"79.8500","4. close":"80.1000","5. volume":"20014900"},"2006-02-17":{"1. open":"81.3300","2. high":"81.9100","3. low":"80.1300","4. close":"80.7100","5. volume":"26994200"},"2006-02-10":{"1. open":"79.9400","2. high":"81.4600","3. low":"78.9300","4. close":"81.3300","5. volume":"32826100"},"2006-02-03":{"1. open":"81.0200","2. high":"82.2400","3. low":"79.7200","4. close":"79.9700","5. volume":"33566000"},"2006-01-27":{"1. open":"81.3300","2. high":"82.1500","3. low":"80.5900","4. close":"81.0200","5. volume":"32471000"},"2006-01-20":{"1. open":"82.8000","2. high":"84.7000","3. low":"81.2500","4. close":"81.3600","5. volume":"34792500"},"2006-01-13":{"1. open":"83.9000","2. high":"84.8100","3. low":"82.5000","4. close":"83.1700","5. volume":"30173200"},"2006-01-06":{"1. open":"82.4500","2. high":"85.0300","3. low":"80.8100","4. close":"84.9500","5. volume":"36958200"},"2005-12-30":{"1. open":"83.4800","2. high":"84.5000","3. low":"81.5600","4. close":"82.2000","5. volume":"17622000"},"2005-12-23":{"1. open":"83.2300","2. high":"84.2000","3. low":"82.0600","4. close":"83.4800","5. volume":"27298200"},"2005-12-16":{"1. open":"87.0100","2. high":"87.3500","3. low":"82.7500","4. close":"83.3700","5. volume":"39305300"},"2005-12-09":{"1. open":"88.4000","2. high":"89.9200","3. low":"86.3300","4. close":"86.9700","5. volume":"26427900"},"2005-12-02":{"1. open":"88.8000","2. high":"89.9400","3. low":"88.3600","4. close":"88.6500","5. volume":"25765400"},"2005-11-25":{"1. open":"87.6000","2. high":"89.3900","3. low":"86.8800","4. close":"88.8000","5. volume":"18193100"},"2005-11-18":{"1. open":"84.2500","2. high":"88.0000","3. low":"84.0300","4. close":"87.7700","5. volume":"30719600"},"2005-11-11":{"1. open":"83.1000","2. high":"84.8400","3. low":"82.3000","4. close":"84.5500","5. volume":"21762600"},"2005-11-04":{"1. open":"81.5100","2. high":"83.3000","3. low":"80.6400","4. close":"83.0000","5. volume":"31154000"},"2005-10-28":{"1. open":"83.1500","2. high":"83.9500","3. low":"80.5000","4. close":"81.4200","5. volume":"25793400"},"2005-10-21":{"1. open":"82.3600","2. high":"84.6000","3. low":"81.9300","4. close":"83.3300","5. volume":"39286100"},"2005-10-14":{"1. open":"81.2400","2. high":"83.5200","3. low":"81.0800","4. close":"82.3500","5. volume":"36349300"},"2005-10-07":{"1. open":"80.2200","2. high":"81.4700","3. low":"78.7000","4. close":"80.5000","5. volume":"30921800"},"2005-09-30":{"1. open":"78.3100","2. high":"80.5500","3. low":"76.9300","4. close":"80.2200","5. volume":"30116700"},"2005-09-23":{"1. open":"79.7400","2. high":"79.9800","3. low":"77.3000","4. close":"78.0000","5. volume":"31701800"},"2005-09-16":{"1. open":"81.0300","2. high":"82.1100","3. low":"79.6700","4. close":"80.3300","5. volume":"25110400"},"2005-09-09":{"1. open":"79.7000","2. high":"81.5200","3. low":"79.7000","4. close":"81.4400","5. volume":"18681300"},"2005-09-02":{"1. open":"80.0000","2. high":"81.7500","3. low":"79.3400","4. close":"79.4600","5. volume":"25171500"},"2005-08-26":{"1. open":"82.7500","2. high":"83.3500","3. low":"80.2600","4. close":"80.3800","5. volume":"22210500"},"2005-08-19":{"1. open":"81.9000","2. high":"83.3000","3. low":"80.8000","4. close":"82.7600","5. volume":"22885800"},"2005-08-12":{"1. open":"83.4100","2. high":"84.0100","3. low":"81.6200","4. close":"82.1900","5. volume":"22568800"},"2005-08-05":{"1. open":"83.0000","2. high":"84.2000","3. low":"82.7300","4. close":"83.3600","5. volume":"22265700"},"2005-07-29":{"1. open":"83.9800","2. high":"84.5200","3. low":"82.8100","4. close":"83.4600","5. volume":"24382900"},"2005-07-22":{"1. open":"81.9900","2. high":"85.1100","3. low":"81.6800","4. close":"84.4400","5. volume":"45014200"},"2005-07-15":{"1. open":"79.4000","2. high":"82.7500","3. low":"78.5200","4. close":"82.3800","5. volume":"45662500"},"2005-07-08":{"1. open":"74.3800","2. high":"79.5200","3. low":"74.1600","4. close":"79.3000","5. volume":"37388800"},"2005-07-01":{"1. open":"74.0100","2. high":"75.6800","3. low":"73.4500","4. close":"74.6700","5. volume":"30677800"},"2005-06-24":{"1. open":"76.0300","2. high":"77.4900","3. low":"74.0000","4. close":"74.0100","5. volume":"33289800"},"2005-06-17":{"1. open":"74.5000","2. high":"77.7300","3. low":"74.4500","4. close":"76.3900","5. volume":"33568000"},"2005-06-10":{"1. open":"75.8000","2. high":"76.0900","3. low":"74.1000","4. close":"74.7700","5. volume":"24804200"},"2005-06-03":{"1. open":"76.6000","2. high":"77.5000","3. low":"75.5000","4. close":"75.7900","5. volume":"23975100"},"2005-05-27":{"1. open":"76.3000","2. high":"77.4100","3. low":"75.1700","4. close":"77.1000","5. volume":"24899800"},"2005-05-20":{"1. open":"73.0900","2. high":"77.6400","3. low":"73.0900","4. close":"76.4100","5. volume":"34306900"},"2005-05-13":{"1. open":"75.2600","2. high":"75.4600","3. low":"72.5000","4. close":"73.1600","5. volume":"33727100"},"2005-05-06":{"1. open":"76.8800","2. high":"78.1100","3. low":"74.9700","4. close":"75.2600","5. volume":"39063200"},"2005-04-29":{"1. open":"75.2400","2. high":"77.1800","3. low":"74.0500","4. close":"76.3800","5. volume":"51112000"},"2005-04-22":{"1. open":"77.1500","2. high":"77.7500","3. low":"71.8500","4. close":"74.2100","5. volume":"70090000"},"2005-04-15":{"1. open":"87.3500","2. high":"87.5600","3. low":"76.3300","4. close":"76.7000","5. volume":"62144400"},"2005-04-08":{"1. open":"90.0800","2. high":"90.6200","3. low":"87.5000","4. close":"87.6000","5. volume":"27677900"},"2005-04-01":{"1. open":"90.7100","2. high":"91.7600","3. low":"90.0400","4. close":"90.4400","5. volume":"25553000"},"2005-03-24":{"1. open":"89.4200","2. high":"91.5500","3. low":"89.2600","4. close":"90.7000","5. volume":"18904100"},"2005-03-18":{"1. open":"91.5000","2. high":"92.2700","3. low":"89.0900","4. close":"89.2800","5. volume":"25767500"},"2005-03-11":{"1. open":"92.3500","2. high":"93.0000","3. low":"91.2000","4. close":"91.5100","5. volume":"24562700"},"2005-03-04":{"1. open":"92.5300","2. high":"93.7300","3. low":"92.2000","4. close":"92.3700","5. volume":"22028900"},"2005-02-25":{"1. open":"92.6700","2. high":"93.5000","3. low":"91.5500","4. close":"92.8000","5. volume":"18680300"},"2005-02-18":{"1. open":"93.1600","2. high":"94.9700","3. low":"92.5500","4. close":"93.2700","5. volume":"20002800"},"2005-02-11":{"1. open":"94.3500","2. high":"94.9000","3. low":"92.3000","4. close":"93.3000","5. volume":"21103700"},"2005-02-04":{"1. open":"93.6500","2. high":"94.7400","3. low":"93.0000","4. close":"94.5100","5. volume":"19731000"},"2005-01-28":{"1. open":"92.7000","2. high":"93.5900","3. low":"91.4400","4. close":"92.8900","5. volume":"27667500"},"2005-01-21":{"1. open":"93.6500","2. high":"95.3400","3. low":"92.2300","4. close":"92.3800","5. volume":"28556000"},"2005-01-14":{"1. open":"95.7800","2. high":"96.2000","3. low":"93.5500","4. close":"94.1000","5. volume":"26060300"},"2005-01-07":{"1. open":"98.9700","2. high":"99.1000","3. low":"95.4700","4. close":"95.7800","5. volume":"27415300"},"2004-12-31":{"1. open":"97.6900","2. high":"99.0000","3. low":"97.3700","4. close":"98.5800","5. volume":"17501200"},"2004-12-23":{"1. open":"96.3500","2. high":"98.0000","3. low":"96.3500","4. close":"97.7200","5. volume":"18152400"},"2004-12-17":{"1. open":"96.8500","2. high":"98.1500","3. low":"96.0800","4. close":"96.2000","5. volume":"27720400"},"2004-12-10":{"1. open":"96.8800","2. high":"98.2500","3. low":"95.7100","4. close":"96.6700","5. volume":"26952800"},"2004-12-03":{"1. open":"94.9400","2. high":"97.6300","3. low":"94.2400","4. close":"97.0800","5. volume":"29413700"},"2004-11-26":{"1. open":"94.3000","2. high":"95.7900","3. low":"94.1600","4. close":"94.7200","5. volume":"17298900"},"2004-11-19":{"1. open":"95.0800","2. high":"96.6300","3. low":"94.2500","4. close":"94.4500","5. volume":"27259900"},"2004-11-12":{"1. open":"92.5000","2. high":"95.5000","3. low":"92.5000","4. close":"95.3200","5. volume":"28090600"},"2004-11-05":{"1. open":"89.3300","2. high":"93.5200","3. low":"89.2300","4. close":"93.2800","5. volume":"30762600"},"2004-10-29":{"1. open":"87.3600","2. high":"90.2700","3. low":"87.3100","4. close":"89.7500","5. volume":"27890400"},"2004-10-22":{"1. open":"84.3000","2. high":"89.7300","3. low":"84.2900","4. close":"87.3900","5. volume":"39927800"},"2004-10-15":{"1. open":"86.7700","2. high":"87.2000","3. low":"84.3000","4. close":"84.8500","5. volume":"24456500"},"2004-10-08":{"1. open":"87.0000","2. high":"88.1000","3. low":"86.5100","4. close":"86.7100","5. volume":"21303400"},"2004-10-01":{"1. open":"84.1000","2. high":"86.9800","3. low":"83.8800","4. close":"86.7200","5. volume":"22465000"},"2004-09-24":{"1. open":"85.4000","2. high":"86.4300","3. low":"83.2400","4. close":"84.4300","5. volume":"23167900"},"2004-09-17":{"1. open":"87.0000","2. high":"87.2800","3. low":"85.4400","4. close":"85.7400","5. volume":"23207800"},"2004-09-10":{"1. open":"84.7000","2. high":"87.0000","3. low":"84.6000","4. close":"86.7600","5. volume":"17994900"},"2004-09-03":{"1. open":"84.5700","2. high":"85.0900","3. low":"83.6500","4. close":"84.3900","5. volume":"17286100"},"2004-08-27":{"1. open":"85.2300","2. high":"85.4500","3. low":"84.3500","4. close":"84.9400","5. volume":"16955800"},"2004-08-20":{"1. open":"83.7000","2. high":"85.3500","3. low":"83.5100","4. close":"85.2500","5. volume":"21524300"},"2004-08-13":{"1. open":"83.4800","2. high":"84.9900","3. low":"81.9000","4. close":"83.9100","5. volume":"26196900"},"2004-08-06":{"1. open":"86.8700","2. high":"87.3900","3. low":"83.4200","4. close":"83.4800","5. volume":"20815300"},"2004-07-30":{"1. open":"84.8500","2. high":"87.4000","3. low":"84.5100","4. close":"87.0700","5. volume":"22923000"},"2004-07-23":{"1. open":"84.5000","2. high":"87.1100","3. low":"84.4000","4. close":"84.8500","5. volume":"28063300"},"2004-07-16":{"1. open":"84.0000","2. high":"86.4800","3. low":"83.4200","4. close":"84.2800","5. volume":"35836700"},"2004-07-09":{"1. open":"86.5000","2. high":"86.7300","3. low":"83.5100","4. close":"83.8900","5. volume":"26209600"},"2004-07-02":{"1. open":"89.7100","2. high":"89.9000","3. low":"86.5700","4. close":"87.0400","5. volume":"21510400"},"2004-06-25":{"1. open":"90.4000","2. high":"90.9200","3. low":"88.9400","4. close":"89.5500","5. volume":"22021500"},"2004-06-18":{"1. open":"90.0500","2. high":"91.2100","3. low":"89.6200","4. close":"90.0600","5. volume":"22426400"},"2004-06-10":{"1. open":"88.7500","2. high":"90.7500","3. low":"88.0100","4. close":"90.4600","5. volume":"18366900"},"2004-06-04":{"1. open":"88.0900","2. high":"88.6400","3. low":"87.3000","4. close":"87.5600","5. volume":"15611800"},"2004-05-28":{"1. open":"87.7500","2. high":"89.0800","3. low":"86.5500","4. close":"88.5900","5. volume":"20742800"},"2004-05-21":{"1. open":"85.3000","2. high":"88.8800","3. low":"85.1500","4. close":"87.1300","5. volume":"26694400"},"2004-05-14":{"1. open":"87.6000","2. high":"88.1500","3. low":"85.1200","4. close":"86.4100","5. volume":"31619400"},"2004-05-07":{"1. open":"88.1300","2. high":"89.7500","3. low":"87.2012","4. close":"88.1900","5. volume":"25650700"},"2004-04-30":{"1. open":"90.7500","2. high":"91.9900","3. low":"88.0100","4. close":"88.1700","5. volume":"26790300"},"2004-04-23":{"1. open":"91.9000","2. high":"92.4800","3. low":"89.7000","4. close":"91.2800","5. volume":"26094200"},"2004-04-16":{"1. open":"93.5000","2. high":"94.3600","3. low":"91.0400","4. close":"92.2800","5. volume":"31404700"},"2004-04-08":{"1. open":"93.9500","2. high":"94.3900","3. low":"92.5100","4. close":"93.1200","5. volume":"16201400"},"2004-04-02":{"1. open":"92.9900","2. high":"94.5500","3. low":"91.3500","4. close":"94.2000","5. volume":"25046900"},"2004-03-26":{"1. open":"91.2700","2. high":"93.2500","3. low":"90.2800","4. close":"92.7700","5. volume":"27482700"},"2004-03-19":{"1. open":"92.6000","2. high":"93.7900","3. low":"90.8800","4. close":"91.6200","5. volume":"27477500"},"2004-03-12":{"1. open":"96.4900","2. high":"96.8800","3. low":"91.1500","4. close":"93.3000","5. volume":"32862500"},"2004-03-05":{"1. open":"96.5000","2. high":"97.6000","3. low":"95.5600","4. close":"96.4500","5. volume":"21755500"},"2004-02-27":{"1. open":"97.4000","2. high":"97.5100","3. low":"95.2000","4. close":"96.5000","5. volume":"25680600"},"2004-02-20":{"1. open":"99.9900","2. high":"100.0000","3. low":"97.1900","4. close":"97.3100","5. volume":"19898100"},"2004-02-13":{"1. open":"99.3100","2. high":"100.3100","3. low":"98.4100","4. close":"99.7100","5. volume":"20479500"},"2004-02-06":{"1. open":"99.1500","2. high":"100.4300","3. low":"98.2500","4. close":"98.9400","5. volume":"31683700"},"2004-01-30":{"1. open":"97.9000","2. high":"99.8500","3. low":"96.5500","4. close":"99.2300","5. volume":"30864500"},"2004-01-23":{"1. open":"96.0000","2. high":"98.2100","3. low":"95.7300","4. close":"97.9000","5. volume":"25889600"},"2004-01-16":{"1. open":"91.2100","2. high":"95.6500","3. low":"89.0100","4. close":"95.3200","5. volume":"48592000"},"2004-01-09":{"1. open":"92.0000","2. high":"93.3800","3. low":"91.0000","4. close":"91.2100","5. volume":"28694600"},"2004-01-02":{"1. open":"93.1000","2. high":"93.7300","3. low":"91.2000","4. close":"91.5500","5. volume":"18092000"},"2003-12-26":{"1. open":"92.8300","2. high":"93.5000","3. low":"92.1800","4. close":"92.9000","5. volume":"11178100"},"2003-12-19":{"1. open":"93.4300","2. high":"94.1200","3. low":"91.8800","4. close":"93.1400","5. volume":"33482600"},"2003-12-12":{"1. open":"90.5200","2. high":"93.1600","3. low":"90.5200","4. close":"92.7100","5. volume":"30943400"},"2003-12-05":{"1. open":"90.9000","2. high":"91.4800","3. low":"90.0300","4. close":"90.6400","5. volume":"27735300"},"2003-11-28":{"1. open":"89.0300","2. high":"90.6800","3. low":"88.9500","4. close":"90.5400","5. volume":"15370200"},"2003-11-21":{"1. open":"89.9000","2. high":"90.1800","3. low":"88.2300","4. close":"88.6300","5. volume":"25235500"},"2003-11-14":{"1. open":"89.5500","2. high":"91.4800","3. low":"88.8900","4. close":"90.2500","5. volume":"28880700"},"2003-11-07":{"1. open":"89.9000","2. high":"90.8400","3. low":"87.7200","4. close":"88.2600","5. volume":"28479700"},"2003-10-31":{"1. open":"88.8000","2. high":"90.7100","3. low":"88.0500","4. close":"89.4800","5. volume":"28610800"},"2003-10-24":{"1. open":"89.3500","2. high":"89.4000","3. low":"87.5300","4. close":"88.4200","5. volume":"29376600"},"2003-10-17":{"1. open":"93.1000","2. high":"94.5400","3. low":"88.6600","4. close":"89.2300","5. volume":"47597600"},"2003-10-10":{"1. open":"90.7400","2. high":"93.6000","3. low":"90.4000","4. close":"92.6700","5. volume":"27727600"},"2003-10-03":{"1. open":"89.2500","2. high":"91.9500","3. low":"87.9000","4. close":"90.6400","5. volume":"35612700"},"2003-09-26":{"1. open":"92.2400","2. high":"92.2400","3. low":"89.0000","4. close":"89.0500","5. volume":"34494900"},"2003-09-19":{"1. open":"89.7000","2. high":"93.4700","3. low":"88.3900","4. close":"93.2800","5. volume":"42039300"},"2003-09-12":{"1. open":"88.4500","2. high":"89.9700","3. low":"86.4000","4. close":"88.7000","5. volume":"41601200"},"2003-09-05":{"1. open":"82.4000","2. high":"88.2900","3. low":"82.3000","4. close":"86.9500","5. volume":"41027800"},"2003-08-29":{"1. open":"82.8500","2. high":"83.0300","3. low":"81.2700","4. close":"82.0100","5. volume":"24293600"},"2003-08-22":{"1. open":"82.0500","2. high":"84.7200","3. low":"81.9000","4. close":"82.9700","5. volume":"30615500"},"2003-08-15":{"1. open":"80.8700","2. high":"82.1900","3. low":"80.2800","4. close":"81.7900","5. volume":"22220100"},"2003-08-08":{"1. open":"80.7500","2. high":"81.3600","3. low":"78.7300","4. close":"80.8800","5. volume":"30290600"},"2003-08-01":{"1. open":"83.6700","2. high":"83.7000","3. low":"80.0500","4. close":"81.2700","5. volume":"34886500"},"2003-07-25":{"1. open":"83.2000","2. high":"83.7400","3. low":"81.5100","4. close":"83.5500","5. volume":"33171000"},"2003-07-18":{"1. open":"86.0000","2. high":"87.0300","3. low":"82.5000","4. close":"83.7200","5. volume":"45286100"},"2003-07-11":{"1. open":"84.8000","2. high":"86.7500","3. low":"83.4700","4. close":"84.8900","5. volume":"32242400"},"2003-07-03":{"1. open":"83.9000","2. high":"84.8900","3. low":"81.4000","4. close":"83.9500","5. volume":"22755900"},"2003-06-27":{"1. open":"84.7900","2. high":"84.7900","3. low":"82.0900","4. close":"83.4200","5. volume":"27829700"},"2003-06-20":{"1. open":"83.1000","2. high":"85.2900","3. low":"82.5500","4. close":"84.9200","5. volume":"37484300"},"2003-06-13":{"1. open":"80.0000","2. high":"84.9800","3. low":"79.8100","4. close":"82.7500","5. volume":"41268000"},"2003-06-06":{"1. open":"89.0000","2. high":"89.0800","3. low":"79.8400","4. close":"80.0500","5. volume":"69955400"},"2003-05-30":{"1. open":"84.5100","2. high":"88.7000","3. low":"84.5100","4. close":"88.0400","5. volume":"26786400"},"2003-05-23":{"1. open":"88.0500","2. high":"88.4700","3. low":"84.8900","4. close":"85.2600","5. volume":"32835800"},"2003-05-16":{"1. open":"87.5500","2. high":"90.4000","3. low":"87.1000","4. close":"88.9900","5. volume":"38800700"},"2003-05-09":{"1. open":"87.2000","2. high":"88.3400","3. low":"85.7500","4. close":"87.5500","5. volume":"35257500"},"2003-05-02":{"1. open":"84.0500","2. high":"87.5700","3. low":"83.6200","4. close":"87.5700","5. volume":"39359000"},"2003-04-25":{"1. open":"84.4000","2. high":"86.0600","3. low":"82.6000","4. close":"83.8800","5. volume":"36064700"},"2003-04-17":{"1. open":"78.5000","2. high":"84.4000","3. low":"78.1600","4. close":"84.2600","5. volume":"42212300"},"2003-04-11":{"1. open":"82.6000","2. high":"82.9000","3. low":"78.1300","4. close":"78.7500","5. volume":"39935800"},"2003-04-04":{"1. open":"79.2600","2. high":"83.4800","3. low":"78.1200","4. close":"80.7900","5. volume":"46339300"},"2003-03-28":{"1. open":"82.4600","2. high":"84.0000","3. low":"80.5000","4. close":"80.8500","5. volume":"42576300"},"2003-03-21":{"1. open":"78.0000","2. high":"84.9000","3. low":"77.8400","4. close":"84.9000","5. volume":"58133300"},"2003-03-14":{"1. open":"77.4500","2. high":"79.4800","3. low":"73.1700","4. close":"79.0000","5. volume":"48104400"},"2003-03-07":{"1. open":"78.9000","2. high":"79.0000","3. low":"75.7100","4. close":"77.9000","5. volume":"32954000"},"2003-02-28":{"1. open":"79.7000","2. high":"79.9900","3. low":"76.7500","4. close":"77.9500","5. volume":"39649300"},"2003-02-21":{"1. open":"78.0200","2. high":"80.0500","3. low":"77.9100","4. close":"79.9500","5. volume":"26970500"},"2003-02-14":{"1. open":"77.1000","2. high":"78.9700","3. low":"74.3100","4. close":"77.4500","5. volume":"41674400"},"2003-02-07":{"1. open":"78.2000","2. high":"78.9000","3. low":"76.2500","4. close":"77.1000","5. volume":"37378500"},"2003-01-31":{"1. open":"77.9900","2. high":"81.3000","3. low":"77.0200","4. close":"78.2000","5. volume":"42173800"},"2003-01-24":{"1. open":"81.3000","2. high":"81.8500","3. low":"78.8200","4. close":"78.9900","5. volume":"34478700"},"2003-01-17":{"1. open":"88.3100","2. high":"88.9500","3. low":"81.1800","4. close":"81.3000","5. volume":"53450200"},"2003-01-10":{"1. open":"81.9000","2. high":"88.0400","3. low":"81.8100","4. close":"87.6800","5. volume":"50004000"},"2003-01-03":{"1. open":"77.0000","2. high":"81.6500","3. low":"75.6000","4. close":"81.6500","5. volume":"29764800"},"2002-12-27":{"1. open":"79.7500","2. high":"81.5000","3. low":"76.6100","4. close":"77.3600","5. volume":"20460800"},"2002-12-20":{"1. open":"79.6000","2. high":"81.7900","3. low":"78.2400","4. close":"79.7900","5. volume":"36539200"},"2002-12-13":{"1. open":"81.0000","2. high":"82.4800","3. low":"78.2700","4. close":"80.0000","5. volume":"37355200"},"2002-12-06":{"1. open":"88.6000","2. high":"89.4600","3. low":"81.0700","4. close":"82.3200","5. volume":"41270300"},"2002-11-29":{"1. open":"84.6300","2. high":"88.1100","3. low":"83.5200","4. close":"86.9200","5. volume":"28402500"},"2002-11-22":{"1. open":"80.8000","2. high":"85.1700","3. low":"77.8400","4. close":"84.4300","5. volume":"45101100"},"2002-11-15":{"1. open":"77.5900","2. high":"80.9900","3. low":"76.7000","4. close":"80.0100","5. volume":"49429400"},"2002-11-08":{"1. open":"81.9900","2. high":"83.8100","3. low":"77.2000","4. close":"77.5900","5. volume":"52109900"},"2002-11-01":{"1. open":"75.1500","2. high":"80.5000","3. low":"74.2000","4. close":"80.4000","5. volume":"56125400"},"2002-10-25":{"1. open":"73.6500","2. high":"75.9000","3. low":"71.7500","4. close":"74.5600","5. volume":"51727300"},"2002-10-18":{"1. open":"61.5400","2. high":"74.2500","3. low":"61.5400","4. close":"74.2500","5. volume":"72253200"},"2002-10-11":{"1. open":"56.6000","2. high":"63.9200","3. low":"54.0100","4. close":"63.9200","5. volume":"67066500"},"2002-10-04":{"1. open":"59.5500","2. high":"62.0000","3. low":"55.7700","4. close":"56.6000","5. volume":"60869200"},"2002-09-27":{"1. open":"63.7500","2. high":"64.8800","3. low":"59.5500","4. close":"60.3600","5. volume":"59368300"},"2002-09-20":{"1. open":"72.0000","2. high":"73.4500","3. low":"63.9000","4. close":"63.9200","5. volume":"59733100"},"2002-09-13":{"1. open":"72.4500","2. high":"77.5000","3. low":"71.3100","4. close":"72.5000","5. volume":"29374700"},"2002-09-06":{"1. open":"74.2000","2. high":"75.0000","3. low":"71.5000","4. close":"73.2000","5. volume":"24168200"},"2002-08-30":{"1. open":"80.4000","2. high":"80.8900","3. low":"75.1000","4. close":"75.3800","5. volume":"31535800"},"2002-08-23":{"1. open":"79.3500","2. high":"82.8500","3. low":"79.0100","4. close":"80.4000","5. volume":"37599000"},"2002-08-16":{"1. open":"71.0500","2. high":"79.9800","3. low":"70.6100","4. close":"79.3500","5. volume":"42544100"},"2002-08-09":{"1. open":"67.9400","2. high":"74.3000","3. low":"65.8500","4. close":"71.8300","5. volume":"38896400"},"2002-08-02":{"1. open":"70.3700","2. high":"72.7000","3. low":"67.1200","4. close":"67.8800","5. volume":"50523500"},"2002-07-26":{"1. open":"71.2500","2. high":"72.1900","3. low":"65.7000","4. close":"66.4000","5. volume":"64004300"},"2002-07-19":{"1. open":"68.4000","2. high":"74.2000","3. low":"66.6000","4. close":"72.0000","5. volume":"59368700"},"2002-07-12":{"1. open":"73.0000","2. high":"73.4800","3. low":"67.5500","4. close":"69.2100","5. volume":"50325700"},"2002-07-05":{"1. open":"72.0100","2. high":"73.9000","3. low":"67.1600","4. close":"73.5000","5. volume":"37781700"},"2002-06-28":{"1. open":"67.2500","2. high":"73.6200","3. low":"66.1000","4. close":"72.0000","5. volume":"56342200"},"2002-06-21":{"1. open":"76.1800","2. high":"77.7500","3. low":"68.1900","4. close":"68.7500","5. volume":"51132700"},"2002-06-14":{"1. open":"77.7500","2. high":"78.8000","3. low":"73.2500","4. close":"76.1700","5. volume":"45826900"},"2002-06-07":{"1. open":"80.7500","2. high":"80.9500","3. low":"77.0000","4. close":"78.3000","5. volume":"37678900"},"2002-05-31":{"1. open":"82.8000","2. high":"83.1100","3. low":"80.2200","4. close":"80.4500","5. volume":"21571900"},"2002-05-24":{"1. open":"85.4500","2. high":"85.4600","3. low":"82.5200","4. close":"83.1000","5. volume":"25012600"},"2002-05-17":{"1. open":"80.2500","2. high":"86.4900","3. low":"79.5000","4. close":"85.6900","5. volume":"37347700"},"2002-05-10":{"1. open":"81.7000","2. high":"83.0000","3. low":"75.9200","4. close":"79.6800","5. volume":"61363200"},"2002-05-03":{"1. open":"84.7100","2. high":"85.2300","3. low":"81.1100","4. close":"81.7800","5. volume":"42862500"},"2002-04-26":{"1. open":"88.9500","2. high":"89.0800","3. low":"84.7000","4. close":"84.7100","5. volume":"31976500"},"2002-04-19":{"1. open":"86.5000","2. high":"90.0300","3. low":"84.0000","4. close":"89.0000","5. volume":"51860900"},"2002-04-12":{"1. open":"87.5000","2. high":"89.9500","3. low":"83.3400","4. close":"85.6000","5. volume":"110897800"},"2002-04-05":{"1. open":"104.0000","2. high":"104.0000","3. low":"97.2500","4. close":"97.2500","5. volume":"36348600"},"2002-03-28":{"1. open":"105.8000","2. high":"106.6600","3. low":"102.3000","4. close":"104.0000","5. volume":"25371800"},"2002-03-22":{"1. open":"107.1000","2. high":"108.6400","3. low":"104.7000","4. close":"105.6000","5. volume":"25381100"},"2002-03-15":{"1. open":"104.3500","2. high":"108.8500","3. low":"103.6000","4. close":"106.7900","5. volume":"42307200"},"2002-03-08":{"1. open":"103.3500","2. high":"107.5000","3. low":"103.1300","4. close":"105.0900","5. volume":"47715500"},"2002-03-01":{"1. open":"98.4500","2. high":"103.1000","3. low":"95.9900","4. close":"103.0200","5. volume":"51947900"},"2002-02-22":{"1. open":"101.5000","2. high":"101.8000","3. low":"95.7600","4. close":"98.4500","5. volume":"48524400"},"2002-02-15":{"1. open":"105.0000","2. high":"109.1500","3. low":"101.7000","4. close":"102.8900","5. volume":"39939500"},"2002-02-08":{"1. open":"108.0000","2. high":"108.5000","3. low":"102.6100","4. close":"104.9900","5. volume":"35602600"},"2002-02-01":{"1. open":"109.5000","2. high":"110.2100","3. low":"101.0000","4. close":"108.0000","5. volume":"55992100"},"2002-01-25":{"1. open":"114.2500","2. high":"114.2600","3. low":"107.0000","4. close":"109.2800","5. volume":"38030400"},"2002-01-18":{"1. open":"120.0000","2. high":"120.5500","3. low":"112.8100","4. close":"114.2500","5. volume":"50634800"},"2002-01-11":{"1. open":"125.0000","2. high":"126.3900","3. low":"120.2800","4. close":"120.3100","5. volume":"31815400"},"2002-01-04":{"1. open":"122.7500","2. high":"125.6000","3. low":"119.8000","4. close":"125.6000","5. volume":"27402400"},"2001-12-28":{"1. open":"122.0500","2. high":"123.9300","3. low":"121.1000","4. close":"122.9000","5. volume":"13450200"},"2001-12-21":{"1. open":"120.1500","2. high":"124.7000","3. low":"120.1500","4. close":"122.0000","5. volume":"34859100"},"2001-12-14":{"1. open":"120.0000","2. high":"123.2100","3. low":"119.4100","4. close":"121.1000","5. volume":"36439000"},"2001-12-07":{"1. open":"114.8000","2. high":"121.9800","3. low":"113.2100","4. close":"120.4000","5. volume":"45132800"},"2001-11-30":{"1. open":"115.9000","2. high":"116.4000","3. low":"111.8100","4. close":"115.5900","5. volume":"29636100"},"2001-11-23":{"1. open":"114.7000","2. high":"116.8000","3. low":"113.0500","4. close":"115.3500","5. volume":"17282200"},"2001-11-16":{"1. open":"113.0000","2. high":"117.0000","3. low":"112.0500","4. close":"114.5000","5. volume":"36592100"},"2001-11-09":{"1. open":"109.9500","2. high":"115.5600","3. low":"109.0000","4. close":"114.0800","5. volume":"37385000"},"2001-11-02":{"1. open":"110.5000","2. high":"111.1200","3. low":"106.9000","4. close":"109.5000","5. volume":"37116500"},"2001-10-26":{"1. open":"102.6500","2. high":"112.1000","3. low":"101.9000","4. close":"111.1600","5. volume":"43172300"},"2001-10-19":{"1. open":"99.8500","2. high":"106.7000","3. low":"99.6600","4. close":"102.6500","5. volume":"63537500"},"2001-10-12":{"1. open":"98.0300","2. high":"101.0000","3. low":"94.9000","4. close":"100.8400","5. volume":"48258400"},"2001-10-05":{"1. open":"91.7200","2. high":"98.8800","3. low":"91.3400","4. close":"98.0200","5. volume":"46507700"},"2001-09-28":{"1. open":"91.8000","2. high":"96.0000","3. low":"87.4900","4. close":"91.7200","5. volume":"61809500"},"2001-09-21":{"1. open":"93.9000","2. high":"96.8500","3. low":"89.5000","4. close":"90.5000","5. volume":"75868900"},"2001-09-10":{"1. open":"96.0000","2. high":"97.4000","3. low":"95.5900","4. close":"96.4700","5. volume":"10311500"},"2001-09-07":{"1. open":"100.1500","2. high":"103.1300","3. low":"96.0000","4. close":"96.5900","5. volume":"41322600"},"2001-08-31":{"1. open":"106.9900","2. high":"108.2000","3. low":"98.8600","4. close":"99.9500","5. volume":"38331400"},"2001-08-24":{"1. open":"104.6800","2. high":"107.8000","3. low":"101.4000","4. close":"106.9900","5. volume":"33343800"},"2001-08-17":{"1. open":"105.0000","2. high":"106.8500","3. low":"103.6600","4. close":"104.5900","5. volume":"29688900"},"2001-08-10":{"1. open":"107.2500","2. high":"107.3700","3. low":"102.7000","4. close":"104.9500","5. volume":"26622100"},"2001-08-03":{"1. open":"104.9000","2. high":"110.0900","3. low":"104.7600","4. close":"108.1800","5. volume":"25049100"},"2001-07-27":{"1. open":"105.7000","2. high":"106.9500","3. low":"102.7300","4. close":"104.7000","5. volume":"32638300"},"2001-07-20":{"1. open":"108.5300","2. high":"109.3800","3. low":"103.0300","4. close":"105.7000","5. volume":"48299000"},"2001-07-13":{"1. open":"106.5000","2. high":"109.3000","3. low":"101.5600","4. close":"108.5300","5. volume":"45082800"},"2001-07-06":{"1. open":"113.5000","2. high":"115.4000","3. low":"105.8100","4. close":"106.5000","5. volume":"25362500"},"2001-06-29":{"1. open":"113.7500","2. high":"116.9500","3. low":"111.1000","4. close":"113.5000","5. volume":"35230300"},"2001-06-22":{"1. open":"113.9800","2. high":"117.2500","3. low":"111.3600","4. close":"112.8700","5. volume":"33926900"},"2001-06-15":{"1. open":"116.3000","2. high":"118.4700","3. low":"113.3800","4. close":"113.6000","5. volume":"39520000"},"2001-06-08":{"1. open":"113.2500","2. high":"119.0000","3. low":"112.8500","4. close":"116.1000","5. volume":"29113600"},"2001-06-01":{"1. open":"117.3500","2. high":"117.5900","3. low":"111.6400","4. close":"112.8900","5. volume":"27279700"},"2001-05-25":{"1. open":"117.9500","2. high":"119.9000","3. low":"117.1000","4. close":"117.8000","5. volume":"34172800"},"2001-05-18":{"1. open":"111.2000","2. high":"117.6800","3. low":"111.0000","4. close":"117.4400","5. volume":"32527500"},"2001-05-11":{"1. open":"116.2000","2. high":"118.9000","3. low":"110.9600","4. close":"111.8100","5. volume":"37758700"},"2001-05-04":{"1. open":"116.4000","2. high":"118.9500","3. low":"111.2000","4. close":"115.8600","5. volume":"40113600"},"2001-04-27":{"1. open":"114.0100","2. high":"116.9000","3. low":"111.6800","4. close":"116.2000","5. volume":"38874700"},"2001-04-20":{"1. open":"96.2000","2. high":"116.4000","3. low":"95.2000","4. close":"114.8300","5. volume":"77541600"},"2001-04-12":{"1. open":"98.5000","2. high":"101.9400","3. low":"93.8000","4. close":"96.2000","5. volume":"40874500"},"2001-04-06":{"1. open":"97.4500","2. high":"100.0000","3. low":"90.0500","4. close":"97.9500","5. volume":"61562900"},"2001-03-30":{"1. open":"95.2500","2. high":"100.0000","3. low":"93.7500","4. close":"96.1800","5. volume":"52337900"},"2001-03-23":{"1. open":"91.0000","2. high":"94.9900","3. low":"87.6500","4. close":"93.5100","5. volume":"56911400"},"2001-03-16":{"1. open":"97.9000","2. high":"98.9000","3. low":"88.2000","4. close":"90.1000","5. volume":"69318700"},"2001-03-09":{"1. open":"102.8100","2. high":"108.4000","3. low":"97.9000","4. close":"99.2900","5. volume":"46134500"},"2001-03-02":{"1. open":"105.8000","2. high":"107.6500","3. low":"97.5000","4. close":"102.3000","5. volume":"59912700"},"2001-02-23":{"1. open":"114.5500","2. high":"115.6000","3. low":"100.2500","4. close":"104.0000","5. volume":"42890800"},"2001-02-16":{"1. open":"110.5500","2. high":"118.6400","3. low":"110.3000","4. close":"115.0000","5. volume":"36127100"},"2001-02-09":{"1. open":"109.4000","2. high":"118.2000","3. low":"109.3000","4. close":"112.0000","5. volume":"36346600"},"2001-02-02":{"1. open":"112.5000","2. high":"116.7500","3. low":"109.6000","4. close":"110.2700","5. volume":"32690400"},"2001-01-26":{"1. open":"109.5000","2. high":"115.2500","3. low":"107.6200","4. close":"114.1900","5. volume":"40283600"},"2001-01-19":{"1. open":"93.7500","2. high":"113.9400","3. low":"91.8100","4. close":"111.2500","5. volume":"55406000"},"2001-01-12":{"1. open":"93.5000","2. high":"96.4400","3. low":"91.2500","4. close":"93.8100","5. volume":"37351000"},"2001-01-05":{"1. open":"84.5000","2. high":"99.7500","3. low":"83.7500","4. close":"94.0000","5. volume":"44240800"},"2000-12-29":{"1. open":"89.0000","2. high":"89.5600","3. low":"82.1200","4. close":"85.0000","5. volume":"31039700"},"2000-12-22":{"1. open":"88.3700","2. high":"94.4400","3. low":"80.0600","4. close":"89.0000","5. volume":"50218000"},"2000-12-15":{"1. open":"96.5000","2. high":"98.2500","3. low":"87.3100","4. close":"87.8100","5. volume":"41477400"},"2000-12-08":{"1. open":"96.0000","2. high":"104.7500","3. low":"93.1200","4. close":"97.0000","5. volume":"37530500"},"2000-12-01":{"1. open":"100.4400","2. high":"102.0000","3. low":"92.2500","4. close":"95.6200","5. volume":"32366400"},"2000-11-24":{"1. open":"101.5000","2. high":"104.3700","3. low":"98.3100","4. close":"99.9400","5. volume":"22641900"},"2000-11-17":{"1. open":"91.8100","2. high":"102.5000","3. low":"91.6200","4. close":"101.9400","5. volume":"29453200"},"2000-11-10":{"1. open":"99.8700","2. high":"103.7500","3. low":"93.0000","4. close":"93.0000","5. volume":"32715700"},"2000-11-03":{"1. open":"93.5000","2. high":"102.6200","3. low":"90.3100","4. close":"100.1200","5. volume":"39746400"},"2000-10-27":{"1. open":"94.7500","2. high":"95.0000","3. low":"86.9400","4. close":"93.6900","5. volume":"48790400"},"2000-10-20":{"1. open":"111.5000","2. high":"113.8700","3. low":"90.2500","4. close":"94.7500","5. volume":"73706800"},"2000-10-13":{"1. open":"115.9400","2. high":"119.3700","3. low":"103.1200","4. close":"109.0600","5. volume":"38085500"},"2000-10-06":{"1. open":"112.6200","2. high":"119.6200","3. low":"108.5600","4. close":"116.0000","5. volume":"43940700"},"2000-09-29":{"1. open":"124.5000","2. high":"126.6200","3. low":"110.2500","4. close":"112.6200","5. volume":"31360800"},"2000-09-22":{"1. open":"125.2500","2. high":"126.6900","3. low":"120.0000","4. close":"123.8700","5. volume":"22129500"},"2000-09-15":{"1. open":"127.8700","2. high":"129.1900","3. low":"122.7500","4. close":"125.0000","5. volume":"28000200"},"2000-09-08":{"1. open":"132.8100","2. high":"134.8800","3. low":"129.3800","4. close":"129.5000","5. volume":"20201600"},"2000-09-01":{"1. open":"129.8800","2. high":"134.9400","3. low":"129.5600","4. close":"133.6300","5. volume":"30751200"},"2000-08-25":{"1. open":"121.0600","2. high":"129.8800","3. low":"119.8700","4. close":"129.0000","5. volume":"24522100"},"2000-08-18":{"1. open":"120.0000","2. high":"123.6900","3. low":"119.3100","4. close":"120.4400","5. volume":"23739400"},"2000-08-11":{"1. open":"116.6200","2. high":"121.8100","3. low":"115.5600","4. close":"120.6200","5. volume":"29859300"},"2000-08-04":{"1. open":"110.5000","2. high":"116.5000","3. low":"110.0600","4. close":"115.8700","5. volume":"24015800"},"2000-07-28":{"1. open":"114.1200","2. high":"115.6200","3. low":"108.8700","4. close":"111.8100","5. volume":"28454700"},"2000-07-21":{"1. open":"104.4400","2. high":"117.8100","3. low":"101.0000","4. close":"114.7500","5. volume":"52881600"},"2000-07-14":{"1. open":"104.6900","2. high":"105.9400","3. low":"101.0000","4. close":"103.9400","5. volume":"25072200"},"2000-07-07":{"1. open":"108.7500","2. high":"109.8700","3. low":"100.0000","4. close":"105.0600","5. volume":"38608400"},"2000-06-30":{"1. open":"113.0000","2. high":"115.7500","3. low":"108.6200","4. close":"109.5600","5. volume":"32971500"},"2000-06-23":{"1. open":"113.5000","2. high":"120.6900","3. low":"110.8100","4. close":"111.8700","5. volume":"27864000"},"2000-06-16":{"1. open":"119.1200","2. high":"120.4400","3. low":"113.2500","4. close":"113.2500","5. volume":"26364000"},"2000-06-09":{"1. open":"108.4400","2. high":"122.3100","3. low":"108.4400","4. close":"119.6900","5. volume":"37831000"},"2000-06-02":{"1. open":"107.7500","2. high":"111.0000","3. low":"105.5000","4. close":"108.8100","5. volume":"18535800"},"2000-05-26":{"1. open":"106.0000","2. high":"112.2500","3. low":"103.4400","4. close":"106.9400","5. volume":"31197000"},"2000-05-19":{"1. open":"104.0000","2. high":"109.2500","3. low":"102.0000","4. close":"106.4400","5. volume":"29694500"},"2000-05-12":{"1. open":"108.0600","2. high":"110.6200","3. low":"102.0600","4. close":"104.4400","5. volume":"33410400"},"2000-05-05":{"1. open":"112.5000","2. high":"113.6200","3. low":"106.5000","4. close":"107.8700","5. volume":"22151300"},"2000-04-28":{"1. open":"102.0000","2. high":"113.9400","3. low":"101.2500","4. close":"111.5000","5. volume":"35488400"},"2000-04-20":{"1. open":"103.8700","2. high":"115.1200","3. low":"102.0600","4. close":"104.0000","5. volume":"43482800"},"2000-04-14":{"1. open":"124.7500","2. high":"125.3700","3. low":"102.8700","4. close":"105.0000","5. volume":"42149600"},"2000-04-07":{"1. open":"120.0000","2. high":"128.0000","3. low":"115.0600","4. close":"123.1200","5. volume":"47344000"},"2000-03-31":{"1. open":"125.0000","2. high":"128.2500","3. low":"117.0600","4. close":"118.3700","5. volume":"44498000"},"2000-03-24":{"1. open":"110.0000","2. high":"122.2500","3. low":"109.9400","4. close":"120.6200","5. volume":"38090900"},"2000-03-17":{"1. open":"104.0000","2. high":"111.6900","3. low":"102.5000","4. close":"110.0000","5. volume":"36990400"},"2000-03-10":{"1. open":"109.9400","2. high":"111.0000","3. low":"101.0000","4. close":"105.2500","5. volume":"42586200"},"2000-03-03":{"1. open":"104.6200","2. high":"110.0000","3. low":"99.5000","4. close":"108.0000","5. volume":"51128300"},"2000-02-25":{"1. open":"112.0000","2. high":"113.4400","3. low":"104.9400","4. close":"108.0000","5. volume":"34514300"},"2000-02-18":{"1. open":"116.0000","2. high":"118.8700","3. low":"111.5000","4. close":"112.5000","5. volume":"26599300"},"2000-02-11":{"1. open":"116.0000","2. high":"119.7500","3. low":"113.1200","4. close":"115.3700","5. volume":"26814500"},"2000-02-04":{"1. open":"111.3700","2. high":"118.4400","3. low":"109.1200","4. close":"115.6200","5. volume":"32834200"},"2000-01-28":{"1. open":"121.8700","2. high":"122.8700","3. low":"110.0600","4. close":"111.5600","5. volume":"33325200"},"2000-01-21":{"1. open":"119.6900","2. high":"124.7500","3. low":"112.6900","4. close":"121.5000","5. volume":"41930500"},"2000-01-14":{"1. open":"117.2500","2. high":"123.3100","3. low":"115.3700","4. close":"119.6200","5. volume":"42663900"},"2000-01-07":{"1. open":"112.4400","2. high":"119.7500","3. low":"110.6200","4. close":"113.5000","5. volume":"51137300"},"1999-12-31":{"1. open":"109.6900","2. high":"110.7500","3. low":"106.6200","4. close":"107.8700","5. volume":"16812500"},"1999-12-23":{"1. open":"109.0600","2. high":"110.4400","3. low":"107.7500","4. close":"108.6200","5. volume":"18144100"},"1999-12-17":{"1. open":"108.1200","2. high":"112.7500","3. low":"104.5000","4. close":"110.0000","5. volume":"38810100"},"1999-12-10":{"1. open":"113.0000","2. high":"122.1200","3. low":"107.5600","4. close":"109.0000","5. volume":"58626000"},"1999-12-03":{"1. open":"104.9400","2. high":"112.8700","3. low":"102.1200","4. close":"111.8700","5. volume":"37670000"},"1999-11-26":{"1. open":"105.5000","2. high":"109.8700","3. low":"101.8100","4. close":"105.0000","5. volume":"37165600"},"1999-11-19":{"1. open":"96.0000","2. high":"105.1200","3. low":"92.6200","4. close":"103.9400","5. volume":"61550800"},"1999-11-12":{"1. open":"90.5000","2. high":"97.5000","3. low":"90.5000","4. close":"95.8700","5. volume":"43569700"}}} \ No newline at end of file diff --git a/Backend/module/updateDataFromAPI.js b/Backend/module/updateDataFromAPI.js index c801757e..bbd6cdba 100644 --- a/Backend/module/updateDataFromAPI.js +++ b/Backend/module/updateDataFromAPI.js @@ -16,6 +16,7 @@ const updateListOfQuotedUSshares = (apiKey) => { csvToJson.fieldDelimiter(',').generateJsonFileFromCsv('data/quotedUSshares.csv','data/quotedUSshares.json'); }) .catch(error => {console.error(error)}); + console.log("Finish update list of quoted US shares"); } @@ -31,6 +32,7 @@ const updateIntradaySeriesShare = async (symbol, interval = 30, apiKey) => { fs.writeFileSync(path, JSON.stringify(data)); }) .catch(error => console.error(error)) + console.log("Finish update IntraDay from " + symbol); } const updateDailySeriesShare = async (symbol, apiKey) => { @@ -46,7 +48,7 @@ const updateDailySeriesShare = async (symbol, apiKey) => { }) .catch(error => console.error(error) ) - console.log("FINISH update Daily Series from " + symbol); + console.log("Finish update Daily Series from " + symbol); } @@ -62,6 +64,7 @@ const updateWeeklySeriesShare = async (symbol, apiKey) => { fs.writeFileSync(path, JSON.stringify(data)); }) .catch(error => console.error(error)) + console.log("Finish update Weekly Series from " + symbol); } const updateMonthlySeriesShare = async (symbol, apiKey) => { @@ -76,6 +79,7 @@ const updateMonthlySeriesShare = async (symbol, apiKey) => { fs.writeFileSync(path, JSON.stringify(data)); }) .catch(error => console.error(error)) + console.log("Finish update Monthly Series from " + symbol); } module.exports = { diff --git a/Backend/server.js b/Backend/server.js index fb419432..931e4c19 100644 --- a/Backend/server.js +++ b/Backend/server.js @@ -29,7 +29,6 @@ const routes = require('./routes/routes.js')(app, fs, apiKey); const server = app.listen(3001, () => { setApiKey(); console.log('listening on port %s...', server.address().port); - }); //INFO WICHTIGER LINK für schedule @@ -37,33 +36,63 @@ const server = app.listen(3001, () => { // //Every 3 hours the API key is updated -// const updateApiKey = schedule.scheduleJob('* */3 * * *', setApiKey); +const updateApiKey = schedule.scheduleJob('0 */3 * * *', setApiKey); // //Every hour new data are pulled from the API for Intraday - const updateIntraday = schedule.scheduleJob('0 */1 * * *', updateIntradayData); +const updateIntraday = schedule.scheduleJob('0 */1 * * *', updateIntradayData); +// const updateIntraday = schedule.scheduleJob('5 15 * * *', updateIntradayData); -// //Always at 0:10 the daily data is pulled from the API - const updateDaily = schedule.scheduleJob('30 0 * * *', updateDailyData); +// //Always at 0:05 the daily data is pulled from the API +const updateDaily = schedule.scheduleJob('5 0 * * *', updateDailyData); +// const updateDaily = schedule.scheduleJob('5 15 * * *', updateDailyData); -// //Always at 0:20 the weekly data is pulled from the API - const updateWeekly = schedule.scheduleJob('20 0 * * *', updateWeeklyData); +// //Always at 1:05 the weekly data is pulled from the API +const updateWeekly = schedule.scheduleJob('5 1 * * *', updateWeeklyData); +// const updateWeekly = schedule.scheduleJob('5 15 * * *', updateWeeklyData); -// //Always at 0:30 the monthly data is pulled from the API - const updateMonthly = schedule.scheduleJob('30 0 * * *', updateMonthlyData); +// //Always at 2:05 the monthly data is pulled from the API +const updateMonthly = schedule.scheduleJob('5 2 * * *', updateMonthlyData); +// const updateMonthly = schedule.scheduleJob('39 15 * * *', updateMonthlyData); +//Only from 3 o'clock (including 3 o'clock) the intraday data are updated async function updateIntradayData(){ - const fileStream = fs.createReadStream('./data/symbols.txt'); - - const rl = readline.createInterface({ - input: fileStream, - crlfDelay: Infinity - }); - - for await (const symbol of rl) { - updateDataFromAPI.updateIntradaySeriesShare(symbol,30, apiKey); + let today = new Date(); + + if(today.getHours() > 2){ + const fileStream = fs.createReadStream('./data/symbols.txt'); + + const rl = readline.createInterface({ + input: fileStream, + crlfDelay: Infinity + }); + + let fiveSymbols= []; + let i = 0; + let k = 0; + for await (const symbol of rl) { + if(i > 4){ + updateFiveIntradayFromAPI(fiveSymbols, k); + k++; + fiveSymbols = []; + i = 0; + } + fiveSymbols[i] = symbol; + i++; + } + updateFiveIntradayFromAPI(fiveSymbols, k); + + rl.close() } } +async function updateFiveIntradayFromAPI(symbols, minutes){ + //Every 1.5 Minutes start update 5 Symbols + setTimeout(() => { + for (const symbol of symbols) { + updateDataFromAPI.updateIntradaySeriesShare(symbol,30, apiKey); + } + },90000 * minutes); +} async function updateDailyData(){ const fileStream = fs.createReadStream('./data/symbols.txt'); @@ -72,11 +101,33 @@ async function updateDailyData(){ input: fileStream, crlfDelay: Infinity }); - + + let fiveSymbols= []; + let i = 0; + let k = 0; for await (const symbol of rl) { - updateDataFromAPI.updateDailySeriesShare(symbol,apiKey); + if(i > 4){ + updateFiveDailyFromAPI(fiveSymbols,k); + k++; + fiveSymbols = []; + i = 0; + } + fiveSymbols[i] = symbol; + i++; } + updateFiveDailyFromAPI(fiveSymbols,k); + + rl.close() +} +async function updateFiveDailyFromAPI(symbols, minutes){ + //Every 1.5 Minutes start update 5 Symbols + setTimeout(() => { + for (const symbol of symbols) { + updateDataFromAPI.updateDailySeriesShare(symbol,apiKey); + } + },90000 * minutes); } + async function updateWeeklyData(){ const fileStream = fs.createReadStream('./data/symbols.txt'); @@ -84,11 +135,33 @@ async function updateWeeklyData(){ input: fileStream, crlfDelay: Infinity }); - + + let fiveSymbols= []; + let i = 0; + let k = 0; for await (const symbol of rl) { - updateDataFromAPI.updateWeeklySeriesShare(symbol,apiKey); + if(i > 4){ + updateFiveWeeklyFromAPI(fiveSymbols,k); + k++; + fiveSymbols = []; + i = 0; + } + fiveSymbols[i] = symbol; + i++; } + updateFiveWeeklyFromAPI(fiveSymbols,k); + + rl.close() +} +async function updateFiveWeeklyFromAPI(symbols, minutes){ + //Every 1.5 Minutes start update 5 Symbols + setTimeout(() => { + for (const symbol of symbols) { + updateDataFromAPI.updateWeeklySeriesShare(symbol,apiKey); + } + },90000 * minutes); } + async function updateMonthlyData(){ const fileStream = fs.createReadStream('./data/symbols.txt'); @@ -96,11 +169,33 @@ async function updateMonthlyData(){ input: fileStream, crlfDelay: Infinity }); - + + let fiveSymbols= []; + let i = 0; + let k = 0; for await (const symbol of rl) { - updateDataFromAPI.updateMonthlySeriesShare(symbol,apiKey); + if(i > 4){ + updateFiveMonthlyFromAPI(fiveSymbols,k); + k++; + fiveSymbols = []; + i = 0; + } + fiveSymbols[i] = symbol; + i++; } + updateFiveMonthlyFromAPI(fiveSymbols,k); + + rl.close() } +async function updateFiveMonthlyFromAPI(symbols, minutes){ + //Every 1.5 Minutes start update 5 Symbols + setTimeout(() => { + for (const symbol of symbols) { + updateDataFromAPI.updateMonthlySeriesShare(symbol,apiKey); + } + },90000 * minutes); +} + function setApiKey(){ console.log("API Key checked is called"); From ac1477447aaffe21119d56416b6da6be7d0bf342 Mon Sep 17 00:00:00 2001 From: Steffen Kruschina Date: Thu, 31 Mar 2022 15:06:59 +0200 Subject: [PATCH 5/5] SPF-87 Add the search to the Backend --- Backend/routes/routes.js | 3 ++- Backend/routes/search.js | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 Backend/routes/search.js diff --git a/Backend/routes/routes.js b/Backend/routes/routes.js index 702cdd82..1ac7cee2 100644 --- a/Backend/routes/routes.js +++ b/Backend/routes/routes.js @@ -4,6 +4,7 @@ const intradayroute = require('./intraday'); const monthlyroute = require('./monthly'); const weeklyroute = require('./weekly'); const quotedUSshares = require('./quotedUSshares'); +const search = require('./search'); const appRouter = (app, fs, apiKey) => { app.get('/', (req, res) => { @@ -14,7 +15,7 @@ const appRouter = (app, fs, apiKey) => { monthlyroute(app, fs, apiKey); weeklyroute(app, fs, apiKey); quotedUSshares(app,fs, apiKey); - + search(app,fs); }; module.exports = appRouter; \ No newline at end of file diff --git a/Backend/routes/search.js b/Backend/routes/search.js new file mode 100644 index 00000000..af9bfc5e --- /dev/null +++ b/Backend/routes/search.js @@ -0,0 +1,23 @@ +const userRoutes = (app, fs) => { + // variables + const dataPath = './data/quotedUSshares.json'; + + // READ + app.get('/search', (req, res) => { + if(req.query.text){ + const searchText = req.query.text; + const rawData = fs.readFileSync(dataPath); + let result = JSON.parse(rawData); + let arrFound = result.filter(function(item) { + let isPartOf = item.symbol.includes(searchText) || item.name.includes(searchText); + return isPartOf; + }); + + res.send(arrFound); + return; + } + res.send("NO search Text"); + }); + }; + + module.exports = userRoutes;