# Troubleshooting

| Symptom                                                                                 | Likely cause                                                      | Fix                                                                                                                                                                                         |
| --------------------------------------------------------------------------------------- | ----------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Log: `sidan-gin package not available. Transaction signing will not be available.`      | `sidan-gin` not installed in the `hummingbot` conda env           | `conda activate hummingbot && pip install sidan-gin` — then restart Hummingbot                                                                                                              |
| `connect delta-defi` succeeds, `status` is green, but orders never land on the exchange | Same as above — connector authed but can't sign                   | Same fix                                                                                                                                                                                    |
| `ModuleNotFoundError: No module named 'sidan_gin'` at startup                           | pip installed `sidan-gin` to the wrong Python                     | `conda activate hummingbot` first, then `pip install sidan-gin`. Verify with `which python` — it should point inside the env                                                                |
| Strategy scripts missing from the `create` dropdown                                     | `external_scripts_path` is set but the directory is wrong / empty | Check with `config external_scripts_path`. Unset the value to fall back to built-in scripts.                                                                                                |
| `connect delta-defi` returns 401 / auth error                                           | Wrong API key or trading password                                 | Re-run `connect delta-defi` with the credentials you set when generating the API key. See [API Key / Dashboard](https://docs.deltadefi.io/start-trading/getting-started/api-key-dashboard). |
| Unexpected API status codes in logs                                                     | —                                                                 | See [Delta-DeFi status codes](https://docs.deltadefi.io/start-trading/developers/status-code)                                                                                               |

### Getting further help

* Hummingbot-general issues: [Hummingbot Discord](https://discord.gg/hummingbot)
* Delta-DeFi platform issues: see the [FAQ](https://docs.deltadefi.io/faq/general) sections on the main docs site


---

# 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://docs.deltadefi.io/start-trading/getting-started/hummingbot/troubleshooting.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.
