ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  2 Candlestick chart for comparison
Posted by John Best on Aug-02-2016 21:33
Attachments:
Hi Peter,

How can I draw 2 candlestick chart in one go for comparison?
Below is the example what I am looking and asking for...

I am using the VB version.


Regards
John
sample.png

  Re: 2 Candlestick chart for comparison
Posted by Peter Kwan on Aug-03-2016 00:08
Hi John,

If you are using the FinanceChart object and using FinanceChart.addCandleStick to add the first candlestick layer to the main chart, you can use XYChart.addCandleStickLayer to add another candlestick layer to the main chart. For example:

Set m = myFinanceChart.addMainChart(....)
Call myFinanceChart.addCandleStick(....)
Call m.addCandleStickLayer(....)

Hope this can help.

Regards
Peter Kwan