Command line
The cli is designed for fast trading, enabling users to create tailored commands for various trading scenarios.
Last updated
The cli is designed for fast trading, enabling users to create tailored commands for various trading scenarios.
Last updated
This guide introduces the syntax and offers quickstart examples on how to use the CLI.
Commands in Tree Terminal follow a structured format. Understanding mandatory vs. optional variables is crucial for effective use.
Mandatory Variables:
{coin}
:
Required for all commands.
Specifies the coin symbol (e.g., BTC, ETH).
Optional Variables:
{size}
:
Specifies the position size.
Defaults to the first size in your trading configuration if omitted.
Shorthand:
1k = $1,000
1m = $1,000,000
{account}
:
Refers to the subaccount or trading account.
If omitted, the default account is used.
{price}
:
Limit price for the trade (e.g., p_41500
for $41,500).
Omit for market orders.
{timeInForce}
:
Specifies order duration:
GTC: Good Till Canceled.
IOC: Immediate or Cancel.
{slippage}
:
Sets acceptable price deviation.
Example: slippage=0.5%
.
{percent}
:
Contextual variable used for percentage-based actions, such as:
Closing: Closing 50% of a position.
Creating Limit Orders: Setting a limit price based on a percentage deviation from the market price.
{last}
:
Refers to the first coin from the most recent notification.
Example: l {last} 10k
executes a long position for the coin from the latest notification
{size1}, {size2}, {size3}
:
Correspond to predefined trading sizes in your configuration.
Example: l btc {size2}
uses the second trading size from your setup.
Basic Commands:
Long:
Long BTC with $10,000.
Short:
Short ETH with $5,000 on Binance.
Close:
Close 50% of BTC position across all accounts.
Limit Order:
Place a limit order to long BTC at $62,000.
Limit Order:
Place a limit order to long BTC 1% below current price
TWAP (Time-Weighted Average Price) splits orders into smaller intervals for better execution.
Syntax:
Modifiers:
<70000
: Execute trades only below $70,000.
max_200k
: Stop once the position reaches $200,000.
until_{time_in_minutes}
: Set time constraints.
Examples:
Long BTC in intervals:
Long BTC with $1,000 every 20 seconds.
Short ETH with a cap:
Time-limited TWAP:
Long $1,000 of BTC every 20 seconds for 30 minutes.
How to cancel:
Go to "open orders" and you will see your twap there. Click on the cancel button to stop the twap. Keep in mind that TWAPs cannot be cancelled remotely via Telegram.
Custom commands build on the syntax and examples above, allowing users to simplify repetitive trading actions.
Adding Custom Commands:
Go to the "Shortcuts" field in General Settings and add commands.
Supported Variables:
{coin}
, {size}
, {timeInForce}
, {account}
, {cmd}
, {slippage}
, {percent}, {last}, {size(n)}
.
Use Cases:
Rename commands for better readability.
Split orders across accounts for simultaneous entries.
Define commands for specific time-in-force options (e.g., GTC vs. IOC).
These commands can also be used with Telegram and Discord bots by enabling them in the Trading field found in the general settings.
Command:
Displays all current positions and account balances across connected accounts.
<ticker>
Command:
Cancels all active TWAPs and pending orders associated with the specified ticker.
Example:
Stops all TWAPs and cancels all orders for BTC.
Command:
Lists all active orders currently placed across your accounts.
Caution: Be mindful when using this command if you have many scale orders set, as it may produce a large amount of output and cause spam in Telegram or Discord.
Defaults:
{size}
defaults to the first size in your trading configuration.
{account}
defaults to the main account if unspecified.
Testing:
Test all commands in a safe environment with small sizes.
Tracking Twitter Accounts:
Add or remove Twitter accounts to monitor using simple commands:
Add Account:
Example: add elonmusk
will start tracking Elon Musk’s tweets.
Delete Account:
Example: del elonmusk
will stop tracking Elon Musk’s tweets.
Add Account with extra tracking
Example: add elonmusk all
will start tracking Elon Musk’s tweets, retweets, follows, replies, bio and picture changes.
Tracking Specific Tweets:
Track specific tweets for potential deletions:
Example: !track https://twitter.com/elonmusk/status/123456789
will notify you if that tweet is deleted.
Shortening Keywords for Commands
Custom Aliases:
You can map commands to shorter keywords for faster execution.
Instead of typing account
, simply use pos
to view all your balances and positions on Tree Terminal.
Why Use Aliases?
Save time and effort during fast-paced trading.
Simplify repetitive actions with intuitive shortcuts
Shortcuts for Closing TWAPs:
Example: cwap btc binance
will execute c btc 1% twap binance
, closing 1% of your BTC position per interval on the Binance account.
Left click entry last headline on size4:
Pressing ctrl+left
will long the coin from the last notification with the fourth trading size.
Wait command
Wait allows you to pause before a command or between two commands.
Unit is always in ms, so 500ms would be 0.5s
SL command
sl 25% of the btc position 2% below current price.