-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (40 loc) · 2.92 KB
/
index.html
File metadata and controls
44 lines (40 loc) · 2.92 KB
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
41
42
43
44
<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>交易仓位计算器 - Trading Position Calculator | 杠杆、止盈止损、爆仓价计算工具</title>
<meta name="title" content="交易仓位计算器 - Trading Position Calculator" />
<meta name="description" content="交易仓位计算工具,支持做多做空、全仓逐仓模式。精准计算保证金、杠杆倍数、爆仓价、止盈止损及盈亏比,助力您的交易计划和风险管理。Position calculator for crypto and futures trading with leverage, liquidation price, stop loss/take profit calculation." />
<meta name="keywords" content="仓位计算器,杠杆计算,爆仓价,止盈止损,盈亏比,合约交易,期货交易,Position Calculator,Leverage Calculator,Liquidation Price,Stop Loss,Take Profit,Risk Reward Ratio,Trading Tool,Crypto Trading,Futures Trading" />
<meta name="author" content="Trading Position Calculator" />
<meta name="robots" content="index, follow" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://short-long.vercel.app/" />
<meta property="og:title" content="交易仓位计算器 - 杠杆、止盈止损、爆仓价计算工具" />
<meta property="og:description" content="交易仓位计算工具,支持做多做空、全仓逐仓模式。精准计算保证金、杠杆倍数、爆仓价、止盈止损及盈亏比,助力您的交易计划和风险管理。" />
<meta property="og:image" content="https://short-long.vercel.app/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="Trading Position Calculator" />
<meta property="og:locale" content="zh_CN" />
<meta property="og:locale:alternate" content="en_US" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://short-long.vercel.app/" />
<meta name="twitter:title" content="交易仓位计算器 - Trading Position Calculator" />
<meta name="twitter:description" content="交易仓位计算工具,支持做多做空、全仓逐仓。精准计算保证金、杠杆、爆仓价、止盈止损及盈亏比。" />
<meta name="twitter:image" content="https://short-long.vercel.app/og-image.png" />
<!-- Additional SEO -->
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#0a0a0a" media="(prefers-color-scheme: dark)" />
<link rel="canonical" href="https://short-long.vercel.app/" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>