from tqsdk import TqApi, TqAccount, TqSim
api = TqApi(TqSim())
position=api.get_position()
print(“多开均价: %.2f” % (position.open_price_long))
AttributeError: ‘Entity’ object has no attribute ‘open_price_long’
ringo 已回答的问题 2020年5月14日
你可以先print看看这个entity里面有什么,然后再看看文档,需要传入指定合约才能输出对应值,建议多看看文档和学习下python基础
ringo 已回答的问题 2020年5月14日