# Send EntradeX to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "entradex",
    "name": "EntradeX",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/hieuhani/entradex",
    "canonicalUrl": "https://clawhub.ai/hieuhani/entradex",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/entradex",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=entradex",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/entradex"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/entradex",
    "downloadUrl": "https://openagent3.xyz/downloads/entradex",
    "agentUrl": "https://openagent3.xyz/skills/entradex/agent",
    "manifestUrl": "https://openagent3.xyz/skills/entradex/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/entradex/agent.md"
  }
}
```
## Documentation

### EntradeX CLI

Install

npm i -g entradex-cli

### Usage

entradex [global-options] [command]

### Configuration

Credential priority order:

Config file (~/.entradex-cli/config.json) - recommended
Environment variables (DNSE_API_KEY, DNSE_API_SECRET)
Global command options (--api-key, --api-secret)

Setup and inspect config:

entradex config set --key "<api-key>" --secret "<api-secret>"
entradex config set
entradex config get
entradex config clear

### Security & Safety

Before using this skill:

Verify the npm package: npm view entradex-cli - check author is hieuhani and repository matches
Inspect package contents: npm pack entradex-cli --dry-run or view on npmjs.com
Treat DNSE_API_KEY and DNSE_API_SECRET as highly sensitive trading credentials

Autonomous execution warning:

This skill can place real trades using provided credentials
Consider using a separate limited-permission account
Rotate API keys if you suspect unauthorized access

### Global Options

--api-key <key> DNSE API key
--api-secret <secret> DNSE API secret
--base-url <url> API base URL (default: https://openapi.dnse.com.vn)
--debug Show request details
-V, --version Show CLI version
-h, --help Show help

### Config

entradex config set [--key <key>] [--secret <secret>] [--url <url>]
entradex config get
entradex config clear

### Account

entradex account list
entradex account balances <accountNo>
entradex account loan-packages <accountNo> <marketType> [--symbol <symbol>]

### Trade

entradex trade order <marketType> <symbol> <side> <orderType> <price> <quantity> <tradingToken> [--price-stop <price>]
entradex trade modify <accountNo> <orderId> <marketType> <symbol> <side> <orderType> <price> <quantity> <tradingToken> [--price-stop <price>]
entradex trade cancel <accountNo> <orderId> <marketType> <tradingToken>

Parameters:

marketType (enum): STOCK, DERIVATIVE
side (enum): NB (buy), NS (sell)
orderType (enum): ATO, ATC, LO, MTL, MOK, PLO

ATO: At The Opening
ATC: At The Close
LO: Limit Order
MTL: Market To Limit
MOK: Market Order Kill
PLO: Post Limit Order


price (number): unit price; follow DNSE tick-size/market constraints

If orderType=LO, price must be greater than 0.
If orderType is anything other than LO (ATO, ATC, MTL, MOK, PLO), price must be exactly 0.


quantity (integer): order quantity; must satisfy market lot rules

For marketType=STOCK, valid quantity is either:

Board lot: multiples of 100 (100, 200, ...)
Odd lot: integers from 1 to 99


For marketType=STOCK, values like 101, 102, ... are invalid odd lots and must be rejected.


tradingToken (string): token from entradex auth create-token

Normalization rules for user intent:

If user says buy/sell, map to NB/NS.
Uppercase enum-style params before execution (marketType, side, orderType).
If user provides an unsupported enum value, stop and ask for a valid value.
If orderType is not supported by the target market/session, stop and ask user to choose a supported type.

### Order

entradex order list <accountNo> <marketType>
entradex order detail <accountNo> <orderId> <marketType>
entradex order history <accountNo> <marketType> [--from <date>] [--to <date>] [--page-size <size>] [--page-index <index>]
entradex order deals <accountNo> <marketType>

### Market

entradex market secdef <symbol> [--board-id <id>]
entradex market ppse <accountNo> <marketType> <symbol> <price> <loanPackageId>

### Auth

entradex auth send-otp <email> [--otp-type <type>]
entradex auth create-token <otpType> <passcode>

### Dry Run

entradex dry-run accounts
entradex dry-run balances <accountNo>
entradex dry-run order <marketType> <symbol> <side> <orderType> <price> <quantity> [--price-stop <price>]

### Common Workflow

# 1) Configure credentials
entradex config set

# 2) Send OTP
entradex auth send-otp user@example.com

# 3) Create trading token with passcode
entradex auth create-token smart_otp <passcode>

# 4) Place an order
entradex trade order STOCK VIC NB LO 15000 100 <trading-token>
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: hieuhani
- Version: 0.1.16
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/entradex)
- [Send to Agent page](https://openagent3.xyz/skills/entradex/agent)
- [JSON manifest](https://openagent3.xyz/skills/entradex/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/entradex/agent.md)
- [Download page](https://openagent3.xyz/downloads/entradex)