Page 1 of 1

TeeChart no graphics processing

Posted: Fri Dec 23, 2016 7:51 am
by 16055158
Public Candle As New Steema.TeeChart.Styles.Candle
Public BOllLine, BollMidLine, ThreeLine, MissMainLine As New Steema.TeeChart.Styles.Line
Public BollFun As New Steema.TeeChart.Functions.Bollinger
Public MacdLine As New Steema.TeeChart.Styles.Line
Public MacdFun As New Steema.TeeChart.Functions.MACDFunction
Public AdXFun As New Steema.TeeChart.Functions.ADXFunction
Public MaLine1, MaLine2, MaLine3 As New Steema.TeeChart.Styles.Line
Public MaFun1, MaFun2, MaFun3 BollMidFun As New Steema.TeeChart.Functions.MovingAverage
Public Class YouPoints
Public Index As Int32
Public Open As Double
Public Close As Double
Public High As Double
Public Low As Double
End Class
For j As Int32 = 0 To (PointsGroup.Count - 1)
Candle.Add(PointsGroup.Item(j).Open,PointsGroup.Item(j).High,PointsGroup.Item(j).Low, PointsGroup.Item(j).Close)
Next
BollMidLine.DataSource = Candle
MaLine1.DataSource = Candle
MaLine2.DataSource = Candle
MaLine3.DataSource = Candle
MacdLine.DataSource = Candle
ThreeLine.DataSource = Candle
MaLine1.Function = MaFun1
MaLine2.Function = MaFun2
MaLine3.Function = MaFun3
MacdLine.Function = MacdFun
ThreeLine.Function = AdXFun

I use the VB.NET (VS2010) + TeeChart for.NET with Source Code, 5000 Candle to finish in a minute, a chart to judge a bit slow, without a map of the premise, how the transfer of MaLine1, MaLine2, MaLine3, BOllLine, BollMidLine, ThreeLine, MacdLine in each coordinate the point (not by pixel), such as Candle.Count =500, , how to get MaLine1,MaLine2, MaLine3, BOllLine, BollMidLine, ThreeLine, MacdLine 1 To 500 value.

Re: TeeChart no graphics processing

Posted: Fri Dec 23, 2016 9:41 am
by Christopher
Hello,
Mr.Hu_NotProSupport wrote: I use the VB.NET (VS2010) + TeeChart for.NET with Source Code, 5000 Candle to finish in a minute, a chart to judge a bit slow, without a map of the premise, how the transfer of MaLine1, MaLine2, MaLine3, BOllLine, BollMidLine, ThreeLine, MacdLine in each coordinate the point (not by pixel), such as Candle.Count =500, , how to get MaLine1,MaLine2, MaLine3, BOllLine, BollMidLine, ThreeLine, MacdLine 1 To 500 value.
Can you please post a minimal, complete, verifiable example (an mcve, as described here) so that we can reproduce your issue here?