Bloomberg から ティックデータをダウ​ンロードすることはで​きますか?

Bloomberg からある証券の任意の日にちのデータを毎時もしくは 2 時間ごとに取得する方法を教えてください。

 Akzeptierte Antwort

MathWorks Support Team
MathWorks Support Team am 10 Sep. 2012

0 Stimmen

timeseries 関数を用いてティックデータを取得することが可能です。例えば、以下のように実行すると、証券 S に対する 60 分間隔の Trade tick データを取得します。
c = blp;
d = timeseries(c,S,{StartDate,EndDate},60,Trade)
なお、timeseries 関数で取得できる tick データの最小単位は 1分です。また、API の制限により 140日より以前の日中データを取得することはできません。

Weitere Antworten (0)

Kategorien

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!