TradingView Scraper
TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
¿Qué es TradingView Scraper?
TradingView Scraper es una extensión de Chrome desarrollada por The Better Traders, y su función principal es "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión TradingView Scraper
Descarga archivos de extensión TradingView Scraper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | TradingView Scraper |
ID | lomjhlceghbieaipilkjbeocalekkhhl |
URL Oficial | https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl |
Descripción | TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts. |
Tamaño del Archivo | 921 KB |
Cantidad de Instalaciones | 546 |
Versión Actual | 1.1.1 |
Última Actualización | 2022-06-07 |
Fecha de Publicación | 2021-08-07 |
Calificación | 1.00/5 Total de 1 Calificaciones |
Desarrollador | The Better Traders |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.thebettertraders.com |
URL de la Página de Política de Privacidad | https://www.thebettertraders.com/privacy-policy |
Idiomas Soportados | 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'" } |