Project

jpx

0.0
No commit activity in last 3 years
No release in over 3 years
Write a longer description or delete this line.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Jpx

JPXデータクラウドから購入したデータのCSVファイルをパースするライブラリです。

現在対応しているのは以下のデータです。

  • 日経225先物 1分足

Installation

Add this line to your application's Gemfile:

gem "jpx"

And then execute:

$ bundle install --path vendor/bundle

Or install it yourself as:

$ gem install jpx

Usage

# CSVファイルから期近のデータを取得します
Jpx::Price.parse("/path/to/file.csv")

#=> [{
      :datetime=>2018-01-04 08:45:00 +0900, # 実際に取引が行われた日時に変換しています
      :session=>0,                          # 0 - 日中, 1 - ナイトセッション
      :open=>23100,
      :high=>23200,
      :low=>23080,
      :close=>23082,
      :volume=>3027
     }, ...]