TradingView Scraper

TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.

TradingView Scraperとは何ですか?

TradingView ScraperはThe Better Tradersによって開発されたChromeの拡張機能で、その主な機能は「TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

TradingView Scraper拡張機能のCRXファイルをダウンロード

TradingView Scraper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension allows you to export the list of trades visible on TradingView's back testing results for indicator strategies, allowing you access to more data for further analysis. Please note that this extension requires an active TBO Pro subscription in order to use.

-The Better Traders does not own or claim to own any information found on the TradingView website.                    

拡張機能の基本情報

名前 TradingView Scraper TradingView Scraper
ID lomjhlceghbieaipilkjbeocalekkhhl
公式URL https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl
説明 TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
ファイルサイズ 921 KB
インストール数 546
現在のバージョン 1.1.1
最終更新日 2022-06-07
公開日 2021-08-07
評価 1.00/5 合計 1 レビュー
開発者 The Better Traders
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.thebettertraders.com
プライバシーポリシーページのURL https://www.thebettertraders.com/privacy-policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TradingView Scraper",
    "description": "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.",
    "version": "1.1.1",
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*.tradingview.com\/*",
        "*:\/\/hook.integromat.com\/"
    ],
    "browser_action": {
        "default_title": "TradingView Scraper",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.tradingview.com\/chart\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "web_accessible_resources": [
        "*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}