开启左侧

Nof1 AI:DeepSeek炒币机器人跟单系统

[复制链接]
⏱️ 浏览时间:约10分钟

✨ 存眷咱们获得更大批化常识搞货
名目介绍

Nof1 AI Agent跟单体系是一个鉴于Node.js战TypeScript开辟的号令止东西,特地用于追踪nof1.ai仄台上的AI Agent生意旌旗灯号,并主动正在币安开约商场施行响应的生意操纵。该体系撑持及时监控7个差别的AI质化生意Agent,包罗GPT-五、Gemini 2.5 Pro、DeepSeek Chat v3.1等业界顶尖的野生智能模子。

体系的中心代价正在于它能够主动识别并施行四种枢纽的生意旌旗灯号:
    新启仓旌旗灯号:当AI Agent成立新仓位时主动跟单仄仓旌旗灯号:当AI Agent仄仓时主动跟单换仓旌旗灯号:检测到entry_oid变革时,先仄旧仓再启新仓行盈行益旌旗灯号:当价钱到达预设的红利目标或者行益面时主动仄仓


体系架构

Nof1 AI Agent跟单体系接纳了模块化的设想架构,各个组件工作大白,配合事情:
CLI层 (index.ts)
    ↓
号令处置器 (co妹妹ands/)
    ↓
API阐发器 (scripts/analyze-api.ts)
    ↓
中心效劳层 (services/)
    ├── ApiClient:取Nof1 API通信
    ├── FollowService:跟单中心逻辑
    ├── PositionManager:仓位办理
    ├── RiskManager:危急掌握
    ├── FuturesCapitalManager:资本办理
    ├── TradingExecutor:生意施行
    ├── OrderHistoryManager:定单汗青办理
    └── BinanceService:取币安API接互

这类分层架构保证了体系的可保护性战可扩大性,共时也就于开辟者理解战改正代码。
快速上脚

使用Nof1 AI Agent跟单体系十分简朴,只要多少个步调便可开端您的AI质化生意之旅:
1. 情况准备取装置

起首保证您的体系已经装置Node.js (版原≥18.0.0)战npm,而后施行如下号令:
# 克隆名目并装置依靠
git clone https://github.com/terryso/nof1-tracker.git
cd nof1-tracker
npm install && npm run build

# 设置情况变质
cp .env.example .env
2. 设置币安API稀钥

编纂.env文献,挖进您的币安API稀钥(必需启动开约生意权力):
BINANCE_API_KEY=your_binance_api_key_here
BINANCE_API_SECRET=your_binance_api_secret_here
BINANCE_TESTNET=true  #举荐 老手先使用尝试网
3. 开端跟单生意

#检查 可用的AI Agent
npm start -- agents

# 危急掌握情势尝试(只察看没有施行)
npm start -- follow deepseek-chat-v3.1 --risk-only

#理论 跟单生意
npm start -- follow gpt-5

#继续 监控(每一30秒查抄一次)
npm start -- follow gpt-5 --interval 30
中心代码剖析

让咱们深入体系的中心代码,理解跟单逻辑是怎样完毕的:
1. 跟单号令处置器

正在src/co妹妹ands/follow.ts中,体系颠末handleFollowCo妹妹and函数处置跟单号令:
export async function handleFollowCo妹妹and(agentName: string, options: Co妹妹andOptions): Promise<void> {
  const services = initializeServices(true);
  applyConfiguration(services.analyzer, options);

  console.log(`🤖 Starting to follow agent: ${agentName}`);

  // 获得跟单方案
  const followOptions = {
    totalMargin: options.totalMargin,
    profitTarget: options.profit,
    autoRefollow: options.autoRefollow,
    marginType: options.marginType || 'CROSSED'
  };
  const followPlans = await services.analyzer.followAgent(agentName, followOptions);

  //处置 每一个跟单方案
  for (let i = 0; i < followPlans.length; i++) {
    await processFollowPlan(followPlans, services, options, i);
  }
}
2. 跟单中心逻辑

