使用Oanda问题实现外汇交易算法

时间:2019-04-27 00:28:53

标签: python trading forex

您好,我正在尝试使用OANDA API实现外汇交易算法。我在OANDA中创建了一个帐户,并生成了密钥。

我试图在

中实现代码

http://jon.io/placing-your-first-forex-trade-with-python.html

我使用了以下代码

import v20

api = v20.Context(
        'api-fxpractice.oanda.com',
        '443',
        token='HERE GOES YOUR API KEY')

response = api.order.market(
             'ACCOUNT ID',
             instrument='EUR_USD',
             units=5000)

print("Response: {} ({})".format(response.status, response.reason))

我得到的输出为“ Response:400(错误请求)”

我不明白如何按照以下github代码中的说明创建conf文件。

conf file creation

有人可以让我知道此错误请求输出的原因以及创建conf文件的方式。

0 个答案:

没有答案