octobot-script 0.0.28__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. octobot_script-0.0.28/CHANGELOG.md +123 -0
  2. octobot_script-0.0.28/LICENSE +674 -0
  3. octobot_script-0.0.28/MANIFEST.in +7 -0
  4. octobot_script-0.0.28/PKG-INFO +128 -0
  5. octobot_script-0.0.28/README.md +93 -0
  6. octobot_script-0.0.28/octobot_script/__init__.py +59 -0
  7. octobot_script-0.0.28/octobot_script/ai/__init__.py +14 -0
  8. octobot_script-0.0.28/octobot_script/ai/agents.py +60 -0
  9. octobot_script-0.0.28/octobot_script/ai/environments.py +172 -0
  10. octobot_script-0.0.28/octobot_script/ai/models.py +18 -0
  11. octobot_script-0.0.28/octobot_script/api/__init__.py +20 -0
  12. octobot_script-0.0.28/octobot_script/api/data_fetching.py +57 -0
  13. octobot_script-0.0.28/octobot_script/api/execution.py +28 -0
  14. octobot_script-0.0.28/octobot_script/api/ploting.py +29 -0
  15. octobot_script-0.0.28/octobot_script/cli.py +64 -0
  16. octobot_script-0.0.28/octobot_script/config/config_mock.json +44 -0
  17. octobot_script-0.0.28/octobot_script/config/logging_config.ini +32 -0
  18. octobot_script-0.0.28/octobot_script/constants.py +19 -0
  19. octobot_script-0.0.28/octobot_script/internal/__init__.py +16 -0
  20. octobot_script-0.0.28/octobot_script/internal/backtester_trading_mode.py +41 -0
  21. octobot_script-0.0.28/octobot_script/internal/logging_util.py +46 -0
  22. octobot_script-0.0.28/octobot_script/internal/octobot_mocks.py +92 -0
  23. octobot_script-0.0.28/octobot_script/internal/runners.py +78 -0
  24. octobot_script-0.0.28/octobot_script/model/__init__.py +18 -0
  25. octobot_script-0.0.28/octobot_script/model/backtest_plot.py +139 -0
  26. octobot_script-0.0.28/octobot_script/model/backtest_result.py +58 -0
  27. octobot_script-0.0.28/octobot_script/model/errors.py +18 -0
  28. octobot_script-0.0.28/octobot_script/model/strategy.py +19 -0
  29. octobot_script-0.0.28/octobot_script/resources/__init__.py +24 -0
  30. octobot_script-0.0.28/octobot_script/resources/reports/css/style.css +44 -0
  31. octobot_script-0.0.28/octobot_script/resources/reports/css/w2ui_template.css +37 -0
  32. octobot_script-0.0.28/octobot_script/resources/reports/default_report_template.html +59 -0
  33. octobot_script-0.0.28/octobot_script/resources/reports/header.html +36 -0
  34. octobot_script-0.0.28/octobot_script/resources/reports/js/common.js +3 -0
  35. octobot_script-0.0.28/octobot_script/resources/reports/js/data.js +1 -0
  36. octobot_script-0.0.28/octobot_script/resources/reports/js/graphs.js +197 -0
  37. octobot_script-0.0.28/octobot_script/resources/reports/js/tables.js +140 -0
  38. octobot_script-0.0.28/octobot_script/resources/reports/js/texts.js +42 -0
  39. octobot_script-0.0.28/octobot_script/resources/reports/scripts.html +15 -0
  40. octobot_script-0.0.28/octobot_script.egg-info/PKG-INFO +128 -0
  41. octobot_script-0.0.28/octobot_script.egg-info/SOURCES.txt +53 -0
  42. octobot_script-0.0.28/octobot_script.egg-info/dependency_links.txt +1 -0
  43. octobot_script-0.0.28/octobot_script.egg-info/entry_points.txt +2 -0
  44. octobot_script-0.0.28/octobot_script.egg-info/not-zip-safe +1 -0
  45. octobot_script-0.0.28/octobot_script.egg-info/requires.txt +6 -0
  46. octobot_script-0.0.28/octobot_script.egg-info/top_level.txt +2 -0
  47. octobot_script-0.0.28/requirements.txt +15 -0
  48. octobot_script-0.0.28/setup.cfg +4 -0
  49. octobot_script-0.0.28/setup.py +72 -0
  50. octobot_script-0.0.28/tests/api/__init__.py +16 -0
  51. octobot_script-0.0.28/tests/api/test_data_fetching.py +71 -0
  52. octobot_script-0.0.28/tests/api/test_execution.py +44 -0
  53. octobot_script-0.0.28/tests/functionnal/__init__.py +35 -0
  54. octobot_script-0.0.28/tests/functionnal/example_scripts/__init__.py +16 -0
  55. octobot_script-0.0.28/tests/functionnal/example_scripts/test_precomputed_vs_iteration_rsi.py +132 -0
