AddHighLowGraph Method
The AddHighLowGraph method creates a new 2D hi-low-close plot. Returns an AutoGraph object.
Syntax
object.AddHighLowGraph( worksheet, xCol, hiCol, loCol, openCol, closeCol, id )
Parameter | Type | Description |
worksheet | String | required, full path and file name of the data |
xCol | Variant | optional, default = 1 (column A) |
hiCol | Variant | optional, default = 2 (column B) |
loCol | Variant | optional, default = 3 (column C) |
openCol | Variant | optional, default = 4 (column D) |
closeCol | Variant | optional, default = 5 (column E) |
id | Variant | optional, graph name |
Example
This example shows how to create a hi-low-close graph.
Shapes.AddHighLowGraph(GrapherApp.Path + "\samples\hilo.dat")
Used by: AutoShapes collection