-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
191 lines (161 loc) · 7.68 KB
/
index.html
File metadata and controls
191 lines (161 loc) · 7.68 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Debut 一 Environment for developing and launching trading strategies</title>
<meta name="description" content="This is your trading debut">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Environment for developing and launching trading strategies">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta name="description" content="This is your trading debut">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://debutjs.io/">
<meta property="og:type" content="website">
<meta property="og:title" content="Debut 一 Environment for developing and launching trading strategies">
<meta property="og:description" content="This is your trading debut">
<meta property="og:image" content="https://debutjs.io/assets/preview.gif">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="debutjs.io">
<meta property="twitter:url" content="https://debutjs.io/">
<meta name="twitter:title" content="Debut 一 Environment for developing and launching trading strategies">
<meta name="twitter:description" content="This is your trading debut">
<meta name="twitter:image" content="https://debutjs.io/assets/preview.gif">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Dark-Light Switch -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@3/dist/docsify-themeable/style.min.css" type="text/css">
<!-- docsify-themeable styles-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css" title="dark">
<!-- Custom Theme -->
<style>
:root {
--theme-color: #ffc700;
/* Content */
--strong-color: #ffc700;
--link-color: #ffc700;
--link-color--hover: #ff9100;
/* Notice */
--notice-tip-border-color: #ffc700;
/* Marked & Selected */
--selection-color: #a58100;
--mark-background: #a58100;
--mark-color: white;
}
/* Disable mask */
.mask {
display: none;
}
.cover.has-mask::before, .cover.has-mask::after {
display: none;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Debut',
repo: 'https://github.com/debut-js/Strategies',
loadNavbar: false, // _navbar.md definiert die Navbar. Kann fuer jedes Verzeichnis definiert werden
loadSidebar: false, // _sidebar.md definiert die Sidebar. Kann fuer jedes Verzeichnis definiert werden
// load from _footer.md
loadFooter: true,
subMaxLevel: 2, // Steht nichts in _sidebar.md drin, wird jeweils automatisch das Markdown-File geparst mit der Tiefe 2
//Logo
// logo: '/assets/logo_full_transparent.png',
//Coverpage
coverpage: true,
coverpage: 'cover.md', // Custom file name
// Optionen fuer Suche
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: 'auto',
placeholder: 'Search',
noData: 'No data found',
// Headline depth, 1 - 6
depth: 2,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
// To avoid search index collision
// between multiple websites under the same domain
namespace: '',
},
// Optionen fuer Copy-Code
copyCode: {
buttonText: 'Copy',
errorText: 'Couldn\'t copy text',
successText: 'Text copied'
},
// Optionen fuer Tabbing
tabs: {
persist: true, // default
sync: true, // default
theme: 'material', // default
tabComments: true, // default
tabHeadings: true // default
},
// Optionen fuer PlantUML Import
plantuml: {
skin: 'classic',
serverPath: 'http://localhost:10001/png/'
},
// Optionen fuer Alerts
'flexible-alerts': {
style: 'flat', // Default Style Setting ist Callout (koennte auch flat sein)
note: {
label: "Note"
},
tip: {
label: "Tip"
},
warning: {
label: "Warning"
},
danger: {
label: "Danger"
}
},
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<!-- Copy Code Import // https://github.com/jperasmus/docsify-copy-code/blob/master/README.md -->
<script src="https://unpkg.com/docsify-copy-code@2"></script>
<!-- Tabs-Feature Import // https://jhildenbiddle.github.io/docsify-tabs/#/ -->
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<!-- PlantUML Feature Import // https://github.com/imyelo/docsify-plantuml -->
<script src="//unpkg.com/docsify-plantuml/dist/docsify-plantuml.min.js"></script>
<!-- PDF-Embedding Import // https://github.com/lazypanda10117/docsify-pdf-embed -->
<script src="https://unpkg.com/docsify-plugin-flexible-alerts"></script>
<!-- Emoji - Plugin Import // https://docsify.js.org/#/plugins?id=emoji -->
<script src="//unpkg.com/docsify/lib/plugins/emoji.min.js"></script>
<!-- Prism -->
<script src="//cdn.jsdelivr.net/npm/docsify-prism@latest/dist/docsify-prism.min.js"></script>
<!-- Footer -->
<script src="//cdn.jsdelivr.net/npm/@alertbox/docsify-footer/dist/docsify-footer.min.js"></script>
<!-- Syntax Hightlightning mit PRISM // Weiteres unter https://github.com/PrismJS/prism/tree/gh-pages/components-->
<script src="//unpkg.com/prismjs@1.15.0/components/prism-javascript.js"></script>
<script src="//unpkg.com/prismjs@1.15.0/components/prism-typescript.js"></script>
<!-- Suche Import // https://docsify.js.org/#/plugins?id=full-text-search -->
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(89571622, "init", {
clickmap:true,
trackLinks:true,
accurateTrackBounce:true
});
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/89571622" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
</body>
</html>