Skip to content

Commit f77594b

Browse files
authored
Merge pull request #2012 from Drakkar-Software/dev
master merge
2 parents 316f552 + 128c692 commit f77594b

File tree

109 files changed

+1667
-583
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+1667
-583
lines changed

.github/workflows/preview-close.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/preview-open.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
*It is strongly advised to perform an update of your tentacles after updating OctoBot. (start.py tentacles --install --all)*
88

9+
## [0.4.6] - 2022-08-23
10+
### Added
11+
- [Trading] Futures trading
12+
- [Exchange] Bitget
13+
- [Trading] Copy trading
14+
- [Beta] Beta environment
15+
### Updated
16+
- [Community] Migrate to updated community website
17+
### Fixed
18+
- [Websockets] Multiple issues related to candles refresh
19+
920
## [0.4.5] - 2022-06-12
1021
### Fixed
1122
- [Trading modes] Stop loss are not created after instantly filled limit orders

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OctoBot [0.4.5](https://octobot.click/gh-changelog)
1+
# OctoBot [0.4.6](https://octobot.click/gh-changelog)
22
[![PyPI](https://img.shields.io/pypi/v/OctoBot.svg)](https://octobot.click/gh-pypi)
33
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/e07fb190156d4efb8e7d07aaa5eff2e1)](https://app.codacy.com/gh/Drakkar-Software/OctoBot?utm_source=github.com&utm_medium=referral&utm_content=Drakkar-Software/OctoBot&utm_campaign=Badge_Grade_Dashboard)[![Downloads](https://pepy.tech/badge/octobot/month)](https://pepy.tech/project/octobot)
44
[![Dockerhub](https://img.shields.io/docker/pulls/drakkarsoftware/octobot.svg)](https://octobot.click/gh-dockerhub)
@@ -101,10 +101,6 @@ In short :
101101

102102
- Get 60-day free Digital Ocean hosting by registering with [OctoBot referral link](https://m.do.co/c/40c9737100b1).
103103

104-
[![Develop on Okteto](https://okteto.com/develop-okteto.svg)](https://octobot.click/gh-okteto-deploy)
105-
106-
- Free 24-hour demo repeatable indefinitely on Okteto simply using your Github account
107-
108104
## Exchanges
109105
[![Binance](../assets/binance-logo.png)](https://octobot.click/gh-binance)
110106
[![Binance](../assets/ftx-logo.png)](https://octobot.click/gh-ftx)
@@ -145,8 +141,4 @@ See [LICENSE](https://octobot.click/gh-license) to see the full text.
145141
<td>Special thanks to <a href="https://m.do.co/c/40c9737100b1" target="_blank">DigitalOcean</a> for hosting OctoBot's open source tentacles and community websites.</td>
146142
<td><a href="https://m.do.co/c/40c9737100b1" target="_blank"><p align="center"><img src="https://opensource.nyc3.cdn.digitaloceanspaces.com/attribution/assets/PNG/DO_Logo_Horizontal_Blue.png?utm_medium=opensource&utm_source=OctoBot"></p></a></td>
147143
</tr>
148-
<tr>
149-
<td>Thanks to <a href="https://okteto.com/" target="_blank">Okteto</a> for allowing OctoBot developers to test their changes online with a simple button.</td>
150-
<td><a href="https://okteto.com/" target="_blank"><p align="center"><img src="https://github.com/Drakkar-Software/OctoBot/blob/assets/okteto.png?raw=true"></p></a></td>
151-
</tr>
152144
</table>

dev_requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
pytest>=6.1.1
1+
pytest>=7.1
2+
pytest-asyncio>=0.19
23
pytest-cov
3-
pytest-asyncio==0.18.3
44
pytest-timeout
55

66
mock>=4.0.1

octobot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of OctoBot (https://github.com/Drakkar-Software/OctoBot)
2-
# Copyright (c) 2021 Drakkar-Software, All rights reserved.
2+
# Copyright (c) 2022 Drakkar-Software, All rights reserved.
33
#
44
# OctoBot is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU General Public License

octobot/api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of OctoBot (https://github.com/Drakkar-Software/OctoBot)
2-
# Copyright (c) 2021 Drakkar-Software, All rights reserved.
2+
# Copyright (c) 2022 Drakkar-Software, All rights reserved.
33
#
44
# OctoBot is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU General Public License

octobot/api/backtesting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of OctoBot (https://github.com/Drakkar-Software/OctoBot)
2-
# Copyright (c) 2021 Drakkar-Software, All rights reserved.
2+
# Copyright (c) 2022 Drakkar-Software, All rights reserved.
33
#
44
# OctoBot is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU General Public License

octobot/api/strategy_optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of OctoBot (https://github.com/Drakkar-Software/OctoBot)
2-
# Copyright (c) 2021 Drakkar-Software, All rights reserved.
2+
# Copyright (c) 2022 Drakkar-Software, All rights reserved.
33
#
44
# OctoBot is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU General Public License

octobot/api/updater.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of OctoBot (https://github.com/Drakkar-Software/OctoBot)
2-
# Copyright (c) 2021 Drakkar-Software, All rights reserved.
2+
# Copyright (c) 2022 Drakkar-Software, All rights reserved.
33
#
44
# OctoBot is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU General Public License

0 commit comments

Comments
 (0)