Tag: m_strExchangeID

  • 讯投QMT获得持仓

    holdings = {i.m_strInstrumentID + ‘.’ + i.m_strExchangeID : i.m_nCanUseVolume for i in holdings} 这行什么意思 Below content is from Deepseek 示例 假设 holdings 包含以下对象: 运行代码后,生成的字典为: 总结 这行代码的作用是将 holdings 中的每个对象的 m_strInstrumentID 和 m_strExchangeID 拼接成键,并将 m_nCanUseVolume 作为值,生成一个新的字典。 Read more