TradingView Scraper

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

TradingView Scraper là gì?

TradingView Scraper là một tiện ích mở rộng Chrome được phát triển bởi The Better Traders, và tính năng chính của nó là "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TradingView Scraper

Tải xuống các tệp mở rộng TradingView Scraper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TradingView Scraper TradingView Scraper
ID lomjhlceghbieaipilkjbeocalekkhhl
URL Chính Thức https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl
Mô tả TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
Kích Thước Tệp 921 KB
Số Lần Cài Đặt 546
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2022-06-07
Ngày Phát Hành 2021-08-07
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển The Better Traders
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.thebettertraders.com
URL Trang Chính Sách Bảo Mật https://www.thebettertraders.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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'"
}