Easily find issues by searching: #<Issue ID>
Example: #1832
Easily find members by searching in: <username>, <first name> and <last name>.
Example: Search smith, will return results smith and adamsmith
Aqua Data Studio / nhilam |
Follow
827
|
Aqua Data Studio 7.5 has an enhanced Charting Toolkit. The following new Chart Types are introduced in this version:
Feature Overview
Working with Candlestick Charts
The basics
To give you a brief idea about the candlestick chart, create the table and use the sample test data given towards the end of this page. Open a Query Window and type the query Select * from [dbo].[Stock] and enable Charting Tool. Select the Candlestick Chart Type.
Candle Definition |
Working with Open-high-low-close Chart
The basics
Run a query in Query Analyzer and enable Charting Tools. Select Open High Low Close Chart. High-Low-Close plots are used to show stock prices.
Open-high-close Chart |
Working with Bubble Charts
The basics
Run a query in Query Analyzer and enable Charting Tools. Select Bubble Chart.
Bubble Chart |
A bubble chart is a two-dimensional scatterplot where a third variable is represented by the size of the points.
Working with Scatter Charts
candlestick chart is a style of bar-chart. Candlesticks are used to show stock price. Each candlestick shows the stock's high, low, opening and closing prices. an overview of open, high, low, and close market prices. ability to display five data points instead of one
/* Sample Table and Data created in SQL Server 2000 for visualizing the Field-specific Charts */
CREATE TABLE [dbo].[Stock] (
[Stock_ID] varchar(25) NOT NULL,
[Company] varchar(25) NULL,
[Stock_Open] int NULL,
[Stock_High] int NULL,
[Stock_Low] int NULL,
[Stock_Close] int NULL,
[Trans_Date] datetime NULL
)
GO
INSERT INTO [dbo].[Stock] VALUES ('1', 'microsoft', 25, 30, 20, 30, '20081209 13:12:43.280')
GO
INSERT INTO [dbo].[Stock] VALUES ('10', 'yahoo', 80, 100, 75, 100, '20081207 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('11', 'microsoft', 30, 55, 20, 45, '20081206 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('12', 'google', 55, 70, 50, 60, '20081206 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('13', 'facebook', 40, 80, 20, 50, '20081206 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('14', 'aquafold', 50, 100, 44, 100, '20081206 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('15', 'yahoo', 50, 80, 20, 60, '20081206 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('2', 'google', 55, 100, 50, 75, '20081208 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('3', 'facebook', 76, 80, 75, 75, '20081208 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('4', 'aquafold', 55, 100, 50, 100, '20081208 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('5', 'yahoo', 30, 50, 20, 22, '20081208 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('6', 'microsoft', 23, 30, 20, 25, '20081207 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('7', 'google', 52, 100, 50, 75, '20081207 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('8', 'facebook', 15, 25, 10, 15, '20081207 00:00:00.0')
GO
INSERT INTO [dbo].[Stock] VALUES ('9', 'aquafold', 55, 100, 49, 100, '20081207 00:00:00.0')
GO
About AquaClusters Privacy Policy Support Version - 19.0.2-4 AquaFold, Inc Copyright © 2007-2017