matplotlib EMA线与图的其余部分不一致

xu3bshqb  于 2023-06-23  发布在  其他
关注(0)|答案(1)|浏览(132)

当你加载代码时,它应该绘制蜡烛图和4条EMA线,但是它们是分开的。我目前正在特斯拉股票上测试代码,以实现我在这里展示的示例。

代码:

  1. import yfinance as yf
  2. import mplfinance as mpf
  3. import matplotlib.pyplot as plt
  4. import matplotlib.patches as mpatches
  5. import pandas as pd
  6. # Dates to get stock data
  7. start_date = "2010-07-01"
  8. end_date = "2023-06-17"
  9. # Fetch Tesla stock data
  10. tesla_data = yf.download("TSLA", start=start_date, end=end_date)
  11. tesla_weekly_data = tesla_data.resample("W").agg(
  12. {"Open": "first", "High": "max", "Low": "min", "Close": "last", "Volume": "sum"}
  13. ).dropna()
  14. # Get the latest closing price
  15. latest_price = tesla_weekly_data['Close'][-1]
  16. # Create additional plot
  17. close_price = tesla_weekly_data['Close']
  18. apd = mpf.make_addplot(close_price, color='cyan', width=2)
  19. # Calculate the EMA with different lengths
  20. ema_lengths = [8, 13, 21, 55]
  21. ema_colors = ['blue', 'green', 'yellow', 'red']
  22. ema_lines = []
  23. for length, color in zip(ema_lengths, ema_colors):
  24. ema_line = tesla_weekly_data['Close'].ewm(span=length, adjust=False).mean()
  25. ema_lines.append(ema_line)
  26. # Plot the candlestick chart with EMA lines
  27. fig, axes = mpf.plot(tesla_weekly_data,
  28. type='candle',
  29. addplot=apd,
  30. style='yahoo',
  31. title='Tesla Stock Prices',
  32. ylabel='Price',
  33. xlabel='Date',
  34. volume=True,
  35. ylabel_lower='Volume',
  36. volume_panel=1,
  37. figsize=(16, 8),
  38. returnfig=True)
  39. # Move the y-axis labels to the left side
  40. axes[0].yaxis.tick_left()
  41. axes[1].yaxis.tick_left()
  42. # Adjust the position of the y-axis label for price
  43. axes[0].yaxis.set_label_coords(-0.08, 0.5)
  44. # Adjust the position of the y-axis label for volume
  45. axes[1].yaxis.set_label_coords(-0.08, 0.5)
  46. # Set y-axis label for price and volume
  47. axes[0].set_ylabel('Price', rotation=0, labelpad=20)
  48. axes[1].set_ylabel('Volume', rotation=0, labelpad=20)
  49. # Make the legend box
  50. handles = axes[0].get_legend_handles_labels()[0]
  51. red_patch = mpatches.Patch(color='red')
  52. green_patch = mpatches.Patch(color='green')
  53. cyan_patch = mpatches.Patch(color='cyan')
  54. handles = handles[:2] + [red_patch, green_patch, cyan_patch]
  55. labels = ["Price Up", "Price Down", "Closing Price"]
  56. axes[0].legend(handles=handles, labels=labels)
  57. # Add a box to display the current price
  58. latest_price_text = f"Current Price: ${latest_price:.2f}"
  59. box_props = dict(boxstyle='round', facecolor='white', edgecolor='black', alpha=0.8)
  60. axes[0].text(0.02, 0.95, latest_price_text, transform=axes[0].transAxes,
  61. fontsize=12, verticalalignment='top', bbox=box_props)
  62. # Add EMA lines
  63. for ema_line, color in zip(ema_lines, ema_colors):
  64. axes[0].plot(ema_line, color=color)
  65. # Display the chart
  66. plt.show()

为什么EMA线与图的其余部分分开,而它们应该对齐?

ca1c2owp

ca1c2owp1#

