Stock Trading

Trading stocks and ETFs


Stock Trading

Finterion supports automated trading of stocks and ETFs through various brokers. This guide covers everything you need to know about stock trading on the platform.

Supported Brokers

TradersPost supports buying, selling and shorting US Equities and Index ETFs through the following brokers:

Order Types

Market Orders

A market order executes immediately at the current market price.

{
  "action": "buy",
  "symbol": "AAPL",
  "quantity": 10,
  "type": "market"
}

Limit Orders

A limit order only executes at your specified price or better.

{
  "action": "buy",
  "symbol": "AAPL",
  "quantity": 10,
  "type": "limit",
  "price": 150.00
}

Stop Orders

A stop order becomes a market order when the stop price is reached.

{
  "action": "sell",
  "symbol": "AAPL",
  "quantity": 10,
  "type": "stop",
  "stopPrice": 145.00
}

Trading Hours

SessionTime (ET)Available
Pre-Market4:00 AM - 9:30 AMSome brokers
Regular9:30 AM - 4:00 PMAll brokers
After-Hours4:00 PM - 8:00 PMSome brokers

Note: Extended hours trading may have lower liquidity and wider spreads.

Position Management

Opening a Position

When a trading bot opens a position:

  1. Validates sufficient buying power
  2. Checks against position limits
  3. Sends order to broker
  4. Confirms execution
  5. Updates portfolio

Closing a Position

Positions can be closed:

  • Manually: You close via dashboard
  • Bot Signal: Trading bot decides to exit
  • Stop Loss: Price hits your stop level
  • Take Profit: Price hits your target

Fractional Shares

Some brokers support fractional share trading:

BrokerFractional Support
Alpaca✅ Yes
Robinhood✅ Yes
Interactive Brokers✅ Yes
TradeStation❌ No
Tradier❌ No

Short Selling

Short selling allows you to profit from declining prices:

  1. Broker lends you shares
  2. You sell the borrowed shares
  3. Later, you buy back shares to return
  4. Profit = Sell Price - Buy Price - Fees

Warning: Short selling has unlimited loss potential. Use with caution.

Fees and Commissions

BrokerCommissionOther Fees
Alpaca$0None
Robinhood$0None
Interactive Brokers$0.005/shareMinimum $1
TradeStation$0None

Best Practices

  1. Start Small: Test with small positions first
  2. Use Limits: Prefer limit orders over market orders
  3. Set Stops: Always have a stop-loss strategy
  4. Monitor: Regularly check your positions
  5. Diversify: Don't put all eggs in one basket