|
我一直用这个,
第2列是代码,第3列是最新股价,你需要的其它数据它也有,只是我没提取。
Sub 更新股价()
For r = 2 To 99
ds = Cells(r, 2)
If ds <> "" Then
dm = Cells(r, 2).Value
If Val(dm) < 600000 Then
URL = "http://qt.gtimg.cn/q=sz" & dm
Else
URL = "http://qt.gtimg.cn/q=sh" & dm
End If
With CreateObject("msxml2.xmlhttp")
.Open "GET", URL, False
.send
sp = Split(.responsetext, "~")
If UBound(sp) > 3 Then
Cells(r, 3).Value = sp(3)
Else
Cells(r, 3).Value = "证券代码错误"
End If
End With
End If
Next
End Sub |
|