candlestick-chart Questions

4

Solved

I am looking for a Python plotting library that allows me to plot candlesticks (preferably the OHLC bars variant) with X zoom via mousewheel scrolling (or similar) and an automatically scaled Y axi...
Jolin asked 3/7, 2018 at 19:54

4

Solved

I've made a python script to convert a csv file in a candlestick like this using mpl_finance, this is the script: import matplotlib.pyplot as plt from mpl_finance import candlestick_ohlc import pan...
Revolutionist asked 9/3, 2020 at 11:38

3

I am developing a telegram bot that fetches Candlestick Data from Binance API. I am unable to get JSON Data as a response. The following code is something that I tried: import requests import json...
Adur asked 16/7, 2018 at 9:2

4

I am trying to remove the datetime gaps in my candlestick (the gaps are the time periods when the stock market is closed, hence there are not data). Can't seem to find a good solution for using plo...

3

Solved

So I have been able to successfully install mplfinance with pip and when I import it alone I receive no error. Though when I do: from mplfinance import candlestick_ohlc I get the error ImportError:...
Hydrogenize asked 15/4, 2020 at 20:36

3

Solved

I am currently trying to do a simple implementation for stock price candle sticks. Let's say we have a stock called XYZ. This stock receives a stream of prices (in no particular frequency), which (...

10

Solved

I am trying to import matplotlib.finance module in python so that I can make a Candlestick OCHL graph. My matplotlib.pyplot version is 2.00. I've tried to import it using the following commands: i...
Mossgrown asked 21/2, 2017 at 16:41

3

Afaik, y-axis cant be made to auto scale when using x-range sliders. Y range is chosen with respect to the y values of the whole x range and does not change after zooming-in. This is especially ann...
Fisch asked 11/5, 2018 at 22:34

1

Solved

i am currently working with plotly i have a function called plotChart that takes a dataframe as input and plots a candlestick chart. I am trying to figure out a way to pass a list of dataframes to ...
Hyponasty asked 15/2, 2022 at 4:16

2

Solved

I am new to JupyterLab trying to learn. When I try to plot a graph, it works fine on jupyter notebook, but does not show the result on jupyterlab. Can anyone help me with this? Here are the codes...

0

I am attempting to use update / restyle buttons in an interactive shiny / plotly candlestick chart to switch between two sets of open/high/low/close (OHCL) values. I'm observing some strange behavi...
Expulsion asked 20/6, 2021 at 9:12

2

Solved

I tried using apex charts, but did not find proper doc for the react-apexcharts. I also tried react-google-charts, although it works fine, but it has unwanted spaces on sides which spoils the layou...
Felicle asked 15/10, 2018 at 12:59

4

I´m trying to create a simple plot with candlesticks. For that I get the data from Yahoo and plot it using the function candlestick2_ohlc. The goal is to export the image in a jpg file using. This ...
Mathers asked 9/12, 2018 at 23:13

2

I'm not managing to plot matplotlib.finance.candlestick without the weekends (blank spaces between every 5 candlesticks). The example from Matplotlib's website doesn't exclude weekends either and t...
Astraddle asked 10/5, 2012 at 7:42

2

I am currently developing a candlestick chart with mschart in visual C#. I have now created two charts and created the charts as follows Question 1. View the Candlestick Chart at the top. I would ...
Carbineer asked 20/9, 2017 at 8:5

3

Solved

This code gives plot of candlesticks with moving averages but the x-axis is in index, I need the x-axis in dates. What changes are required? import numpy as np import pandas as pd import matplotli...
Palsy asked 28/5, 2018 at 4:38

4

I am using geom_boxplot to draw candlesticks using stock market data. The problem is that the individual boxplot's upper and lower edges as well as the upper whisker end point show up way higher on...
Achene asked 10/1, 2014 at 13:41

1

How do I use MoreArgs properly with chart_Series? p.txt s,n ABBV,AbbVie BMY,Bristol LLY,EliLily MRK,Merck PFE,Pfizer sof.r # R --silent --vanilla < sof.r library(quantmod) options("getSymbo...
Humphreys asked 14/7, 2019 at 0:57

1

Solved

My Primary Program Collect Tick Data from Server and store these data in text file. Sample data in dataframe looks like below: SYMBOL_N PRICE DATE TIME VOLUME 35324399 92.31 02/11/18 12:45:26 1088...

1

Solved

I want to plot candlestick and 5-days average line on the same qchart, it should show one x axis, but gives two x axis. here is the code and the plot. import sys from PyQt5.QtChart import (QCandle...
Meingoldas asked 27/5, 2018 at 3:41

1

Solved

The problem is: I want to plot the intraday 1 minute OHLC bars of one stock. The daily trading hour is composed of several segments of trading periods. Which is listed below: Trade date: 2017/09...
Hoang asked 12/1, 2018 at 11:59

1

With the following code I am plotting a candlestick graph and also make use of annotations. I have played arround until I found the right positions for the text, but I still don't understand what t...
Bougainville asked 5/7, 2017 at 13:44

2

Solved

I have a pandas dataframe output as follows Open High Low Close 2016-06-01 69.60 70.20 69.44 69.76 2016-06-02 70.00 70.15 69.45 69.54 2016-06-03 69.51 70.48 68.62 68.91 2016-06-04 69.51 70.48 68...
Fairly asked 24/2, 2017 at 11:20

5

I would like create a daily candlestick plot from data i downloaded from yahoo using pandas. I'm having trouble figuring out how to use the candlestick matplotlib function in this context. Here is...
Forelli asked 25/10, 2013 at 2:27

1

As a demonstration piece for proof-of-concept I've created a Bokeh plot of four OHLC candles. I would like to extend the demo to animate the plot so that the current candlestick would be made to m...
Aurum asked 19/8, 2016 at 15:47

© 2022 - 2024 — McMap. All rights reserved.