A kline chart UI widget for android(Android版本的k线).
A kline UI widget for android. Support analysis indicators and style changes, as well as customize the drawing of something you want to display.
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"></com.liihuu.klinechart.KLineChartView>
Add data and set some attributes in the code.
k_line_chart.candle.candleStyle = Candle.CandleStyle.OHLC
k_line_chart.addData(dataList)
k_line_chart.getCandle().setCandleStyle(Candle.CandleStyle.OHLC)
k_line_chart.addData(dataList)
implementation 'com.liihuu.widget:klinechart:2.2.3'
<dependency>
<groupId>com.liihuu.widget</groupId>
<artifactId>klinechart</artifactId>
<version>2.2.3</version>
<type>pom</type>
</dependency>
MA | VOL | MACD | BOLL | KDJ | KD | RSI | BIAS | BRAR | CCI |
---|---|---|---|---|---|---|---|---|---|
✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
DMI | CR | PSY | DMA | TRIX | OBV | VR | WR | MTM | SAR |
✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
Charts support custom indicator. You can refer to examples.
Attributes can be changed to change the appearance of the chart.
Here is attributes detail
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.