以下为图表的方法列表。
在 1.4 版本之前 您可以使用 Widget 的构造函数返回给您的 widget 对象来调用下列方法。
从 1.5 版本之后 您可以使用 Widget 的方法chart(index) 或 activeChart()返回给您的图表对象来调用下列方法。
- 图表订阅事件
- 图表动作
- 指标与形状
- Z-order operations
- 指标模板
- Trading Primitives
- Getters
- 其他
您可以使用此方法返回的订阅对象进行订阅,以便在加载新历史 K 线时收到通知,您还可以使用此订阅对象取消此订阅事件。
示例:
widget.activeChart().onDataLoaded().subscribe(
null,
() => console.log('New history bars are loaded',
true
);
您可以使用此方法返回的订阅对象进行订阅,以便在更改商品时收到通知,您还可以使用此订阅对象取消此订阅事件。
示例:
widget.activeChart().onSymbolChanged().subscribe(null, () => console.log('The symbol is changed');
您可以使用此方法返回的订阅对象进行订阅,以便在更改时间周期时收到通知,您还可以使用此订阅对象取消此订阅事件。 当事件被触发时,它将提供以下参数:
-
interval
: 新周期 -
timeframeObj
: 此对象只有一个字段timeframe
如果在用户单击时间周期面板时更改时间周期,则它包含
timeframe
。否则
timeframe
为undefined
,你可以改变它来显示某一范围的 K 线。 有效的timeframe
是一个数字,字母D
代表天数,M
代表月数。
示例:
widget.activeChart().onIntervalChanged().subscribe(null, (interval, timeframeObj) => timeframeObj.timeframe = "12M");
callback
: function(interval)
如果 K 线数据已被加载或被接收时,图表库将立即调用此回调。
返回 true
为已经加载,否则为false
。
示例:
widget.activeChart().dataReady(() => {
/* draw shapes */
});
1.5 版本开始
callback
: function({time, price})
每当十字线位置改变时,图表库将会调用回调函数。
示例:
widget.activeChart().crossHairMoved(({ time, price }) => console.log(time, price));
1.13 版本开始
您可以使用此功能返回的Subscription对象进行订阅,以便在可见时间范围更改时得到通知。 您还可以使用同一对象取消订阅该事件。
触发事件时,它将提供以下参数:
range
: 对象,{from, to}
from
,to
: unix时间戳, UTC
示例:
widget.activeChart().onVisibleRangeChanged().subscribe(
null,
({ from, to }) => console.log(from, to)
);
range
: 对象,{from, to}
from
,to
: unix时间戳, UTC
options
:{applyDefaultRightMargin, percentRightMargin}
applyDefaultRightMargin
: 布尔值,表示如果指向最后一个线,是否应将默认的右边距应用于右边框。percentRightMargin
: 布尔值,表示如果指向最后一个线,是否应将默认的右边距百分比应用于右边框。
强制图表调整其参数 (scroll, scale) 以使选定的时间段适合视口。
返回一个Promise对象,将在应用可见范围后,返回resolved。
此方法是在版本1.2中引入
widget.activeChart().setVisibleRange(
{ from: 1420156800, to: 1451433600 },
{ percentRightMargin: 20 }
).then(() => console.log('New visible range is applied'));
symbol
: stringcallback
: function(), 可选
更改图表商品。 新商品的数据到达后调用回调。
widget.activeChart().setSymbol('IBM');
resolution
: string. 格式化详细参照:周期。callback
: function(), 可选
更改图表周期。 新周期的数据到达后调用回调。
widget.activeChart().setResolution('2M');
使图表重新请求 datafeed 中的数据。 通常你需要在图表数据发生变化时调用它。 在调用这个之前,你应该调用onResetCacheNeededCallback。
widget.activeChart().resetData();
1.3 版本开始
actionId
: string
通过它的 id 执行一个动作。
显示对话框
chartProperties
compareOrAdd
scalesProperties
paneObjectTree
insertIndicator
symbolSearch
changeInterval
gotoDate
其他动作
timeScaleReset
chartReset
seriesHide
studyHide
lineToggleLock
lineHide
showLeftAxis
showRightAxis
scaleSeriesOnly
drawingToolbarAction
stayInDrawingModeAction
hideAllMarks
showCountdown
showSeriesLastValue
showSymbolLabelsAction
showStudyLastValue
showStudyPlotNamesAction
undo
redo
paneRemoveAllStudiesDrawingTools
例如:
// < ... >
widget.chart().executeActionById("undo");
// < ... >
widget.chart().executeActionById("drawingToolbarAction"); // 隐藏或显示绘图工具栏
// < ... >
1.7 版本开始
actionId
: string
根据动作 ID 获取是否可以勾选的状态(例如: stayInDrawingModeAction
、showSymbolLabelsAction
)(请参阅上面的动作ID)
if (widget.activeChart().getCheckableActionState("drawingToolbarAction")) {
/* do something */
};
再次请求可见标记。
widget.activeChart().refreshMarks();
清除所有可见标记。
widget.activeChart().clearMarks();
type
: number
设置主数据列的样式。
Style | JavaScript type | Typescript Enum | Charting Library | Trading Terminal |
---|---|---|---|---|
Bar | 0 | ChartStyle.Bar | ✓ | ✓ |
Candle | 1 | ChartStyle.Candle | ✓ | ✓ |
Line | 2 | ChartStyle.Line | ✓ | ✓ |
Area | 3 | ChartStyle.Area | ✓ | ✓ |
Renko | 4 | ChartStyle.Renko | ✓ | |
Kagi | 5 | ChartStyle.Kagi | ✓ | |
PnF | 6 | ChartStyle.PnF | ✓ | |
Line Break | 7 | ChartStyle.LineBreak | ✓ | |
Heikin-Ashi | 8 | ChartStyle.HeikinAshi | ✓ | ✓ |
Hollow Candle | 9 | ChartStyle.HollowCandle | ✓ | ✓ |
Baseline | 10 | ChartStyle.Baseline | ✓ | ✓ |
Hi-Lo | 12 | ChartStyle.HiLo | ✓ | ✓ |
widget.activeChart().setChartType(12);
timezone
: string
查看timezone更多信息
例:
widget.activeChart().setTimezone("Asia/Singapore");
更改图表时区。
Since version 1.15.
返回图表的当前timezone。
console.log(widget.activeChart().getTimezone());
该方法在版本1.14
中引入
当您调用此方法时,图表库会检查是否有任何缩放事件要撤消。
console.log(widget.activeChart().canZoomOut());
该方法在版本1.14
中引入
当您调用此方法时,它会模拟点击“缩小”按钮。 仅在图表缩放时才有效。 使用canZoomOut
检查是否可以调用此方法。
if(widget.activeChart().canZoomOut()) {
widget.activeChart().zoomOut();
};
返回所有已创建的形状对象数组。 每个对象都有以下字段:
id
: 形状 idname
: 形状名称
widget.activeChart().getAllShapes().forEach(({ name }) => console.log(name));
返回所有已创建的指标对象的数组。 每个对象都有以下字段:
id
: 指标 idname
: 指标名称
widget.activeChart().getAllStudies().forEach(({ name }) => console.log(name));
设置具有id
的实体的可见性。
不推荐使用:使用形状/指标 API(getShapeById
/getStudyById
)来代替此方法。 将在未来的版本中删除。
name
: string, 指标名称,您可以在技术指标
工具栏中看到。forceOverlay
: 强制图表库将创建的指标放在主窗格中lock
: boolean, 是否锁定指标inputs
: (在1.2
版本开始) 指标参数数组, 该数组应包含与指标属性对话框中相同顺序的输入值。overrides
: (在1.2
版本开始) 一个对象 包含属性,覆盖你的新指标 。注意:您不应指定指标名称:应以具有绘图名称的属性路径为起始。options
: 这个对象只支持关键字checkLimit
. 如果为true
时,超出限制,将显示指标限制对话框。checkLimit
- 如果是true
,则超出限制时将显示指标限制对话框。priceScale
- 指标的首选价格刻度。 可能的值是:new-left
- 依附在左侧价格刻度new-right
- 依附在右侧价格刻度no-scale
- 不要将指标依附在任何价格刻度上。 该指标将以界面(无缩放)
模式添加as-series
- 将指标依附在主数据列所依附的价格刻度(仅适用于将指标添加到主数据列的窗格中)entityId
- 将指标和具有相应id
的指标锁定在同一价格轴上。
请参阅此处有关与指标相关的窗格和刻度特性的更多信息。
返回一个 Promise 类型的 entityId
。
从 1.12 版本开始,函数立即返回结果。 回调为保持兼容性
创建一个关于主商品的指标。 例子:
widget.activeChart().createStudy('MACD', false, false, [14, 30, "close", 9])
widget.activeChart().createStudy('Moving Average Exponential', false, false, [26])
widget.activeChart().createStudy('Stochastic', false, false, [26], {"%d.color" : "#FF0000"})
widget.activeChart().createStudy('Price Channel', true, false, [26], null, {checkLimit: false, priceScale: 'new-left'})
Remark: Compare
指标有 2 个参数: [dataSource, symbol]
. dataSource
支持的值: ["close", "high", "low", "open"]
.
Remark 2: 当您选择在图表上添加数据列时,您实际使用了Overlay
指标,这个指标只有一个参数 -- symbol
. 以下是添加商品的示例:
widget.activeChart().createStudy('Overlay', false, false, ['AAPL']);
Remark 3: 当您选择比较数据列时,您实际上使用了Compare
指标。 它有 2 个参数 -- source
和 symbol
. 下面是一个添加比较数据列的例子:
widget.activeChart().createStudy('Compare', false, false, ["open", 'AAPL']);
entityId
:对象。 通过 API 创建指标时返回的值。
返回指标 API的一个实例,它允许您与指标进行交互。
widget.activeChart().getStudyById(id).setVisible(false);
返回允许您与主数据列进行交互的SeriesApi的实例。
widget.activeChart().getSeries().setVisible(false);
entityId
: 实体id。通过API创建指标或形状时返回的值。
用于显示指定的指标或形状的属性对话框。
const chart = widget.activeChart();
chart.showPropertiesDialog(chart.getAllShapes()[0].id);`
point
: 对象{time, [price], [channel]}
time
: unix 时间戳. 唯一的强制性参数。price
: 如果指定price
,则形状将以此价格位置放置。 如果未指定,则根据channel
值将形状放置在 K 线的相关位置。channel
: 如果未设置price
,则通过channel
设置的k线位置放置形状,可能的值: (open
,high
,low
,close
)。 如果未指定channel
,则以open
为默认值。
options
: object{shape, [text], [lock], [overrides]}
shape
可能的值为arrow_up
、arrow_down
、flag
、vertical_line
、horizontal_line
。flag
为默认值。text
是一个可选参数。 如果支持,为包含在形状中的文本。lock
是否锁定形状disableSelection
(开始于1.3
) 禁用选中disableSave
(开始于1.3
) 禁用保存disableUndo
(开始于1.4
) 禁用撤销overrides
(开始于1.2
). 它是一个对象,包含为新形状设置的属性。zOrder
(开始于1.3
) 可能的值为top
、bottom
。top
将线条工具放在所有其他图表对象的顶部, 而bottom
将线条工具放在所有其他图表对象底部,top
为默认值。showInObjectsTree
:true
为默认值。在工具树状图
对话框中显示形状。ownerStudyId
:EntityId
类型的可选参数。它可用于将线工具绑定到指标。 例如,它可以用于在其他窗格上创建形状。
该函数返回entityId
- 如果创建成功则返回形状的唯一 ID,如果不成功则返回null
。
此调用会在图表上的指定地点创建一个形状,前提是它位于主数据列区域内。
widget.activeChart().createShape({ time: 1514764800 }, { shape: 'vertical_line' });
points
: 具有以下字段的数组[{time, [price], [channel]},...]
time
: unix 时间戳. 唯一的强制性参数。price
: 如果指定price
,则形状将以此价格位置放置。 如果未指定,则根据channel
值将形状放置在 K 线的相关位置。channel
: 如果未设置price
,则通过channel
设置的k线位置放置形状,可能的值: (open
,high
,low
,close
)。 如果未指定channel
,则以open
为默认值。
options
: object{shape, [text], [lock], [overrides]}
shape
可能的值为arrow_up
、arrow_down
、flag
、vertical_line
、horizontal_line
。flag
为默认值。text
是一个可选参数。 如果支持,为包含在形状中的文本。lock
是否锁定形状disableSelection
(开始于1.3
) 禁用选中disableSave
(开始于1.3
) 禁用保存disableUndo
(开始于1.4
) 禁用撤销overrides
(开始于1.2
). 它是一个对象,包含为新形状设置的属性。zOrder
(开始于1.3
) 可能的值为top
、bottom
。top
将线条工具放在所有其他图表对象的顶部, 而bottom
将线条工具放在所有其他图表对象底部,top
为默认值。showInObjectsTree
:true
为默认值。在工具树状图
对话框中显示形状。ownerStudyId
:EntityId
类型的可选参数。它可用于将线工具绑定到指标。 例如,它可以用于在其他窗格上创建形状。
该函数返回entityId
- 如果创建成功则返回形状的唯一 ID,如果不成功则返回null
。
查看形状与覆盖以获取更多信息。
此调用会在图表上的指定地点创建一个多点形状,前提是它位于主数据列区域内。
const from = Date.now() / 1000 - 500 * 24 * 3600 * 1000; // 500 days ago
const to = Date.now() / 1000;
widget.activeChart().createMultipointShape(
[{ time: from, price: 150 }, { time: to, price: 150 }],
{
shape: "trend_line",
lock: true,
disableSelection: true,
disableSave: true,
disableUndo: true,
text: "text",
}
);
entityId
:对象。 通过 API 创建形状时返回的值。
返回允许您与形状交互的形状 API实例。
widget.activeChart().getShapeById(id).bringToFront();
entityId
:对象。 为创建实体 (形状或指标) 后返回的值。
删除指定实体。
widget.activeChart().removeEntity(id);
删除全部形状。
widget.activeChart().removeAllShapes();
删除全部指标。
widget.activeChart().removeAllStudies();
返回窗格Api 的实例数组,允许您与窗格进行交互。
widget.activeChart().getPanes()[1].moveTo(0);
返回可用于处理形状组的API。
widget.activeChart().shapesGroupController().createGroupFromSelection();
entities
标识符数组
返回具有可用于指定对象集的操作的对象。
此对象的结构具有以下字段:
bringForwardEnabled
: 如果可以将视觉次序设置为上移一层,则设置为truebringToFrontEnabled
: 如果可以将视觉次序设置为置于顶层,则设置为truesendBackwardEnabled
: 如果可以将视觉次序设置为下移一层,则设置为truesendToBackEnabled
: 如果可以将视觉次序设置为置于底层,则设置为true
widget.activeChart().availableZOrderOperations([id]);
entities
is an array of identifiers
Sends specified entities to back.
widget.activeChart().sendToBack([id]);
entities
标识符数组
将指定的实体置于最前面。
widget.activeChart().bringToFront([id]);
entities
标识符数组
使指定的实体上移一层。
widget.activeChart().bringForward([id]);
entities
标识符数组
使指定的实体下移一层。
widget.activeChart().sendBackward([id]);
options
: 对象{saveInterval}
saveInterval
: boolean
将指标模板保存到 JS 对象。 图表库将调用您的回调函数并将状态对象作为参数传递。
此调用是低级存储与加载图表的一部分。
const template = widget.activeChart().createStudyTemplate({ saveInterval: true });
template
: object
从状态对象加载指标模板。
此调用是低级存储与加载图表的一部分。
widget.activeChart().applyStudyTemplate(template);
options
是一个具有字段:disableUndo
的对象, 可以是 true
或 false
. 出于兼容性原因,默认值为 false
。
在图表上创建新的交易订单并返回可用于调整其属性和特性的 API 对象。
强烈建议在使用此调用之前阅读交易元语。
API 对象方法:
remove()
: 从图表中移除仓位。 调用方法后不能再使用此 API 对象。onModify(callback)
/onModify(data, callback)
onMove(callback)
/onMove(data, callback)
onCancel(callback)
/onCancel(data, callback)
API 对象具有下面列出的一组属性。 每个属性应通过各自的访问器调用。
例如,如果你想使用Extend Left
属性,那么请使用setExtendLeft()
和getExtendLeft()
方法。
一般属性:
属性名称 | 类型 | 支持的值 | 默认值 |
---|---|---|---|
Price | Double | Double | 0.0 |
Text | String | String | "" |
Tooltip | String | String | "" |
Modify Tooltip | String | String | "" |
Cancel Tooltip | String | String | "" |
Quantity | String | String | "" |
Editable | Boolean | Boolean | true |
趋势线属性:
属性名称 | 类型 | 支持的值 | 默认值 |
---|---|---|---|
Extend Left | Boolean | "inherit" or Boolean | True |
Line Length | Integer | "inherit" or 0 .. 100 | 0 |
Line Style | Integer | "inherit" or 0 .. 2 | 2 |
Line Width | Integer | "inherit" or 1 .. 4 | 1 |
字体:
属性名称 | 类型 | 默认值 |
---|---|---|
Body Font | String | "bold 7pt Verdana" |
Quantity Font | String | "bold 7pt Verdana" |
颜色:
属性名称 | 类型 | 默认值 |
---|---|---|
Line Color | String | "rgb(255, 0, 0)" |
Body Border Color | String | "rgb(255, 0, 0)" |
Body Background Color | String | "rgba(255, 255, 255, 0.75)" |
Body Text Color | String | "rgb(255, 0, 0)" |
Quantity Border Color | String | "rgb(255, 0, 0)" |
Quantity Background Color | String | "rgba(255, 0, 0, 0.75)" |
Quantity Text Color | String | "rgb(255, 255, 255)" |
Cancel Button Border Color | String | "rgb(255, 0, 0)" |
Cancel Button Background Color | String | "rgba(255, 255, 255, 0.75)" |
Cancel Button Icon Color | String | "rgb(255, 0, 0)" |
例子:
widget.chart().createOrderLine()
.setTooltip("Additional order information")
.setModifyTooltip("Modify order")
.setCancelTooltip("Cancel order")
.onMove(function() {
this.setText("onMove called");
})
.onModify("onModify called", function(text) {
this.setText(text);
})
.onCancel("onCancel called", function(text) {
this.setText(text);
})
.setText("STOP: 73.5 (5,64%)")
.setQuantity("2");
options
是一个具有字段:disableUndo
的对象, 可以是 true
或 false
. 出于兼容性原因,默认值为 false
。
在图表上创建新的交易头寸并返回一个可用于调整其属性和特性的 API 对象。
强烈建议在使用此调用之前阅读交易元语。
API 对象方法:
remove()
: 从图表中移除位置。 调用此方法后不能再使用 API 对象。onClose(callback)
/onClose(data, callback)
onModify(callback)
/onModify(data, callback)
onReverse(callback)
/onReverse(data, callback)
API 对象具有下面列出的一组属性。 每个属性应通过各自的访问器调用。
例如,如果你想使用Extend Left
属性,那么请使用setExtendLeft()
和getExtendLeft()
方法。
一般属性:
属性名称 | 类型 | 支持的值 | 默认值 |
---|---|---|---|
Price | Double | Double | 0.0 |
Text | String | String | "" |
Tooltip | String | String | "" |
Protect Tooltip | String | String | "" |
Reverse Tooltip | String | String | "" |
Close Tooltip | String | String | "" |
Quantity | String | String | "" |
趋势线属性:
属性名称 | 类型 | 支持的值 | 默认值 |
---|---|---|---|
Extend Left | Boolean | "inherit" or Boolean | True |
Line Length | Integer | "inherit" or 0 .. 100 | 0 |
Line Style | Integer | "inherit" or 0 .. 2 | 2 |
Line Width | Integer | "inherit" or 1 .. 4 | 1 |
字体:
属性名称 | 类型 | 默认值 |
---|---|---|
Body Font | String | "bold 7pt Verdana" |
Quantity Font | String | "bold 7pt Verdana" |
颜色:
属性名称 | 类型 | 默认值 |
---|---|---|
Line Color | String | "rgb(0, 113, 224)" |
Body Border Color | String | "rgb(0, 113, 224)" |
Body Background Color | String | "rgba(255, 255, 255, 0.75)" |
Body Text Color | String | "rgb(0, 113, 224)" |
Quantity Border Color | String | "rgb(0, 113, 224)" |
Quantity Background Color | String | "rgba(0, 113, 224, 0.75)" |
Quantity Text Color | String | "rgb(255, 255, 255)" |
Reverse Button Border Color | String | "rgb(0, 113, 224)" |
Reverse Button Background Color | String | "rgba(255, 255, 255, 0.75)" |
Reverse Button Icon Color | String | "rgb(0, 113, 224)" |
Close Button Border Color | String | "rgb(0, 113, 224)" |
Close Button Background Color | String | "rgba(255, 255, 255, 0.75)" |
Close Button Icon Color | String | "rgb(0, 113, 224)" |
例子:
widget.chart().createPositionLine()
.onModify(function() {
this.setText("onModify called");
})
.onReverse("onReverse called", function(text) {
this.setText(text);
})
.onClose("onClose called", function(text) {
this.setText(text);
})
.setText("PROFIT: 71.1 (3.31%)")
.setTooltip("附加仓位信息")
.setProtectTooltip("保护仓位")
.setCloseTooltip("关闭仓位")
.setReverseTooltip("翻转仓位")
.setQuantity("8.235")
.setPrice(15.5)
.setExtendLeft(false)
.setLineStyle(0)
.setLineLength(25);
options
是一个具有字段:disableUndo
的对象, 这可以是true
或false
. 出于兼容性原因,默认值为false
。
在图表上创建新的交易执行并返回可用于控制执行属性的 API 对象。
强烈建议在使用此调用之前阅读交易元语。
API 对象具有下面列出的一组属性。 每个属性应通过各自的访问器调用。
例如,如果你想使用Extend Left
属性,那么请使用setExtendLeft()
和getExtendLeft()
方法。
API 对象方法:
remove()
:从图表中删除执行信号形状。调用后,您无法再次使用此 API 对象。
一般属性:
属性名称 | 类型 | 支持的值 | 默认值 |
---|---|---|---|
Price | Double | Double | 0.0 |
Time | Integer | Unix time | 0 |
Direction | String | "buy" or "sell" | "buy" |
Text | String | String | "execution" |
Tooltip | String | String | "" |
Arrow Height | Integer | Integer | 8 |
Arrow Spacing | Integer | Integer | 1 |
字体:
属性名称 | 类型 | 默认值 |
---|---|---|
Font | String | "8pt Verdana" |
颜色:
属性名称 | 类型 | 默认值 |
---|---|---|
Text Color | String | "rgb(0, 0, 0)"" |
Arrow Color | String | "rgba(0, 0, 255)" |
例子:
widget.activeChart().createExecutionShape()
.setText("@1,320.75 Limit Buy 1")
.setTooltip("@1,320.75 Limit Buy 1")
.setTextColor("rgba(0,255,0,0.5)")
.setArrowColor("#0F0")
.setDirection("buy")
.setTime(widget.activeChart().getVisibleRange().from)
.setPrice(160);
返回图表商品。
console.log(widget.activeChart().symbol());
返回图表的商品信息对象。 该对象具有以下字段:
symbol
: 与方法symbol()结果相同full_name
: 商品全称exchange
: 商品交易所description
: 商品描述type
: 商品类型
console.log(widget.activeChart().symbolExt().full_name);
返回图表的周期。格式在这个周期中描述。
console.log(widget.activeChart().resolution());
返回对象 {from, to}
. from
和 to
是 图表时区的单位时间戳
console.log(widget.activeChart().getVisibleRange());
在 1.7 版本开始
不建议使用,请改用Price Scale API。
返回对象 {from, to}
. from
和 to
是主数据列的可见范围边界。
console.log(widget.activeChart().getVisiblePriceRange());
在 1.15 版本开始
返回从图表右边缘到最后一根K线的距离,以K线为单位。 这实际上是图表的当前滚动位置,包含右边距。
console.log(widget.activeChart().scrollPosition());
在 1.15 版本开始
返回从图表右边缘到最后一根K线的默认距离,以K线为单位。
console.log(widget.activeChart().defaultScrollPosition());
返回带有format
函数的对象,可用于格式化价格。
widget.activeChart().priceFormatter().format(123);
返回图表类型。
console.log(widget.activeChart().chartType());
从 1.14 版本开始
options
(可选)是一个对象,它可以包含以下属性:from
(number
) - 第一个导出 k� 线的时间(UNIX 时间戳,以秒为单位)。 默认情况下,使用最左侧加载的 k� 线的时间。to
(number
) - 最后一个导 k� 线的时间(UNIX 时间戳,以秒为单位)。 默认情况下,使用最右侧(实时)k 线的时间。includeTime
(boolean
, 默认true
) - 定义导出数据的每个项目是否应包含时间。includeSeries
(boolean
, 默认true
) - 定义导出的数据是否应包含数据列(open,high,low,close)。includedStudies
- 哪些指标应包括在导出的数据中 (默认情况下,值为'all'
表示包含所有指标, 但如果您只想导出其中一些,则可以在数组中指定指标 ID)。
从图表中导出数据,返回 Promise 对象。 此方法不加载数据。 结果具有以下结构:
-
schema
是一个字段描述符数组,每个描述符可能是以下类型之一:TimeFieldDescriptor
- 时间字段的描述。 它只包含一个属性 - 带有'time'
值的type
。SeriesFieldDescriptor
- 数据列字段的描述。 它包含以下属性:type
('value'
)sourceType
('series'
)plotTitle
(string
) - 绘图的名称(open,high,low,close)。
StudyFieldDescriptor
- 指标字段的描述。 它包含以下属性:type
('value'
)sourceType
('study'
)sourceId
(string
) - 指标 IDsourceTitle
(string
) - 指标的标题plotTitle
(string
) - 绘图的标题
-
data
为Float64Array 类型数组。 每个Float64Array
数组与schema
数组的长度相同,表示相关字段的项目。
示例:
chart.exportData({ includeTime: false, includeSeries: true, includedStudies: [] })
- 仅导出数据列。chart.exportData({ includeTime: true, includeSeries: true, includedStudies: [] })
- 随时间导出数据列。chart.exportData({ includeTime: false, includeSeries: false, includedStudies: ['STUDY_ID'] })
- 导出 ID 为STUDY_ID
的指标数据。chart.exportData({ includeTime: true, includeSeries: true, includedStudies: 'all' })
- 从图表中导出所有可用数据。chart.exportData({ includeTime: false, includeSeries: true, to: Date.UTC(2018, 0, 1) / 1000 })
- 导出2018-01-01
以前的数据。chart.exportData({ includeTime: false, includeSeries: true, from: Date.UTC(2018, 0, 1) / 1000 })
- 导出2018-01-01
之后的数据。chart.exportData({ includeTime: false, includeSeries: true, from: Date.UTC(2018, 0, 1) / 1000, to: Date.UTC(2018, 1, 1) / 1000 })
- 导出在2018-01-01
和2018-02-01
之间的数据。
在 1.15 版本开始
返回SelectionApi,可用于更改图表选择和订阅图表选择的更改。
widget.activeChart().selection().clear();
在 1.15 版本开始
启用 (true) 或 禁用 (false) 缩放图表。
widget.activeChart().setZoomEnabled(false);
在 1.15 版本开始
启用 (true) 或 禁用 (false) 滚动图表。
widget.activeChart().setScrollEnabled(false);
从版本18开始。
返回带有与时间轴关联的方法的TimeScaleApi 实例。
var time = widget.activeChart().getTimeScale().coordinateToTime(100);
从版本18开始。
返回k先的选择模式是否处于活动状态。
var isRequested = widget.activeChart().isSelectBarRequested();
从版本18开始。
图表状态切换到K线选择模式。例如,用于开启K线回放。
返回一个Promise对象,该对象为resolved时,将返回用户选择的K线的时间(unix时间戳),或者如果已经请求或取消了K线选择(通过用户操作或cancelSelectBar()
方法),则为rejected。
widget.activeChart().requestSelectBar()
.then(function(time) {
console.log('user selects bar with time', time);
})
.catch(function() {
console.log('bar selection was rejected');
});
从版本18开始。
取消活动的选择K线请求(如果存在),否则不执行任何操作。
widget.activeChart().cancelSelectBar();