Python 上的 MT5 无法正常工作并给出错误消息 AttributeError: 'NoneType' 对象没有属性 'ask'

问题描述 投票:0回答:1

所以我有一段代码,本质上就是这样

price_three = mt5.symbol_info_tick(thr_currency_text).ask
a

并给出错误消息

price_three = mt5.symbol_info_tick(thr_currency_text).ask
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

AttributeError: 'NoneType' object has no attribute 'ask'

但是,我之前使用过该代码,但仍然无法正常工作。

price_two = mt5.symbol_info_tick(sec_currency_text).ask
price = mt5.symbol_info_tick(temp_currency_text).ask

我已经卸载了 mt5 并在命令提示符下重新安装它,但仍然无法工作。不知道如何解决这个解决方案。此外,当它提到 temp/sec/thr_currency_text 时,它与除了几个变量之外的任何内容都没有相关性。但还是不行

python appium appium-android python-appium metatrader5
1个回答
0
投票

显然你没有声明

thr_currency_text

© www.soinside.com 2019 - 2024. All rights reserved.