Lower bollingerband not showing in version 6-apr-2007

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
marcb
Newbie
Newbie
Posts: 3
Joined: Wed May 02, 2007 12:00 am

Lower bollingerband not showing in version 6-apr-2007

Post by marcb » Tue Jul 17, 2007 3:40 pm

Hello,

Bollinger band is not showing lowerband In version 2.0.2652 (6-apr-2007) teechart .net 2.0. The previous version (2.0.2586) is showing the lowerband correctly. The supplied demoproject also does not show the lowerband (the previous version does).

What is needed to get the lowerband showing in version 2.0.2552?

Best regards,

Marc

Edu
Advanced
Posts: 206
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia

Post by Edu » Wed Jul 18, 2007 8:39 am

Hello Marc

Thank you for letting us know, we're investigating it (TF02012348).
Best Regards,
Edu

Steema Support Central
http://support.steema.com/

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Wed Jul 18, 2007 1:03 pm

Hello!

The following code:

Code: Select all

		private Steema.TeeChart.Styles.Candle candle;
		private Steema.TeeChart.Functions.Bollinger bollinger;
		private Steema.TeeChart.Styles.Line line;
		private void InitializeChart()
		{
			tChart1.Series.Add(candle = new Steema.TeeChart.Styles.Candle());
			tChart1.Series.Add(line = new Steema.TeeChart.Styles.Line());
			candle.FillSampleValues();

			bollinger = newSteema.TeeChart.Functions.Bollinger(tChart1.Chart);
			line.Function = bollinger;
			line.DataSource = candle;

			Assembly assem = Assembly.GetAssembly(typeof(Steema.TeeChart.Functions.Bollinger));
			Version vers = assem.GetName().Version;
			string version = vers.Major.ToString() + "." + vers.Minor.ToString() + "." + vers.Build.ToString() + "." + vers.Revision.ToString();
			tChart1.Header.Text = version;

			tChart1.Export.Image.PNG.Width = tChart1.Width;
			tChart1.Export.Image.PNG.Height = tChart1.Height;
			tChart1.Export.Image.PNG.Save(@"C:\tmp\bollinger.png");
		}
Gives me the following image:

Image

Is this what you get at your end?
Thank you!

Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/

Post Reply