TradingView Scraper

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

TradingView Scraperคืออะไร?

TradingView Scraper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย The Better Traders และคุณลักษณะหลักของมันคือ "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TradingView Scraper

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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'"
}