v4.0.7
Updated 14th October 2025
NEW CLI FEATURES
Chaining of commands. docs
";" operator for sequential processing
"&" operator for parallel processing
Ordering with explicit symbols
buy 1 ethusdt
for all order types and all size types. The symbol comes after the main command and applicable size command. See Ordertype pages for examples.New repeat function for looping tasks
repeat 5 (buy 1 btcusdt & buy 1 ethusdt & buy 1 solusdt ; sleep 15s)
docsList ongoing repeat and chain tasks with their ID with
tasks
command, kill latest task withkill
or kill a specific ID withkill <ID>
.Tasks are also shown in Activity component.
New sleep command:
sleep <duration>
- unit supportsms
,s
(default),m
; max 10min.New alias system for typing shortcuts inside the CLI, similar to existing hotkey system:
alias chadswarm "repeat 5 (swarm buy 100000$ into 5; sleep 5)"
- now type only:chadswarm
docsNew TWAP module:
twap buy 1 ethusdt into 10 over 10
docsNew TWAP Chase module incl. parameters mimicking the twap chase in orderform:
twap chase buy 1 ethusdt into 10 over 10 timeout 30% fail market
docsgrammar: twap chase buy|sell SIZE [SYMBOL] into LOTS over MINS [timeout [PCT%] [maket|next]] [fail market|next] [reduce]
Defaults (when omitted): 50%, market, market; e.g.:
twap chase buy 1 ethusdt into 10 over 10
twap chase buy 100% ethusdt into 10 over 10 timeout 30% next fail market reduce
twap chase buy 1 ethusdt into 10 over 10 timeout 25% next fail next
New bump command: options to specify side, x top/bottom orders, absolute or relative-% price change, e.g.
bump buys top 5 0.1%
docsRelative pricing with positions entry price
buy 1 at $entry -1%
in addition to the existing relative-to-lastprice-pricing. Works with simple and scale.
New general commands
leverage handling
leverage
orlev
to show current leverage;leverage 50
orlev 50
to change current leveragereverse
analogous to close command. works also with and explicit instruments, e.g.reverse long btcusdt
export
andimport
to export / import all binds, variables and aliases together (backwards compatible - old export/import still alive but phasing it out)
NEW UI CONTROLS
Hotkeys general
key combinations with new modifiers: ctrl, alt/option and shift:
bind ctrl+a "<command>"
,bind k+ctrl "<command>"
added F-keys for binding, also work in combination with modifiers
bind F1 "<command>"
bind ctrl+F2 "<command>"
CLI
focus CLI input field: "ui cli focus" e.g.
bind global ctrl+space "ui cli focus"
CLI link color change: "ui cli link_color" e.g.
ui cli link_orange
Place Order form
Control a linked Place Order form via
ui order <control-command>
'ui order type_ordertype' to changes ordertypes of linked place order forms, e.g.
ui order type_chase
size and slider control. e.g. do
bind global shift+right "ui order size +10%
(% always refering to 100% max available size) Absolute set: βui order size 250
βββββ set to 250 contracts/coins βui order size $500
ββββ set to 500 USD (equivalent) βui order size 40%
ββββ set to 40 % of max size Relative adjust: βui order size +10
ββββ add 10 contracts/coins βui order size -$50
βββ subtract 50 USD worth βui order size +5%
βββ raise by 5% of max sizefocus size inputs:
ui order sizefocus
orui order sizefocus1
for first sizeinput,ui order sizefocus2
for the 2nd USD-input$ordersize
: using a size from orderform (only implicit instrument)toggle quick buttons via
ui order quick1-7
Using Quicksize button sizes via
$quick1
to$quick7
btn_reduce
andbtn_post
btn_buy
andbtn_sell
Header
ui header designer
ui header reduce
Tabs
Change layout tabs via
ui tab <name>
Chart
$click
: using a price from chart click in CLI (= using price from ordermenu).buy 1 at $click
(only implicit instrument)change chart component timeframes via e.g.
ui chart time_4h
Other
Performance fixes and improvements for Tick charts and DOM
Mobile fixes and better scrolling
Misc. fixes
DOM columns settings persistence
TV chart indicator settings persistence
Fix for clicking price in Positions component to use in Orderform
PnL card height
Limit order size calculation fix for specific contracts
Default Layout fixed
Various TV chart fixes
Last updated