从雅虎获取技术指标 api

Fetching technical indicators from yahoo api

我正在尝试从雅虎财经获取 RSI 指标 api。

到目前为止,我可以获得 CSV 格式的报价,但似乎没有 api 特定指标,例如 RSI。

有人知道怎么做吗?

谢谢

您可以通过套餐获取报价并计算您想要的指标。请参阅 quantmodTTR 的示例。

例如:

library(quantmod)
getSymbols('F',src='yahoo',return.class='ts') 
fpr <- Cl(F)
rsi <- RSI(fpr)

tail(cbind(Cl(F),rsi),10)

yahoo finance 没有这样的 API。我发现了一个有趣的 API,它似乎可以满足您的需求 (https://www.stockvider.com/)。它是全新的,API 没有提供很多功能,但它旨在涵盖最常见的技术指标。到目前为止,您只能获得 xml 格式的数据。

例如,您可以像这样获取 Apple 股票的 RSI 值:https://api.stockvider.com/data/NASDAQ/AAPL/RSI?start_date=2015-05-20&end_date=2015-07-20

您拥有计算 RSI 所需的所有数据。 http://www.investopedia.com/terms/r/rsi.asp

import numpy as np
from urllib.request import urlopen

# The stock to fetch
stock = 'AMD'

# Yahoos API
urlToVisit = 'http://chartapi.finance.yahoo.com/instrument/1.0/'+stock+'/chartdata;type=quote;range=1y/csv'
stockFile = []

# Fetch the stock info from Yahoo API
try:
    sourceCode = urlopen(urlToVisit).read().decode('utf-8')
    splitSource = sourceCode.split('\n')
    for eachLine in splitSource:
        splitLine = eachLine.split(',')
        if len(splitLine)==6:
            if 'values' not in eachLine:
                stockFile.append(eachLine)
except Exception as e:
    print(str(e), 'failed to organize pulled data')

except Exception as e:
    print(str(e), 'failed to pull price data')

date, closep, highp, lowp, openp, volume = np.loadtxt(stockFile, delimiter=',',unpack=True,)


def rsiFunc(prices, n=14):
    # Returns an RSI array
    deltas = np.diff(prices)
    seed = deltas[:n+1]
    up = seed[seed>=0].sum()/n
    down = -seed[seed<0].sum()/n
    rs = up/down
    rsi = np.zeros_like(prices)
    rsi[:n] = 100. - 100./(1.+rs)

    for i in range(n, len(prices)):
        delta = deltas[i-1]
        if delta > 0:
            upval = delta
            downval = 0.
        else:
            upval = 0.
            downval = -delta
        up = (up*(n-1)+upval)/n
        down = (down*(n-1)+downval)/n
        rs = up/down
        rsi[i] = 100. - 100./(1.+rs)
    return rsi


# Lets see what we got here
rsi = rsiFunc(closep)
n = 0
for i in date:
    print('Date stamp:', i, 'RSI', rsi[n])
    n+=1