$npx -y skills add algoderiv/agent-skills --skill rice-quantRiceQuant RQData Python API - 米筐金融数据Python接口,用于获取中国A股、港股、期货、期权、基金、债券、宏观经济和另类数据。当使用rqdatac编写量化交易和金融分析Python代码时使用此skill。
| 1 | # Rq_Dev Skill |
| 2 | |
| 3 | Ricequant rqdata python api - 米筐金融数据python接口,用于获取中国a股、港股、期货、期权、基金、债券、宏观经济和另类数据。当使用rqdatac编写量化交易和金融分析python代码时使用此skill。, generated from official documentation. |
| 4 | |
| 5 | ## When to Use This Skill |
| 6 | |
| 7 | This skill should be triggered when: |
| 8 | - Working with rq_dev |
| 9 | - Asking about rq_dev features or APIs |
| 10 | - Implementing rq_dev solutions |
| 11 | - Debugging rq_dev code |
| 12 | - Learning rq_dev best practices |
| 13 | |
| 14 | ## Quick Reference |
| 15 | |
| 16 | ### Common Patterns |
| 17 | |
| 18 | *Quick reference patterns will be added as you use the skill.* |
| 19 | |
| 20 | ### Example Code Patterns |
| 21 | |
| 22 | **Example 1** (rust): |
| 23 | ```rust |
| 24 | all_instruments(type=None, date=None, market='cn') |
| 25 | ``` |
| 26 | |
| 27 | **Example 2** (rust): |
| 28 | ```rust |
| 29 | rqdatac.all_instruments(type=None, market='hk', date=None) |
| 30 | ``` |
| 31 | |
| 32 | **Example 3** (rust): |
| 33 | ```rust |
| 34 | get_pit_financials_ex(order_book_ids, fields, start_quarter, end_quarter, date=None, statements='latest', market='cn') |
| 35 | ``` |
| 36 | |
| 37 | **Example 4** (rust): |
| 38 | ```rust |
| 39 | futures.get_dominant(underlying_symbol, start_date=None, end_date=None, rule=0, rank=1, market='cn') |
| 40 | ``` |
| 41 | |
| 42 | **Example 5** (json): |
| 43 | ```json |
| 44 | [In] |
| 45 | futures.get_dominant('IF', '20160801') |
| 46 | [Out] |
| 47 | date |
| 48 | 20160801 IF1608 |
| 49 | ``` |
| 50 | |
| 51 | ## Reference Files |
| 52 | |
| 53 | This skill includes comprehensive documentation in `references/`: |
| 54 | |
| 55 | - **alternative_data.md** - Alternative Data documentation |
| 56 | - **api_reference.md** - Api Reference documentation |
| 57 | - **derivatives.md** - Derivatives documentation |
| 58 | - **fixed_income.md** - Fixed Income documentation |
| 59 | - **funds_indices.md** - Funds Indices documentation |
| 60 | - **getting_started.md** - Getting Started documentation |
| 61 | - **risk_analytics.md** - Risk Analytics documentation |
| 62 | - **stocks.md** - Stocks documentation |
| 63 | |
| 64 | Use `view` to read specific reference files when detailed information is needed. |
| 65 | |
| 66 | ## Working with This Skill |
| 67 | |
| 68 | ### For Beginners |
| 69 | Start with the getting_started or tutorials reference files for foundational concepts. |
| 70 | |
| 71 | ### For Specific Features |
| 72 | Use the appropriate category reference file (api, guides, etc.) for detailed information. |
| 73 | |
| 74 | ### For Code Examples |
| 75 | The quick reference section above contains common patterns extracted from the official docs. |
| 76 | |
| 77 | ## Resources |
| 78 | |
| 79 | ### references/ |
| 80 | Organized documentation extracted from official sources. These files contain: |
| 81 | - Detailed explanations |
| 82 | - Code examples with language annotations |
| 83 | - Links to original documentation |
| 84 | - Table of contents for quick navigation |
| 85 | |
| 86 | ### scripts/ |
| 87 | Add helper scripts here for common automation tasks. |
| 88 | |
| 89 | ### assets/ |
| 90 | Add templates, boilerplate, or example projects here. |
| 91 | |
| 92 | ## Notes |
| 93 | |
| 94 | - This skill was automatically generated from official documentation |
| 95 | - Reference files preserve the structure and examples from source docs |
| 96 | - Code examples include language detection for better syntax highlighting |
| 97 | - Quick reference patterns are extracted from common usage examples in the docs |
| 98 | |
| 99 | ## Updating |
| 100 | |
| 101 | To refresh this skill with updated documentation: |
| 102 | 1. Re-run the scraper with the same configuration |
| 103 | 2. The skill will be rebuilt with the latest information |