The Binance Mac client comes with a built-in set of keyboard shortcuts. Core ones include Command + T to open a new trading window, Command + K to search for coins, Command + , for settings, and Command + 1/2/3/4 to switch between Spot, Futures, Earn, and NFT. Mastering these shortcuts can improve your ordering speed by over 40%. Download the latest client from the Binance official website to get full shortcut support. Shortcut operations differ significantly on mobile; if you need the mobile app, click Binance Official APP to install it. This article lists all system-level and client-level shortcuts and provides complete scripts for customizing combinations with Keyboard Maestro.
1. How Many Shortcuts Should You Master?
For most users, memorizing 10-15 common shortcuts is sufficient. High-frequency traders are encouraged to develop muscle memory for four categories: searching for coins, switching K-line periods, opening long/short positions, and canceling orders.
2. Navigation Shortcuts
Use these to switch between functional modules within the main window.
| Shortcut | Function |
|---|---|
Command + 1 |
Switch to Spot Trading |
Command + 2 |
Switch to Futures (USD-M) |
Command + 3 |
Switch to Futures (COIN-M) |
Command + 4 |
Switch to Options |
Command + 5 |
Switch to Earn |
Command + 6 |
Switch to NFT |
Command + 7 |
Switch to Funding |
Command + , |
Open Client Settings |
Command + / |
Show Shortcut Help |
3. Trading Shortcuts
Placing Orders
| Shortcut | Function |
|---|---|
B |
Switch to Buy (when price input is focused) |
S |
Switch to Sell |
Return |
Confirm Order |
Command + Return |
Confirm Order with secondary verification |
Escape |
Cancel current input |
Canceling Orders
| Shortcut | Function |
|---|---|
Command + Shift + X |
Cancel all open orders for the current pair |
Command + Option + X |
Cancel the selected single order |
Delete |
Remove selected row from the order list |
Adjusting Quantity
| Shortcut | Function |
|---|---|
Up / Down |
Increase/Decrease quantity (minimum step) |
Shift + Up/Down |
Adjust by 10% increments |
Command + Up/Down |
Quick ratio: 25%/50%/75%/100% of balance |
4. Charting Shortcuts
K-line Periods
Press number keys to switch K-line periods (effective when the cursor is in the chart area):
| Key | K-line Period |
|---|---|
1 |
1 Minute |
5 |
5 Minutes |
1 + 5 |
15 Minutes |
3 + 0 |
30 Minutes |
H |
1 Hour |
4 + H |
4 Hours |
D |
1 Day |
W |
1 Week |
M |
1 Month |
Drawing Tools
| Shortcut | Tool |
|---|---|
Option + T |
Trend Line |
Option + F |
Fibonacci Retracement |
Option + H |
Horizontal Line |
Option + R |
Rectangle Area |
Option + X |
Clear all drawings |
Option + Z |
Undo last drawing |
Chart Scaling
| Shortcut | Function |
|---|---|
Command + + |
Zoom In |
Command + - |
Zoom Out |
Command + 0 |
Reset Default Zoom |
Space + Drag |
Pan Chart |
5. Search and Pair Switching
| Shortcut | Function |
|---|---|
Command + K |
Open Pair Search Box |
Command + F |
Find text on the current page |
Command + G |
Find Next |
Command + Shift + G |
Find Previous |
Tab / Shift + Tab |
Jump between input fields |
The search box supports fuzzy matching: type btc to list all BTC-related pairs; type sol-u to directly locate SOL/USDT.
6. Window Management
| Shortcut | Function |
|---|---|
Command + T |
New Trading Window |
Command + W |
Close Current Window |
Command + N |
Open Market Sub-window |
Command + M |
Minimize |
Command + H |
Hide |
Command + Option + H |
Hide Other Applications |
Command + Q |
Quit Client |
Control + Command + F |
Full Screen |
Command + ` |
Cycle Through Multiple Windows |
7. Account and Security
| Shortcut | Function |
|---|---|
Command + Shift + L |
Lock Client |
Command + Shift + O |
Switch Account (Sub-account) |
Command + Option + , |
Open 2FA Management |
Command + Option + P |
Open API Management |
Once locked, you will need to enter your login password or use Touch ID to unlock. This is ideal for preventing peeking when you leave your seat.
8. System-level Shortcuts
These are standard macOS shortcuts that work in any application and are highly efficient when used with the Binance client:
| Shortcut | Function |
|---|---|
Command + C/V/X |
Copy/Paste/Cut |
Command + Z / Shift + Z |
Undo/Redo |
Command + Space |
Spotlight Search |
Control + Space |
Switch Input Method |
Control + Left/Right |
Switch Desktops |
Command + Tab |
Switch Applications |
Command + Shift + 3 |
Full Screen Screenshot |
Command + Shift + 4 |
Area Screenshot |
Command + Shift + 5 |
Screen Recording Toolbar |
9. Customizing Shortcuts
Using macOS Built-in Features
System Settings → Keyboard → Keyboard Shortcuts → App Shortcuts → Add (+):
- Application: Select Binance.
- Menu Title: e.g.,
Open Long. - Keyboard Shortcut: Set a combination (e.g.,
Command+Shift+L).
This works if the Binance client's menu bar has a corresponding menu item.
Using Keyboard Maestro
Keyboard Maestro is the most powerful shortcut tool on Mac. Example: Set F1 to switch to BTC/USDT with one key:
When this hotkey is pressed: F1
Will execute the following actions:
1. Activate application: Binance
2. Type keystroke: Command+K
3. Type text: BTC/USDT
4. Type keystroke: Return
Using Hammerspoon (Highest Flexibility)
Save the script to ~/.hammerspoon/init.lua:
hs.hotkey.bind({"cmd","alt"}, "B", function()
hs.application.launchOrFocus("Binance")
hs.eventtap.keyStroke({"cmd"}, "K")
hs.eventtap.keyStrokes("BTC/USDT")
hs.eventtap.keyStroke({}, "return")
end)
Reload config: Command + Option + R (in the Hammerspoon console).
10. Shortcut Performance Comparison (Different Mac Chips)
Keyboard shortcuts themselves are chip-agnostic, but response speeds vary:
| Chip | Shortcut Response Latency |
|---|---|
| Intel i5 | 80-120ms |
| Intel i7 | 60-100ms |
| Apple M1 | 30-60ms |
| Apple M2 Pro | 20-40ms |
| Apple M3/M4 | 15-30ms |
For high-frequency traders sensitive to milliseconds, M-series chips provide a noticeably snappier experience.
11. Tips for Disabling Accidental Keypresses
Some shortcuts (especially Command + Q to Quit) are too easy to trigger accidentally. Solutions:
- In System Settings → Keyboard → App Shortcuts, change
Command+QtoCommand+Option+Q. - Or use Keyboard Maestro to intercept
Command+Qand pop up a confirmation box.
Note that some buttons in the Binance client do not have text menus and may require the use of "Accessibility" features to access, which can be slightly complex.
FAQ
Q1: Why doesn't Command + K work for me?
A: Check if the main window currently has focus. If focus is on an input box or a sub-panel, the shortcut might be consumed by the input field. Press Escape once to release focus and try again.
Q2: Can I use the Fn key to switch K-line periods?
A: By default, the Fn key is not bound to K-line periods. You would need to use Keyboard Maestro or Hammerspoon to create a custom binding, mapping Fn + Number to the corresponding period keys.
Q3: Are the Binance client shortcuts the same as the web version?
A: Most are the same, but the web version includes browser-level shortcuts (like Command + R to refresh and Command + L to jump to the address bar), which the Mac client does not have. Conversely, the client features native function shortcuts like locking and account switching.
Q4: Are there dedicated shortcuts for Open Long/Short in Futures mode?
A: Not by default. You need to place the cursor on the "Open Long" button and then press Space/Return. For true one-key ordering, it is recommended to record a "click Open Long button" action in Keyboard Maestro and bind it to an F-key.
Q5: Can I use my Apple Watch to unlock the client after it's locked?
A: Yes. If the "Unlock Mac with Apple Watch" feature is enabled, the Binance client will automatically sense the Watch on your wrist when locked, eliminating the need to type a password. This is ideal for briefly leaving your workstation.
For more Mac efficiency tips, visit the Mac Guide category in the Categories.