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.
TeeChart no graphics processing
-
- Newbie
- Posts: 9
- Joined: Fri Jan 29, 2010 12:00 am
TeeChart no graphics processing
- Attachments
-
- 111.png (356.61 KiB) Viewed 7718 times
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: TeeChart no graphics processing
Hello,
Can you please post a minimal, complete, verifiable example (an mcve, as described here) so that we can reproduce your issue here?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.
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |