forked from yutiansut/QUANTAXIS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·153 lines (112 loc) · 4.68 KB
/
index.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!doctype html>
<!--
A presentation done entirely in Markdown, as found in extras/markdown/.
By: @henrikingo
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>QUANTAXIS </title>
<meta name="description" content="Authoring impress.js presentations in Markdown" />
<meta name="author" content="Henrik Ingo" />
<link rel="stylesheet" href="http://pic.yutiansut.com/qtcreator_light.css">
<!--
Styles specific for this example presentation.
-->
<link href="http://pic.yutiansut.com/markdown-slides.css" rel="stylesheet" />
<link href="http://pic.yutiansut.com/devopsy.css" rel="stylesheet" />
<link href="http://pic.yutiansut.com/effects.css" rel="stylesheet" />
</head>
<body class="impress-not-supported">
<div class="fallback-message">
<p>Your browser <b>doesn't support the features required</b> by impress.js, so you are presented with a simplified version of this presentation.</p>
<p>For the best experience please use the latest <b>Chrome</b>, <b>Safari</b> or <b>Firefox</b> browser.</p>
</div>
<div id="impress" data-transition-duration="1000">
<div id="markdown" class="step slide markdown" data-rel-x="0" data-rel-y="900">
# QUANTAXIS
## Quantitative Financial FrameWork
* 核心功能
* 解决方案
* 社区
-----
# 核心功能
* 数据服务
* 分析服务
* 可扩展事件驱动框架
* 回测服务
* 多市场实盘接入
* 网站HTTP服务
</div>
<div id="title-slide" class="step slide title markdown" data-x="2000" data-y="5000">
# 数据服务
## 提供历史数据运维和实时行情分发
</div>
<div id="title-slide1" class="step slide markdown" data-rotate="-85" data-x="4000" data-y="5000">
# 历史数据运维(落地数据库)
- A股市场 日线/分钟线/tick 行情
- A股市场 28年财务数据
- 期货市场 日线/分钟线/tick行情
- 期权/指数/基金/ETF/汇率/国际期货/虚拟货币市场
- 港股/美股
</div>
<div id="title-slide2" class="step slide markdown" data-rotate="-25" data-x="6000" data-y="5000">
# 实时行情分发
- 免费的基于爬虫的实时数据
- 付费的基于API的实时数据
- 本地行情总线 分发给多个策略账户
</div>
<div id="tilted-slide" class="step slide markdown" data-rotate="-85" data-x="2000" data-y="2000" data-z="1000" data-scale="4">
# 分析服务
- QUANTAXIS.QA_DATASTRUCT 自定义的多市场多品种行情类
- QUANTAXIS.QA_DATASTRUCT_Indicator 多品种多市场的指标类
</div>
<script type="text/javascript">
var enableBwCss = function(){
disableDevopsCss();
disableEffectsCss();
};
var enableDevopsCss = function(){
document.body.classList.add("devopsy");
disableEffectsCss();
};
var disableDevopsCss = function(){
document.body.classList.remove("devopsy");
};
var enableEffectsCss = function(){
document.body.classList.add("effects");
disableDevopsCss();
};
var disableEffectsCss = function(){
document.body.classList.remove("effects");
};
</script>
<div id="js-slide" class="step slide" data-rotate="0" data-x="4000" data-y="5000">
<h1>CSS & JavaScript magic</h1>
<p>Just to emphasize my point, this last slide allows you to use a JavaScript powered menu to
toggle the CSS style:</p>
<p><a href="#" onclick="enableBwCss();" class="css-menu-bw">Black & white</a>,
<a href="#" onclick="enableDevopsCss();" class="css-menu-devopsy">Devopsy</a>,
<a href="#" onclick="enableEffectsCss();" class="css-menu-effects">Effects overload</a></p>
<p>Simplicity of Markdown married with full power of Impress.js!</p>
</div>
<div id="overview" class="step" data-x="5000" data-y="4000" data-scale="10" style="pointer-events: none;" data-rotate="5">
</div>
</div>
<div id="impress-toolbar"></div>
<div id="impress-help"></div>
<!-- Extra modules
Load highlight.js, mermaid.js and markdown.js from extras.
See also src/plugins/extras/extras.js -->
<script type="text/javascript" src="https://cdn.bootcss.com/highlight.js/9.13.1/highlight.min.js"></script>
<script type="text/javascript" src="https://cdn.bootcss.com/mermaid/8.0.0-rc.8/mermaid.min.js"></script>
<script type="text/javascript" src="http://pic.yutiansut.com/markdown.js"></script>
<!--
To make all described above really work, you need to include impress.js in the page.
You also need to call a `impress().init()` function to initialize impress.js presentation.
And you should do it in the end of your document.
-->
<script type="text/javascript" src="http://pic.yutiansut.com/impress.js"></script>
<script>impress().init();enableEffectsCss()</script>
</body>
</html>