项目作者: liihuu

项目描述 :
A kline chart UI widget for android(Android版本的k线).
高级语言: Kotlin
项目地址: git://github.com/liihuu/KLineChartAndroid.git


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

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

Add data and set some attributes in the code.

Kotlin

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

Java

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

Download

gradle

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

maven

  1. <dependency>
  2. <groupId>com.liihuu.widget</groupId>
  3. <artifactId>klinechart</artifactId>
  4. <version>2.2.3</version>
  5. <type>pom</type>
  6. </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.