# Symbol

***

## <mark style="color:green;">sym.ticker</mark>

Returns the symbol name as a string, without the $ prefix.

**Syntax:**

```javascript
sym.ticker($BTC) // "BTC"
sym.ticker($ETH) // "ETH"
sym.ticker($HYPE/USDC) // "HYPE/USDC"
```

**Examples:**

```javascript
// Get symbol name for coin parameter
{
  "action": "limit_order",
  "coin": {{ sym.ticker($BTC) }}, // "BTC"
  "price": {{ $BTC.close }}
}

// Get symbol name when using muti-coins dynamic variable
{
  "action": "limit_order",
  "coin": {{ sym.ticker($$) }}, // Converted to each symbol name
  "price": {{ $$.close }}
}

// Get symbol name for logging
{
  "message": "RSI for {{ sym.ticker($BTC) }} is {{ ta.rsi($BTC, 14) }}"
}
```

**Returns:** String (symbol name without $ prefix)

**Use Cases:**

* Dynamic payload coin
* Logging and debugging information
* Multi-symbol strategy management
* API payload construction

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://katoshi.gitbook.io/katoshi-docs/expressions/symbol.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
