Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue "Decoding error on COMPLETED_ORDER #201" fixed #202

Merged
merged 4 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.format": true,
"source.organizeImports": true,
"source.sortPackageJson": true
"source.fixAll.eslint": "explicit",
"source.fixAll.format": "explicit",
"source.organizeImports": "explicit",
"source.sortPackageJson": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,20 +74,20 @@
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/jest": "^29.5.11",
"@types/node": "^18.17.15",
"@types/source-map-support": "^0.5.8",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"ajv": "^8.12.0",
"eslint": "^8.51.0",
"eslint-plugin-jest": "^27.4.2",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.6.2",
"eslint-plugin-rxjs": "^5.0.3",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.1",
"typedoc": "^0.25.7",
"typescript": "^5.2.2"
},
"engines": {
Expand Down
3 changes: 3 additions & 0 deletions src/common/errorCode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ export enum ErrorCode {
/** Order Canceled - reason: */
ORDER_CANCELLED = 202,

/** ou must subscribe for additional permissions to obtain precise results for scanner.Parameter:Most Active,Filter:Price;Real-Time Market Data:Pink Sheets */
SCANNER_LOW_PRECISION = 492,

/** Already connected. */
ALREADY_CONNECTED = 501,

Expand Down
Loading
Loading