一键导入
task-scheduler
Schedule and automate trading tasks: DCA, rebalancing, reports, alerts. Full auto-pilot support.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Schedule and automate trading tasks: DCA, rebalancing, reports, alerts. Full auto-pilot support.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Complete market analysis for Crypto, Forex, and Stocks with RSI, MACD, trends, and trading recommendations.
Binary Options trading via BinaryFaster. Execute CALL/PUT trades, manage positions, track results.
Regulatory compliance across jurisdictions. KYC status, tax reporting, trading restrictions, and legal guidelines.
Social trading - copy the best traders automatically. Track whales, influencers, and top performers.
DeFi yield hunting across protocols. Find the best APY, auto-compound, manage LP positions, and optimize gas.
Derivatives trading - options, futures, and perpetuals. Advanced strategies for hedging and leverage.
| name | task-scheduler |
| description | Schedule and automate trading tasks: DCA, rebalancing, reports, alerts. Full auto-pilot support. |
| metadata | {"openclaw":{"emoji":"⏰","requires":{"bins":["node"],"npm":["cron-parser"]}}} |
Automatisiere wiederkehrende Trading-Aufgaben mit K.I.T.
// ~/.kit/config/scheduler.json
{
"auto_pilot": {
"enabled": true,
"timezone": "Europe/Berlin",
"tasks": {
"dca": {
"enabled": true,
"default_frequency": "weekly"
},
"rebalance": {
"enabled": true,
"check_frequency": "daily",
"deviation_threshold_pct": 5
},
"reports": {
"daily_summary": true,
"weekly_performance": true,
"send_to": ["telegram"]
}
}
}
}
| Type | Description | Frequencies |
|---|---|---|
dca | Dollar Cost Averaging | hourly, daily, weekly, monthly |
rebalance | Portfolio Rebalancing | daily, weekly |
report | Generate Reports | daily, weekly, monthly |
alert-check | Check Alert Conditions | hourly, custom |
price-check | Monitor Prices | continuous |
custom | User-defined Actions | any |
# Via K.I.T. CLI (wenn implementiert)
kit scheduler create-dca \
--name "Weekly BTC Buy" \
--symbol BTC/USDT \
--amount 100 \
--frequency weekly \
--day monday \
--time 09:00
kit scheduler create-rebalance \
--name "Monthly Rebalance" \
--frequency monthly \
--threshold 5 \
--targets "BTC:50,ETH:30,USDC:20"
kit scheduler create-report \
--name "Daily Summary" \
--type daily \
--frequency daily \
--time 20:00 \
--send-to telegram
kit scheduler list
kit scheduler list --type dca
kit scheduler list --enabled
kit scheduler enable <task-id>
kit scheduler disable <task-id>
kit scheduler delete <task-id>
kit scheduler run <task-id>
kit scheduler status
{
"name": "Conservative BTC DCA",
"type": "dca",
"frequency": "weekly",
"config": {
"symbol": "BTC/USDT",
"amount": 50,
"side": "buy",
"time": "09:00",
"day": "monday"
}
}
{
"name": "Smart DCA",
"type": "dca",
"frequency": "daily",
"config": {
"symbol": "BTC/USDT",
"base_amount": 20,
"max_amount": 100,
"strategy": "buy_the_dip",
"dip_threshold_pct": -5,
"multiplier": 2
}
}
{
"name": "Quarterly Rebalance",
"type": "rebalance",
"frequency": "monthly",
"config": {
"targetAllocations": {
"BTC": 40,
"ETH": 30,
"SOL": 15,
"USDC": 15
},
"threshold": 5,
"minTradeSize": 50
}
}
| Report | Content |
|---|---|
daily | P&L, trades, portfolio snapshot |
weekly | Performance, win rate, best/worst |
monthly | Full analysis, tax implications |
performance | Detailed strategy performance |
For advanced scheduling:
| Expression | Description |
|---|---|
0 9 * * * | Daily at 9:00 |
0 9 * * 1 | Weekly Monday 9:00 |
0 9 1 * * | Monthly 1st at 9:00 |
0 */4 * * * | Every 4 hours |
0 9,21 * * * | Twice daily 9:00 & 21:00 |
kit scheduler status regularly