0

この例を実装しました:

http://matplotlib.sourceforge.net/examples/pylab_examples/finance_demo.html?highlight=candlestick

ローソク足にマウス ホバー機能を実装して、特定のパネルのポップアップまたはラベルでローソク足の始値/高値/安値/終値を確認できるようにしたいと考えています。私は一緒にフォローしていました:

http://matplotlib.sourceforge.net/examples/event_handling/pick_event_demo.html

残念ながら、機能:

candlestick(ax, quotes, width=0.6)

picker=Trueにはキーワードがありません。マウスホバー機能を実装する別の方法はありますか?

matplotlib.finance のドキュメント http://doc.astro-wise.org/matplotlib.finance.html

4

2 に答える 2

2

いくつかの貴重な情報にリンクする回答をすでに提供しています。アーティストを軸に考えるのではなく、データを見て物事にアプローチしたいので、もう少しサポートしたいと思います。私が行ったことは、matplotlib ローソク足の例を取り上げ、マウスが現在上にある日付と 3 つの最も近い (時間的に) 株式を出力するマウス移動イベントを追加することです。この時点から、目的の結果を生成するには、2 つの回答を組み合わせるだけで問題ありません。

#!/usr/bin/env python
import matplotlib.pyplot as plt
import pylab
from matplotlib.dates import  DateFormatter, WeekdayLocator, HourLocator, \
     DayLocator, MONDAY, num2date
from matplotlib.finance import quotes_historical_yahoo, candlestick,\
     plot_day_summary, candlestick2

# (Year, month, day) tuples suffice as aregs for quotes_historical_yahoo
date1 = ( 2004, 2, 1)
date2 = ( 2004, 4, 12 )


mondays = WeekdayLocator(MONDAY)        # major ticks on the mondays
alldays    = DayLocator()              # minor ticks on the days
weekFormatter = DateFormatter('%b %d')  # Eg, Jan 12
dayFormatter = DateFormatter('%d')      # Eg, 12

quotes = quotes_historical_yahoo('INTC', date1, date2)
if len(quotes) == 0:
    raise SystemExit

fig = plt.figure()
fig.subplots_adjust(bottom=0.2)
ax = fig.add_subplot(111)
ax.xaxis.set_major_locator(mondays)
ax.xaxis.set_minor_locator(alldays)
ax.xaxis.set_major_formatter(weekFormatter)

candlestick(ax, quotes, width=0.6)

ax.xaxis_date()
ax.autoscale_view()
plt.setp(ax.get_xticklabels(), rotation=45, horizontalalignment='right')


def on_move(event):
    ax = event.inaxes
    if ax is not None:
        # convert x y device coordinates to axes data coordinates
        date_ordinal, y = ax.transData.inverted().transform([event.x, event.y])

        # convert the numeric date into a datetime
        date = num2date(date_ordinal)

        # sort the quotes by their distance (in time) from the mouse position
        def sorter(quote):
            return abs(quote[0] - date_ordinal)
        quotes.sort(key=sorter)

        print 'on date %s the nearest 3 openings were %s at %s respectively' % \
                        (date, 
                         ', '.join([str(quote[1]) for quote in quotes[:3]]),
                         ', '.join([str(num2date(quote[0])) for quote in quotes[:3]]))


on_move_id = fig.canvas.mpl_connect('motion_notify_event', on_move)


plt.show()

HTH

于 2012-08-02T20:59:52.580 に答える
0

ここに「マウスオーバー」イベントを処理するための回答を書きました。これは、同様のことを行う方法を見つけるための最初の呼び出しポイントとして適しています。

于 2012-08-02T15:05:52.803 に答える