https://github.com/tvjsx/tvjs-xp
📦 Extension pack for trading-vue-js (TVJS XP)
https://github.com/tvjsx/tvjs-xp
add-ons algorithmic-trading bitcoin candlestick chart crypto extensions financial-data finviz reactive trading tvjs visualisation vue vuejs
Last synced: 2 months ago
JSON representation
📦 Extension pack for trading-vue-js (TVJS XP)
- Host: GitHub
- URL: https://github.com/tvjsx/tvjs-xp
- Owner: tvjsx
- License: mit
- Created: 2020-10-15T19:14:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-13T20:54:03.000Z (about 2 years ago)
- Last Synced: 2025-05-06T17:00:48.968Z (2 months ago)
- Topics: add-ons, algorithmic-trading, bitcoin, candlestick, chart, crypto, extensions, financial-data, finviz, reactive, trading, tvjs, visualisation, vue, vuejs
- Language: JavaScript
- Homepage: https://github.com/tvjsx/trading-vue-js
- Size: 2.59 MB
- Stars: 69
- Watchers: 5
- Forks: 61
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
![]()
# TVJS Std Extension Pack     
![]()
## Install
```
npm i tvjs-xp
```## List of extensions
| Name | Author | Type | Description | Version |
|---|---|---|---|---|
| chart-link | StdSquad | Ext | Sync multiple charts (cursors, drawing tools) | 1.0.0 |
| grid-resize | StdSquad | Ext | Resize vertical sections | 1.0.0 |
| legend-buttons | StdSquad | Ext | Moving overlays aroud, adding, removing | 1.0.0 |
| settings-win | StdSquad | Ext | Changing script props (settings) | 1.0.0 |## Usage
```html
import TradingVue from 'trading-vue-js'
import XP from 'tvjs-xp'export default {
name: 'app',
components: { TradingVue },
data() {
return {
ext: Object.values(XP),
dc: new DataCube(...)
}
}
}```
In browser:
```js
//...
ext: Object.values(TvjsXP.default),
//...
```