Auto Scale Active Chart

Press Control + A to auto scale the active chart in TradingView

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Auto Scale Active Chart
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Press Control + A to auto scale the active chart in TradingView
// @author       You
// @match        *://*.tradingview.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    document.addEventListener('keydown', function(e) {
        // Check if Control + A is pressed
        if (e.ctrlKey && e.key === 'a') {
            e.preventDefault(); // Prevent the default "select all" action

            // Find the active chart container
            let activeChart = document.querySelector('.chart-container.active');

            if (activeChart) {
                // Find the "Auto (fits data to screen)" button within the active chart
                let autoButton = activeChart.querySelector('button[data-tooltip="Auto (fits data to screen)"]');

                if (autoButton) {
                    // Click the "Auto" button
                    autoButton.click();
                } else {
                    console.log('Auto button not found in the active chart');
                }
            } else {
                console.log('No active chart found');
            }
        }
    });
})();