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
2 answers

How can I make a candlestick chart from my own data

All of the examples I find online have to do with pulling data from the internet. I have my own data and I only want the max and min aspect of the candlestick (don't need beginning and ending levels on the candlesticks). I have a list of decimal…
BigBoy1337
  • 4,735
  • 16
  • 70
  • 138
0
votes
1 answer

dojo charting candlestick code examples

I am learning to use dojo, and am finding the documentation very tricky to wade through. All I am after is a basic working candlestick chart code with minimal settings/options on so that I can use that as a base to explore and build upon. something…
0
votes
1 answer

ChartDirector: customize candlestick shadow color on finance chart

Per this link, I am trying to create a finance candlestick chart in ChartDirector using the following code in C#/.NET 4.0: FinanceChart c = new FinanceChart(760); ... CandleStickLayer cLayer = c.addCandleStick(0x00FF00,…
John
  • 179
  • 2
  • 10
0
votes
1 answer

How to add a custom candlestick to highchart stock chart?

Using the Candlestick highstock chart,(http://www.highcharts.com/stock/demo/candlestick), I want to have the best last bar a custom candlestick where its available values are High and Low only? This is typical for a forecasting scenario where we…
Watati
  • 1
  • 2
0
votes
1 answer

Is it possible to select a different color for one candlestick?

Usually what you get with candlesticks bars two differentiating colors: blue and white or red and green in pairs etc...However, what i would like to know is if it is possible to highlight one of the candlestick bars within the chart with a third…
Watati
  • 1
  • 2
0
votes
2 answers

How to create a Candlestick chart for widows metro app.Is there any open source codes?? Any Way

I need to implement candlestick charts in windows metro app.Im not looking for any chart controls like visfire..ineed an open source code or a way ow to build it...Please help me...
0
votes
1 answer

adding labels to candlestick chart in matplotlib

I'm trying to add a series (composed of a list of [1,2,0,....]) to a candlestick chart I produced with matplotlib, but cannot work out how to include those labels for each specific candle in the graph. Basically I'd like to produce a chart like this…
mspadaccino
  • 382
  • 2
  • 5
  • 17
0
votes
2 answers

drawing on CandlestickSeries LineSeries makes candles narrower

I'm, using Flex 4.5. In my application I have a CandlestickChart with basic CandlestickSeries. I give the user the ability to add a linechart on top of the candlesChart by adding a LineSeries to the CandleStickChart as explained in adobe's docs…
0
votes
1 answer

Google chart candlestick with continuous axis

I'm trying to configure to my google candlestick chart a grouping format by date, as I saw it required a continuous axis (all the hAxis options are followed by: This option is only supported for a continuous axis.) I know i need to add a continuous…
Alon
  • 889
  • 10
  • 16
0
votes
2 answers

jqplot - Canvas overlay not working in a Candle Stick Chart

I am trying to draw a horizontal line on the candlestick chart using canvas overlay and i get a Error: Object doesn't support property or method 'series_u2p' error? any idea what could be the reason ?
user1589242
  • 1
  • 1
  • 1
0
votes
2 answers

Time series visualization for start, end, duration in R

I have the following data: > Data Date Start End 1 2011-11-15 12:01:27 12:30:15 2 2011-11-16 12:01:25 12:32:15 3 2011-11-17 12:01:02 12:39:12 4 2011-11-19 12:01:12 12:30:18 to which I've also appended a Duration…
Mittenchops
  • 18,633
  • 33
  • 128
  • 246
-1
votes
1 answer

How to properly plot a candlestick chart alongside trendlines but considering a y axis with percentage change values using MatPlotLib and Python?

When I was trying to compare 3 financial assets based exclusively on its price series, I realized that to do so all of those price series had to be converted to price change series, so that way, one could properly see which one of them was…
-1
votes
1 answer

Is there an example of a D3 live candlestick chart being updated?

I'd like to have a candlestick chart that plots trade data from a WebSocket feed or any generated fake data in Javascript. I've looked over all the documentation and demos, but I can't find any information on how to update an existing chart data…
-1
votes
1 answer

Convert Tick data to OHLC with Python (No External Libraries)

Let's say I have data like this : [ {'time': 1626459705; 'price': 278.989978}, {'time': 1626459695; 'price': 279.437975} ] Note : This is just a sample data I created myself. In actual there may be any number of transactions per minute. So, data…
Rakesh Poddar
  • 183
  • 3
  • 11
-1
votes
1 answer

Making Candlestick graph with python

I am a beginner in python trying to plot candlestick chart of stocks but am unable to do so. Matplotlib offers all charts except candlesticks. Any suggestions as to how i can achieve the results? enter image description here
1 2 3
31
32