โ† Browse

@signal-execution-labs/binary-options

A

Binary Options trading via BinaryFaster. Execute CALL/PUT trades, manage positions, track results.

skillclaude

Install

agr install @signal-execution-labs/binary-options --target claude

Writes 2 files into .claude/skills/, pinned to git-4d3b6504.

  • .claude/skills/binary-options/SKILL.md
  • .claude/skills/binary-options/binary_options.py

Document


name: binary-options description: "Binary Options trading via BinaryFaster. Execute CALL/PUT trades, manage positions, track results." metadata: { "openclaw": { "emoji": "๐ŸŽฏ", "requires": { "bins": ["node"], "npm": ["axios"] } } }

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": "your@email.com",
      "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"

Trustgrade A

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • passLicense

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged โ€” not that the artifact is safe.

Versions

  • git-4d3b6504ed6c2026-07-31