A skill for automated binary options trading on the BinaryFaster platform.

Install

mkdir -p .claude/skills/binary-options && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11474" && unzip -o skill.zip -d .claude/skills/binary-options && rm skill.zip

Installs to .claude/skills/binary-options

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Binary Options trading via BinaryFaster. Execute CALL/PUT trades, manage positions, track results.
98 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Execute CALL trades to predict price increases
  • Execute PUT trades to predict price decreases
  • Manage positions across various assets like Forex, Crypto, and Commodities
  • Switch between demo and real trading modes
  • Track trade history and account balances

How it works

The skill interacts with the BinaryFaster.com platform via a client library to execute binary option trades and retrieve account details.

Inputs & outputs

You give it
a trade command (CALL/PUT), asset ID, amount, and duration
You get back
a binary option trade executed on BinaryFaster.com or account information

When to use binary-options

  • Check real or demo account balances
  • Execute a CALL trade on a specific asset
  • Execute a PUT trade on a specific asset
  • List available trading assets and payouts

About this skill

Binary Options Trading (BinaryFaster)

Trade binary options through the BinaryFaster platform.

Overview

This skill enables K.I.T. to trade binary options on BinaryFaster.com:

  • CALL/PUT Trades - Predict price direction
  • Multiple Assets - Forex, Crypto, Commodities
  • Flexible Durations - 1 min to 1 hour
  • Demo & Real - Practice or trade real money

Supported Platform

PlatformURLStatus
BinaryFasterhttps://binaryfaster.com✅ Ready

Configuration

Credentials stored in ~/.kit/config.json:

{
  "exchanges": {
    "binaryfaster": {
      "enabled": true,
      "type": "binary",
      "email": "[email protected]",
      "apiKey": "your-api-key"
    }
  }
}

Trading Commands

Check Balance

const client = new BinaryFasterClient();
await client.login(email, password);

const balance = await client.getBalance();
console.log(`Real: $${balance.real}, Demo: $${balance.demo}`);

Open CALL Trade (Price Goes UP)

// Trade $10 on EUR/USD, 60 seconds
await client.call(159, 10, 60);

Open PUT Trade (Price Goes DOWN)

// Trade $10 on EUR/USD, 60 seconds
await client.put(159, 10, 60);

Switch to Demo Mode

await client.setDemoMode(true);  // Demo
await client.setDemoMode(false); // Real

Get Available Assets

const assets = await client.getAssets();
assets.forEach(a => console.log(`${a.id}: ${a.name} (${a.payout}%)`));

Get Trade History

const history = await client.getTradeHistory();
history.forEach(t => console.log(`${t.trend} $${t.lot} → ${t.result}`));

Asset IDs

Common assets:

AssetIDType
EUR/USD159Forex
GBP/USD160Forex
USD/JPY161Forex
AUD/USD162Forex
BTC/USD200Crypto
ETH/USD201Crypto
Gold250Commodity

Trade Durations

DurationSeconds
1 minute60
2 minutes120
3 minutes180
5 minutes300
15 minutes900
30 minutes1800
1 hour3600

Risk Warning

⚠️ Binary options trading involves significant risk.

  • Only trade what you can afford to lose
  • Start with demo mode to practice
  • Use proper risk management
  • Past results don't guarantee future performance

Natural Language Examples

K.I.T. understands natural commands:

"Open a CALL on EUR/USD for $10"
"Put $25 on Bitcoin, 5 minutes"
"What's my binary options balance?"
"Show my last 10 trades"
"Switch to demo mode"

When not to use it

  • When trading options other than binary options
  • When using a platform other than BinaryFaster.com
  • When the user is unwilling to accept significant financial risk

Prerequisites

nodeaxios

Limitations

  • Binary options trading involves significant risk.
  • It is specific to the BinaryFaster.com platform.
  • It requires an email and API key for configuration.

How it compares

This workflow automates binary options trading on a specific platform, allowing programmatic execution and management, unlike manual trading through a web interface.

Compared to similar skills

binary-options side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
binary-options (this skill)06moReviewIntermediate
open-eth-terminal-agent07moReviewIntermediate
zyfai06moReviewIntermediate
apify-ultimate-scraper03moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

Search skills

Search the agent skills registry