TradingView Scraper
TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
O que é TradingView Scraper?
TradingView Scraper é uma extensão do Chrome desenvolvida por The Better Traders, e sua principal característica é "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TradingView Scraper
Baixe arquivos de extensão TradingView Scraper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | TradingView Scraper |
ID | lomjhlceghbieaipilkjbeocalekkhhl |
URL Oficial | https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl |
Descrição | TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts. |
Tamanho do Arquivo | 921 KB |
Contagem de Instalações | 546 |
Versão Atual | 1.1.1 |
Última Atualização | 2022-06-07 |
Data de Publicação | 2021-08-07 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | The Better Traders |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.thebettertraders.com |
URL da Página de Política de Privacidade | https://www.thebettertraders.com/privacy-policy |
Idiomas Suportados | 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'" } |