Skip to content

Commit d8c0f4f

Browse files
author
Ekliptor
committed
updated dependencies
1 parent 546edec commit d8c0f4f

File tree

8 files changed

+2531
-188
lines changed

8 files changed

+2531
-188
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The full strategy documentation: https://wolfbot.org/strategy-docs/
4141

4242
### Requirements
4343
```
44-
NodeJS >= 12
44+
NodeJS >= 12 && <= 14
4545
MongoDB >= 4.0
4646
TypeScript >= 3.5
4747
yarn >= 1.9.4 (npm should work too, but no support given if you run into errors)

config/TradingViewSignalOnly.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
22
"data": [
33
{
4-
"exchanges": ["OKEX"],
4+
"exchanges": [
5+
"OKEX"
6+
],
57
"marginTrading": true,
6-
"tradeTotalBtc": 150.0,
7-
"reduceTradeAmountPercent": 0.0,
8+
"tradeTotalBtc": 150,
9+
"reduceTradeAmountPercent": 0,
810
"warmUpMin": 0,
911
"notifyTrades": false,
1012
"updateIndicatorsOnTrade": false,
@@ -33,4 +35,4 @@
3335
}
3436
}
3537
]
36-
}
38+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"async": "^2.6.0",
2626
"autobahn": "^17.5.1",
2727
"binance-api-node": "^0.8.18",
28-
"ccxt": "^1.39.33",
28+
"ccxt": "^1.53.30",
2929
"chart.js": "^2.7.1",
3030
"cheerio": "^0.22.0",
3131
"currencies-exchange-rates": "^1.0.2",

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
77
<title>WolfBot</title>
8-
<link rel="stylesheet" href="/css/style.css?v=9">
8+
<link rel="stylesheet" href="/css/style.css?v=10">
99
<link rel="manifest" href="/manifest.json">
1010
<link rel="icon" type="image/png" href="/icons/fav/icon_114.png">
1111
<link rel="apple-touch-icon" type="image/png" href="/icons/fav/icon_57.png">
@@ -33,7 +33,7 @@
3333
<script src="/js/libs/helper.js"></script>
3434
<script src="/js/libs/browserutils.js"></script>
3535
<script src="/js/libs/tv/charting_library.min.js"></script>
36-
<script src="/js/bundle.js?v=9"></script>
36+
<script src="/js/bundle.js?v=10"></script>
3737

3838
<script type="text/javascript">
3939
window.addEventListener('DOMContentLoaded', function () {

public/js/constants.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Indicators/ADL.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
// TODO add Accumulation Distribution Line
33
// a more advanced OBV taking high/low/close + volume into account
4+
// multiplier: positive if close in upper half, negative if close in lower half
45
// https://school.stockcharts.com/doku.php?id=technical_indicators:accumulation_distribution_line
56
// not in talib

views/home.html

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,6 @@ <h2 class="bottom20 bgTxt">{tr:firstSteps}</h2>
8282
<img src="/images/github-ico.png" width="32" height="32" alt="{tr:github}" title="{tr:github}"> {tr:github}
8383
</a>
8484
</li>
85-
<li>{tr:visitStratTutorials}{tr:colon}<br>
86-
<a target="_blank" href="https://forum.wolfbot.org/forums/strategy-development.17/">
87-
<img src="/icons/fav/icon_57.png" width="32" height="32" alt="{tr:siteName}" title="{tr:siteName}"> {tr:strategyDev}
88-
</a>
89-
</li>
9085
</ul>
9186
</div>
9287
</div>

0 commit comments

Comments
 (0)