> For the complete documentation index, see [llms.txt](https://docs.unblinked.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.unblinked.com/terminal/create-bot-strategy.md).

# 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).
