Does anyone have a good API for looking up stock prices that allows petitions for many stocks? I have this one (below), but it limits petitions to 5 per about 20 -30 seconds moments.
Code:
ALPHAVANTAGE:
url = "https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol="+vsymbol+"&interval=1min&apikey=csv"
result=http_get_page2(url,.f.)
vc_price_now=word(word(word(result,2,"Time Series"),6,chr(10)),2,chr(58))
vc_price_now=alltrim(stritran(stritran(vc_price_now,chr(34),""),chr(44),""))
vn_price_now=val(vc_price_now)
Bookmarks