TradingView Strategy Finder

Automated Backtesting Tool

Cos'è TradingView Strategy Finder?

TradingView Strategy Finder è un'estensione di Chrome sviluppata da https://tv-hub.org, e la sua funzione principale è "Automated Backtesting Tool".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione TradingView Strategy Finder

Scarica i file di estensione TradingView Strategy Finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome TradingView Strategy Finder TradingView Strategy Finder
ID jdepgjdjpmpjljfdcmnbjmafkbckkhko
URL Ufficiale https://chromewebstore.google.com/detail/tradingview-strategy-find/jdepgjdjpmpjljfdcmnbjmafkbckkhko
Descrizione Automated Backtesting Tool
Dimensione del File 577 KB
Conteggio Installazioni 10,000
Versione Corrente 1.2.7
Ultimo Aggiornamento 2024-03-03
Data di Pubblicazione 2021-08-22
Valutazione 4.36/5 Totale 33 Valutazioni
Sviluppatore https://tv-hub.org
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.tv-hub.org/Home/Privacy
Lingue Supportate 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'"
}