TradingView Strategy Finder
Automated Backtesting Tool
什么是TradingView Strategy Finder?
TradingView Strategy Finder是由https://tv-hub.org开发的Chrome扩展程序,该扩展的主要功能是“Automated Backtesting Tool”。
扩展截图
下载TradingView Strategy Finder扩展crx文件
下载TradingView Strategy Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
With this extension you are able to automatically backtest your TradingView strategies. This tool is highly customizable and you are able to test as much input values as you like. Start to find the best settings for you strategy to be even more profitable in your trading. This includes deep backtesting support as well. https://youtu.be/5LxXmqg81yg
扩展基本信息
名称 | TradingView Strategy Finder |
ID | jdepgjdjpmpjljfdcmnbjmafkbckkhko |
官方URL | https://chromewebstore.google.com/detail/tradingview-strategy-find/jdepgjdjpmpjljfdcmnbjmafkbckkhko |
简介 | Automated Backtesting Tool |
文件大小 | 577 KB |
安装次数 | 10,000 |
当前版本 | 1.2.7 |
更新时间 | 2024-03-03 |
上架时间 | 2021-08-22 |
评分 | 4.36/5 共33次评分 |
开发者 | https://tv-hub.org |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://www.tv-hub.org/Home/Privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TradingView Strategy Finder", "homepage_url": "http:\/\/localhost:8080\/", "description": "Automated Backtesting Tool", "default_locale": "en", "permissions": [ "activeTab", "https:\/\/www.tv-hub.org\/*" ], "web_accessible_resources": [ "js\/functions.js" ], "version": "1.2.7", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.tradingview.com\/*" ], "js": [ "js\/content-script.js" ] } ], "devtools_page": "devtools.html", "browser_action": { "default_popup": "popup.html", "default_title": "TradingView Strategy Finder", "default_icon": { "19": "icons\/19.png", "38": "icons\/38.png" } }, "content_security_policy": "script-src 'self' ; object-src 'self'" } |