sigma-terminal 2.0.2__tar.gz → 3.3.0__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 (54) hide show
  1. {sigma_terminal-2.0.2 → sigma_terminal-3.3.0}/.gitignore +53 -30
  2. sigma_terminal-3.3.0/LICENSE +25 -0
  3. sigma_terminal-3.3.0/PKG-INFO +583 -0
  4. sigma_terminal-3.3.0/README.md +523 -0
  5. sigma_terminal-3.3.0/pyproject.toml +106 -0
  6. sigma_terminal-3.3.0/scripts/build.sh +61 -0
  7. sigma_terminal-3.3.0/scripts/create_app.py +366 -0
  8. sigma_terminal-3.3.0/sigma/__init__.py +185 -0
  9. sigma_terminal-3.3.0/sigma/__main__.py +6 -0
  10. sigma_terminal-3.3.0/sigma/analytics/__init__.py +636 -0
  11. sigma_terminal-3.3.0/sigma/app.py +856 -0
  12. sigma_terminal-3.3.0/sigma/backtest.py +372 -0
  13. sigma_terminal-3.3.0/sigma/charts.py +407 -0
  14. sigma_terminal-3.3.0/sigma/cli.py +465 -0
  15. sigma_terminal-3.3.0/sigma/comparison.py +611 -0
  16. sigma_terminal-3.3.0/sigma/config.py +366 -0
  17. sigma_terminal-3.3.0/sigma/core/__init__.py +5 -0
  18. sigma_terminal-3.3.0/sigma/core/engine.py +493 -0
  19. sigma_terminal-3.3.0/sigma/core/intent.py +595 -0
  20. sigma_terminal-3.3.0/sigma/core/models.py +544 -0
  21. sigma_terminal-3.3.0/sigma/data/__init__.py +681 -0
  22. sigma_terminal-3.3.0/sigma/data/models.py +130 -0
  23. sigma_terminal-3.3.0/sigma/llm.py +639 -0
  24. sigma_terminal-3.3.0/sigma/monitoring.py +666 -0
  25. sigma_terminal-3.3.0/sigma/portfolio.py +697 -0
  26. sigma_terminal-3.3.0/sigma/reporting.py +658 -0
  27. sigma_terminal-3.3.0/sigma/robustness.py +675 -0
  28. sigma_terminal-3.3.0/sigma/setup.py +426 -0
  29. sigma_terminal-3.3.0/sigma/strategy.py +753 -0
  30. {sigma_terminal-2.0.2 → sigma_terminal-3.3.0}/sigma/tools/backtest.py +23 -5
  31. sigma_terminal-3.3.0/sigma/tools.py +617 -0
  32. sigma_terminal-3.3.0/sigma/visualization.py +766 -0
  33. sigma_terminal-2.0.2/.env.example +0 -47
  34. sigma_terminal-2.0.2/LICENSE +0 -42
  35. sigma_terminal-2.0.2/PKG-INFO +0 -222
  36. sigma_terminal-2.0.2/README.md +0 -181
  37. sigma_terminal-2.0.2/homebrew/README.md +0 -375
  38. sigma_terminal-2.0.2/pyproject.toml +0 -79
  39. sigma_terminal-2.0.2/scripts/build.sh +0 -59
  40. sigma_terminal-2.0.2/sigma/__init__.py +0 -9
  41. sigma_terminal-2.0.2/sigma/__main__.py +0 -6
  42. sigma_terminal-2.0.2/sigma/app.py +0 -947
  43. sigma_terminal-2.0.2/sigma/core/__init__.py +0 -18
  44. sigma_terminal-2.0.2/sigma/core/agent.py +0 -205
  45. sigma_terminal-2.0.2/sigma/core/config.py +0 -119
  46. sigma_terminal-2.0.2/sigma/core/llm.py +0 -794
  47. sigma_terminal-2.0.2/sigma/core/models.py +0 -153
  48. sigma_terminal-2.0.2/sigma/setup.py +0 -455
  49. sigma_terminal-2.0.2/sigma/tools/__init__.py +0 -5
  50. sigma_terminal-2.0.2/sigma/tools/charts.py +0 -400
  51. sigma_terminal-2.0.2/sigma/tools/financial.py +0 -1457
  52. sigma_terminal-2.0.2/sigma/ui/__init__.py +0 -1
  53. sigma_terminal-2.0.2/tests/__init__.py +0 -1
  54. sigma_terminal-2.0.2/tests/test_financial.py +0 -57
