# Switch to correlated asset during high correlation
if correlation(BTC, ETH) > 0.9:
use ETH data for confirmation
# Dynamic timeframe based on volatility
timeframe = "1m" if ATR > threshold else "5m"
# Conditional spread analysis
if spread > 0.1%:
request depth data
Commands
kit dynamic-request configure
kit dynamic-request test <symbol>
kit dynamic-request correlation-pairs
Performance
Caches requests to minimize API calls
Smart invalidation based on data staleness
Parallel fetching for independent requests
1---2name: dynamic-requests3description: Dynamic Requests4---5# Dynamic Requests67Pine Script v6 style dynamic security requests with runtime symbol/timeframe changes.89## Features1011- **Runtime Symbol Switching** - Change requested symbol based on conditions12- **Dynamic Timeframe** - Adjust timeframe based on volatility13- **Conditional Data Requests** - Only fetch data when needed14- **Multi-Symbol Correlation** - Dynamic correlation pairs15- **Adaptive MTF** - Auto-select optimal timeframes1617## Example Use Cases1819```20# Switch to correlated asset during high correlation21if correlation(BTC, ETH) > 0.9:22 use ETH data for confirmation2324# Dynamic timeframe based on volatility 25timeframe = "1m" if ATR > threshold else "5m"2627# Conditional spread analysis28if spread > 0.1%:29 request depth data30```3132## Commands3334```35kit dynamic-request configure36kit dynamic-request test <symbol>37kit dynamic-request correlation-pairs38```3940## Performance4142- Caches requests to minimize API calls43- Smart invalidation based on data staleness44- Parallel fetching for independent requests
Run npx skillmds@latest add signal-execution-labs/dynamic-requests in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Dynamic Requests It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Signal-Execution-Labs (@signal-execution-labs) published this skill. Their other Agent Skills are listed on their SkillMD profile.