Error trying to connect Trading View’s alerts webhook to Interactive Brokers via Python code, localhost and Ngrok

I’m trying to find some easy setup to send trades from TradingView’s alerts into Interactive Brokers. I have set up a local host, I have ngrok running, and I have created the code below by watching some YTB video. I have also added the URL for webhook in the alerts in Trading View. The problem is that every time there is an alert, I get a 500 internal server error message in ngrok. And the trades do not execute.

**This is the code I’ve tried:
**

`#imports
from datetime import datetime
from sanic import Sanic
from sanic import response
from ib_insync import *

#Create Sanic object called qpp
app = Sanic(__name__)
#app.ib = None
app.ctx.ib = None

#Create root / homepage
@app.route('/')
async def root(request):
return response.text('online')

#Listen for signals and submit BUY orders (webhook)
@app.route('/buy', methods=[ 'POST' ]) 
async def buy(request):
if request.method == 'POST':
#Check if we need to reconnect
await checkIfReconnect()
#Parse signal data
data = request.jason
order = MarketOrder('BUY', 0.00015)
contract = Crypto('BTC', 'PAXOS', 'USD')
trade = app.ib.placeOrder(contract,order)
#Wait for the order to be processed and check status
app.ctx.ib.sleep(1)
print(trade)

#Listen for signals and submit SELL orders (webhook)
@app.route('/sell', methods=[ 'POST' ]) 
async def sell(request):
if request.method == 'POST':
#Check if we need to reconnect
await checkIfReconnect()
#Parse signal data
data = request.jason
order = MarketOrder('SELL', 0.00015)
contract = Crypto('BTC', 'PAXOS', 'USD')
trade = app.ib.placeOrder(contract,order)
#Wait for the order to be processed and check status
app.ctx.ib.sleep(1)
print(trade)

#Reconnect to IB if connection is lost
async def checkIfReconnect():
if not app.ib.isDisconnected() or not app.ib.isConnected():
app.ib.disconnect()
app.ib = IB()
app.ib.connect('127.0.0.1',7496,clientId=1)

#Run app
if _name_ == '__main__':
#Connect to IB
app.ctx.ib = IB()
app.ctx.ib.connect('127.0.0.1',7496,clientId=1)
app.run(port=8080)`

**This is the error I get:
**
{
“description”: “Internal Server Error”,
“status”: 500,
“message”: “The application encountered an unexpected error and could not continue.”
}

**I also see these errors in the Terminal:
**

ERROR:    Exception occurred while handling uri: 'http://MYURL/buy'
Traceback (most recent call last):
File "handle_request", line 102, in handle_request
if TYPE_CHECKING:
                  
File "/Users/MYURL/#imports.py", line 26, in buy
await checkIfReconnect()
File "/Users/MYURL/#imports.py", line 56, in checkIfReconnect
if not app.ib.isDisconnected() or not app.ib.isConnected():
       ^^^^^^
AttributeError: 'Sanic' object has no attribute 'ib'

**I’m using:
**

MacOS High Sierra 10.13.6
Visual Studio Code Version: 1.85.2 (Universal)
Trader Workstation Version: Stable (10.19.2o) 20240612
Ngrok: 3.15.1

PM from ngrok here. According to the error, the Sanic object (app) doesn’t have an ib property, which it does not according to the docs: https://sanic.readthedocs.io/en/stable/sanic/api/app.html#module-sanic.app

looks like you probably want if not app.ctx.ib.isDisconnected() or not app.ctx.ib.isConnected(): maybe?

3

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật