4 lines
222 B
Bash
Executable File
4 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sqlite3 -header -csv ~/freqtrade/user_data/tradesv3.sqlite "SELECT id, pair, open_date, amount, open_rate, max_rate, close_profit, stake_amount FROM trades WHERE is_open = 0 ORDER BY open_date DESC LIMIT 10;"
|