TradingView Strategy Finder
Automated Backtesting Tool
Что такое TradingView Strategy Finder?
TradingView Strategy Finder - это расширение Chrome, разработанное https://tv-hub.org, и его основная функция - "Automated Backtesting Tool".
Снимки экрана расширения
Скачать файл CRX расширения TradingView Strategy Finder
Скачайте файлы расширений 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'" } |