Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekliptor committed Jul 19, 2021
1 parent 546edec commit d8c0f4f
Show file tree
Hide file tree
Showing 8 changed files with 2,531 additions and 188 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The full strategy documentation: https://wolfbot.org/strategy-docs/

### Requirements
```
NodeJS >= 12
NodeJS >= 12 && <= 14
MongoDB >= 4.0
TypeScript >= 3.5
yarn >= 1.9.4 (npm should work too, but no support given if you run into errors)
Expand Down
10 changes: 6 additions & 4 deletions config/TradingViewSignalOnly.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"data": [
{
"exchanges": ["OKEX"],
"exchanges": [
"OKEX"
],
"marginTrading": true,
"tradeTotalBtc": 150.0,
"reduceTradeAmountPercent": 0.0,
"tradeTotalBtc": 150,
"reduceTradeAmountPercent": 0,
"warmUpMin": 0,
"notifyTrades": false,
"updateIndicatorsOnTrade": false,
Expand Down Expand Up @@ -33,4 +35,4 @@
}
}
]
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"async": "^2.6.0",
"autobahn": "^17.5.1",
"binance-api-node": "^0.8.18",
"ccxt": "^1.39.33",
"ccxt": "^1.53.30",
"chart.js": "^2.7.1",
"cheerio": "^0.22.0",
"currencies-exchange-rates": "^1.0.2",
Expand Down
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
<title>WolfBot</title>
<link rel="stylesheet" href="/css/style.css?v=9">
<link rel="stylesheet" href="/css/style.css?v=10">
<link rel="manifest" href="/manifest.json">
<link rel="icon" type="image/png" href="/icons/fav/icon_114.png">
<link rel="apple-touch-icon" type="image/png" href="/icons/fav/icon_57.png">
Expand Down Expand Up @@ -33,7 +33,7 @@
<script src="/js/libs/helper.js"></script>
<script src="/js/libs/browserutils.js"></script>
<script src="/js/libs/tv/charting_library.min.js"></script>
<script src="/js/bundle.js?v=9"></script>
<script src="/js/bundle.js?v=10"></script>

<script type="text/javascript">
window.addEventListener('DOMContentLoaded', function () {
Expand Down
2 changes: 1 addition & 1 deletion public/js/constants.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/Indicators/ADL.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

// TODO add Accumulation Distribution Line
// a more advanced OBV taking high/low/close + volume into account
// multiplier: positive if close in upper half, negative if close in lower half
// https://school.stockcharts.com/doku.php?id=technical_indicators:accumulation_distribution_line
// not in talib
5 changes: 0 additions & 5 deletions views/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,6 @@ <h2 class="bottom20 bgTxt">{tr:firstSteps}</h2>
<img src="/images/github-ico.png" width="32" height="32" alt="{tr:github}" title="{tr:github}"> {tr:github}
</a>
</li>
<li>{tr:visitStratTutorials}{tr:colon}<br>
<a target="_blank" href="https://forum.wolfbot.org/forums/strategy-development.17/">
<img src="/icons/fav/icon_57.png" width="32" height="32" alt="{tr:siteName}" title="{tr:siteName}"> {tr:strategyDev}
</a>
</li>
</ul>
</div>
</div>
Expand Down
Loading

0 comments on commit d8c0f4f

Please sign in to comment.