# Create Bot Strategy

## What is Bot?

The **UnBlinked bot** is a process that performs trading user's asset automatically based on a strategy written in **python** language. Basically, it is a pair of **code** and **scheduler**. Once you set a code and scheduler, and run a bot, then the bot will execute the code on schedules set by the scheduler.

As the main logic of bots are written in **python code**, there's no blackbox on bot's order decisions. Also, you can fix/improve/drop your trading strategies in detail by the code.&#x20;

Even if you don't know much about the python, you can still run your own bot by [forking](/terminal/fork-strategy.md) codes from [examples](/terminal/strategy-examples.md), or the ones of the others, and optimize them with just a little bit of code change.

<img src="/files/I9gPhkF97l5T0iJWLw7n" alt="Concept of bots running in user&#x27;s account for now. Bots are the (code, scheduler) pairs." class="gitbook-drawing">

Updates such as **socket** and **variables** will be added sooner or later.

***

## Scheduler

***

## code

Check [How to write code](/terminal/create-bot-strategy/0.-how-to-write-code.md).


---

# 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.unblinked.com/terminal/create-bot-strategy.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.
