TradingView Scraper

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

Qu'est-ce que TradingView Scraper ?

TradingView Scraper est une extension Chrome développée par The Better Traders, et sa fonction principale est "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension TradingView Scraper

Téléchargez les fichiers d'extension TradingView Scraper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom TradingView Scraper TradingView Scraper
ID lomjhlceghbieaipilkjbeocalekkhhl
URL Officiel https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl
Description TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
Taille du Fichier 921 KB
Nombre d'Installations 546
Version Actuelle 1.1.1
Dernière Mise à Jour 2022-06-07
Date de Publication 2021-08-07
Évaluation 1.00/5 Total 1 Évaluations
Développeur The Better Traders
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.thebettertraders.com
URL de la Page de Politique de Confidentialité https://www.thebettertraders.com/privacy-policy
Langues Prises en Charge 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'"
}