正在src/services/follow-service.ts中,followAgent办法完毕了跟单的中心逻辑:
async followAgent(
  agentId: string,
  currentPositions: Position[],
  options?: FollowOptions
): Promise<FollowPlan[]> {
  // 1. 清理伶仃的挂单
  await this.positionManager.cleanOrphanedOrders();

  // 2. 重修前次仓位形状
  const previousPositions = this.rebuildLastPositionsFromHistory(agentId, currentPositions);

  // 3. 检测仓位变革
  const changes = await this.detectPositionChanges(currentPositions, previousPositions || [], options);

  // 4.处置 每一种变革
  const followPlans: FollowPlan[] = [];
  for (const change of changes) {
    const plans = await this.handlePositionChange(change, agentId, options);
    followPlans.push(...plans);
  }

  return followPlans;
}
3. 仓位变革检测

体系颠末OID(定单ID)变革去检测差别的生意旌旗灯号:
private async detectPositionChanges(
  currentPositions: Position[],
  previousPositions: Position[],
  options?: FollowOptions
): Promise<PositionChange[]> {
  const changes: PositionChange[] = [];
  const currentPositionsMap = new Map(currentPositions.map(p => [p.symbol, p]));
  const previousPositionsMap = new Map(previousPositions.map(p => [p.symbol, p]));

  for (const [symbol, currentPosition] of currentPositionsMap) {
    const previousPosition = previousPositionsMap.get(symbol);

    if (!previousPosition) {
      // 新仓位
      if (currentPosition.quantity !== 0) {
        changes.push({
          symbol,
          type: 'new_position',
          currentPosition,
          previousPosition
        });
      }
    } else {
      //反省 entry_oid 变革(换仓)
      if (previousPosition.entry_oid !== currentPosition.entry_oid && currentPosition.quantity !== 0) {
        changes.push({
          symbol,
          type: 'entry_changed',
          currentPosition,
          previousPosition
        });
      } else if (previousPosition.quantity !== 0 && currentPosition.quantity === 0) {
        // 仓位已经仄
        changes.push({
          symbol,
          type: 'position_closed',
          currentPosition,
          previousPosition
        });
      }
    }
  }

  return changes;
}
初级功用

Nof1体系借供给了二个十分合用的初级功用:
1. 红利目标参加

用户能够树立自界说红利目标,当仓位到达指定红利百分比时主动仄仓参加:
# 当红利到达30%时主动仄仓
npm start -- follow gpt-5 --profit 30
2. 主动从头跟单

正在红利参加的根底上,可挑选主动从头跟单功用:
# 红利30%参加后,主动从头跟单
npm start -- follow gpt-5 --profit 30 --auto-refollow
危急掌握

为了保证生意宁静,体系供给了多沉危急掌握体制:
1.价钱 忍耐度查抄

体系会查抄目前价钱取进场价钱的差别,假设超越设定的忍耐度则没有会施行生意:
# 树立价钱忍耐度为1%
npm start -- follow deepseek-chat-v3.1 --price-tolerance 1.0
2. 定单来沉体制

颠末定单汗青办理器,体系能够主动识别并跳过已经处置的定单,避免重复施行:
isOrderProcessed(entryOid: number, symbol: string): boolean {
  const isProcessed = this.historyData.processedOrders.some(
    order => order.entryOid === entryOid && order.symbol === symbol
  );
  return isProcessed;
}
3. 伶仃挂单清理

体系会正在屡屡轮询时主动清理不对于应仓位的行盈行益单,制止意外触收:
async cleanOrphanedOrders(): Promise<{
  success: boolean;
  cancelledOrders: number;
  errors: string[];
}> {
  // 获得统统盛开定单战仓位
  const allOpenOrders = await this.binanceService.getOpenOrders();
  const allPositions = await this.binanceService.getAllPositions();

  //识别 并打消伶仃的挂单
  // ...
}
红利统计

体系借供给了强大的红利统计功用,辅佐用户阐发生意表示:
#检查 总红利情况
npm start -- profit

#检查 近来7天的红利
npm start -- profit --since 7d

# 仅检察目前仓位的浮动盈盈
npm start -- profit --unrealized-only
真战案例

让咱们颠末一个理论案例去示范体系的使用:
# 1.检查 可用的AI Agent
npm start -- agents

#输出 :
# 🤖 Available agents: buynhold_btc, claude-sonnet-4-5, deepseek-chat-v3.1, gpt-5, gemini-2.5-pro, grok-4, qwen3-max

# 2. 危急掌握情势尝试
npm start -- follow deepseek-chat-v3.1 --risk-only

#输出 :
# 🤖 Starting to follow agent: deepseek-chat-v3.1
# 🎯 Found agent deepseek-chat-v3.1 (marker: 138) with 6 positions
#
# 1. BTCUSDT - ENTER
#    Side: BUY
#    Type: MARKET
#    Quantity: 0.050000
#    Leverage: 20x
#    Entry Price: 109538
#    Reason: New position opened by deepseek-chat-v3.1 (OID: 210131632249)
#    ⚠️  Risk Score: 100/100
#    🚨 Warnings: High risk score
#    💰 Price Check: Entry $109538 vs Current $109550
#    📏 Price Difference: 0.01% (Tolerance: 1%)
#    ✅ Price Tolerance: Price difference 0.01% is within tolerance 1%
#    ❌ Risk assessment: FAILED - Trade skipped

# 3.理论 跟单生意
npm start -- follow deepseek-chat-v3.1

#输出 :
# 🤖 Starting to follow agent: deepseek-chat-v3.1
# 🎯 Found agent deepseek-chat-v3.1 (marker: 138) with 6 positions
#
# 1. BTCUSDT - ENTER
#    Side: BUY
#    Type: MARKET
#    Quantity: 0.050000
#    Leverage: 20x
#    Entry Price: 109538
#    Reason: New position opened by deepseek-chat-v3.1 (OID: 210131632249)
#    ⚠️  Risk Score: 100/100
#    🚨 Warnings: High risk score
#    💰 Price Check: Entry $109538 vs Current $109550
#    📏 Price Difference: 0.01% (Tolerance: 1%)
#    ✅ Price Tolerance: Price difference 0.01% is within tolerance 1%
#    ✅ Risk assessment: PASSED
#    🔄 Executing trade...
#    ✅ Connected to Binance API (Server time: 1701234567890)
#    💰 Account Balance Information:
#    Total Wallet Balance: 1000.00 USDT
#    Available Balance: 950.00 USDT
#    🔄 Executing trade: BTCUSDT BUY 0.05 (Leverage: 20x)
#    ✅ Leverage set to 20x for BTCUSDT
#    ✅ Order executed successfully:
#    Order ID: 123456789
#    Symbol: BTCUSDT
#    Status: FILLED
#    Price: 109545
#    Quantity: 0.05
#    ✅ Trade executed successfully!
#    📝 Order ID: 123456789
#    💾 Saving order to history: BTCUSDT (OID: 210131632249)
#    ✅ Saved processed order: BTCUSDT BUY 0.05 (OID: 210131632249)
归纳

Nof1 AI Agent跟单体系颠末其强大的功用战文雅的设想,供了完美的危急掌握体制战红利统计功用,保证用户能够正在掌握危急的条件下寻求支益。


名目地点

https://github.com/terryso/nof1-tracker

存眷【魔圆质化】,戴您玩转启源质化生意!
您需要登录后才可以回帖 登录 | 立即注册 qq_login

本版积分规则

发布主题
阅读排行更多+
用专业创造成效
400-778-7781
周一至周五 9:00-18:00
意见反馈:server@mailiao.group
紧急联系:181-67184787
ftqrcode

扫一扫关注我们

Powered by 职贝云数A新零售门户 X3.5© 2004-2025 职贝云数 Inc.( 蜀ICP备2024104722号 )