https://github.com/gkucmierz/dashboard-app
Simple front-end app, that is able to calculate real-time scalar values and draw charts for given equations.
https://github.com/gkucmierz/dashboard-app
Last synced: 3 months ago
JSON representation
Simple front-end app, that is able to calculate real-time scalar values and draw charts for given equations.
- Host: GitHub
- URL: https://github.com/gkucmierz/dashboard-app
- Owner: gkucmierz
- Created: 2023-01-13T02:19:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-19T18:00:18.000Z (over 2 years ago)
- Last Synced: 2025-01-16T08:15:57.060Z (5 months ago)
- Language: JavaScript
- Homepage: https://gkucmierz.github.io/dashboard-app
- Size: 59.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dashboard-app
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
## Customize configuration
See [Vite Configuration Reference](https://vitejs.dev/config/).
## Project Setup
```sh
npm install
```### Compile and Hot-Reload for Development
```sh
npm run dev
```### Compile and Minify for Production
```sh
npm run build
```### Lint with [ESLint](https://eslint.org/)
```sh
npm run lint
```# Dashboard
Crypto/asset dashboard
### Description
Simple front-end app, that is able to calculate real-time scalar values and draw charts for given equations.
### Requirements
- list of possible assets (crypto assets, currencies, comodities).
Every asset should have distinct ticker e.g.
* `XBTC`, `XLTC` - Bitcoin, Litecoin
* `NASDAQ` - stock market
* `XAU` - gold price
* `PLN`, `EUR` - currencies
Every asset is denominated to dollar for convenience
- input field for user equation
- output actual chart for this equation### Motivation
Possibility to draw simple or more complex charts using markets data.
For example we input `XBTC / XAU`, to see how much Bitcoin is worth in Gold.
To see how much dollar is worth in Bitcoin we can use `1 / XBTC` equation.
Dashboard should also have implemented plenty of functions e.g. `AVG(...)` for average value.