mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
14 lines
249 B
Django/Jinja
14 lines
249 B
Django/Jinja
# 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'
|
|
}
|