@@ -1,5 +1,3 @@
1
- # Sigma - Development Files
2
-
3
1
  # Byte-compiled / optimized / DLL files
4
2
  __pycache__/
5
3
  *.py[cod]
@@ -37,14 +35,12 @@ pip-delete-this-directory.txt
37
35
  # Unit test / coverage reports
38
36
  htmlcov/
39
37
  .tox/
40
- .nox/
41
38
  .coverage
42
39
  .coverage.*
43
40
  .cache
44
41
  nosetests.xml
45
42
  coverage.xml
46
43
  *.cover
47
- *.py,cover
48
44
  .hypothesis/
49
45
  .pytest_cache/
50
46
 
@@ -52,6 +48,35 @@ coverage.xml
52
48
  *.mo
53
49
  *.pot
54
50
 
51
+ # Django stuff:
52
+ *.log
53
+ local_settings.py
54
+
55
+ # Flask stuff:
56
+ instance/
57
+ .webassets-cache
58
+
59
+ # Scrapy stuff:
60
+ .scrapy
61
+
62
+ # Sphinx documentation
63
+ docs/_build/
64
+
65
+ # PyBuilder
66
+ target/
67
+
68
+ # Jupyter Notebook
69
+ .ipynb_checkpoints
70
+
71
+ # pyenv
72
+ .python-version
73
+
74
+ # celery beat schedule file
75
+ celerybeat-schedule
76
+
77
+ # SageMath parsed files
78
+ *.sage.py
79
+
55
80
  # Environments
56
81
  .env
57
82
  .venv
@@ -61,37 +86,35 @@ ENV/
61
86
  env.bak/
62
87
  venv.bak/
63
88
 
64
- # IDEs
65
- .idea/
66
- .vscode/
67
- *.swp
68
- *.swo
69
- *~
89
+ # Spyder project settings
90
+ .spyderproject
91
+ .spyproject
70
92
 
71
- # Jupyter Notebook
72
- .ipynb_checkpoints
93
+ # Rope project settings
94
+ .ropeproject
73
95
 
74
- # pyenv
75
- .python-version
96
+ # mkdocs documentation
97
+ /site
76
98
 
77
99
  # mypy
78
100
  .mypy_cache/
79
- .dmypy.json
80
- dmypy.json
81
-
82
- # Pyre type checker
83
- .pyre/
84
-
85
- # Sigma specific
86
- .sigma/
87
- *.db
88
- *.sqlite
89
- *.sqlite3
90
101
 
91
- # Logs
92
- *.log
93
- logs/
102
+ # IDE
103
+ .idea/
104
+ .vscode/
105
+ *.swp
106
+ *.swo
107
+ *~
94
108
 
95
- # OS files
109
+ # macOS
96
110
  .DS_Store
97
- Thumbs.db
111
+ .AppleDouble
112
+ .LSOverride
113
+ ._*
114
+
115
+ # Sigma specific
116
+ *.dmg
117
+ *.app
118
+ Sigma.app/
119
+ output/
120
+ exports/
@@ -0,0 +1,25 @@
1
+ PROPRIETARY SOFTWARE LICENSE
2
+
3
+ Copyright (c) 2024-2026 Sigma. All Rights Reserved.
4
+
5
+ NOTICE: This software and its documentation are proprietary to Sigma
6
+ and are protected by copyright law and international treaties.
7
+
8
+ RESTRICTIONS:
9
+ 1. This software is licensed, not sold.
10
+ 2. You may not copy, modify, distribute, sell, or transfer this software.
11
+ 3. You may not reverse engineer, decompile, or disassemble this software.
12
+ 4. You may not use this software for commercial purposes without written permission.
13
+ 5. You may not remove or alter any proprietary notices or labels.
14
+
15
+ DISCLAIMER:
16
+ THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+
20
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
23
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
24
+
25
+ For licensing inquiries, contact: legal@sigma.finance