# SetShowIndexBar 方法

SetShowIndexBar(Index,Type,CycInfection)

设置指定索引(基于0开始)的K线显示标志。

参数
参数 说明
Index 指定的基于0索引开始的K线
Type 指定标记的类型
0为圆形
1为方形
CycInfection 影响的K线数量
示例
'得到技术分析框架的主图窗格
' 得到框架名称为"Technic",窗格名称为"Main"的窗格对象

Set Grid = Technic.GetGridByName("Main")

' 在第201根K线上显示标记,影响4根K线

call Grid.SetShowIndexBar(200,0,4)
1
2
3
4
5
6
7
8

应用于

Gird 对象