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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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'"
}