TradingView Scraper
TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
Vad är TradingView Scraper?
TradingView Scraper är en Chrome-tillägg utvecklad av The Better Traders, och dess huvudfunktion är "TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.".
Tilläggsskärmbilder
Ladda ner TradingView Scraper-förlängningens CRX-fil
Ladda ner TradingView Scraper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | TradingView Scraper |
ID | lomjhlceghbieaipilkjbeocalekkhhl |
Officiell webbadress | https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl |
Beskrivning | TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts. |
Filstorlek | 921 KB |
Antal Installationer | 546 |
Aktuell Version | 1.1.1 |
Senast Uppdaterad | 2022-06-07 |
Publiceringsdatum | 2021-08-07 |
Betyg | 1.00/5 Totalt 1 Betyg |
Utvecklare | The Better Traders |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.thebettertraders.com |
URL till Sekretesspolicy Sidan | https://www.thebettertraders.com/privacy-policy |
Stödda Språk | 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'" } |