Quotex Task Automation Chrome Extension

Job ID: 39164854

Budget: $10 – $30 USD

This is very urgent; I need it within 1 day.

Project Overview

I need a Chrome Extension that will automate binary trading on the Quotex platform based on future signals. The extension will have a signal input box, where I will paste the signals and click Run. The extension should:

Automatically select the correct pair

Wait for the exact time and place the trade in the given direction (CALL/PUT)

Apply a 1-step martingale strategy (if the first trade loses, the next trade should be placed with double the amount)

Avoid martingale if a doji candle appears (when the open and close prices of the candle are the same)

Provide success & warning feedback



---

Signal Format

The extension should follow this signal format:

PAIR TIMEFRAME TIME DIRECTION
AXP-OTC M1 14:47 CALL
AXP-OTC M1 14:54 CALL
USDZAR-OTC M1 15:02 CALL

AXP-OTC → Market pair

M1 → 1-minute timeframe

14:47 → Exact trade time

CALL → Trade direction (UP)



---

How the Extension Should Work

1. User opens the extension


2. User pastes signals into the input box


3. Clicks "Run" button


4. The extension will automatically:

Select the correct pair

Wait for the exact time to execute the trade

Follow the direction (CALL/PUT)

If the trade loses, place 1-step martingale trade (same pair, same direction, double amount)

If a doji candle appears, do not place a martingale trade



5. Success & Warning Feedback

✅ If the signal is valid, show "Success" message

❌ If the signal is invalid, show "Invalid Signal" warning





---

Technical Implementation

(A) Quotex API vs Web Automation

If Quotex has an API, it should be used for faster trade execution

If API is not available, the extension should use Web Automation (JavaScript DOM Manipulation)


(B) DOM Manipulation Example

To place an UP (CALL) trade, the extension should execute this JavaScript command:

document.querySelector('.button--success.button--spaced.call-btn').click();

The extension must automatically select the correct pair & timeframe before placing a trade


(C) Martingale Logic

If the first trade loses, the extension should place a new trade in the next minute with double the amount

Example:

AXP-OTC M1 14:47 CALL (Trade lost)
→ AXP-OTC M1 14:48 CALL (Martingale trade, double amount)


(D) Doji Candle Handling

If the candle opens & closes at the same price, do not place a martingale trade



---

User Interface (UI) Requirements

The extension should have a simple and clean UI with the following elements:

Input Box → To paste the signals

Run Button → To start execution

Success Message → If the signal is correct

Warning Message → If the signal is invalid