# tradingEnabled()

### Function tradingEnabled()

{% code title="BancorNetworkInfo.sol" %}

```javascript
function tradingEnabled(Token pool) external view returns (bool);
```

{% endcode %}

This function is used to determine if trading is enabled for a specific token.&#x20;

### Function Arguments

| Name | Type  | Description                                                                                                                                                                                                              |
| ---- | ----- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| pool | Token | <p>The contract address of the token to check.<br><br>For example, <a href="https://etherscan.io/address/0x6b175474e89094c44da98b954eedeac495271d0f">DAI</a>:<br><em>0x6B175474E89094C44Da98b954EedeAC495271d0F</em></p> |

### Return Variables

This function returns true or false to indicate if trading is enabled for a given token.

| Variable Type | Returns                                                                                            |
| ------------- | -------------------------------------------------------------------------------------------------- |
| boolean       | <p><strong>True:</strong> Trading is enabled.<br><strong>False:</strong> Trading is disabled. </p> |
