Interactive brokers automated trading

Setup guide – How to autotrade Stocks on Interactive Brokers exchanges (NYSE, Nasdaq, etc)

Updated 23.04.2023! This guide explains how to setup and use Traderelay v.410 and later versions.

This process might seem complicated, but its actually quite simple.
The complication comes from the fact that there are 3 different platforms that has to be setup: Tradingview -> Traderelay -> Trader Workstation (TWS – Interactive Brokers)
But after they are setup, you have Trading Bot trading stocks through Interactive brokers. Then you can start tweaking your strategies and making them profitable.

interactive brokers automated trading

Setup steps

1. SETUP TRADINGVIEW.COM

1. Go to website www.tradingview.com and login. (Dont have account yet? Open account here. (included is our referrer code)
2. After login. Go to chart screen in tradingview. Choose AMD as symbol.
3. Press ‘Pine Editor’-tab below the chart and copy paste our example Study code from below. Press Save. Press Add to Chart. -> now you should see startegy added to you ETHUSDT chart.

Example strategy with alerts

This code written with Pinescript v.4.
Just copy-paste it to Tradingview.com -> chart window -> Pine Editor -> Save -> Add to chart.


//STRATEGY CODE START
//@version=4
study("Traderelay 4 Example Study", overlay=true)

sma1 = sma(close, 14)
sma2 = sma(close, 55)
plot(sma1)
plot(sma2)
longCondition = crossover(sma1, sma2)

shortCondition = crossunder(sma1, sma2)

//ENTRIES
qt=1

//entry long
plotshape(longCondition, style=shape.labelup, location=location.belowbar, color=color.new(color.green, 0), size=size.tiny, title='longCondition', text='longCondition', textcolor=color.new(color.white, 0))
alertcondition(longCondition, title='longCondition', message='action:LONG symbol:{{ticker}} qt:1 id:xxxx')

//entry short
plotshape(shortCondition, style=shape.labeldown, location=location.abovebar, color=color.new(color.red, 0), size=size.tiny, title='shortCondition', text='shortCondition', textcolor=color.new(color.white, 0))
alertcondition(shortCondition, title='shortCondition', message='action:SHORT symbol:{{ticker}} qt:1 id:xxxx')
   


//STRATEGY CODE ENDS

2. SETUP ALERTS IN TRADINGVIEW

Now that your study is running succesfully in tradingview.com chart window. Create alerts for it. Alerts will send LONG or SHORT command to Traderelay and onwards to real exchanges.

Create alert

1. Go to “Alerts”-section, its on upper right navigation. Create new alert with following settings.
2. Condition: choose your study from dropdown (“Traderelay 4 Example Study”).
3. Choose “Once per bar close”.
4. Fill checkbox “webhook”. Insert webhook url: http://srv3.traderelay.net
4. Copy paste your personal webhook id to message (Change xxxx to your personal webhook id) (webhook id you can get from Traderelay)
5. Press “Create”. Thats it! Now your study will send alert message to traderelay software everytime alert is triggered.

Commands to use in Tradingview alerts
LONG -> example command: action:LONG symbol:AMD qt:1 id:xxxx (if you have short position, this command will close it and buy long.)
SHORT -> example command: action:SHORT symbol:AMD qt:1 id:xxxx (if you have long position, this command will close it and sell short.)
CLOSE -> example command: action:CLOSE symbol:AMD id:xxxx (use this to close position, stoploss, etc.)

3. SETUP TRADERELAY SOFTWARE

-Install TradeRelay software on your computer

1. Set TWS port (optional, default setting should work fine.)

-Login with your email and password
-Go to Settings tab and fill in TWS port:: 7497. (this is IB TWS default port.)
-Save settings

2. Setup instruments

You have to have at least one instrument on instrument list before you start Traderelay software.
Instrument can be paused, but there needs to be atleast one instrument so software can loop the list.

-On main page of Traderelay software, add instrument symbol: AMD
-Choose AMD from the list and click exchange/sectype IB (Stock market) -> this sets the exchange to IB stock market

3. Start traderelay

-Press START and TradeRelay begins to loop through your instruments -> checking received alerts from Tradingview -> relaying orders to exchanges
(in this case ib Stock markets (nyse, nasdaq, etc) ).

-PLEASE TEST IT FIRST WITH PAPERTRADING OR SMALL MONEY!!

4. SETUP INTERACTIVE BROKERS AND ITS TWS SOFTWARE

1. You will need to open Interactive Brokers account. (Here is link with our referral code: Open Interactive Brokers.)
2. You will need install TWS software on your computer. Download latest TWS software
3. Start TWS and set settings as:
File -> Global configuration -> API -> settings:
-Enable activeX and socket clients
-Uncheck “Read -Only API”
-Set port: 7497 (its default setting so probably set already)
-Press APPLY to save setting (Windows defender might popup)
-Allow ‘Trader Workstation’ through your firewall (to private network & public networks)

Testing Traderelay – TWS connection
1. Login to TWS to “papertrading” side.
2. Login to Traderelay -> add new instrument ‘AMD’ -> Select ‘AMD’ from instruments list -> set its exhange/sectype by pressing ‘IB (Stock market)’-button.
3. Start Traderelay looping by pressing ‘Start’-button. (Traderelay starts looping intruments and waiting incoming Tradingview alerts.)
4. Send test order to IB -> by pressing ‘Send Test Order’-button -> order ‘action:LONG symbol:AMD qt:1 id:xxxx’ is sent to IB
-> In TWS you should see that you just bought 1 AMD stock.

5. SETUP COMPLETE

After you have succesfully completed above 4 step you should be able to run trading bot on market open times in IB Nyse or Nasdaq exchanges. Please note, that market orders are only completed when markets are open. So if your strategy sends orders when markets are closed -> the orders will trigger on next market day.

Checklist:
-Tradingview.com is sending alerts (with your webhook id) %
-Traderelay is looping and waiting alerts (incoming alerts have your webhook id + some command) %
-IB account has money and TWS is running on your computer. %

FIREWALL SETTINGS (OPTIONAL)

Usually there is no need to change firewall setting on your windows.
But if you have trouble and alerts are not forwarded to TWS:
1. Go to your computers firewall settings and allow application “Traderelay software” in and out.
This should allow Traderelay to send and receive API commands to TWS.
2. Go to your computers firewall settings and allow application “TWS software” in and out.
This should allow TWS to receive orders and send them forward to Interactive brokers.

Shopping Cart