Questions tagged [candlestick-chart]

A candlestick-chart is a type of bar-chart which is primarily used to indicate change in price of security, currency etc.

Each bar in candlestick-chart represent variation of price over a given interval.

Example :- A Bar of Candlestick chart represent High, Low, Open & Close of a security, currency etc.

For more info: https://en.wikipedia.org/wiki/Candlestick_chart

473 questions
0
votes
1 answer

Exporting stock chart (ohlc) to Excel by C# code

I want to export the stock chart ohlc to Excel I'm using EPPlus, now I came to know that EPPlus does not support stock charts to draw, hence I'm looking for another third party dll, I've found aspose, but it's paid kind of feature to use. Can…
Annadate Piyush
  • 458
  • 5
  • 18
0
votes
1 answer

adding scrollable stock chart in excel -export

i want to export candlestick chart (stock chart excel) to excel (c#- epplus): stock chart (open-high-low-close) since the data is date-wise ( I've restricted to a year only.) wen chart (candle stick) is drawn into excel, its like compressed one, to…
Annadate Piyush
  • 458
  • 5
  • 18
0
votes
1 answer

JAVAFX - Control candleStick chart with a slider

I was trying to use old-known JAVA-FX candlestick chart, and having some trouble with it. When ever I try to re size my chart with a slider I have attached to it, for some reason the candles begin to grow bigger(thicker) or turn really…
Sielar
  • 292
  • 2
  • 10
0
votes
0 answers

PHP::Highcharts candlestick volume and rsi data missing

i am working highcharts candlestick with volume and rsi indication. when i put indicators.js in my page, lot of data missing in chart but it showing on volume. If suppose i remove indicators.js, all data perfectly showed on both chart and volume but…
0
votes
0 answers

Change colors of candles in candlestick chart

No matter what I've tried I can not change these colors. Points in the chart are added from DGV: For Count As Integer = 1 To rowC Chart1.Series(0).Points.AddXY(DGVH1.Item(0, Count).Value, DGVH1.Item(2, Count).Value, DGVH1.Item(3,…
Jovica
  • 450
  • 9
  • 32
0
votes
1 answer

How to include RSI and Volume in the same chart?

First of all i want to embed RSI plugin with the highstock chart, (i.e) RSI, Volume in the same chart. i tried it with using Highstock (Two panes, candlestick and volume ) http://www.highcharts.com/stock/demo/candlestick-and-volume and the RSI…
J Ramesh Fernandez
  • 309
  • 1
  • 8
  • 22
0
votes
1 answer

matplotlib candlestick chart bar output error - seems to be plotting more than one timeframe on single bar

I am attempting to plot a candlestick chart using matplotlib, with hourly candles. However my output looks strange and it seems to be plotting multiple "hours" on one candle. My code is as follows: cursor = conx.cursor() query= 'SELECT…
s666
  • 528
  • 4
  • 13
  • 33
0
votes
2 answers

Stock Chart and Line char in same plot

I have try to combined stock chart and line graph using excel. But it cannot do. I can draw Stock chart and line graph separately. Is anyone know a way to darw stock chart and line chart in same plot. X axis is same. If you can do this using…
0
votes
1 answer

D3 Candlestick chart date on xaxis

I am trying to create candlestick chart using d3.js, it works great but I cannot solve a problem. I am sure it is covered somewhere but I cannot find it. I have candlestick data, here is one record: …
Bodger
  • 1,342
  • 4
  • 16
  • 23
0
votes
1 answer

High charts using candlestick,vloum and MACD

I am new to highcharts and i am using hightcharts graph but volume not showing.When i remove MACD then volume show i don't understand why i am getting this issue!. my code…
Haseeb
  • 361
  • 2
  • 20
0
votes
1 answer

Adding labels to candlestick series

The following code snippet is plotting two candlestick series of 4 bars: from pylab import * from matplotlib.finance import candlestick import matplotlib.gridspec as gridspec quotes = [(734542.0, 1.326, 1.3287, 1.3322, 1.3215), (734543.0, 1.3286,…
Matteo NNZ
  • 11,930
  • 12
  • 52
  • 89
0
votes
1 answer

Is there a way using System.Web.UI.DataVisualization.Charting to rotate a Candlestick chart to display horizontally instead of vertically?

I want the candles to be displayed left to right not bottom to top. I cant seem to find anything with how to achieve this using this library. Some other client side libraries can do this but I am confined to server side code using this library at…
0
votes
0 answers

How to display the prices and the volumes on a candlesticks chart with Highstock Charts?

The example on the demo page shows the prices and the volumes on 2 charts (http://www.highcharts.com/stock/demo/candlestick-and-volume). Is it possible to render them in one chart only? Thanks. Update: Ok, got it here:…
0
votes
1 answer

how to customize x axis in xts plot

Following from this topic How do I set width of candles in candle chart using plot.xts? , I have noticed how plot.xts creates such fantastic candlestick plot. However when I tried the codes from that post I cannot get the x axis right. I…
Long Vo
  • 210
  • 1
  • 6
0
votes
1 answer

Adding data to CandleChart(OHLC) for TeeChart(Javascript/HTML5)

I'm trying to draw a CandleStick chart for a TeeChart JavaScript Version. However I only found the below demo. I'd like to find out how to add series(data) instead of using a addRandom() method. a addRandom() does not explain how to add a actual…