forked from coltoneshaw/3cpm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed bankroll calculations, improved readability of the formulas
- position already included on_orders, fixed this across the app. - added additional global values under metrics for total bank, available bank, and in orders to prevent calculating on the component level. - reworded some items to be a bit cleaner. - activeSum now is totalBoughtVolume - added formulas and known issues
- Loading branch information
1 parent
97e47af
commit 359d021
Showing
15 changed files
with
147 additions
and
56 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ node_modules/ | |
node/ | ||
/node_modules | ||
src/main-app.js | ||
dist/* | ||
dist/* | ||
/src/main-app.js |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
v0.0.2-RC1 | ||
|
||
- Fixed issue where the data table hid the overflow and prevented scrolling. Will need further improvements for responsiveness. | ||
- Added alerts when making changes to the settings page to inform you of a needed refresh | ||
- Alternating colors on the data table | ||
- try/catch block to the data functions so it properly changes the state of the spinner | ||
- conditional routing rules based on if API keys are set up or not. | ||
- Spinning icons when the data is updating. | ||
- Added a rough description of API key perms needed to the settings page | ||
- Increased pie chart size (praise), added formatting to the tooltips | ||
- fixed application height issues | ||
- settings button height, and scrolling on that page. | ||
|
||
v0.0.1-RC1 | ||
- added spinner to the update data icons | ||
- added description of API keys | ||
- modified the chart to show thousands | ||
- application height issues resolved | ||
- settings button height has been updated | ||
|
||
v0.0.1 | ||
- implemented and tested the mac dmg installer | ||
- moved files from public into the src | ||
- moved asset files around | ||
- fixed a bug in the lenght of the name array for filters causing an error | ||
- added columns to the bots table |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## Bank Roll Calculations | ||
|
||
### Total Bankroll | ||
Formula: | ||
`Total Bankroll = Position ( Funds in that currency ) + funds currently in deals` | ||
|
||
Additional information: | ||
- What is in position? | ||
- Position is a sum of what you have in active deals + what you have in available funds. This | ||
- Why doesn't it match exactly to my crypto account? | ||
- Your crypto account also takes into account any coins that you hold that are not a part of your DCA bots. For example, if you've made a smart trade, holding coins, etc. | ||
- Additionally, the data from your crypto account to 3Commas is not always up to date, there may be slight variances in the numbers. But you should see within 1-4% the number is right. | ||
|
||
### Bankroll Available: | ||
Formula: | ||
` ( 1 - ( ( funds currently in deals ) / ( Total Bankroll )) ) * 100 = remaining bankroll percent` | ||
|
||
|
||
Additional information: | ||
- This takes into account all the bankroll you have for the selected currency and gives the percent remaining after you remove what's on an order plus funds in a deal. | ||
- This is calculated within the `calculateMetrics` inside `DataContext.js` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
- when you save config settings it does not auto start to sync. You have to manually start it. | ||
- scroll bars on the bot manager table can be weird. Resize to a bigger window for now. | ||
- dark mode isn't built yet, but the button is there | ||
- the Trading View tab may require a refresh to show. Somethign is weird with that | ||
- active deals on stats is just a blank page, you're not crazy |
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.