2017年5月16日yahoo.financeでEod PriceをダウンロードするためのURLを変更してください。新しいURLを使用しようとしましたが、機能しません。Yahoo financeからエラーがダウンロードされました
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;https://query1.finance.yahoo.com/v7/finance/download/APPL?period1=946854000&period2=1495234800&interval=1d&events=history&crumb=" + mycrumb _
, Destination:=Range("Dati!$A$2"))
.Name = "Data Table"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 850
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = True
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(5, 1, 1, 1, 1, 1, 9)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
誰かが私の問題を解決するのに役立つかもしれませんか?誰かに同じ問題がありますか? どうもありがとう
アンドレア
"...でも動作しません"何がうまくいかないの?サイトにアクセスできない、VBAエラーが発生する、データが読み込まれるがデータが間違っているなど...? – BruceWayne
Alpha Vantageの株価データAPIの使用をお勧めします。それは本当にうまくいく。 私はちょうどそれについてのブログ記事を書いた:http://www.the-data-wrangler.com/acquiring-stock-market-data-from-alpha-vantage/ –