Quick Start Guide
Get up and running with Nyria in minutes.
This guide will walk you through setting up your first automated trading strategy from scratch.
Before you begin: Automated trading carries significant risks. Read our Risk Disclosure and Known Limitations before proceeding. Always start with paper trading.
Prerequisites
Before starting, you'll need:
- A Nyria account (Sign up here)
- A broker account (we recommend starting with paper trading)
- An alert source (TradingView, Discord, or custom)
Important Considerations
- Paper trade first - Test for at least 1-2 weeks before going live
- Verify your alerts - If using TradingView, ensure your strategy doesn't repaint (learn more)
- Understand delays - TradingView webhooks can be delayed 2-45+ seconds
- Monitor actively - Automated trading is not "set and forget"
Step 1: Connect Your Broker (5 minutes)
- Go to Integrations tab
- Click Add Integration
- Select your broker (e.g., Tradier for stocks/options)
- Choose Paper Trading for testing
- Complete OAuth authorization
✅ Your broker is now connected and ready to use!
Step 2: Create Your Strategy (10 minutes)
Basic Configuration
- Go to My Strategies
- Click Create Strategy
- Fill in details:
- Name: "My SPY Strategy"
- Public URL: "my-spy-strategy"
- Alert Source: TradingView
- Visibility: Private
Configure Trading
- Asset Type: Options
- Selection Type: Internal
- Long Behavior:
- Entry: Enter Direction
- Exit: Enabled
- Order Type: Market
- Short Behavior:
- Entry: Do Nothing
- Exit: Disabled
Add Option Legs (For Options)
Leg 1:
- Action: Buy
- Side: Call
- Target: Delta 0.30
- DTE: 7-45 days
Click Next to continue.
Select Instruments
- Search for "SPY"
- Click to add
- Click Next
Set Visibility
- Choose Private
- Click Create Strategy
✅ Your strategy is created! Now let's validate alerts.
Step 3: Validate Alerts (5 minutes)
- Go to your strategy's Integration tab
- Copy your webhook URL
- Set up your alert source (see below)
- Return to Nyria and click Validate Alerts
- Provide example alerts:
- Long Entry: "spy long entry"
- Long Exit: "spy long exit"
- Click Validate
TradingView Setup
Critical: Ensure your TradingView strategy does not "repaint" before automating. Repainting strategies show different signals historically than they fire in real-time. Learn about repainting
- In TradingView, open your chart with your strategy/indicator
- Click the Alert button (clock icon) or press
Alt+A - Configure the alert:
- Condition: Your strategy or indicator
- Options: "Once Per Bar Close" (recommended to avoid repainting)
- Webhook URL: Paste your Nyria webhook URL
- Message: Your alert format, e.g.,
long entry {{ticker}}
- Click Create
Example Alert Messages:
long entry {{ticker}}{
"ticker": "{{ticker}}",
"action": "{{strategy.order.action}}",
"sentiment": "{{strategy.market_position}}"
}TradingView Variables:
| Variable | Replaced With |
|---|---|
{{ticker}} | Symbol (SPY, AAPL, etc.) |
{{close}} | Current close price |
{{strategy.order.action}} | buy or sell |
{{strategy.market_position}} | long, short, or flat |
Discord Setup
- Invite Nyria bot to your server
- In Nyria, select your server and channel
- Send test message in Discord: "spy long entry"
- Use that message for validation
✅ Your strategy is now active and ready to use!
Step 4: Deploy Your Bot (3 minutes)
- From your strategy, click Deploy Bot
- Configure bot:
- Position Size: $500 (fixed)
- Instruments: Trade All
- Integration: Select your connected broker
- Review settings
- Click Deploy Bot
✅ Your bot is live! It will execute on the next matching alert.
Step 5: Test Your Setup
Send a Test Alert
TradingView:
- Trigger your alert manually
- Check Nyria strategy logs
Discord:
- Send "spy long entry" in your channel
- Check Nyria strategy logs
Custom:
- Send POST request to webhook URL
- Check Nyria strategy logs
Verify Execution
- Go to Strategy Logs tab
- Look for SUCCESS message
- Check Bot Logs for execution details
- Verify order in your broker account
What's Next?
Expand Your Automation
- Add More Strategies - Create strategies for different instruments or alert sources
- Deploy More Bots - Copy other users' strategies or deploy multiple bots
- Try Different Equity Types - Explore crypto, futures, or complex option spreads
Go Live
When you're ready to trade with real money:
- Connect a Live integration
- Create or edit a bot
- Select your live integration
- Start with small position sizes
- Monitor closely for the first few trades
Before going live, ensure you have:
- Paper traded successfully for at least 1-2 weeks
- Verified your TradingView strategy doesn't repaint
- Sufficient capital for both entries AND exits
- A plan for monitoring positions daily
- Read and understood all Known Limitations
What to Monitor
Once live, you must actively monitor:
- ✅ Daily: Check open positions match expectations
- ✅ Daily: Review bot logs for any errors or warnings
- ✅ Weekly: Verify broker connection status
- ✅ Ongoing: Watch for reauth notifications (OAuth tokens expire)
Automated trading is NOT "set and forget." Things can and will go wrong. You are responsible for monitoring your positions and intervening when needed.
Common First-Time Issues
"Bot not executing"
- Check bot is Active (not paused)
- Verify integration is Connected
- Ensure strategy is Active
- Confirm alert instrument matches bot's selected instruments
"Order rejected"
- Check buying power in broker account
- Verify account has required permissions (options, margin, etc.)
- Ensure position size isn't too large
"Could not parse alert"
- Review alert validation examples
- Ensure alert includes instrument, direction, and action
- Check alert format matches what you validated
Getting Help
- Documentation - Browse all guides
- Discord - Join our community
- Support - Email support@nyria.io