All Projects → liihuu → KLineChartAndroid

liihuu / KLineChartAndroid

Licence: MIT license
A kline chart UI widget for android(Android版本的k线).

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to KLineChartAndroid

Kchartview
KChart for Android ;股票k线图
Stars: ✭ 864 (+1594.12%)
Mutual labels:  charts, stocks, kline
bitbot
Simple python app to drive Pimoroni e-ink displays with finance candle charts
Stars: ✭ 22 (-56.86%)
Mutual labels:  charts, stocks
Chklinechart
纯Swift4.0代码编写的K线图表组件,支持:MA,EMA,BOLL,SAR,KDJ,MACD等技术指标显示。集成使用简单,二次开发扩展强大
Stars: ✭ 409 (+701.96%)
Mutual labels:  stocks, kline
Hycharts
柱状图、折/曲线图、K线图(主图、交易量图、辅助图), 图与图可以自由组合, 支持分页加载数据 -----> 低内存、低耗电、滑动缩放顺滑
Stars: ✭ 394 (+672.55%)
Mutual labels:  charts, kline
Ggcharts
可以高度自定义的图表框架。柱状图、折线图、雷达图、饼图、K线图、分时图。
Stars: ✭ 713 (+1298.04%)
Mutual labels:  charts, kline
yii2-highcharts-widget
HighCharts Js Widget for Yii2
Stars: ✭ 40 (-21.57%)
Mutual labels:  charts, widget
Tradestation
EasyLanguage indicators and systems for TradeStation
Stars: ✭ 65 (+27.45%)
Mutual labels:  charts, stocks
binance-downloader
Python tool to download Binance Candlestick (k-line) data from REST API
Stars: ✭ 44 (-13.73%)
Mutual labels:  kline, candlesticks
asciichart
ASCII line charts in terminal ╭┈╯ Haskell port of kroitor/asciichart
Stars: ✭ 23 (-54.9%)
Mutual labels:  charts
ProjectReward
A software to shortlist and find the best options spread available for a given stock and help it visualise using payoff graphs.
Stars: ✭ 57 (+11.76%)
Mutual labels:  stocks
git-space
A web application to view Github's user profile.
Stars: ✭ 14 (-72.55%)
Mutual labels:  charts
finam-export
Python client library to download historical data from finam.ru
Stars: ✭ 84 (+64.71%)
Mutual labels:  stocks
incrementally loading listview
An extension of the Flutter ListView widget for incrementally loading items upon scrolling
Stars: ✭ 172 (+237.25%)
Mutual labels:  widget
decent-visualizer
A visualizer for .shot files
Stars: ✭ 46 (-9.8%)
Mutual labels:  charts
flutter redux
A Flutter Starter Application
Stars: ✭ 25 (-50.98%)
Mutual labels:  widget
Pagination
a paging widget based on Qt
Stars: ✭ 22 (-56.86%)
Mutual labels:  widget
django-admin-charts
Create beautiful configurable charts from your models and display them on the django-admin index page or on django-admin-tools dashboard. The charts are based on models and criterias defined through admin interface and some chart parameters are configurable in live view.
Stars: ✭ 78 (+52.94%)
Mutual labels:  charts
widgetci
a Cross-Platform Widget Management App. (Win/Linux/Mac)
Stars: ✭ 36 (-29.41%)
Mutual labels:  widget
yii2-jstree-widget
jsTree tree widget for yii2
Stars: ✭ 16 (-68.63%)
Mutual labels:  widget
handy-scroll
Handy dependency-free floating scrollbar widget
Stars: ✭ 15 (-70.59%)
Mutual labels:  widget

KLineChart(中文)

Build Status Codacy Badge API Download License

A kline UI widget for android. Support analysis indicators and style changes, as well as customize the drawing of something you want to display.

Usage

Put a widget in the XML layout, set some attributes

<com.liihuu.klinechart.KLineChartView
    android:id="@+id/k_line_chart"
    android:layout_width="match_parent"
    android:layout_height="350dp"
    android:layout_marginTop="20dp"
    app:candle_style="ohlc"/>

Add data and set some attributes in the code.

Kotlin

k_line_chart.candle.candleStyle = Candle.CandleStyle.OHLC
k_line_chart.addData(dataList)

Java

k_line_chart.getCandle().setCandleStyle(Candle.CandleStyle.OHLC)
k_line_chart.addData(dataList)

Download

gradle

implementation 'com.liihuu.widget:klinechart:2.2.3'

maven

<dependency>
  <groupId>com.liihuu.widget</groupId>
  <artifactId>klinechart</artifactId>
  <version>2.2.3</version>
  <type>pom</type>
</dependency>

Indicator

Supported by default

MA VOL MACD BOLL KDJ KD RSI BIAS BRAR CCI
DMI CR PSY DMA TRIX OBV VR WR MTM SAR
The main chart supports all technical analysis indicators, generally only set NO, MA, BOLL and SAR. NO means no display.

Custom indicator

Charts support custom indicator. You can refer to examples.

Attributes

Attributes can be changed to change the appearance of the chart. Here is attributes detail

Screenshot

Examples

Thanks

License

Copyright (c) 2019 lihu

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].