I think my creds are good because when I use the same credentials with stream, I am authorized.
import websocket, json
from config import *
def on_open(ws):
print("WEB SOCKET OPENED")
auth_data = {
"action": "authenticate",
"data": {"key_id": APCA_API_KEY_ID, "secret_key": APCA_API_SECRET_KEY}
}
# convert the python dict to json string and send to the web socket connection
ws.send(json.dumps(auth_data))
# streams can be a list of tickers
listen_msg = {"action": "listen",
"data": {
"streams": ["T.SPY"]}
}
ws.send(json.dumps(listen_msg))
def on_close(ws):
print("WEB SOCKET CLOSED")
def on_message(ws, msg):
print("RECEIVED A WEB SOCKET MESSAGE")
print(msg)
socket = "wss://data.alpaca.markets/stream"
ws = websocket.WebSocketApp(socket, on_open=on_open, on_message=on_message, on_close=on_close)
ws.run_forever()
Output,
WEB SOCKET OPENED
RECEIVED A WEB SOCKET MESSAGE
{“stream”:“authorization”,“data”:{“action”:“authenticate”,“status”:“authorized”}}
RECEIVED A WEB SOCKET MESSAGE
{“stream”:“listening”,“data”:{“streams”:[“T.SPY”]}}
RECEIVED A WEB SOCKET MESSAGE
{“stream”:“T.SPY”,“data”:{“ev”:“T”,“T”:“SPY”,“i”:“62879181326445”,“x”:2,“p”:335.15,“s”:100,“t”:1601504100522000000,“c”:[14,12,41],“z”:1}}
"""
You have 3 options:
- backtest (IS_BACKTEST=True, IS_LIVE=False)
- paper trade (IS_BACKTEST=False, IS_LIVE=False)
- live trade (IS_BACKTEST=False, IS_LIVE=True)
"""