| @@ -11,8 +11,8 @@ | |||||||
|         "sell": 30 |         "sell": 30 | ||||||
|     }, |     }, | ||||||
|     "bid_strategy": { |     "bid_strategy": { | ||||||
|         "ask_last_balance": 0.0, |  | ||||||
|         "use_order_book": false, |         "use_order_book": false, | ||||||
|  |         "ask_last_balance": 0.0, | ||||||
|         "order_book_top": 1, |         "order_book_top": 1, | ||||||
|         "check_depth_of_market": { |         "check_depth_of_market": { | ||||||
|             "enabled": false, |             "enabled": false, | ||||||
|   | |||||||
| @@ -22,8 +22,8 @@ | |||||||
|         "sell": 30 |         "sell": 30 | ||||||
|     }, |     }, | ||||||
|     "bid_strategy": { |     "bid_strategy": { | ||||||
|         "ask_last_balance": 0.0, |  | ||||||
|         "use_order_book": false, |         "use_order_book": false, | ||||||
|  |         "ask_last_balance": 0.0, | ||||||
|         "order_book_top": 1, |         "order_book_top": 1, | ||||||
|         "check_depth_of_market": { |         "check_depth_of_market": { | ||||||
|             "enabled": false, |             "enabled": false, | ||||||
|   | |||||||
| @@ -5,15 +5,14 @@ | |||||||
|     "fiat_display_currency": "EUR", |     "fiat_display_currency": "EUR", | ||||||
|     "ticker_interval" : "5m", |     "ticker_interval" : "5m", | ||||||
|     "dry_run": true, |     "dry_run": true, | ||||||
|     "db_url": "sqlite:///tradesv3.dryrun.sqlite", |  | ||||||
|     "trailing_stop": false, |     "trailing_stop": false, | ||||||
|     "unfilledtimeout": { |     "unfilledtimeout": { | ||||||
|         "buy": 10, |         "buy": 10, | ||||||
|         "sell": 30 |         "sell": 30 | ||||||
|     }, |     }, | ||||||
|     "bid_strategy": { |     "bid_strategy": { | ||||||
|         "ask_last_balance": 0.0, |  | ||||||
|         "use_order_book": false, |         "use_order_book": false, | ||||||
|  |         "ask_last_balance": 0.0, | ||||||
|         "order_book_top": 1, |         "order_book_top": 1, | ||||||
|         "check_depth_of_market": { |         "check_depth_of_market": { | ||||||
|             "enabled": false, |             "enabled": false, | ||||||
| @@ -60,8 +59,8 @@ | |||||||
|     }, |     }, | ||||||
|     "telegram": { |     "telegram": { | ||||||
|         "enabled": false, |         "enabled": false, | ||||||
|         "token": "", |         "token": "your_telegram_token", | ||||||
|         "chat_id": "" |         "chat_id": "your_telegram_chat_id" | ||||||
|     }, |     }, | ||||||
|     "initial_state": "running", |     "initial_state": "running", | ||||||
|     "forcebuy_enable": false, |     "forcebuy_enable": false, | ||||||
|   | |||||||
| @@ -191,14 +191,28 @@ If this is configured, all 4 values (`buy`, `sell`, `stoploss` and | |||||||
| `stoploss_on_exchange`) need to be present, otherwise the bot will warn about it and fail to start. | `stoploss_on_exchange`) need to be present, otherwise the bot will warn about it and fail to start. | ||||||
| The below is the default which is used if this is not configured in either strategy or configuration file. | The below is the default which is used if this is not configured in either strategy or configuration file. | ||||||
|  |  | ||||||
|  | Syntax for Strategy: | ||||||
|  |  | ||||||
| ```python | ```python | ||||||
| "order_types": { | order_types = { | ||||||
|     "buy": "limit", |     "buy": "limit", | ||||||
|     "sell": "limit", |     "sell": "limit", | ||||||
|     "stoploss": "market", |     "stoploss": "market", | ||||||
|     "stoploss_on_exchange": False, |     "stoploss_on_exchange": False, | ||||||
|     "stoploss_on_exchange_interval": 60 |     "stoploss_on_exchange_interval": 60 | ||||||
| }, | } | ||||||
|  | ``` | ||||||
|  |  | ||||||
|  | Configuration: | ||||||
|  |  | ||||||
|  | ```json | ||||||
|  | "order_types": { | ||||||
|  |     "buy": "limit", | ||||||
|  |     "sell": "limit", | ||||||
|  |     "stoploss": "market", | ||||||
|  |     "stoploss_on_exchange": false, | ||||||
|  |     "stoploss_on_exchange_interval": 60 | ||||||
|  | } | ||||||
| ``` | ``` | ||||||
|  |  | ||||||
| !!! Note | !!! Note | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user