TradingView Scraper
TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.
什么是TradingView Scraper?
TradingView Scraper是由The Better Traders开发的Chrome扩展程序,该扩展的主要功能是“TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts.”。
扩展截图
下载TradingView Scraper扩展crx文件
下载TradingView Scraper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | TradingView Scraper |
ID | lomjhlceghbieaipilkjbeocalekkhhl |
官方URL | https://chromewebstore.google.com/detail/tradingview-scraper/lomjhlceghbieaipilkjbeocalekkhhl |
简介 | TradingView backtesting data scrapper. Allows users to analyze the data generated from TradingView `strategy` scripts. |
文件大小 | 921 KB |
安装次数 | 546 |
当前版本 | 1.1.1 |
更新时间 | 2022-06-07 |
上架时间 | 2021-08-07 |
评分 | 1.00/5 共1次评分 |
开发者 | The Better Traders |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.thebettertraders.com |
隐私政策页面URL | https://www.thebettertraders.com/privacy-policy |
支持的语言 | 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'" } |