Autoclick

A Chrome extension to automate buy, sell, or close actions on TradingView based on alerts.

Что такое Autoclick?

Autoclick - это расширение Chrome, разработанное https://profitsub.com, и его основная функция - "A Chrome extension to automate buy, sell, or close actions on TradingView based on alerts.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Autoclick

Скачайте файлы расширений Autoclick в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Special Offer: Free for a Limited Time

Don't want to mess with webhooks and APIs? Run a simple strategy on a single instrument with an integrated broker? Autoclick is for you. Automate your trades directly from TradingView alert pop-ups with Autoclick. Exclusive to TradingView users.

How Autoclick Works:

Setup:
-- Install Autoclick.
-- If prompted, enter the license key from your receipt email.
-- Toggle 'on' to start automation or 'off' to pause without stopping alerts.

In TradingView:
-- Select the chart where you plan to execute trades.

Alert Configuration:
-- Use the provided syntax to format your alert message.
-- Make sure 'Show pop-up' in Notifications is enabled.

Trading Settings:
-- Right-click on the chart to access settings.
-- Enable 'buy' and 'sell' options.
-- Choose 'instant order placement.'
-- Set your desired order size at the top left.

Broker Connection:
-- Connect your broker via the trading panel.
-- Paper trading option also available.

Autoclick allows you to automate trades even if your monitor is off. Toggle alerts on and off using your mobile for versatile strategies.

For advanced trading scripts, visit profitsub.com and explore Superscript.

Autoclick 2.0 Syntax Guide:

Commands:
-- "Buy"
-- "Sell"
-- "Close"
-- "Close Buy" (Reverses Sell)
-- "Close Sell" (Reverses Buy)

Modifications:
-- Add these elements for control:
--- Quantity: q=integer, oq=integer, cq=integer
--- Take Profit: tp=price
--- Stop Loss: sl=price

Get a License: Visit profitsub.gumroad.com/l/autoclick
Note: Autoclick is free for a limited time.                    

Основная информация о расширении

Название Autoclick Autoclick
ID jhodlohkfkffmmbgeppchmbnbbcmnkeh
Официальный URL https://chromewebstore.google.com/detail/autoclick/jhodlohkfkffmmbgeppchmbnbbcmnkeh
Описание A Chrome extension to automate buy, sell, or close actions on TradingView based on alerts.
Размер файла 10.66 KB
Количество установок 247
Текущая Версия 2.1
Последнее Обновление 2023-10-15
Дата публикации 2023-08-15
Разработчик https://profitsub.com
Электронная почта [email protected]
Тип оплаты in_app
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Autoclick",
    "description": "A Chrome extension to automate buy, sell, or close actions on TradingView based on alerts.",
    "version": "2.1",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/16.png"
        },
        "default_title": "Autoclick",
        "default_popup": "pop.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tradingview.com\/chart\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "optional_host_permissions": [
        "https:\/\/*.tradingview.com\/*"
    ],
    "permissions": [
        "activeTab",
        "tabs"
    ]
}