@@ -0,0 +1,123 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [0.0.28] - 2025-12-10
8
+ ### Updated
9
+ - OctoBot to 2.0.15
10
+
11
+ ## [0.0.27] - 2025-10-18
12
+ ### Updated
13
+ - OctoBot to 2.0.13
14
+
15
+ ## [0.0.26] - 2025-06-09
16
+ ### Updated
17
+ - OctoBot to 2.0.12
18
+
19
+ ## [0.0.25] - 2025-06-06
20
+ ### Updated
21
+ - OctoBot to 2.0.11
22
+
23
+ ## [0.0.24] - 2025-05-25
24
+ ### Updated
25
+ - OctoBot to 2.0.10
26
+
27
+ ## [0.0.23] - 2025-03-10
28
+ ### Updated
29
+ - OctoBot to 2.0.9
30
+
31
+ ## [0.0.22] - 2025-01-29
32
+ ### Updated
33
+ - OctoBot to 2.0.8
34
+
35
+ ## [0.0.21] - 2024-10-28
36
+ ### Updated
37
+ - OctoBot to 2.0.7
38
+ ### Fixed
39
+ - Indicators plotting
40
+
41
+ ## [0.0.20] - 2024-10-11
42
+ ### Updated
43
+ - OctoBot to 2.0.6
44
+
45
+ ## [0.0.19] - 2024-10-01
46
+ ### Updated
47
+ - OctoBot to 2.0.5
48
+
49
+ ## [0.0.18] - 2024-07-10
50
+ ### Updated
51
+ - OctoBot to 2.0.1
52
+
53
+ ## [0.0.17] - 2024-05-01
54
+ ### Updated
55
+ - OctoBot to 1.0.10
56
+
57
+ ## [0.0.16] - 2023-01-14
58
+ ### Updated
59
+ - OctoBot to 1.0.6
60
+
61
+ ## [0.0.15] - 2023-12-15
62
+ ### Updated
63
+ - OctoBot to 1.0.4
64
+
65
+ ## [0.0.14] - 2023-10-30
66
+ ### Updated
67
+ - OctoBot to 1.0.2
68
+
69
+ ## [0.0.13] - 2023-10-09
70
+ ### Updated
71
+ - Renamed from OctoBot Pro to OctoBot Script
72
+
73
+ ## [0.0.12] - 2023-09-27
74
+ ### Added
75
+ - Dockerfile
76
+ - Docker image on dockerhub
77
+ ### Update
78
+ - Update to OctoBot 1.0.0
79
+
80
+ ## [0.0.11] - 2023-09-23
81
+ ### Update
82
+ - Update to OctoBot 0.4.54
83
+
84
+ ## [0.0.10] - 2022-05-13
85
+ ### Update
86
+ - Added python 3.9 and 3.10 support
87
+ - Update to OctoBot 0.4.50
88
+
89
+ ## [0.0.9] - 2022-05-02
90
+ ### Update
91
+ - Update to OctoBot 0.4.49
92
+
93
+ ## [0.0.8] - 2022-03-24
94
+ ### Update
95
+ - Update to OctoBot 0.4.45
96
+
97
+ ## [0.0.7] - 2022-03-07
98
+ ### Update
99
+ - Update to OctoBot 0.4.41
100
+
101
+ ## [0.0.6] - 2022-01-21
102
+ ### Fix
103
+ - Typeerror and report issues
104
+
105
+ ## [0.0.5] - 2022-01-14
106
+ ### Fix
107
+ - Installation: remove cryptofeed requirement in OctoBot
108
+
109
+ ## [0.0.4] - 2022-30-12
110
+ ### Added
111
+ - Report generation time
112
+
113
+ ## [0.0.3] - 2022-29-12
114
+ ### Fixed
115
+ - Install
116
+
117
+ ## [0.0.2] - 2022-29-12
118
+ ### Updated
119
+ - Install method
120
+
121
+ ## [0.0.1] - 2022-10-12
122
+ ### Added
123
+ - OctoBot Pro alpha version