You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Strategy improvement requested as improvements by CHUNKEE
Ceiling and floor graceful handling, no shutdown skip orders but don't stop strategy
Cancel all orders once strategy shutdown, // Cancel method need to modified to handle multiple users.
Improved error handling with more retries as exchanges tend to have issues.
Type
enhancement, bug_fix
Description
Enabled SSL for PostgreSQL connection in server/src/app.module.ts.
Simplified server bootstrap logic and enabled CORS for all origins in server/src/main.ts.
Replaced custom file logging with Winston logger in server/src/modules/logger/logger.service.ts.
Allowed WebSocket connections from all origins in server/src/modules/marketdata/marketdata.gateway.ts.
Added ceilingPrice and floorPrice properties to strategy DTO in server/src/modules/strategy/strategy.dto.ts.
Improved strategy handling with order skipping based on ceiling and floor price, better error handling with retries, and canceling all strategy orders before shutdown in server/src/modules/strategy/strategy.service.ts.
Updated README to reflect switch to Yarn and added backend server setup instructions in README.md.
Added root directory package.json for managing frontend and server with scripts in package.json.
4, due to the comprehensive nature of the changes across multiple files, including backend logic, configuration, and logging. The modifications touch on critical areas such as security (SSL), logging, CORS, WebSocket connections, and strategy handling which require careful review to ensure they meet the project's standards and do not introduce regressions or security vulnerabilities.
🧪 Relevant tests
No
🔍 Possible issues
Possible Bug: The use of parseInt(webSocketPort, 10) in server/src/modules/marketdata/marketdata.gateway.ts is correct for ensuring the port is an integer, but the environment variable should be validated to ensure it exists and is a valid number to prevent runtime errors.
Performance Concern: In server/src/modules/strategy/strategy.service.ts, the retry mechanism with a fixed delay (e.g., await new Promise((resolve) => setTimeout(resolve, 2000));) could lead to inefficiencies under high load or if the external service (e.g., exchange) is experiencing prolonged issues. A more sophisticated backoff strategy might be beneficial.
Code Quality: The method cancelAllStrategyOrders in server/src/modules/strategy/strategy.service.ts iterates over orders and attempts to cancel them one by one, logging failures individually. This could be improved by aggregating failures and handling them more efficiently.
Consider validating the WS_PORT environment variable to ensure it's provided and is a valid number. This can prevent runtime errors related to WebSocket server initialization. [important]
Implement an exponential backoff strategy for retrying failed operations instead of using a fixed delay. This can improve the efficiency of retries, especially under varying network conditions or service availability. [important]
Aggregate errors when canceling multiple orders in cancelAllStrategyOrders and handle them collectively, possibly with a retry mechanism for failed cancellations. This can improve error handling and make the code more resilient. [medium]
Ensure that the SSL configuration for PostgreSQL is compatible with your deployment environment and that necessary certificates are properly managed, especially in containerized or cloud environments. [important]
Overview:
The review tool scans the PR code changes, and generates a PR review. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:
The review tool can be configured with extra instructions, which can be used to guide the model to a feedback tailored to the needs of your project.
Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify the relevant sub-tool, and the relevant aspects of the PR that you want to emphasize.
Examples for extra instructions:
[pr_reviewer] # /review #
extra_instructions="""
In the 'possible issues' section, emphasize the following:
- Does the code logic cover relevant edge cases?
- Is the code logic clear and easy to understand?
- Is the code logic efficient?
...
"""
Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.
How to enable\disable automation
When you first install PR-Agent app, the default mode for the review tool is:
pr_commands = ["/review", ...]
meaning the review tool will run automatically on every PR, with the default configuration.
Edit this field to enable/disable the tool, or to change the used configurations
Auto-labels
The review tool can auto-generate two specific types of labels for a PR:
a possible security issue label, that detects possible security issues (enable_review_labels_security flag)
a Review effort [1-5]: x label, where x is the estimated effort to review the PR (enable_review_labels_effort flag)
Extra sub-tools
The review tool provides a collection of possible feedbacks about a PR.
It is recommended to review the possible options, and choose the ones relevant for your use case.
Some of the feature that are disabled by default are quite useful, and should be considered for enabling. For example: require_score_review, require_soc2_ticket, and more.
Auto-approve PRs
By invoking:
/review auto_approve
The tool will automatically approve the PR, and add a comment with the approval.
To ensure safety, the auto-approval feature is disabled by default. To enable auto-approval, you need to actively set in a pre-defined configuration file the following:
[pr_reviewer]
enable_auto_approval = true
(this specific flag cannot be set with a command line argument, only in the configuration file, committed to the repository)
You can also enable auto-approval only if the PR meets certain requirements, such as that the estimated_review_effort is equal or below a certain threshold, by adjusting the flag:
[pr_reviewer]
maximal_review_effort = 5
More PR-Agent commands
To invoke the PR-Agent, add a comment using one of the following commands:
/review: Request a review of your Pull Request.
/describe: Update the PR title and description based on the contents of the PR.
Enhance database connection security by verifying the server's certificate.
When enabling SSL for database connections in production, it's crucial to verify the server's certificate to prevent Man-In-The-Middle (MITM) attacks. Consider using a more secure configuration that includes rejectUnauthorized: true and specifies the CA (Certificate Authority) certificate.
Restrict CORS to known origins for improved security.
The current CORS configuration allows requests from any origin, which might expose the server to security risks. It's recommended to specify allowed origins or to configure CORS more restrictively based on the deployment environment.
Restrict WebSocket CORS origins for better security.
Allowing all origins for WebSocket connections can be a security risk. It's advisable to restrict the cors.origin to the specific domains that should be allowed to connect, or to configure it based on the environment.
-origin: '*', // Allow all origins, Temporary to be changed and restricted.+origin: ['https://yourdomain.com', 'https://www.anotherdomain.com'],
Enhancement
Use an environment variable for the logging level to enhance flexibility.
To improve the logging mechanism's flexibility and maintainability, consider adding an environment variable for the logging level. This allows for easy adjustments in different environments without changing the code.
Improve order cancellation error handling with retries or aggregation.
The current implementation of cancelAllStrategyOrders does not handle potential errors for each order cancellation in a way that ensures all orders are attempted to be cancelled. Consider adding a retry mechanism or aggregating errors to handle them after attempting all cancellations.
Overview:
The improve tool scans the PR code changes, and automatically generates suggestions for improving the PR code. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on a PR.
When commenting, to edit configurations related to the improve tool (pr_code_suggestions section), use the following template:
meaning the improve tool will run automatically on every PR, with summarization enabled. Delete this line to disable the tool from running automatically.
Utilizing extra instructions
Extra instructions are very important for the improve tool, since they enable to guide the model to suggestions that are more relevant to the specific needs of the project.
Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify relevant aspects that you want the model to focus on.
Examples for extra instructions:
[pr_code_suggestions] # /improve #
extra_instructions="""
Emphasize the following aspects:
- Does the code logic cover relevant edge cases?
- Is the code logic clear and easy to understand?
- Is the code logic efficient?
...
"""
Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.
A note on code suggestions quality
While the current AI for code is getting better and better (GPT-4), it's not flawless. Not all the suggestions will be perfect, and a user should not accept all of them automatically.
Suggestions are not meant to be simplistic. Instead, they aim to give deep feedback and raise questions, ideas and thoughts to the user, who can then use his judgment, experience, and understanding of the code base.
Recommended to use the 'extra_instructions' field to guide the model to suggestions that are more relevant to the specific needs of the project, or use the custom suggestions 💎 tool
With large PRs, best quality will be obtained by using 'improve --extended' mode.
More PR-Agent commands
To invoke the PR-Agent, add a comment using one of the following commands:
/review: Request a review of your Pull Request.
/describe: Update the PR title and description based on the contents of the PR.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
User description
Strategy improvement requested as improvements by CHUNKEE
Type
enhancement, bug_fix
Description
server/src/app.module.ts
.server/src/main.ts
.server/src/modules/logger/logger.service.ts
.server/src/modules/marketdata/marketdata.gateway.ts
.server/src/modules/strategy/strategy.dto.ts
.server/src/modules/strategy/strategy.service.ts
.README.md
.package.json
.Changes walkthrough
app.module.ts
Enable SSL for Database Connection
server/src/app.module.ts
marketdata.gateway.ts
Allow WebSocket Connections from All Origins
server/src/modules/marketdata/marketdata.gateway.ts
package.json
Add Root Directory Package.json for Project Management
package.json
with scripts.
main.ts
Simplify Server Bootstrap and Enable CORS
server/src/main.ts
logging.
logger.service.ts
Implement Winston Logger for Improved Logging
server/src/modules/logger/logger.service.ts
strategy.dto.ts
Add Ceiling and Floor Price to Strategy DTO
server/src/modules/strategy/strategy.dto.ts
strategy.service.ts
Improve Strategy Handling with Order Skipping and Better Error
Handling
server/src/modules/strategy/strategy.service.ts
watching.
README.md
Update README with Yarn Instructions and Backend Setup
README.md
setup instructions.