Skip to content

Commit

Permalink
feat: Ichimoku Cloud indicator (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveSkender authored May 4, 2024
1 parent 12e721e commit f22653b
Show file tree
Hide file tree
Showing 30 changed files with 616 additions and 331 deletions.
23 changes: 23 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# top-most EditorConfig file
root = true

# global baselines
[*]
charset = utf-8
end_of_line = lf

indent_style = space
indent_size = 2
tab_width = 2

line_length = 150
max_line_length = 150
trim_trailing_whitespace = true
insert_final_newline = true

[*.{xml,yml}]
indent_style = space
indent_size = 2

# see Client and Server folders for
# language unique editor configurations
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"ms-azuretools.vscode-azurefunctions",
"ms-dotnettools.csharp"
]
}
11 changes: 11 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to .NET Functions",
"type": "coreclr",
"request": "attach",
"processId": "${command:azureFunctions.pickProcess}"
}
]
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"azureFunctions.projectSubpath": "Server\\Functions",
"azureFunctions.deploySubpath": "Server\\Functions/bin/Release/net8.0/publish",
"azureFunctions.projectLanguage": "C#",
"azureFunctions.projectRuntime": "~4",
"debug.internalConsoleOptions": "neverOpen",
"azureFunctions.preDeployTask": "publish (functions)"
}
81 changes: 81 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "clean (functions)",
"command": "dotnet",
"args": [
"clean",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"type": "process",
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}/Server\\Functions"
}
},
{
"label": "build (functions)",
"command": "dotnet",
"args": [
"build",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"type": "process",
"dependsOn": "clean (functions)",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}/Server\\Functions"
}
},
{
"label": "clean release (functions)",
"command": "dotnet",
"args": [
"clean",
"--configuration",
"Release",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"type": "process",
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}/Server\\Functions"
}
},
{
"label": "publish (functions)",
"command": "dotnet",
"args": [
"publish",
"--configuration",
"Release",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"type": "process",
"dependsOn": "clean release (functions)",
"problemMatcher": "$msCompile",
"options": {
"cwd": "${workspaceFolder}/Server\\Functions"
}
},
{
"type": "func",
"dependsOn": "build (functions)",
"options": {
"cwd": "${workspaceFolder}/Server\\Functions/bin/Debug/net8.0"
},
"command": "host start",
"isBackground": true,
"problemMatcher": "$func-dotnet-watch"
}
]
}
9 changes: 0 additions & 9 deletions Client/.editorconfig

This file was deleted.

68 changes: 34 additions & 34 deletions Client/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 3000,
"search.exclude": {
"**/dist": true,
"**/node_modules": true,
"**/package-lock.json": true
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.formatOnSave": true,
"cSpell.words": [
"apidata",
"browserconfig",
"chartjs",
"colorpicker",
"devkit",
"ecoysystem",
"linetype",
"linewidth",
"lookback",
"MACD",
"matero",
"maxwidth",
"noselect",
"Ohlc",
"SUPERTREND",
"timeseries",
"tinycolor",
"ucid",
"uiid",
"unsavable",
"Xaxes"
]
}
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 3000,
"search.exclude": {
"**/dist": true,
"**/node_modules": true,
"**/package-lock.json": true
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.formatOnSave": true,
"cSpell.words": [
"apidata",
"browserconfig",
"chartjs",
"colorpicker",
"devkit",
"ecoysystem",
"linetype",
"linewidth",
"lookback",
"MACD",
"matero",
"maxwidth",
"noselect",
"Ohlc",
"SUPERTREND",
"timeseries",
"tinycolor",
"ucid",
"uiid",
"unsavable",
"Xaxes"
]
}
6 changes: 5 additions & 1 deletion Client/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@
}
],
"stylePreprocessorOptions": {
"includePaths": ["node_modules", "src", "src/styles"]
"includePaths": [
"node_modules",
"src",
"src/styles"
]
},
"scripts": [],
"allowedCommonJsDependencies": [
Expand Down
Loading

0 comments on commit f22653b

Please sign in to comment.