Skip to main content
Version: latest

Time scale

Time scale (or time axis) is a horizontal scale at the bottom of the chart that displays the time of bars.

Time scale

Time scale API

You can manage the time scale using the Time scale API. For example, you can set a specific right margin or detect when the chart has been zoomed in/out. Refer to ITimeScaleApi for more information.

Customize scale appearance

You can customize the appearance of the time scale using the Overrides API. For example, the code sample below changes the text color and font size of the time and price scales.

const datafeed = new Datafeeds.UDFCompatibleDatafeed("https://demo-feed-data.tradingview.com");
new TradingView.widget({
container: "chartContainer",
locale: "en",
library_path: "charting_library/",
datafeed: datafeed,
symbol: "AAPL",
interval: "1D",
overrides: {
"scalesProperties.textColor": "#FF0000",
"scalesProperties.fontSize": 14,
}
})

Refer to the Scale colors and fonts section to see the full list of the overrides properties.

Date and time formatting

You can adjust the display format of date and time values using the custom_formatters property of the Widget Constructor. Check out the Widget Constructor tutorial on YouTube for an implementation example.

Time frame toolbar

Time frames are time period buttons displayed at the bottom-left corner of the chart. When users switch a time frame, it causes the following changes to satisfy the selected time frame:

  1. The chart resolution changes.
  2. The bars scale horizontally to cover the entire requested date/time range.

For example, clicking 1Y makes the chart switch the resolution to 1W and scale it accordingly to display weekly bars for the entire year. Each time frame has its default chart resolution:

Time frameChart resolution
5YW
1YW
6M120
3M60
1M30
5D5
1D1

Time frame customization

You can customize displayed time frames using the time_frames property of the Widget Constructor. Note that time frames that require resolutions that are unavailable for a particular symbol will be hidden. You can also check out the Widget Constructor tutorial on YouTube for an implementation example.

Programmatic time frame setting

If you want to programmatically set the time frame for the active chart, use the setTimeFrame method of the IChartWidgetApi. For example, the following code snippet applies the 1Y time frame, which is the same as when users click 1Y at the bottom of the chart:

const widget = new TradingView.widget(/* Widget properties */);

widget.onChartReady(() => {
const chart = widget.chart();
chart.setTimeFrame({val: {type: 'period-back', value: '12M'}, res: '1W'});
});

Extended time scale

You can enable indicators to extend the time scale. This allows you to create custom indicators that show bars at a higher resolution than the main series. Refer to Extending the time scale for more information.

Extended sessions

If you want to display extended sessions for some symbols, refer to the Extended sessions article for more information.