I'm working on candlesticks (highStock). Is there any function through which I can change color of individual candlesticks based on Open/close values ? by default it gives blue and white color, i.e. if opening values are greater then closing values then color will be blues , and if closing value is greater then opening values then color will be white. but i want to apply green and red color instead on blue and white. also i want to apply white color if the closing price is same as opening. any help will be highly appreciated. Thanks in Advance ;)
You can find your answer from the below link:
Highstock Docs for candlestick chart
Code:
plotOptions: {
candlestick: {
color: 'green',
upColor: 'red'
}
},