Files
QuanTAlib/quantalib.code-workspace
T
Miha Kralj 7253f61299 Add TRAMA implementation and comprehensive tests
- Implemented the TRAMA (Trend Regularity Adaptive Moving Average) class with adaptive EMA logic.
- Added unit tests for TRAMA functionality, including constructor validation, basic calculations, state management, and robustness checks.
- Created validation tests to ensure consistency across different modes of operation (streaming, batch, and static calculations).
- Enhanced documentation for TRAMA, including performance profiles and quality metrics.
- Updated workspace configuration by removing unnecessary folder references.
2026-02-21 20:45:38 -08:00

51 lines
1.4 KiB
Plaintext

{
"folders": [
{
"path": "."
}
],
"settings": {
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true,
"scminput": false
},
"chat.editor.wordWrap": "on",
"git.confirmSync": false,
"git.decorations.enabled": true,
"terminal.integrated.shellIntegration.enabled": true,
"terminal.integrated.suggest.enabled": true,
"omnisharp.enableEditorConfigSupport": true,
"dotnet.defaultSolution": "QuanTAlib.slnx",
"dotnet.unitTests.runSettingsPath": ".config/coverage.runsettings",
"dotnet.completion.showCompletionItemsFromUnimportedNamespaces": true,
"dotnet.server.useOmnisharp": false,
"coderabbit.agentType": "Roo",
"qodana.pathPrefix": "",
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"path": "C:\\Program Files\\PowerShell\\7\\pwsh.exe",
"icon": "terminal-powershell"
},
"Git Bash": {
"path": "C:\\Program Files\\Git\\bin\\bash.exe",
"icon": "terminal-bash"
}
},
"terminal.integrated.automationProfile.windows": {
"path": "C:\\Program Files\\PowerShell\\7\\pwsh.exe"
},
"qodana.projectId": "KbxmN",
"sarif-viewer.connectToGithubCodeScanning": "on",
"chatgpt.openOnStartup": true,
"chatgpt.commentCodeLensEnabled": false,
"chat.tools.terminal.autoApprove": {
"code": true
},
"powershell.cwd": "quantalib"
}
}