Botting
The Botting Component in Tree Terminal enables users to automate trading decisions based on real-time news and tweets. This guide explains its usage, search and command logic, and common patterns.
Last updated
The Botting Component in Tree Terminal enables users to automate trading decisions based on real-time news and tweets. This guide explains its usage, search and command logic, and common patterns.
Last updated
This component should be used with caution. It allows the user to locally bot news & tweets received by Tree Terminal.
Main websocket is selected by default, you can also add your own Websocket in the field "News" in general settings.
Users should:
Focus on non-obvious events, rather than hyper-optimized events like listings, which are highly competitive.
Define specific, actionable conditions using regex, JavaScript, or keywords in the search box.
Pair these conditions with commands to trigger trades.
Test and validate all configurations before deploying.
Activate pushover if they would like to be notified when the botting criteria fires.
The search box defines conditions to trigger commands. It supports plain text, regex, and JavaScript.
Explaination:
Matches news containing "bitcoin," "solana," or "ethereum."
If a match is found, it will trigger whatever command is paired.
Explanation:
content
: News or tweet title.
shouldEnter
: A variable that determines whether the bot will act.
This checks if content
includes "dwf" and "invest" but excludes "recap."
Note that javascript in search logic must be encapsulated with "+"
If shouldEnter evaluates to True, the paired command will activate and Tree Terminal will enter into a position.
Defines the action triggered when search -
Plain text has a match
Regex finds a match
Javascript's shouldEnter resolves to True
You can also use:
{coin}
to reference the first coin in the "suggestions" of the news. Ex: l {coin} 50k
{coin!=BTC,ETH,BNB}
to provide a blacklist of coins that Tree Terminal should not long here
Longs the first coin in the news with 100k, on binance subaccount
Excludes BTC, ETH and BNB, longs on first subaccount defined in priority of accounts
Executes commands sequentially, always forces a BTC long, alongside first coin from news item
Explanation:
If the content contains "Possible Bitcoin ETF Approval" and the ETF hasn’t been longed, the bot executes a long on BTC.
Two Reserved Variables in "Search's" Javascript
content
: The title of the news or tweet.
shouldEnter
: Boolean to decide if a command should execute.
Avoid Obvious Events:
Focus on niche or non-obvious scenarios where edge cases exist, instead of over-competitive events like listings (heavily optimized botters)
Testing:
Always test search logic and commands independently to avoid unintended behavior.
Use regex testing site to check your search box syntax
Specify variant to ECMAScript