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

Message ListMessage List     Post MessagePost Message

  Need Some Information about Technical Chart
Posted by Subodh Joshi on Nov-27-2010 19:22
Hello Mr.Peter How r u?

Hope u will be fine......

I have a question from u,in technical Chart i want to a new average TEMA
Triple Exponential Moving Average,can u plz guide me how can i add this in technical chart i mean u provide any method to calculate this.

Thanks for ur time

  Re: Need Some Information about Technical Chart
Posted by Subodh Joshi on Nov-29-2010 19:54
Attachments:
Hello Mr. Peter I added TEMA by method addComparision() Method provided By User API.But i was getting some issue ..Check the Attached Screen Shot for Tema from our test Server.for the date of 2010-10-01 Chart Showing Tema =1433 while it have showing fix value 1400 ,Can u plz Let me Know Wht is the Issue.
TemaIssue.jpg

  Re: Need Some Information about Technical Chart
Posted by Peter Kwan on Nov-29-2010 23:57
Hi Subodh,

As mentioned in the ChartDirector documentation, the addComparison method will modify the scale of your data series, so that it starts at the same point as the closing price. You can see in your chart that the TEMA always start at the same point as the first closing price.

Instead of using addComparison, you may use addLineIndicator2. For example:

//Assume this is your existing addMainChart line. We save the returned value into
//a variable m, so we can use it later.
XYChart m = myFinanceChart.addMainChart(.......);

//Add the TEMA data series to the main price chart
myFinanceChart.addLineIndicator2(m, myTEMAData, myColor, "TEMA");

Hope this can help.

Regards
Peter Kwan

  Re: Need Some Information about Technical Chart
Posted by Subodh Joshi on Nov-30-2010 20:04
Thanks Mr.Peter for ur  Gr8 support  always.

Thanks