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

Message ListMessage List     Post MessagePost Message

  Feature request: Ichimoku Kinko Charting
Posted by oscillator on May-24-2009 00:41
Attachments:
Please add Ichimoku Kinko Hyo charting to the list of features for finance module. There is a wiki for this:

http://www.kumotrader.com/ichimoku_wiki/index.php?title=Main_Page
ichimoku.png

  Re: Feature request: Ichimoku Kinko Charting
Posted by Peter Kwan on May-25-2009 21:39
Hi oscillator,

Thanks a lot for your suggestion. We will add this to our feature list to be considered in the future versions of ChartDirector.

Currently, if you want to add "Ichimoku Kinko Hyo" indicators to FinanceChart, you can do so by adding them as custom indicators. Your own code would need to compute the values of the indicators. You can then ask ChartDirector to include them in the FinanceChart by using FinanceChart.addLineIndicator2.

Hope this can help.

Regards
Peter Kwan

  Re: Feature request: Ichimoku Kinko Charting
Posted by SK on Dec-29-2010 05:50
Hi Peter,

How to get the color in between the lines ? I think this is some thing similar done for bollinger bands. It would be great if you can give some hint on which API to use to achieve this.

  Re: Feature request: Ichimoku Kinko Charting
Posted by Peter Kwan on Dec-30-2010 01:26
Hi SK,

You may use XYChart.addInterLineLayer to fill the region between two lines. Two fill colors can be used based on which line is on top.

If you are using the FinanceChart, when you add the two lines, the ChartDirector API should return a LineLayer object. You may then use (in VB/VBScript):

Call myMainPriceChart.addInterLineLayer(lineLayer1.getLine(), lineLayer2.getLine(), fillColor1, fillColor2)

Hope this can help.

Regards
Peter Kwan