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_tickerDescription: Includes only the exact ticker
test_ticker.
Contain Match
Syntax:
++test_tickerDescription: Includes any ticker that contains the string
test_tickeranywhere within it. For example, tickers liketest_ticker123,my_test_ticker, orabc_test_ticker_defwill all be included.
Blacklisting Tickers
You can also exclude tickers using the same matching principles:
Strict Match
Syntax:
-test_tickerDescription: Excludes only the exact ticker
test_ticker.
Contain Match
Syntax:
--test_tickerDescription: Excludes any ticker that contains the string
test_tickeranywhere within it. For example, tickers liketest_ticker123,my_test_ticker, orabc_test_ticker_defwill all be excluded.
Last updated