mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-09 06:27:45 +00:00
3eae9a76fe
- Implemented Sdchannel class for calculating standard deviation channels based on linear regression. - Added detailed documentation for SDCHANNEL, including overview, calculation methods, and interpretation. - Updated project files to include new numerics library components in Channels and Volatility projects.
74 lines
2.0 KiB
JSON
74 lines
2.0 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
|
|
{
|
|
"name": "Build lib/quantalib.csproj (Debug net10.0)",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"program": "dotnet",
|
|
"args": [
|
|
"build",
|
|
"${workspaceFolder}/lib/quantalib.csproj",
|
|
"--configuration",
|
|
"Debug",
|
|
"--framework",
|
|
"net10.0"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"stopAtEntry": false,
|
|
"console": "integratedTerminal",
|
|
"logging": {
|
|
"moduleLoad": false
|
|
}
|
|
},
|
|
{
|
|
"name": "Debug Tests",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build-sln-debug",
|
|
"program": "dotnet",
|
|
"args": [
|
|
"test",
|
|
"${workspaceFolder}/QuanTAlib.sln",
|
|
"--no-build"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"stopAtEntry": false,
|
|
"console": "internalConsole",
|
|
"logging": {
|
|
"moduleLoad": false
|
|
}
|
|
},
|
|
{
|
|
"name": "Debug Library",
|
|
"type": "coreclr",
|
|
"request": "attach",
|
|
"processId": "${command:pickProcess}",
|
|
"justMyCode": true,
|
|
"logging": {
|
|
"moduleLoad": false
|
|
}
|
|
},
|
|
{
|
|
"name": "Build solution (Debug)",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build-sln-debug",
|
|
"program": "dotnet",
|
|
"args": [
|
|
"build",
|
|
"${workspaceFolder}/QuanTAlib.sln",
|
|
"--configuration",
|
|
"Debug"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"stopAtEntry": false,
|
|
"console": "integratedTerminal",
|
|
"logging": {
|
|
"moduleLoad": false
|
|
}
|
|
}
|
|
]
|
|
}
|