-
Notifications
You must be signed in to change notification settings - Fork 0
Merge pull request #9 from 9808us/develop Contribution: Added new Data Mine to Zeus #4
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
base: master
Are you sure you want to change the base?
Conversation
Contribution: Coding Session - Portfolio Manager E.30
…ormalized Momentum data mine
Contribution: auto adaptative RSI
Contribution: Added new Data Mine to Zeus
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request adds a new Trading System configuration file named "Lightning-Strike-PM-Demo.json" to the Trading-Systems directory. The file defines a comprehensive algorithmic trading strategy with portfolio management capabilities, including trigger stages, open/close execution stages, and managed stop-loss/take-profit phases.
Key Changes:
- Addition of a complete trading system configuration with entry/exit logic
- Implementation of multiple limit sell orders with incremental profit targets (0.0% to 0.6%)
- Portfolio management system integration with event confirmations and formula management
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "situations": [ | ||
| { | ||
| "type": "Situation", | ||
| "name": "Inmediate Trigger On", |
Copilot
AI
Dec 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spelling error: "Inmediate" should be "Immediate"
| "name": "Inmediate Trigger On", | |
| "name": "Immediate Trigger On", |
| "situations": [ | ||
| { | ||
| "type": "Situation", | ||
| "name": "Inmediate Take Position", |
Copilot
AI
Dec 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spelling error: "Inmediate" should be "Immediate"
| "name": "Inmediate Take Position", | |
| "name": "Immediate Take Position", |
| { | ||
| "type": "Condition", | ||
| "name": "New Condition", | ||
| "code": "chart.at24hs.candlesProbability.begin > chart.at24hs.candlesProbability.begin", |
Copilot
AI
Dec 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused/duplicate code field: A "code" field is present at the Condition level but appears to be superseded by the "javascriptCode" child node's "code" field. This creates redundancy and the condition-level code field contains a nonsensical comparison: chart.at24hs.candlesProbability.begin > chart.at24hs.candlesProbability.begin (comparing a value to itself, which is always false).
| "code": "chart.at24hs.candlesProbability.begin > chart.at24hs.candlesProbability.begin", |
| { | ||
| "type": "Condition", | ||
| "name": "New Condition", | ||
| "code": "chart.at24hs.candlesProbability.begin > chart.at24hs.candlesProbability.begin", |
Copilot
AI
Dec 8, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused/duplicate code field: A "code" field is present at the Condition level but appears to be superseded by the "javascriptCode" child node's "code" field. This creates redundancy and the condition-level code field contains a nonsensical comparison: chart.at24hs.candlesProbability.begin > chart.at24hs.candlesProbability.begin (comparing a value to itself, which is always false).
| "code": "chart.at24hs.candlesProbability.begin > chart.at24hs.candlesProbability.begin", |
No description provided.