Documentation
  • Welcome
    • 🖥️Insilico Terminal
    • 🚀Terminal 3.8
    • ✍️Registration
    • 🔑Security
    • ❔Frequently Asked Questions
    • 🏛️Terms of Service
  • Setup
    • Creating an API Key
      • Creating a Bybit API Key
      • Creating a Bitmex API Key
      • Creating a Binance Key
      • Creating a Bitget API Key
      • Creating a Coinbase API Key
      • Creating an OKX API Key
      • Creating a BloFin API Key
    • Adding Hyperliquid
    • Adding your API Key to the Terminal
    • Progressive Web App (PWA) Guide
  • Application Elements
    • UI overview
    • Performance
    • Multi Mode
      • Multi Account
      • Multi Layout
      • Link System
      • Hotkeys
    • Classic Mode
    • Mobile Mode
    • Header controls
    • Interactive Chart
      • Designer
    • Tradingview Chart
    • Orderbook
    • Trades
    • Tickers / Instruments
    • Activity
    • Orders
    • Positions
    • DOM
    • PnL Cards
    • Aggr
    • Balances
    • Layouts
    • TradeStream Trading Journal
  • Execution panel
    • Side Panel Overview
    • “Size” Input / Slider bar
    • "Reduce" Switch
    • “TP/SL” Switch
    • Buy / Sell Buttons
    • Margin / Leverage Control
    • Instrument Statistics
  • Limit Tab
    • Limit
    • Stop Limit
    • Click Placement
    • Chase
    • Scale
    • Scale Side
  • Market
    • Market
    • Stop Market Order
    • Swarm
    • TWAP
  • Terminal CLI
    • Overview
    • 'Constant' values
    • User Defined Variables
    • General Commands
    • Simple Ordering
    • Stops
    • Ordering with Stops
    • Cancel Orders
    • Close Position
    • Scale Orders
    • Chase Orders
    • Swarm Order
    • Shortcut / Hotkeys
    • UI Control
  • Changelog
    • v3.8
    • v3.7
    • v3.6
    • v3.5
    • V3.4
    • v3.3.0
    • v3.1.15
    • v3.1.13
    • v3.1.11
    • v3.1.0
    • v3.0.0
    • v2.2.0
    • v2.1.0
    • v2.0.2
Powered by GitBook
On this page
  • Market Orders with Stop
  • Limit Orders with Stop
  1. Terminal CLI

Ordering with Stops

PreviousStopsNextCancel Orders

Last updated 11 months ago

Please read the page on first

Note: all commands operate on the currently viewed instrument only

Market Orders with Stop

Command Text
Description
Example

buy <size> stop <price>

Market buy 10 of the underlying with a stop of 1% distance

buy 10 stop 1%

sell <size> stop <price>

Market sell a position worth 5000 USD with a stop at price 100.11

sell 5000$ stop 100.11

Limit Orders with Stop

Command Text
Description
Example

buy <size> at <price> stop <price>

Place a limit buy order for the given size at a specified price or distance with a stop at a specified price or distance from the entry

buy 1 at 25000 stop 19999 buy 20% at -250 stop -500 buy 1000$ at -1% stop 10%

sell <size> at <price> stop <price>

Place a limit sell order for the given size at a specified price or distance with a stop at a specified price or distance entry

sell 0.5 at 64000 stop 65000 sell 25% at +100 stop 5% sell 1000$ at 0.1% stop +50

buy <size> best stop <price>

Enter the size at the best price in the orderbook (quote) with a stop at a specified price or distance

buy 0.1 best stop 0.5%

sell <size> best stop <price>

Enter the size at the best price in the orderbook (quote) with a stop at a specified price or distance

sell 100 best stop 21.5

Simple Ordering