kandy 0.6.0 Help

Candlestick Settings Stat API

val df = dataFrameOf( "year" to listOf("2018", "2019", "2020", "2021", "2022", "2023"), "open" to listOf(10.0, 15.0, 12.0, 18.0, 14.0, 16.0), "high" to listOf(18.0, 17.0, 20.0, 22.0, 18.0, 22.0), "low" to listOf(8.0, 10.0, 9.0, 11.0, 12.0, 15.0), "close" to listOf(15.0, 12.0, 18.0, 14.0, 16.0, 20.0), ) df.plot { candlestick("year", "open", "high", "low", "close") { alpha(Stat.isIncreased) { scale = categorical(true to 1.0, false to 0.05) legend { name = "" breaksLabeled(true to "increase", false to "decrease") } } fillColor = Color.GREY borderLine.color = Color.GREY } x.axis { name = "Year" breaks(format = "d") } layout.size = 750 to 400 }
val year = listOf("2018", "2019", "2020", "2021", "2022", "2023") val opens = listOf(10.0, 15.0, 12.0, 18.0, 14.0, 16.0) val highs = listOf(18.0, 17.0, 20.0, 22.0, 18.0, 22.0) val lows = listOf(8.0, 10.0, 9.0, 11.0, 12.0, 15.0) val closes = listOf(15.0, 12.0, 18.0, 14.0, 16.0, 20.0) plot { candlestick(year, opens, highs, lows, closes) { alpha(Stat.isIncreased) { scale = categorical(true to 1.0, false to 0.05) legend { name = "" breaksLabeled(true to "increase", false to "decrease") } } fillColor = Color.GREY borderLine.color = Color.GREY } x.axis { name = "Year" breaks(format = "d") } layout.size = 750 to 400 }
Candlestick Settings Stat Api
Last modified: 10 May 2024