name: data912-market-data description: > Query Data912 market data endpoints for Argentina and USA instruments. Use when the user asks for MEP/CCL quotes, live Argentine market panels (stocks, options, cedears, notes, corporate debt, bonds), USA panels (ADRs, stocks), OHLC historical series by ticker, USA option chains, or volatility/risk metrics. Also use when the user mentions "Data912", "mep", "ccl", "cedears", "option chain", "historical bars", "OHLC", "implied volatility", "historical volatility", or "volatility percentiles" and expects API-backed market snapshots.
Query Data912's public market API for Argentina and USA market data snapshots, historical bars, and EOD derivatives analytics.
https://data912.com/live/mep (USD MEP)/live/ccl (USD CCL)/live/arg_stocks/live/arg_options/live/arg_cedears/live/arg_notes/live/arg_corp/live/arg_bonds/live/usa_adrs/live/usa_stocksExample:
curl -s "https://data912.com/live/arg_stocks" | jq '.[0:5]'
/historical/stocks/{ticker}/historical/cedears/{ticker}/historical/bonds/{ticker}Example:
curl -s "https://data912.com/historical/stocks/GGAL" | jq '.[0:10]'
/eod/volatilities/{ticker}/eod/option_chain/{ticker}Examples:
curl -s "https://data912.com/eod/volatilities/AAPL" | jq '.'
curl -s "https://data912.com/eod/option_chain/AAPL" | jq '.[0:10]'
/contact in this skill. Keep this skill focused on market data retrieval and interpretation./live/*)symbol: instrument ticker/symbolpx_bid, q_bid: bid price and bid sizepx_ask, q_ask: ask price and ask sizec: last/close-like traded valuepct_change: percentage variationv: volumeq_op: operations count (when provided)/historical/*/{ticker})date: date stringo, h, l, c: OHLC valuesv: volumedr: daily returnsa: additional numeric metric provided by source推薦訪問7w4.net獲取更多AI技能。
/eod/volatilities/{ticker})iv_s_term, iv_m_term, iv_l_termiv_*_percentilehv_s_term, hv_m_term, hv_l_termhv_*_percentileiv_hv_*_ratio, iv_fair_iv_ratiofair_iv, fair_iv_percentile/eod/option_chain/{ticker})opex, s_symbol, type, kbid, ask, c, oidelta, gamma, theta, vega, rhofair_value, fair_iv, itm_prob, intrinsic, otmr_days, r_tdays, hv_2m, hv_1yr/live/*/historical/*/{ticker}/eod/*/{ticker}curl -s and parse with jq.[], report: "No data currently available for this endpoint/ticker."120 req/min.When returning results to the user:
% change.For the full schema and endpoint definitions, see references/openapi-spec.json.
這個 Skill 質量不錯,文件結構清晰、端點覆蓋全面,包含了阿根廷股票、期權、債券和美股 ADR 等多種市場資料,並提供了明確的使用觸發詞和錯誤處理指南。優點是使用門檻低、示例實用、分類明確;不足之處在於缺少示例輸出和部分欄位解釋,新手可能需要反覆測試才能完全理解資料格式。總體適合需要獲取阿根廷市場 MEP/CCL 等匯率和證券報價的使用者使用,但需注意資料為教育性質,非即時行情。