
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
tradingview.screener
Advanced tools
A C# port of the TradingView-Screener Python package that allows you to create custom stock screeners using TradingView's API. This package retrieves data directly from TradingView without web scraping or HTML parsing.
This project is a C# port of the excellent TradingView-Screener Python package by shner-elmo. All credit for the original implementation and API research goes to them.
Install via NuGet Package Manager:
dotnet add package TradingView.Screener
For the CLI tool:
dotnet tool install --global TradingView.Screener.Cli
Here's a simple example using the library:
using TradingView.Screener;
using static TradingView.Screener.Columns;
// Basic query - Get top stocks by volume
var result = await new Query()
.Select("name", "close", "volume", "market_cap_basic")
.Limit(5)
.GetScannerDataRawAsync();
// Print results
foreach (var row in result.Data)
{
Console.WriteLine($"Symbol: {row.Symbol}, Name: {row.Data[0]}, Close: {row.Data[1]}, Volume: {row.Data[2]}");
}
The CLI tool provides a simple interface for running stock screens:
# Basic scan
tvscreener scan
# With filters
tvscreener scan --min-price 10 --min-volume 1000000 --limit 5
# With market filter
tvscreener scan -m crypto --min-volume 1000000 --limit 5
# With JSON output
tvscreener scan --min-price 50 --limit 3 --json
Available options:
-m, --market
: Market to scan (e.g., america, japan, crypto)--min-price
: Minimum price--max-price
: Maximum price--min-volume
: Minimum volume--max-volume
: Maximum volume--min-market-cap
: Minimum market cap--max-market-cap
: Maximum market cap--exchange
: Exchange (e.g., NASDAQ, NYSE)--sector
: Sector--industry
: Industry-l, --limit
: Maximum number of results--order-by
: Column to sort by--descending
: Sort in descending order--json
: Output in JSON format// Find value stocks with good fundamentals
var valueStocks = await new Query()
.Select("name", "close", "volume", "market_cap_basic", "price_earnings_ttm")
.Where(
Close > 5,
Volume > 100000,
MarketCap > 1_000_000_000 // At least 1B market cap
)
.OrderBy("volume", ascending: false)
.Limit(5)
.GetScannerDataRawAsync();
// Find stocks with specific technical indicators
var technicalSignals = await new Query()
.Select("name", "close", "volume", "EMA20", "EMA50", "RSI")
.Where(
Volume > 1000000,
Close > 10,
MarketCap > 1_000_000_000
)
.OrderBy("volume", ascending: false)
.Limit(5)
.GetScannerDataRawAsync();
// Find top cryptocurrencies by volume
var cryptoScreener = await new Query()
.SetMarkets("crypto")
.Select("name", "close", "volume", "market_cap_basic", "Volatility.D")
.Where(
Volume > 1000000
)
.OrderBy("market_cap_basic", ascending: false)
.Limit(5)
.GetScannerDataRawAsync();
private async Task<T> RetryWithBackoff<T>(Func<Task<T>> operation, int maxAttempts = 3)
{
for (int i = 1; i <= maxAttempts; i++)
{
try
{
return await operation();
}
catch (HttpRequestException) when (i < maxAttempts)
{
await Task.Delay(TimeSpan.FromSeconds(Math.Pow(2, i)));
}
}
throw new Exception("Max retry attempts reached");
}
public async IAsyncEnumerable<ScreenerRow> GetResultsInBatches(int batchSize = 100)
{
int offset = 0;
while (true)
{
var batch = await new Query()
.Select("name", "close", "volume")
.Offset(offset)
.Limit(batchSize)
.GetScannerDataRawAsync();
if (!batch.Data.Any()) break;
foreach (var row in batch.Data)
yield return row;
offset += batchSize;
}
}
Where2()
may not work reliably. Use simple filters with Where()
instead.This package is provided under the MIT License. While it interacts with TradingView's API, it is not affiliated with, endorsed by, or sponsored by TradingView. Users should ensure they comply with TradingView's terms of service when using this package.
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
dotnet restore
dotnet test
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Unknown package
We found that tradingview.screener demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.