Morning Session Stock Prices(OHLC) (/prices/prices_am)

You can obtain the morning session's high, low, opening, and closing prices for individual stocks as quick updates at noon.

Overview

You can obtain the morning session's high, low, opening, and closing prices for individual stocks as quick updates at noon.

Attention

  • Null is recorded for the open, high, low, close, volume and trading value for stocks for which there is no trading volume in the morning session.

  • Stocks that are not listed on the TSE (including issue listed only on the other exchanges) are not included in the data.

  • Data for the day can be obtained until around 6:00 the next day. For historical data, please use Stock Prices(OHLC).

Parameter and Response

In your request message, either "code" can be specified. Parameter in the request and results are as below.

CodeResults

A specified issue price in the morning session

All listed issue prices in the morning session

Ge stock prices in the morning session

GET https://api.jquants.com/v1/prices/prices_am

"code" can be specified.

"*" Required.

Query Parameters

NameTypeDescription

code

String

issue code

(e.g. 27800 or 2780)

If a 4-character issue code is specified, only the data of common stock will be obtained for the issue on which both common and preferred stocks are listed.

pagination_key

String

The primary key of the first item that this operation will evaluate. Use the value that was returned for pagination_key in the previous operation.

Headers

NameTypeDescription

Authorization*

String

Access Key

{
    "prices_am": [
        {
            "Date": "2023-03-20",
            "Code": "39400",
            "MorningOpen": 232.0,
            "MorningHigh": 244.0,
            "MorningLow": 232.0,
            "MorningClose": 240.0,
            "MorningVolume": 52600.0,
            "MorningTurnoverValue": 12518800.0
        }
    ],
    "pagination_key": "value1.value2."
}

Data Item

変数名説明備考

Date

Date

String

YY-MM-DD

Code

Issue code

String

MorningOpen

Open price of the morning session

Number

MorningHigh

High price of the morning session

Number

MorningLow

Low price of the morning session

Number

MorningClose

Close price of the morning session

Number

MorningVolume

Trading volume of the morning session

Number

MorningTurnoverValue

Trading value of the morning session

Number

Sample Code

idToken=<YOUR idToken> && curl https://api.jquants.com/v1/prices/prices_am?code=39400 -H "Authorization: Bearer $idToken" 

最終更新