无法使用带有示例代码的OANDAPYV20 API提取基本定价数据

时间:2018-11-11 18:00:24

标签: python algorithmic-trading forex

我正在尝试使用OANDAPYV20 API提取简单的定价数据。以下代码与API文档基本相同-我也尝试了其他变体,但均未成功。每行单独编译成功,直到client.request(r)。我对Python有点陌生,但这很基础。我得到的错误是

  

“权限不足,无法执行请求”

这显然意味着更多的语法/数据错误,而不是权限问题。

from oandapyV20 import API
import oandapyV20.endpoints.pricing as pricing

accountID = "[accountname here]"
client = API(access_token="[token here]")

params = {"instruments": "EUR_USD,EUR_JPY"}

r = pricing.PricingInfo(accountID=accountID, params=params)
rv = client.request(r)
print (r.response)

0 个答案:

没有答案