mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
14 lines
249 B
Plaintext
14 lines
249 B
Plaintext
|
# Optional order type mapping.
|
||
|
order_types = {
|
||
|
'entry': 'limit',
|
||
|
'exit': 'limit',
|
||
|
'stoploss': 'market',
|
||
|
'stoploss_on_exchange': False
|
||
|
}
|
||
|
|
||
|
# Optional order time in force.
|
||
|
order_time_in_force = {
|
||
|
'entry': 'GTC',
|
||
|
'exit': 'GTC'
|
||
|
}
|