我对此了解不多,但在我看来,每个时间线都根据正在发生的事件而被不同地对待。通过将附加的图形组合到进程的mpl侧,它可以被正确地显示。我不知道在您的环境中是否会显示警告,但我已经添加了错误消息中的设置,因为当数据量很大时会显示警告。

  1. import yfinance as yf
  2. import mplfinance as mpf
  3. import matplotlib.pyplot as plt
  4. import matplotlib.patches as mpatches
  5. import pandas as pd
  6. # Dates to get stock data
  7. start_date = "2010-07-01"
  8. end_date = "2023-06-17"
  9. # Fetch Tesla stock data
  10. tesla_data = yf.download("TSLA", start=start_date, end=end_date)
  11. tesla_weekly_data = tesla_data.resample("W").agg(
  12. {"Open": "first", "High": "max", "Low": "min", "Close": "last", "Volume": "sum"}
  13. ).dropna()
  14. # Get the latest closing price
  15. latest_price = tesla_weekly_data['Close'][-1]
  16. # Calculate the EMA with different lengths
  17. ema_lengths = [8, 13, 21, 55]
  18. ema_colors = ['blue', 'green', 'yellow', 'red']
  19. ema_lines = []
  20. for length, color in zip(ema_lengths, ema_colors):
  21. ema_line = tesla_weekly_data['Close'].ewm(span=length, adjust=False).mean()
  22. ema_lines.append(ema_line)
  23. # Create additional plot
  24. apds = []
  25. close_price = tesla_weekly_data['Close']
  26. apds.append(mpf.make_addplot(close_price, color='cyan', width=2))
  27. # Add EMA lines
  28. for ema_line, color in zip(ema_lines, ema_colors):
  29. apds.append(mpf.make_addplot(ema_line, color=color))
  30. # Plot the candlestick chart with EMA lines
  31. fig, axes = mpf.plot(tesla_weekly_data,
  32. type='candle',
  33. addplot=apds, # update
  34. style='yahoo',
  35. title='Tesla Stock Prices',
  36. ylabel='Price',
  37. #xlabel='Date',
  38. volume=True,
  39. ylabel_lower='Volume',
  40. volume_panel=1,
  41. figsize=(16, 8),
  42. returnfig=True,
  43. warn_too_much_data=2800, # update: 677 records x 4 lines
  44. )
  45. # Move the y-axis labels to the left side
  46. axes[0].yaxis.tick_left()
  47. axes[1].yaxis.tick_left()
  48. # Adjust the position of the y-axis label for price
  49. axes[0].yaxis.set_label_coords(-0.08, 0.5)
  50. # Adjust the position of the y-axis label for volume
  51. axes[1].yaxis.set_label_coords(-0.08, 0.5)
  52. # Set y-axis label for price and volume
  53. axes[0].set_ylabel('Price', rotation=0, labelpad=20)
  54. axes[1].set_ylabel('Volume', rotation=0, labelpad=20)
  55. # Make the legend box
  56. handles = axes[0].get_legend_handles_labels()[0]
  57. red_patch = mpatches.Patch(color='red')
  58. green_patch = mpatches.Patch(color='green')
  59. cyan_patch = mpatches.Patch(color='cyan')
  60. handles = handles[:2] + [red_patch, green_patch, cyan_patch]
  61. labels = ["Price Up", "Price Down", "Closing Price"]
  62. axes[0].legend(handles=handles, labels=labels)
  63. # Add a box to display the current price
  64. latest_price_text = f"Current Price: ${latest_price:.2f}"
  65. box_props = dict(boxstyle='round', facecolor='white', edgecolor='black', alpha=0.8)
  66. axes[0].text(0.02, 0.95, latest_price_text, transform=axes[0].transAxes,
  67. fontsize=12, verticalalignment='top', bbox=box_props)
  68. # Display the chart
  69. plt.show()

展开查看全部

相关问题