TradingView Scraper
TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
Co to jest TradingView Scraper?
TradingView Scraper to rozszerzenie Chrome opracowane przez The Better Traders, a jego główną funkcją jest „TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TradingView Scraper
Pobierz pliki rozszerzeń TradingView Scraper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | TradingView Scraper |
ID | lomjhlceghbieaipilkjbeocalekkhhl |
Oficjalny URL | https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl |
Opis | TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts. |
Rozmiar pliku | 921 KB |
Liczba instalacji | 546 |
Aktualna Wersja | 1.1.1 |
Ostatnia Aktualizacja | 2022-06-07 |
Data Publikacji | 2021-08-07 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | The Better Traders |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.thebettertraders.com |
Adres URL Strony Polityki Prywatności | https://www.thebettertraders.com/privacy-policy |
Obsługiwane Języki | 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'" } |