Skip to content

liihuu/KLineChartAndroid

Repository files navigation

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.

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages