zj
2025-10-17 bbc4713b23778aebc1eb3d46cb04d539179d883d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.yami.trading.huobi.hobi;
 
public class Config {
 
    /**
     * API域名
     */
    public static String url = "https://api.huobi.pro";
 
    /**
     * 所有交易对的最新 Tickers
     */
    public static String tickers = "/market/tickers";
 
    /**
     * 市场深度数据
     */
    public static String depth = "/market/depth";
 
    /**
     * 最近市场成交记录
     */
    public static String trade = "/market/trade";
 
    /**
     * K 线数据(蜡烛图)
     */
    public static String kline = "/market/history/kline";
 
    public static String symbols = "/v1/common/symbols";
 
    public static String mexc_kline = "https://api.mexc.com/api/v3/klines";
    public static String mexc_depth = "https://api.mexc.com/api/v3/depth";
 
    public static String mexc_trade = "https://api.mexc.com/api/v3/trades";
 
 
 
 
}