Jarvis - Zerodha Trading helper

Jarvis helps in managing your risk in Intraday Trading by computing quantity by pretermined stoploss % and risk per trade.

Τι είναι το Jarvis - Zerodha Trading helper;

Το Jarvis - Zerodha Trading helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kunal Gupta, και η κύρια λειτουργία του είναι "Jarvis helps in managing your risk in Intraday Trading by computing quantity by pretermined stoploss % and risk per trade.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Jarvis - Zerodha Trading helper

Λήψη αρχείων επέκτασης Jarvis - Zerodha Trading helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Jarvis helps in managing your risk by giving you a consistency of pre-determined stoploss % and risk per trade, once you set these values in the plugin then it automatically sets the quantity of the trade regarding the currently selected trade. This works in Zerodha currently, but planning to launch in another brokers as well.

Usage -

Add this plugin to your chrome
Login to your Zerodha trading
Enter your risk per trade
Enter your % stoploss for each trade
Automatically loads up the calculated quantity

For now, this is what Jarvis can do, but going forward we'll have plethora of features coming on.

Planned growth of Jarvis
In the future, Jarvis will be helping you -

Analyzing your winning/loosing trades
Showing you how much brokerage you’ll be paying
Handling prices of options/futures
Working on Upstox/Alice

For more information see here - 

http://kunall17.in/2020/11/10/jarvis-extension-stock-trading.html                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Jarvis - Zerodha Trading helper Jarvis - Zerodha Trading helper
ID ijobgiajjnljalbobenleknenhkcionc
Επίσημο URL https://chromewebstore.google.com/detail/jarvis-zerodha-trading-he/ijobgiajjnljalbobenleknenhkcionc
Περιγραφή Jarvis helps in managing your risk in Intraday Trading by computing quantity by pretermined stoploss % and risk per trade.
Μέγεθος Αρχείου 35.02 KB
Αριθμός Εγκαταστάσεων 1,503
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2021-01-09
Ημερομηνία Δημοσίευσης 2020-12-06
Αξιολόγηση 4.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Kunal Gupta
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://kunall17.in/2020/11/10/jarvis-extension-stock-trading.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "Jarvis helps in managing your risk in Intraday Trading by computing quantity by pretermined stoploss % and risk per trade.",
    "homepage_url": "https:\/\/github.com\/kunall17\/risk-manager",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        },
        "default_title": "__MSG_appName__",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/kite.zerodha.com\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.zerodha.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    }
}