TradingView Strategy Finder
Automated Backtesting Tool
TradingView Strategy Finder란 무엇입니까?
TradingView Strategy Finder은(는) https://tv-hub.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automated Backtesting Tool"입니다.
확장 프로그램 스크린샷
TradingView Strategy Finder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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'" } |