https://github.com/drager/tradingview
Rust bindings for leveraging TradingView functionalities
https://github.com/drager/tradingview
Last synced: 7 months ago
JSON representation
Rust bindings for leveraging TradingView functionalities
- Host: GitHub
- URL: https://github.com/drager/tradingview
- Owner: drager
- License: apache-2.0
- Created: 2024-02-27T19:04:17.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-05-05T02:32:04.000Z (8 months ago)
- Last Synced: 2025-06-05T20:04:21.770Z (7 months ago)
- Language: Rust
- Size: 445 KB
- Stars: 12
- Watchers: 1
- Forks: 3
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TradingView
This project provides Rust bindings for leveraging TradingView functionalities, allowing Rust applications to interact with TradingView for financial data fetching, realtime subscription, and more.
## Getting Started
Check out the [examples](./examples) folder for a quick start on how to use the library.
Run the examples with the following commands:
```bash
cargo run --features native-tls --example fetch_historical_data NDQ 20425 USD
cargo run --features native-tls --example fetch_instruments
cargo run --features native-tls --example realtime
```
### Installation
Add the following to your `Cargo.toml` file:
```toml
[dependencies]
tradingview = "0.1.0"