# 4-1、定制概述
# 定制概述
- - - - - -
定制是一个相当模糊的概念,所以写几篇文章对它进行说明。
## [通过数据流定制](#%E9%80%9A%E8%BF%87%E6%95%B0%E6%8D%AE%E6%B5%81%E5%AE%9A%E5%88%B6)
他们最关心的是数据相关的东西。定制的配置可以通过datafeed响应来实现。响应配置实例:
```
{
supports_search: true,
supports_group_request: false,
supports_marks: true,
exchanges: [
{value: "", name: "All Exchanges", desc: ""},
{value: "XETRA", name: "XETRA", desc: "XETRA"},
{value: "NSE", name: "NSE", desc: "NSE"}
],
symbolsTypes: [
{name: "All types", value: ""},
{name: "Stock", value: "stock"},
{name: "Index", value: "index"}
],
supportedResolutions: [ "1", "15", "30", "60", "D", "2D", "3D", "W", "3W", "M", '6M' ]
};
```
在[JS API](JS-Api.html#onreadycallback)可以找到更详细的说明。
## [在客户端进行定制](#%E5%9C%A8%E5%AE%A2%E6%88%B7%E7%AB%AF%E8%BF%9B%E8%A1%8C%E5%AE%9A%E5%88%B6)
允许您最大化的定制UI/UX。这些定制通过定义图表控件中的构造函数的参数完成。
图表控件构造函数调用的示例:
```
var widget = new TradingView.widget({
fullscreen: true,
symbol: 'AA',
interval: 'D',
toolbar_bg: '#f4f7f9',
allow_symbol_change: true,
container_id: "tv_chart_container",
datafeed: new Datafeeds.UDFCompatibleDatafeed("http://demo_feed.tradingview.com"),
library_path: "charting_library/",
locale: "en",
drawings_access: { type: 'black', tools: [ { name: "Regression Trend" } ] },
disabled_features: ["use_localstorage_for_settings", "volume_force_overlay"],
enabled_features: ["move_logo_to_main_pane"],
overrides: {
"mainSeriesProperties.style": 0,
"symbolWatermarkProperties.color" : "#944",
"volumePaneSize": "tiny"
},
studies_overrides: {
"bollinger bands.median.color": "#33FF88",
"bollinger bands.upper.linewidth": 7
},
debug: true,
time_frames: [
{ text: "50y", resolution: "6M" },
{ text: "1d", resolution: "5" },
],
charts_storage_url: 'http://saveload.tradingview.com',
client_id: 'tradingview.com',
user_id: 'public_user',
favorites: {
intervals: ["1D", "3D", "3W", "W", "M"],
chartTypes: ["Area", "Line"]
}
});
```
详情参考:[Widget构造器](Widget-Constructor.html)
# 也可以看看
- [Widget方法](Widget-Methods.html)
- [定制的使用案例](Customization-Use-Cases.html)
- 序言
- 更新日志
- 1、Charting Library是什么
- 2-1、图表库内容
- 2-2、运行图表库
- 3-1、如何连接我的数据
- 3-2、JS Api
- 3-3、UDF
- 3-4、Symbology
- 3-5、交易时段
- 3-6、报价
- 4-1、定制概述
- 4-2、Widget构造器
- 4-3、Widget方法
- 4-4、图表方法
- 4-5、功能集
- 4-7、定制的使用案例
- 5-1、交易终端简介
- 5-2、交易控制器
- 5-3、经纪商API
- 5-4、交易主机
- 5-5、账户管理器
- 5-6、交易对象和常量
- 6、储存和载入图表
- 7、创建自定义指标
- 7、最佳做法
- 9、经常被问到的问题
- 10、版本变更点
- 周期
- 时间范围
- 本地化
- 覆盖
- 绘图覆盖
- 指标覆盖
- 形状与覆盖
- 订阅
- 交易元语
- 在K线上做标记
- 委托
- WatchedValue
- 指标API
- 形状API
- 容器API
- 价格坐标Api