我需要画两条水平线来表示支撑和阻力。
下面是我的代码:
from alpha_vantage.timeseries import TimeSeries
import mplfinance as mpf
ts = TimeSeries(key='', output_format='pandas', indexing_type='date')
data, meta_data = ts.get_daily(symbol='MSFT', outputsize='compact')
data = data.sort_values(by=['date'])
data.rename(columns={'date':'Date','1. open':'Open','2. high':'High','3. low':'Low','4. close':'Close','5. volume':'Volume'}, inplace=True)
mpf.plot(data, title='MSFT', ylabel='Price', ylabel_lower='Volume', type='candle', style='charles', volume=True, mav=(50, 200), savefig='test-mplfiance.png')
字符串
我怎么能这么做呢?我设法在图表上画出了烛台,但我画不出线。
1条答案
按热度按时间pkln4tw61#
希望这东西有用。尝试找到支撑和阻力,并将其添加到
hlines
字符串