도난 아래 코드는 당신이 야후의 주식 시세를 검색 할 필요가 무엇을 제공 할 것입니다. 단순히 GetStockPrices에 시세 표시 기호를 전달해야합니다. 나는 기본적으로 Google 금융에서 1 년 간의 과거 데이터를 다운로드한다고 생각합니다.
정말로, 당신이해야 할 일은 'vb.net 다운로드 주식 시세 기록'뿐입니다. 거기에 수많은 자료가 있습니다.
' Get the prices for this symbol.
Private Function GetStockPrices(ByVal symbol As String) As _
List(Of Single)
' Compose the URL.
Dim url As String = _
"http://www.google.com/finance/historical?output=csv&q=" _
& symbol
' Get the result.
' Get the web response.
Dim result As String = GetWebResponse(url)
' Get the historical prices.
Dim lines() As String = result.Split(_
New String() {vbCr, vbLf}, _
StringSplitOptions.RemoveEmptyEntries)
Dim prices As New List(Of Single)()
' Process the lines, skipping the header.
For i As Integer = 1 To lines.Length - 1
Dim line As String = lines(i)
prices.Add(Single.Parse(line.Split(","c)(4)))
Next i
Return prices
End Function
나를 신뢰해라. 나는 그들 모두가 나에게 미친 코드 또는 SQL과 관련이있는 것처럼 보였다. 나는 정말 초보자입니다. 또한 코드가 작동하지 않습니다. 어쨌든 고마워. – devon