Stock tick data

Tick ​​data for individual Japanese stocks can be obtained via push delivery using the au Kabucom Securities API.
*Push delivery is a mechanism whereby data is delivered from the system when price and other information is updated.

There are several conditions for reference.

  • Up to 50 stocks per computer
  • Thinning out in 400ms (0.4 seconds)

When retrieving requests via REST rather than PUSH delivery, it appears that 10 requests per second (100 ms intervals) are accepted.

However, PUSH delivery is more convenient for retrieving tick data for 50 stocks.

Programmatic Acquisition

For the au Kabucom Securities API, samples can be downloaded from the Github release page.

In my case, I use C# to write the program.

It is said that the thinning is done at 400ms, but it seems that the thinning is done on the server side, and the “kabu station” installed on the terminal PC seems to be running on the data after thinning.

Currently, 40 stocks are registered in order of the number of tick data, and the rest are acquired by stocks that I am interested in.

I have been collecting since November 2024, and the large file exceeds 130,000 records and is over 80MB.

It is 5.5 hours in a day, so it is 19,800 seconds, and if it is 130,000 records, it is 6.5 times / second, so it is not 400ms, is it?

I do not know the actual specifications, but it feels faster than 400ms.

Since PUSH delivery is faster than the speed of writing to CSV, I process it using the C# Queue class.

I write CSV on the terminal PC until around 19:00 every day. lol

Available stock price data

You can get very detailed stock price data for each stock.

As stated on the official website, you can get detailed data for over 60 items, with data beyond stock price ticks.

Compared to the data from SBI Securities’ terminal app “HYPER SBI 2,” it’s at a visual level, but it doesn’t seem to have been processed.

Each securities company has different degrees of delay, but the data itself seems to be the same.

The following note is included with the stock price data from the au Kabucom Securities API.

*The “Bid” and “Ask” in the response are reversed from their original meanings of “buying price” and “selling price.” Please note that the actual values ​​returned will conform to the Japanese explanation.

Please check the sample using stocks with a small amount of data.

BaseFoods(2936)
*Click to download.