TradingView Strategy Finder

Automated Backtesting Tool

Was ist TradingView Strategy Finder?

TradingView Strategy Finder ist eine Chrome-Erweiterung, die von https://tv-hub.org entwickelt wurde, und ihr Hauptmerkmal ist "Automated Backtesting Tool".

Erweiterungsscreenshots

screenshot
screenshot

TradingView Strategy Finder-Erweiterungs-CRX-Datei herunterladen

Laden Sie TradingView Strategy Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name TradingView Strategy Finder TradingView Strategy Finder
ID jdepgjdjpmpjljfdcmnbjmafkbckkhko
Offizielle URL https://chromewebstore.google.com/detail/tradingview-strategy-find/jdepgjdjpmpjljfdcmnbjmafkbckkhko
Beschreibung Automated Backtesting Tool
Dateigröße 577 KB
Installationsanzahl 10,000
Aktuelle Version 1.2.7
Letztes Update 2024-03-03
Veröffentlichungsdatum 2021-08-22
Bewertung 4.36/5 Insgesamt 33 Bewertungen
Entwickler https://tv-hub.org
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.tv-hub.org/Home/Privacy
Unterstützte Sprachen 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'"
}