# Basic Examples
Simple, focused examples perfect for getting started with KiteTicker Async.
## 📋 Examples in this directory
- **[runtime_subscription_example.rs](runtime_subscription_example.rs)** - Adding/removing symbols at runtime
- **[single_connection.rs](single_connection.rs)** - Basic single WebSocket connection
- **[portfolio_monitor.rs](portfolio_monitor.rs)** - Monitor a portfolio of stocks
## 🚀 Running Examples
```bash
# From the project root
cargo run --example basic/runtime_subscription_example
cargo run --example basic/single_connection
cargo run --example basic/portfolio_monitor
```
## 📚 Learning Order
1. Start with `single_connection.rs` to understand basics
2. Try `portfolio_monitor.rs` for data processing patterns
3. Master `runtime_subscription_example.rs` for dynamic operations