ticker_whitelist.txt

This file allow you to whitelist/blacklist specific token ticker

Ticker Matching

When dealing with ticker matching, there are two types of matches you can use: Strict Match and Contain Match. Similarly, for blacklisting tickers, you can use the same types of matches to exclude specific tickers. Here's how each one works:

Strict Match

  • Syntax: +test_ticker

  • Description: Includes only the exact ticker test_ticker.

Contain Match

  • Syntax: ++test_ticker

  • Description: Includes any ticker that contains the string test_ticker anywhere within it. For example, tickers like test_ticker123, my_test_ticker, or abc_test_ticker_def will all be included.

Blacklisting Tickers

You can also exclude tickers using the same matching principles:

Strict Match

  • Syntax: -test_ticker

  • Description: Excludes only the exact ticker test_ticker.

Contain Match

  • Syntax: --test_ticker

  • Description: Excludes any ticker that contains the string test_ticker anywhere within it. For example, tickers like test_ticker123, my_test_ticker, or abc_test_ticker_def will all be excluded.

Last updated