tradingview-mcp 1.0.0__py3-none-any.whl → 1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tradingview_mcp/constants.py +6 -4
- tradingview_mcp/data/__init__.py +9 -0
- tradingview_mcp/data/column_display_names.json +827 -0
- tradingview_mcp/data/extracted/__init__.py +1 -0
- tradingview_mcp/data/extracted/ai_quick_reference.json +212 -0
- tradingview_mcp/data/extracted/common_fields.json +3627 -0
- tradingview_mcp/data/extracted/fields_by_market.json +23299 -0
- tradingview_mcp/data/extracted/screener_code_examples.json +9 -0
- tradingview_mcp/data/markets.json +83 -0
- tradingview_mcp/data/metainfo/bond.json +17406 -0
- tradingview_mcp/data/metainfo/bonds.json +1303 -0
- tradingview_mcp/data/metainfo/cfd.json +21603 -0
- tradingview_mcp/data/metainfo/coin.json +21111 -0
- tradingview_mcp/data/metainfo/crypto.json +23078 -0
- tradingview_mcp/data/metainfo/economics2.json +1026 -0
- tradingview_mcp/data/metainfo/forex.json +21003 -0
- tradingview_mcp/data/metainfo/futures.json +2972 -0
- tradingview_mcp/data/metainfo/ireland.json +22517 -0
- tradingview_mcp/data/metainfo/options.json +499 -0
- tradingview_mcp/data/metainfo/stocks.json +29808 -0
- tradingview_mcp/data/screeners/main_screeners.json +540 -0
- tradingview_mcp/data/screeners/markets.json +70 -0
- tradingview_mcp/data/screeners/stocks.json +416 -0
- tradingview_mcp/data/screeners/stocks_failed.json +36081 -0
- tradingview_mcp/docs_data.py +297 -0
- tradingview_mcp/scanner.py +2 -1
- tradingview_mcp/server.py +839 -51
- tradingview_mcp-1.0.dist-info/METADATA +334 -0
- tradingview_mcp-1.0.dist-info/RECORD +37 -0
- {tradingview_mcp-1.0.0.dist-info → tradingview_mcp-1.0.dist-info}/licenses/LICENSE +0 -2
- tradingview_mcp-1.0.0.dist-info/METADATA +0 -182
- tradingview_mcp-1.0.0.dist-info/RECORD +0 -13
- {tradingview_mcp-1.0.0.dist-info → tradingview_mcp-1.0.dist-info}/WHEEL +0 -0
- {tradingview_mcp-1.0.0.dist-info → tradingview_mcp-1.0.dist-info}/entry_points.txt +0 -0
tradingview_mcp/constants.py
CHANGED
|
@@ -393,16 +393,18 @@ COLUMNS = {
|
|
|
393
393
|
}
|
|
394
394
|
|
|
395
395
|
# Default columns for different query types
|
|
396
|
-
|
|
396
|
+
# Always include 'description' for full name (e.g., "Apple Inc." instead of just "AAPL")
|
|
397
|
+
DEFAULT_COLUMNS = ["name", "description", "close", "change", "volume", "market_cap_basic"]
|
|
397
398
|
|
|
398
|
-
PREMARKET_COLUMNS = ["name", "close", "volume", "premarket_change", "premarket_change_abs", "premarket_volume"]
|
|
399
|
+
PREMARKET_COLUMNS = ["name", "description", "close", "volume", "premarket_change", "premarket_change_abs", "premarket_volume"]
|
|
399
400
|
|
|
400
|
-
POSTMARKET_COLUMNS = ["name", "close", "volume", "postmarket_change", "postmarket_change_abs", "postmarket_volume"]
|
|
401
|
+
POSTMARKET_COLUMNS = ["name", "description", "close", "volume", "postmarket_change", "postmarket_change_abs", "postmarket_volume"]
|
|
401
402
|
|
|
402
|
-
CRYPTO_COLUMNS = ["name", "
|
|
403
|
+
CRYPTO_COLUMNS = ["name", "description", "close", "change", "volume", "market_cap_basic", "24h_vol|5"]
|
|
403
404
|
|
|
404
405
|
TECHNICAL_COLUMNS = [
|
|
405
406
|
"name",
|
|
407
|
+
"description",
|
|
406
408
|
"close",
|
|
407
409
|
"volume",
|
|
408
410
|
"change",
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""TradingView MCP packaged data files.
|
|
2
|
+
|
|
3
|
+
This package contains:
|
|
4
|
+
- markets.json: Market metadata
|
|
5
|
+
- column_display_names.json: Field display names
|
|
6
|
+
- metainfo/: Field definitions by market type
|
|
7
|
+
- screeners/: Screener presets and configurations
|
|
8
|
+
- extracted/: AI-friendly data extracted from docs
|
|
9
|
+
"""
|