TradingView Scraper
TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
Cos'è TradingView Scraper?
TradingView Scraper è un'estensione di Chrome sviluppata da The Better Traders, e la sua funzione principale è "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TradingView Scraper
Scarica i file di estensione TradingView Scraper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | TradingView Scraper |
ID | lomjhlceghbieaipilkjbeocalekkhhl |
URL Ufficiale | https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl |
Descrizione | TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts. |
Dimensione del File | 921 KB |
Conteggio Installazioni | 546 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2022-06-07 |
Data di Pubblicazione | 2021-08-07 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | The Better Traders |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.thebettertraders.com |
URL della Pagina della Politica sulla Privacy | https://www.thebettertraders.com/privacy-policy |
Lingue Supportate | 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'" } |