spot_df = rd.get_data("MSFT.O", ["TR.PriceClose"])
options_chain = rd.discovery.search(
view=rd.discovery.Views.EQUITY_QUOTES,
filter="SearchAllCategoryv2 eq 'Options' and "
"StrikePrice ge 400 and StrikePrice le 480 and "
"ExchangeName xeq 'OPRA'"
)
Tongues/
├── app.py
├── index.html
├── overview.html
├── strategy.html
├── run.html
├── technical.html
├── CNAME
├── screenshots/
│ ├── market-data-fetching.png
│ ├── option-data.png
│ ├── arbitrage-navigator.png
│ ├── arbitrage-opportunities.png
│ ├── arbitrage-analysis.png
│ ├── selected-strategy.png
│ ├── selected-strategy-continued.png
│ └── surface-3d.png
└── src/
└── deviltongues/
├── fetch_options.py
└── utilities.py