tradingview-screener-ts
Version:
TypeScript port of TradingView Screener with 100% Python parity - Based on the original Python library by shner-elmo (https://github.com/shner-elmo/TradingView-Screener)
11 lines • 623 B
TypeScript
/**
* Constants for TradingView Screener TypeScript
*
* This module exports all constants used throughout the library,
* including markets, asset classes, and other configuration values.
*
* Ported directly from Python version to maintain 100% compatibility.
*/
export { MARKETS, MARKETS_WITH_NAMES, MARKETS_LIST, ASSET_CLASSES, COUNTRY_MARKETS, MARKET_INFO, isValidMarket, getMarketInfo, getMarketName, getMarketCode, getMarketsByType, type Market, type MarketTuple, type AssetClass, type CountryMarket, } from './markets';
export { default as MARKETS_DEFAULT } from './markets';
//# sourceMappingURL=index.d.ts.map