Hacim Açılış Yüksek Düşük Kapanış (VAYDK) Hisse Senedi Grafiği Oluşturma
Olası Kullanım Senaryoları
Üçüncü hisse senedi grafiği, Hacim Açılış Yüksek Düşük Kapanış grafiğidir. Tekrar etmek önemlidir, verilerin doğru sıraya sahip olması gerektiğini tekrarlamak önemlidir. Veri tablonuzu yeniden düzenlemeniz gerekiyorsa, grafiğinizi kurmadan önce bunu yapmalısınız. Bu grafik, ilk (kategori) sütunun hemen ardından bir hacim sütunu içerir ve grafikler, bu hacmi gösteren birincil eksende bir sütun grafiği içerirken fiyatlar ikincil eksene taşınır.
Hacim-Açılış-Yüksek-Düşük-Kapanış (VAYDK) hisse senedi grafiği
Örnek Kod
Aşağıdaki örnek kod, örnek Excel dosyasını yükler ve çıktı Excel dosyasını oluşturur.
from aspose.cells import Workbook | |
from aspose.cells.charts import ChartType, LegendPositionType | |
from aspose.cells.drawing import FillType | |
from aspose.pydrawing import Color | |
# Create an instance of Workbook | |
workbook = Workbook("Volume-Open-High-Low-Close.xlsx") | |
# Access the first worksheet. | |
worksheet = workbook.worksheets[0] | |
# Create High-Low-Close-Stock Chart | |
pieIdx = worksheet.charts.add(ChartType.STOCK_VOLUME_OPEN_HIGH_LOW_CLOSE, 5, 6, 20, 12) | |
# Retrieve the Chart object | |
chart = worksheet.charts[pieIdx] | |
# Set the legend can be showed | |
chart.show_legend = True | |
# Set the chart title name | |
chart.title.text = "Volume-Open-High-Low-Close Stock" | |
# Set the Legend at the bottom of the chart area | |
chart.legend.position = LegendPositionType.BOTTOM | |
# Set data range | |
chart.set_chart_data_range("A1:F9", True) | |
# Set category data | |
chart.n_series.category_data = "A2:A9" | |
# Set Color for the first series(Volume) data | |
chart.n_series[0].area.foreground_color = Color.from_argb(79, 129, 189) | |
# Fill the PlotArea area with nothing | |
chart.plot_area.area.fill_format.fill_type = FillType.NONE | |
# Save the Excel file | |
workbook.save("out.xlsx") |