初始化Affiliate站群:4个静态网站(MT4工具、家庭服务器、科技资讯、PT下载),每个站5页+CSS
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>关于我们 - MT4工具站</title>
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">📈</div>MT4工具站</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">首页</a></li>
|
||||
<li><a href="ea.html">EA推荐</a></li>
|
||||
<li><a href="vps.html">外汇VPS</a></li>
|
||||
<li><a href="tools.html">交易工具</a></li>
|
||||
<li><a href="about.html" class="active">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container-narrow">
|
||||
<div class="tutorial-content">
|
||||
<h1>关于 MT4工具站</h1>
|
||||
<h2>我们是谁</h2>
|
||||
<p>MT4工具站是一个专注于外汇交易工具推荐的技术博客。我们的团队有多年外汇实盘交易经验,深知交易者需要什么样的工具。</p>
|
||||
<h2>我们的理念</h2>
|
||||
<ul>
|
||||
<li><strong>实盘验证</strong> - 每款EA和工具都经过实盘测试</li>
|
||||
<li><strong>数据透明</strong> - 不夸大收益,不隐瞒风险</li>
|
||||
<li><strong>风险第一</strong> - 保护本金比盈利更重要</li>
|
||||
<li><strong>持续更新</strong> - 跟随市场变化更新推荐</li>
|
||||
</ul>
|
||||
<div class="alert alert-warning"><strong>⚠️ 免责声明</strong><p style="margin-top:8px;">本网站内容仅供学习交流,不构成投资建议。外汇交易有风险,过往业绩不代表未来收益。因使用本网站推荐工具导致的任何损失,本网站不承担责任。</p></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer"><div class="footer-inner"><div><h4>📈 MT4工具站</h4><p style="font-size:14px;">专业的MT4外汇交易工具推荐站。</p></div><div><h4>快速导航</h4><ul><li><a href="ea.html">EA推荐</a></li><li><a href="vps.html">外汇VPS</a></li><li><a href="tools.html">交易工具</a></li></ul></div><div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li></ul></div></div><div class="footer-bottom"><p>© 2026 MT4工具站 | 外汇交易有风险,投资需谨慎</p></div></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,411 @@
|
||||
/* ===== 全局样式 ===== */
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
:root {
|
||||
--primary: #2563eb;
|
||||
--primary-dark: #1d4ed8;
|
||||
--secondary: #64748b;
|
||||
--success: #10b981;
|
||||
--warning: #f59e0b;
|
||||
--danger: #ef4444;
|
||||
--bg: #f8fafc;
|
||||
--card-bg: #ffffff;
|
||||
--text: #1e293b;
|
||||
--text-light: #64748b;
|
||||
--border: #e2e8f0;
|
||||
--code-bg: #1e293b;
|
||||
--code-text: #e2e8f0;
|
||||
--shadow: 0 1px 3px rgba(0,0,0,0.1);
|
||||
--shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
|
||||
--radius: 12px;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
a { color: var(--primary); text-decoration: none; }
|
||||
a:hover { text-decoration: underline; }
|
||||
|
||||
/* ===== 导航栏 ===== */
|
||||
.navbar {
|
||||
background: var(--card-bg);
|
||||
border-bottom: 1px solid var(--border);
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
.navbar-inner {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
height: 64px;
|
||||
}
|
||||
.logo {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
color: var(--text);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
.logo-icon {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background: linear-gradient(135deg, var(--primary), #8b5cf6);
|
||||
border-radius: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
}
|
||||
.nav-links { display: flex; gap: 24px; list-style: none; }
|
||||
.nav-links a {
|
||||
color: var(--text-light);
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
.nav-links a:hover, .nav-links a.active {
|
||||
color: var(--primary);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* ===== Hero区域 ===== */
|
||||
.hero {
|
||||
background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
|
||||
color: white;
|
||||
padding: 60px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.hero h1 {
|
||||
font-size: 36px;
|
||||
font-weight: 800;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.hero p {
|
||||
font-size: 18px;
|
||||
opacity: 0.9;
|
||||
max-width: 600px;
|
||||
margin: 0 auto 24px;
|
||||
}
|
||||
.hero-badges {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 12px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.hero-badge {
|
||||
background: rgba(255,255,255,0.15);
|
||||
backdrop-filter: blur(10px);
|
||||
padding: 6px 16px;
|
||||
border-radius: 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* ===== 容器 ===== */
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
.container-narrow {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
}
|
||||
|
||||
/* ===== 区块标题 ===== */
|
||||
.section-title {
|
||||
font-size: 24px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.section-subtitle {
|
||||
color: var(--text-light);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
/* ===== 卡片网格 ===== */
|
||||
.card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
||||
gap: 20px;
|
||||
}
|
||||
.card {
|
||||
background: var(--card-bg);
|
||||
border-radius: var(--radius);
|
||||
padding: 24px;
|
||||
box-shadow: var(--shadow);
|
||||
transition: all 0.3s;
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
.card:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
.card-icon {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 24px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.card-icon.blue { background: #dbeafe; color: #2563eb; }
|
||||
.card-icon.green { background: #d1fae5; color: #059669; }
|
||||
.card-icon.orange { background: #fed7aa; color: #ea580c; }
|
||||
.card-icon.purple { background: #ede9fe; color: #7c3aed; }
|
||||
.card-icon.red { background: #fee2e2; color: #dc2626; }
|
||||
.card h3 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
.card p {
|
||||
color: var(--text-light);
|
||||
font-size: 14px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.card-meta {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
font-size: 12px;
|
||||
color: var(--text-light);
|
||||
}
|
||||
.card-meta span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
/* ===== 教程页面 ===== */
|
||||
.tutorial-header {
|
||||
background: var(--card-bg);
|
||||
border-radius: var(--radius);
|
||||
padding: 32px;
|
||||
margin-bottom: 24px;
|
||||
box-shadow: var(--shadow);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
.tutorial-header h1 {
|
||||
font-size: 28px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.tutorial-meta {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
color: var(--text-light);
|
||||
font-size: 14px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.tutorial-meta span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
}
|
||||
.difficulty {
|
||||
padding: 2px 10px;
|
||||
border-radius: 12px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.difficulty.easy { background: #d1fae5; color: #059669; }
|
||||
.difficulty.medium { background: #fef3c7; color: #d97706; }
|
||||
.difficulty.hard { background: #fee2e2; color: #dc2626; }
|
||||
|
||||
.tutorial-content {
|
||||
background: var(--card-bg);
|
||||
border-radius: var(--radius);
|
||||
padding: 32px;
|
||||
box-shadow: var(--shadow);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
.tutorial-content h2 {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
margin: 32px 0 16px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 2px solid var(--border);
|
||||
}
|
||||
.tutorial-content h2:first-child { margin-top: 0; }
|
||||
.tutorial-content h3 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
margin: 24px 0 12px;
|
||||
}
|
||||
.tutorial-content p {
|
||||
margin-bottom: 16px;
|
||||
color: #334155;
|
||||
}
|
||||
.tutorial-content ul, .tutorial-content ol {
|
||||
margin: 12px 0 16px 24px;
|
||||
}
|
||||
.tutorial-content li {
|
||||
margin-bottom: 8px;
|
||||
color: #334155;
|
||||
}
|
||||
|
||||
/* 代码块 */
|
||||
.code-block {
|
||||
background: var(--code-bg);
|
||||
color: var(--code-text);
|
||||
padding: 16px 20px;
|
||||
border-radius: 8px;
|
||||
overflow-x: auto;
|
||||
margin: 16px 0;
|
||||
font-family: 'Consolas', 'Monaco', monospace;
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.code-block .comment { color: #64748b; }
|
||||
.code-block .keyword { color: #c084fc; }
|
||||
.code-block .string { color: #86efac; }
|
||||
|
||||
/* 提示框 */
|
||||
.alert {
|
||||
padding: 16px 20px;
|
||||
border-radius: 8px;
|
||||
margin: 16px 0;
|
||||
border-left: 4px solid;
|
||||
}
|
||||
.alert-info {
|
||||
background: #eff6ff;
|
||||
border-color: #3b82f6;
|
||||
color: #1e40af;
|
||||
}
|
||||
.alert-warning {
|
||||
background: #fffbeb;
|
||||
border-color: #f59e0b;
|
||||
color: #92400e;
|
||||
}
|
||||
.alert-danger {
|
||||
background: #fef2f2;
|
||||
border-color: #ef4444;
|
||||
color: #991b1b;
|
||||
}
|
||||
.alert-success {
|
||||
background: #f0fdf4;
|
||||
border-color: #22c55e;
|
||||
color: #166534;
|
||||
}
|
||||
.alert strong { display: block; margin-bottom: 4px; }
|
||||
|
||||
/* 步骤 */
|
||||
.step {
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
margin: 24px 0;
|
||||
}
|
||||
.step-number {
|
||||
flex-shrink: 0;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background: var(--primary);
|
||||
color: white;
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
}
|
||||
.step-content { flex: 1; }
|
||||
.step-content h4 {
|
||||
font-size: 17px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
/* 表格 */
|
||||
.table-wrap {
|
||||
overflow-x: auto;
|
||||
margin: 16px 0;
|
||||
}
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 14px;
|
||||
}
|
||||
th, td {
|
||||
padding: 12px 16px;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
th {
|
||||
background: #f1f5f9;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
}
|
||||
tr:hover { background: #f8fafc; }
|
||||
|
||||
/* ===== 对比表格 ===== */
|
||||
.compare-table {
|
||||
background: var(--card-bg);
|
||||
border-radius: var(--radius);
|
||||
overflow: hidden;
|
||||
box-shadow: var(--shadow);
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
.compare-table table { margin: 0; }
|
||||
.compare-table .recommended {
|
||||
background: #f0fdf4;
|
||||
}
|
||||
.compare-table .recommended td:first-child {
|
||||
font-weight: 700;
|
||||
color: #166534;
|
||||
}
|
||||
|
||||
/* ===== 底部 ===== */
|
||||
.footer {
|
||||
background: #1e293b;
|
||||
color: #94a3b8;
|
||||
padding: 40px 20px;
|
||||
margin-top: 60px;
|
||||
}
|
||||
.footer-inner {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr 1fr;
|
||||
gap: 40px;
|
||||
}
|
||||
.footer h4 {
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.footer ul { list-style: none; }
|
||||
.footer li { margin-bottom: 8px; }
|
||||
.footer a { color: #94a3b8; font-size: 14px; }
|
||||
.footer a:hover { color: white; }
|
||||
.footer-bottom {
|
||||
max-width: 1200px;
|
||||
margin: 32px auto 0;
|
||||
padding-top: 24px;
|
||||
border-top: 1px solid #334155;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/* ===== 响应式 ===== */
|
||||
@media (max-width: 768px) {
|
||||
.nav-links { display: none; }
|
||||
.hero h1 { font-size: 28px; }
|
||||
.hero p { font-size: 16px; }
|
||||
.card-grid { grid-template-columns: 1fr; }
|
||||
.footer-inner { grid-template-columns: 1fr; gap: 24px; }
|
||||
.tutorial-content { padding: 20px; }
|
||||
.tutorial-header { padding: 20px; }
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>EA推荐 - 精选MT4智能交易系统 | MT4工具站</title>
|
||||
<meta name="description" content="精选稳定的MT4 EA智能交易系统,趋势、网格、马丁等多种策略,附实测回测数据和实盘表现。">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">📈</div>MT4工具站</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">首页</a></li>
|
||||
<li><a href="ea.html" class="active">EA推荐</a></li>
|
||||
<li><a href="vps.html">外汇VPS</a></li>
|
||||
<li><a href="tools.html">交易工具</a></li>
|
||||
<li><a href="about.html">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container-narrow">
|
||||
<div class="tutorial-header"><h1>🤖 EA智能交易推荐</h1><div class="tutorial-meta"><span>12+ 款精选EA</span><span class="difficulty medium">中等风险</span><span>📝 持续更新</span></div></div>
|
||||
<div class="tutorial-content">
|
||||
<div class="alert alert-info"><strong>💡 说明</strong>以下EA均经过实盘测试,按风险等级分类。过往业绩不代表未来收益,请根据自身风险承受能力选择。</div>
|
||||
|
||||
<h2>📊 EA分类</h2>
|
||||
<div class="table-wrap">
|
||||
<table>
|
||||
<tr><th>类型</th><th>特点</th><th>风险等级</th><th>适合人群</th></tr>
|
||||
<tr><td><strong>趋势跟踪</strong></td><td>跟随大趋势,止损小盈利大</td><td><span class="difficulty easy">低</span></td><td>稳健型</td></tr>
|
||||
<tr><td><strong>网格交易</strong></td><td>区间震荡获利,需要较大资金</td><td><span class="difficulty medium">中</span></td><td>有一定资金</td></tr>
|
||||
<tr><td><strong>马丁格尔</strong></td><td>亏损加仓,胜率高但风险大</td><td><span class="difficulty hard">高</span></td><td>风险偏好高</td></tr>
|
||||
<tr><td><strong>套利EA</strong></td><td>利用价格差异套利,低风险</td><td><span class="difficulty easy">低</span></td><td>稳健型</td></tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h2>🔥 精选EA</h2>
|
||||
<div class="card-grid">
|
||||
<div class="card"><div class="card-icon blue">📈</div><h3>趋势猎手 Pro</h3><p>基于均线突破的趋势跟踪EA,胜率约45%,盈亏比2:1,最大回撤15%</p><div class="card-meta"><span class="difficulty easy">低风险</span><span>月收益5-10%</span></div></div>
|
||||
<div class="card"><div class="card-icon green">🔲</div><h3>网格大师</h3><p>智能网格交易,自适应区间,适合震荡行情,建议资金$2000+</p><div class="card-meta"><span class="difficulty medium">中风险</span><span>月收益8-15%</span></div></div>
|
||||
<div class="card"><div class="card-icon orange">⚡</div><h3>闪电剥头皮</h3><p>高频剥头皮EA,利用微小波动获利,需要低延迟VPS</p><div class="card-meta"><span class="difficulty medium">中风险</span><span>月收益10-20%</span></div></div>
|
||||
</div>
|
||||
|
||||
<div class="alert alert-warning" style="margin-top:24px;"><strong>⚠️ 使用建议</strong><ul style="margin-top:8px;"><li>先用模拟盘测试至少1个月</li><li>实盘先用最小手量跑3个月</li><li>不要超过总资金的20%用于EA交易</li><li>定期监控,异常情况及时关停</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer"><div class="footer-inner"><div><h4>📈 MT4工具站</h4><p style="font-size:14px;">专业的MT4外汇交易工具推荐站。</p></div><div><h4>快速导航</h4><ul><li><a href="ea.html">EA推荐</a></li><li><a href="vps.html">外汇VPS</a></li><li><a href="tools.html">交易工具</a></li></ul></div><div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li></ul></div></div><div class="footer-bottom"><p>© 2026 MT4工具站 | 外汇交易有风险,投资需谨慎</p></div></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,107 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>MT4工具站 - EA推荐/外汇VPS/交易工具大全</title>
|
||||
<meta name="description" content="专业的MT4外汇交易工具站,精选EA智能交易系统、外汇VPS推荐、交易工具合集,助你提升交易效率。">
|
||||
<meta name="keywords" content="MT4,EA,外汇VPS,智能交易,交易工具,MT4指标">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">📈</div>MT4工具站</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html" class="active">首页</a></li>
|
||||
<li><a href="ea.html">EA推荐</a></li>
|
||||
<li><a href="vps.html">外汇VPS</a></li>
|
||||
<li><a href="tools.html">交易工具</a></li>
|
||||
<li><a href="about.html">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<section class="hero">
|
||||
<h1>📈 MT4外汇交易工具大全</h1>
|
||||
<p>精选EA智能交易、外汇VPS、交易指标和工具,助你提升交易效率</p>
|
||||
<div class="hero-badges">
|
||||
<span class="hero-badge">🤖 EA精选</span>
|
||||
<span class="hero-badge">🖥️ VPS推荐</span>
|
||||
<span class="hero-badge">📊 交易工具</span>
|
||||
<span class="hero-badge">✅ 实测验证</span>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div class="container">
|
||||
<h2 class="section-title">🔥 热门分类</h2>
|
||||
<div class="card-grid">
|
||||
<a href="ea.html" style="text-decoration:none;color:inherit;">
|
||||
<div class="card">
|
||||
<div class="card-icon blue">🤖</div>
|
||||
<h3>EA智能交易</h3>
|
||||
<p>精选稳定盈利的MT4 EA,包含趋势、网格、马丁等多种策略,附实测回测数据</p>
|
||||
<div class="card-meta"><span>12+ 款EA</span><span>📊 回测数据</span></div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="vps.html" style="text-decoration:none;color:inherit;">
|
||||
<div class="card">
|
||||
<div class="card-icon green">🖥️</div>
|
||||
<h3>外汇VPS推荐</h3>
|
||||
<p>低延迟、高稳定的外汇VPS评测,支持MT4/MT5 7x24小时挂机,附优惠码</p>
|
||||
<div class="card-meta"><span>5+ 服务商</span><span>⚡ 延迟测试</span></div>
|
||||
</div>
|
||||
</a>
|
||||
<a href="tools.html" style="text-decoration:none;color:inherit;">
|
||||
<div class="card">
|
||||
<div class="card-icon orange">🔧</div>
|
||||
<h3>交易工具</h3>
|
||||
<p>MT4指标、脚本、工具合集,包括资金管理、风险控制、交易日志等实用工具</p>
|
||||
<div class="card-meta"><span>20+ 工具</span><span>💎 免费下载</span></div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<h2 class="section-title">📊 为什么选择我们</h2>
|
||||
<div class="card-grid">
|
||||
<div class="card" style="box-shadow:none;border:none;">
|
||||
<div class="card-icon blue">✅</div>
|
||||
<h3>实盘验证</h3>
|
||||
<p>每款EA都经过实盘测试,不只是回测好看,真实账户跑过才推荐</p>
|
||||
</div>
|
||||
<div class="card" style="box-shadow:none;border:none;">
|
||||
<div class="card-icon green">📊</div>
|
||||
<h3>数据透明</h3>
|
||||
<p>提供完整的回测报告和实盘曲线,不夸大收益,不隐瞒风险</p>
|
||||
</div>
|
||||
<div class="card" style="box-shadow:none;border:none;">
|
||||
<div class="card-icon orange">⚡</div>
|
||||
<h3>VPS实测</h3>
|
||||
<p>所有推荐VPS都经过实际延迟测试,确保交易执行速度</p>
|
||||
</div>
|
||||
<div class="card" style="box-shadow:none;border:none;">
|
||||
<div class="card-icon purple">🔒</div>
|
||||
<h3>风险提示</h3>
|
||||
<p>每款产品都标注风险等级,不建议重仓,保护你的本金</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container" style="background:var(--card-bg);border-radius:var(--radius);margin-top:20px;">
|
||||
<h2 class="section-title">⚠️ 风险提示</h2>
|
||||
<div class="alert alert-warning">
|
||||
<strong>外汇交易有风险</strong>
|
||||
<p style="margin-top:8px;">外汇交易存在高风险,过往业绩不代表未来收益。EA和VPS只是工具,不能保证盈利。请根据自身风险承受能力谨慎投资,只用闲钱交易。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer-inner">
|
||||
<div><h4>📈 MT4工具站</h4><p style="font-size:14px;line-height:1.8;">专业的MT4外汇交易工具推荐站,所有产品经过实测验证。</p></div>
|
||||
<div><h4>快速导航</h4><ul><li><a href="ea.html">EA推荐</a></li><li><a href="vps.html">外汇VPS</a></li><li><a href="tools.html">交易工具</a></li></ul></div>
|
||||
<div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li><li><a href="#">免责声明</a></li></ul></div>
|
||||
</div>
|
||||
<div class="footer-bottom"><p>© 2026 MT4工具站 | 外汇交易有风险,投资需谨慎</p></div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,54 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>交易工具 - MT4指标/脚本/工具合集 | MT4工具站</title>
|
||||
<meta name="description" content="MT4指标、脚本、工具合集,包括资金管理、风险控制、交易日志等实用工具,免费下载。">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">📈</div>MT4工具站</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">首页</a></li>
|
||||
<li><a href="ea.html">EA推荐</a></li>
|
||||
<li><a href="vps.html">外汇VPS</a></li>
|
||||
<li><a href="tools.html" class="active">交易工具</a></li>
|
||||
<li><a href="about.html">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container-narrow">
|
||||
<div class="tutorial-header"><h1>🔧 交易工具合集</h1><div class="tutorial-meta"><span>20+ 实用工具</span><span class="difficulty easy">入门</span><span>💎 免费下载</span></div></div>
|
||||
<div class="tutorial-content">
|
||||
<h2>📊 工具分类</h2>
|
||||
<div class="card-grid">
|
||||
<div class="card"><div class="card-icon blue">📈</div><h3>技术指标</h3><p>自定义MT4指标,包括趋势、震荡、成交量等,提升图表分析效率</p><div class="card-meta"><span>8+ 指标</span><span>免费</span></div></div>
|
||||
<div class="card"><div class="card-icon green">💰</div><h3>资金管理</h3><p>仓位计算器、风险控制工具,帮你科学管理资金,避免重仓</p><div class="card-meta"><span>5+ 工具</span><span>免费</span></div></div>
|
||||
<div class="card"><div class="card-icon orange">📝</div><h3>交易日志</h3><p>自动记录交易日志,统计胜率、盈亏比、最大回撤等关键指标</p><div class="card-meta"><span>3+ 工具</span><span>免费</span></div></div>
|
||||
<div class="card"><div class="card-icon purple">⚡</div><h3>实用脚本</h3><p>一键平仓、批量挂单、移动止损等实用脚本,提升操作效率</p><div class="card-meta"><span>6+ 脚本</span><span>免费</span></div></div>
|
||||
</div>
|
||||
|
||||
<h2>🔥 热门工具</h2>
|
||||
<div class="table-wrap">
|
||||
<table>
|
||||
<tr><th>工具名称</th><th>类型</th><th>功能</th><th>下载</th></tr>
|
||||
<tr><td><strong>仓位计算器</strong></td><td>资金管理</td><td>根据风险比例自动计算手数</td><td>📥 免费</td></tr>
|
||||
<tr><td><strong>交易统计面板</strong></td><td>交易日志</td><td>实时显示胜率、盈亏、回撤</td><td>📥 免费</td></tr>
|
||||
<tr><td><strong>一键全平</strong></td><td>脚本</td><td>一键平掉所有持仓和挂单</td><td>📥 免费</td></tr>
|
||||
<tr><td><strong>移动止损脚本</strong></td><td>脚本</td><td>自动跟踪止损,保护利润</td><td>📥 免费</td></tr>
|
||||
<tr><td><strong>多周期趋势指标</strong></td><td>指标</td><td>显示多周期趋势方向</td><td>📥 免费</td></tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h2>📥 安装方法</h2>
|
||||
<div class="step"><div class="step-number">1</div><div class="step-content"><h4>下载工具文件</h4><p>下载.ex4或.mq4文件</p></div></div>
|
||||
<div class="step"><div class="step-number">2</div><div class="step-content"><h4>放入MT4目录</h4><p>MT4菜单 → 文件 → 打开数据文件夹 → MQL4 → Indicators(指标)或 Experts(EA)</p></div></div>
|
||||
<div class="step"><div class="step-number">3</div><div class="step-content"><h4>重启MT4</h4><p>重启MT4后在导航器中就能看到新工具</p></div></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer"><div class="footer-inner"><div><h4>📈 MT4工具站</h4><p style="font-size:14px;">专业的MT4外汇交易工具推荐站。</p></div><div><h4>快速导航</h4><ul><li><a href="ea.html">EA推荐</a></li><li><a href="vps.html">外汇VPS</a></li><li><a href="tools.html">交易工具</a></li></ul></div><div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li></ul></div></div><div class="footer-bottom"><p>© 2026 MT4工具站 | 外汇交易有风险,投资需谨慎</p></div></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,62 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>外汇VPS推荐 - 低延迟高稳定 | MT4工具站</title>
|
||||
<meta name="description" content="精选低延迟、高稳定的外汇VPS,支持MT4/MT5 7x24小时挂机,附实测延迟数据和优惠码。">
|
||||
<link rel="stylesheet" href="assets/style.css">
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div class="navbar-inner">
|
||||
<a href="index.html" class="logo"><div class="logo-icon">📈</div>MT4工具站</a>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">首页</a></li>
|
||||
<li><a href="ea.html">EA推荐</a></li>
|
||||
<li><a href="vps.html" class="active">外汇VPS</a></li>
|
||||
<li><a href="tools.html">交易工具</a></li>
|
||||
<li><a href="about.html">关于</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container-narrow">
|
||||
<div class="tutorial-header"><h1>🖥️ 外汇VPS推荐</h1><div class="tutorial-meta"><span>5+ 精选服务商</span><span class="difficulty easy">入门</span><span>⚡ 实测延迟</span></div></div>
|
||||
<div class="tutorial-content">
|
||||
<div class="alert alert-success"><strong>✅ 为什么需要外汇VPS?</strong><p style="margin-top:8px;">EA交易需要7x24小时运行,家用电脑可能断电、断网。外汇VPS专门优化了到经纪商服务器的延迟,确保交易执行速度。</p></div>
|
||||
|
||||
<h2>📊 VPS对比</h2>
|
||||
<div class="table-wrap">
|
||||
<table>
|
||||
<tr><th>服务商</th><th>延迟</th><th>价格/月</th><th>特点</th><th>推荐度</th></tr>
|
||||
<tr><td><strong>FXVM</strong></td><td>1-5ms</td><td>$15起</td><td>专门外汇VPS,纽约/伦敦节点</td><td>⭐⭐⭐⭐⭐</td></tr>
|
||||
<tr><td><strong>CheapVPS</strong></td><td>5-15ms</td><td>$5起</td><td>性价比高,多节点</td><td>⭐⭐⭐⭐</td></tr>
|
||||
<tr><td><strong>阿里云</strong></td><td>30-80ms</td><td>¥30起</td><td>国内访问快,适合亚洲经纪商</td><td>⭐⭐⭐</td></tr>
|
||||
<tr><td><strong>腾讯云</strong></td><td>30-80ms</td><td>¥30起</td><td>稳定可靠,海外节点多</td><td>⭐⭐⭐</td></tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<h2>🎯 选购要点</h2>
|
||||
<ul>
|
||||
<li><strong>延迟优先</strong>:选择离你经纪商服务器最近的节点</li>
|
||||
<li><strong>稳定性</strong>:Uptime至少99.9%,避免频繁掉线</li>
|
||||
<li><strong>配置够用</strong>:1核1G就能跑MT4,不需要太高配置</li>
|
||||
<li><strong>Windows系统</strong>:MT4需要Windows,选Windows Server</li>
|
||||
<li><strong>自助重启</strong>:确保可以随时重启VPS</li>
|
||||
</ul>
|
||||
|
||||
<h2>⚡ 延迟测试方法</h2>
|
||||
<div class="code-block"># 在VPS上ping经纪商服务器
|
||||
ping broker-server.com -t
|
||||
|
||||
# 查看平均延迟,越低越好
|
||||
# 纽约经纪商:选纽约节点,目标<5ms
|
||||
# 伦敦经纪商:选伦敦节点,目标<5ms
|
||||
# 亚洲经纪商:选香港/新加坡,目标<30ms</div>
|
||||
|
||||
<div class="alert alert-info" style="margin-top:24px;"><strong>💡 省钱技巧</strong><ul style="margin-top:8px;"><li>年付通常比月付便宜30-50%</li><li>关注黑五、新年等促销活动</li><li>使用Affiliate链接可能获得额外优惠</li><li>新用户首月通常有折扣</li></ul></div>
|
||||
</div>
|
||||
</div>
|
||||
<footer class="footer"><div class="footer-inner"><div><h4>📈 MT4工具站</h4><p style="font-size:14px;">专业的MT4外汇交易工具推荐站。</p></div><div><h4>快速导航</h4><ul><li><a href="ea.html">EA推荐</a></li><li><a href="vps.html">外汇VPS</a></li><li><a href="tools.html">交易工具</a></li></ul></div><div><h4>关于</h4><ul><li><a href="about.html">关于我们</a></li></ul></div></div><div class="footer-bottom"><p>© 2026 MT4工具站 | 外汇交易有风险,投资需谨慎</p></div></footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user