FinCore
FinCore is a cool and free cross-platform personal finances manager written in .NET 8 with Angular 14 frontend.
Install / Use
/learn @sergiovision/FinCoreREADME
About FinCore
<p id="doc_about"> </p> New version 0.9.18 released. FinCore is a cool and free cross-platform personal finances manager written in .NET 8 with Angular 14 frontend. <br> <p> This project is a summary of my experience working as a developer and team leader for various financial institutions (banks and FOREX brokers) and individual traders. I made application as simple as possible to use with such complex thing as finances.</p>Program fits for anybody. <br>
- For merchant/consumer<br> If one lazy to take risks on trading and investing then can stick to <a href="#doc_wallets">Wallets book</a> and <a href="#doc_rates">Realtime exchange rates</a> <br> In this case one can control and observe his wallets state in different currencies with current exchange rates and track performance here <a href="#doc_performance">Earning/Spending Performance per day/month</a>.<br>
- For trader<br> If one wants to remove emotions and use risk restriction and analyze trading statistics then these screens <a href="#doc_instruments">Trading Statistics and Risk management</a> and <a href="#doc_dashboard">Realtime Dashboard</a> might help to evolve into profitable trader.<br> This will help to make trading less emotional and will help to create trading strategy and find favourite and most profitable instruments.<br>
- For Investor <br> If one wants to track investment portfolio and observe shares/stock prices then these screens will help <a href="#doc_dashboard">Realtime Dashboard</a> and <a href="#doc_investments">Investments Pie</a> and <a href="#doc_capital">Yearly Capital State</a>. <br>
This version is free of charge but if you want a better and secured version you can write me to hi@sergego.com we can talk about improving/installation/support and agree about $. <br>
How to build:
- Clone this repository
- Build Client
App.
Go to FinCore/ClientApp folder
Run: npm install
For UI Debug run: : npm run start and use URL http://127.0.0.1:4200 for running debug version of UI
-
Build Whole application To build as a Windows Service or Console app: Run from command line:
build.batTo build as a docker image: Run:docker.sh -
If you fail to build or do not want to build on your machine then there is an option to get docker image from my docker hub. Run this commands:
git clone https://github.com/sergiovision/FinCore.git
docker pull dockersergio/fincore:latest
docker-compose up
To make build succeeded the following apps should be installed: Visual Studio 2019, Visual Studio 2019 Build tools, latest NPM from http://nodejs.org. Applications need to be installed to run server properly:
- Metatrader 5 Terminal
- Optionally MySQL Server version 5 or later.
- .NET Core 8
- Framework 4.8 (for dlls in Metatrader5) should be installed
SQLite database located in /DB folder. By default SQLite DB file used, but MySQL also supported, you can switch to MySQL in /FinCore/appSettings.json file.
For configuring crypto module setup Api Keys for KuCoin and/or FTX providers:
For KuCoin exchange set the following properties in /FinCore/appSettings.json:
KuCoinAPIKey - KuCoin Main API Key
KuCoinAPISecret - API Secret
KuCoinPassPhrase - Pass Phrase
KuCoinFutureAPIKey - KuCoin Futures API Key
KuCoinFutureAPISecret - API Secret
KuCoinFuturePassPhrase - Futures Pass Phrase
For FTX Exchange:
FTXAPIKey - FTX API Key
FTXAPISecret - FTX API Secret
Open fincore_empty.sqlite file in any DB editor that works with SQLite ( like Navicat ).
Open Settings screen and set the following variables
XTrade.TerminalUser - should be set to windows user login name where trading terminals will be running
XTrade.InstallDir - XTrade installation folder.
Metatrader.CommonFiles - path to MT5 common files folder
MQL.Sources - path to MQL folder where your MQL robots stored
To install application in Windows Service mode, build project under Windows, go to bin folder and run command (under Administrator privileges): FinCore.exe install
If you have problems running check FinCore.MainServer.log to see errors.
FinCore folders structure:
/BusinessLogic - main app logic
/BusinessObjects - shared business objects
/FinCore - main server self host and WebAPI controllers
/ClientApp - Angular client application
/MQL5 - MQL5 executables that needs to be installed in Metatrader to be able to synchronize and work with Metatrader.
Documentation
<ul> <li>FinCore Features</li> <p></p> <p><a href="#doc_about">About FinCore</a></p> <p><a href="#doc_dashboard">Realtime Dashboard</a></p> <p><a href="#doc_wallets">Wallets book</a></p> <p><a href="#doc_mt">Metatrader integration</a></p> <p><a href="#doc_advisers">Multiple Terminals/Brokers and Advisers Management</a></p> <p><a href="#doc_metasymbols">Metasymbols management</a></p> <p><a href="#doc_rates">Realtime exchange rates</a></p> <p><a href="#doc_instruments">Trading Statistics and Risk management</a></p> <p><a href="#doc_deals">Deals history</a></p> <p><a href="#doc_log">Application logs</a></p> <p><a href="#doc_investments">Investments Pie</a></p> <p><a href="#doc_jobs">Background Jobs</a></p> <p><a href="#doc_performance">Earning/Spending Performance per day/month</a></p> <p><a href="#doc_capital">Yearly Capital State</a></p> <li><a href="#doc_install">Installation</a></li> </ul>Installation
<p id="doc_install"></p> Generally application should be installed on your Virtual Private Server (VPS). Where your trading/investment terminals run. FinCore application is completely crossplatform. You can biuld it for Windows, MacOS, Linux/Docker and run it there. <br> There are 3 options to run FinCore application:<br>- As a Windows Service
- As an usual console application
- As a Docker image in a Docker container
When application started it becomes accessible by this link: http://localhost:2020/#/login or http://localhost:2020/#/dashboard <br>
Websockets port uses port 2021.
Make sure ports 2020 and 2021 are opened to make FinCore accesible outside of VPS.
If you run application in docker on a separate address to connect it to Windows where Metatrader terminals live - you should activate ports forwarding in Windows:<br>
Run this command in windows command line:<br>
netsh interface portproxy add v4tov4 listenport=2020 listenaddress=127.0.0.1 connectport=2020 connectaddress='docker container address'
netsh interface portproxy add v4tov4 listenport=2022 listenaddress=127.0.0.1 connectport=2022 connectaddress='docker container address'
After that all experts in Metatrader will use be able to synchronize with FinCore app running in Docker or on another machine/OS.
To expose Fincore application through NGINX webserver add the following text in nginx.conf file under server { } section : `location ^~ /fincore/ {
proxy_pass http://127.0.0.1:2020/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}`
Default login for fincore_empty file is: <br>mail: test@test.com<br>
password: test
<br>
<img src="/FinCore/ClientApp/src/assets/img/doc/login.png"/>
<br>
Related Skills
node-connect
335.8kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
prose
335.8kOpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.
frontend-design
82.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Writing Hookify Rules
82.7kThis skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
