【发布时间】:2018-08-20 22:49:22
【问题描述】:
我有以下代码来操作彭博终端,我想升级此代码以使用官方彭博 API。我已经能够从 Bloomberg 下载 API 并在安装了 Bloomberg Terminal 的机器上运行 C# 示例。
SendKeys.SendWait("{ESC}");
Thread.Sleep(delay);
SendKeys.SendWait("{ESC}");
Thread.Sleep(delay);
SendKeys.SendWait("IB> " + uuid);
Thread.Sleep(delay);
SendKeys.SendWait("{ENTER}");
我无法找到一个纯粹围绕在机器上执行命令(自动化)的示例,它们似乎更多地围绕访问数据。
有没有办法通过 Bloomberg API 向 Bloomberg Terminal 发送命令和参数?
【问题讨论】:
-
我不这么认为 - API 允许您从 Bloomberg 查询“东西”,它并不是要自动化终端。