tartigradia

composite_ticker_cleaner

tartigradia Diupdate   
Library "composite_ticker_cleaner"
Extract a clean symbol from a composite ticker. E.g., (BINANCE:BTCUSD+KRAKEN:BTCUSD)/2 as input will return BTCUSD or BINANCE:BTCUSD

composite_ticker_cleaner_extract_first(symbol, keepexchange)
  Extract the first symbol out of the supplied string (usually ticker.standard(syminfo.tickerid) )
  Parameters:
    symbol: string input string to search in
    keepexchange: bool (optional) Keep exchange in the returned ticker? By default, we only return the symbol without the exchange.
  Returns: first occurrence of a symbol

composite_ticker_cleaner_extract_first(keepexchange)
  Extract the first symbol out of the current tickerid (as provided by ticker.standard(syminfo.tickerid) )
  Parameters:
    keepexchange: bool (optional) Keep exchange in the returned ticker? By default, we only return the symbol without the exchange.
  Returns: first occurrence of a symbol in the current tickerid

This is inspired by the work I did on this indicator:


I needed a similar functionality in another script, so instead of duplicating code, I thought generalizing the process in a library could be helpful for me and others, and will be easier to maintain and upgrade with new features if I need to.
Catatan Rilis:
Slight comment update
Catatan Rilis:
v3

Updated:
* Now works for both series and simple string inputs (simple string is necessary to use with request.security, as initially intended!). We are using the new overloading functions feature in PineScript v5 to alllow this.
Catatan Rilis:
v4

Update:
* Rename functions "composite_ticker_cleaner_extract_first" to "extract_first_symbol"
Catatan Rilis:
v5

Added:
extract_before(symbol, pattern)
  Extract the part of the string before the specified pattern
  Parameters:
    symbol: Input string to search in
    pattern: Pattern to search
  Returns: Part of the string before the first occurrence of the matched pattern

extract_before_usd(symbol)
  Extract the part of the string before "USD" (includes USDT, USDC, etc). This is especially useful to extract the symbol out of USD* pair ticker. Eg, out of BTCUSD, we will extract BTC.
  Parameters:
    symbol: Input string to search in
  Returns: Part of the string before the first occurrence of "USD".

display_table_text(intext, tooltip)
  Display some text on the last bar. Helper function to facilitate debugging or user display (eg, to confirm which symbol was detected).
  Parameters:
    intext: Text to display.
    tooltip: (optional) Tooltip text to display on mouse hover.
  Returns: Nothing. Display the supplied text in a table in the top right corner. Note that this will not affect viewport scaling (ie, the viewport will still be scaled according to the content, not the text).
Perpustakaan pine

Dalam semangat TradingView yang sesungguhnya, penulis telah membuat Pine Code sebagai perpustakaan sumber-terbuka sehingga programmer Pine lainnya dapat menggunakannya kembali. Beri semangat kepada penulis! Anda dapat menggunakan perpustakaan ini secara pribadi maupun dalam publikasi terbuka, namun menggunakan ulang kode ini diatur dalam Tata Tertib.

Pernyataan Penyangkalan

Informasi dan publikasi tidak dimaksudkan untuk menjadi, dan bukan merupakan saran keuangan, investasi, perdagangan, atau rekomendasi lainnya yang diberikan atau didukung oleh TradingView. Baca selengkapnya di Persyaratan Penggunaan.

Ingin menggunakan perpustakaan ini?

Copy garis berikut ini dan tempel pada script anda.