Returns securities with the highest gain percent change traded on the chosen stock exchange.
Name | Type | Description | Notes |
---|---|---|---|
identifier | str | A Stock Exchange identifier (MIC or Intrinio ID) | |
min_price | float | The minimum price filter | [optional] |
page_size | int | The number of results to return | [optional] [default to 100] |
source | str | Return the realtime price from the specified source instead of the most recent. | [optional] |
Name | Type | Description |
---|---|---|
movers | list[StockExchangeMover] | The mover security. |
stock_exchange | StockExchange | The Stock Exchange resolved from the given identifier |
Name | Type | Description |
---|---|---|
security_id | str | The Intrinio Identifier for this security. |
ticker | str | The ticker symbol for this security. |
last_price | float | The last price of the last trade. |
change | float | The raw change in price. |
percent_change | float | The percent change in price. |
market_volume | float | The market volume for the most recent (today) trading day. |
source | str | The source of the data. |
Name | Type | Description |
---|---|---|
id | str | The Intrinio ID for the Stock Exchange |
name | str | The name of the exchange |
mic | str | The Market Identifier Code (MIC) of the exchange |
acronym | str | The acronym of the exchange's name |
city | str | The city in which the exchange is located |
country | str | The country in which the exchange is located |
country_code | str | The 2-digit code of the exchange's country |
website | str | The website of the exchange |
first_stock_price_date | date | The earliest date for which Intrinio has stock prices for the exchange |
last_stock_price_date | date | The latest date for which Intrinio has stock prices for the exchange |