Trading Bot Coding in Python - Livestream #1

preview_player
Показать описание
In the upcoming stream, we will code a Trading Bot in Python from Scratch.

05:49 Github Project & Resources
07:39 Create a Trading Account with a Broker
08:35 Code the Trading Bot in PyCharm IDE
18:28 Run the Bot on a VPS
39:04 Q&A Session

Support the Channel:

Join our Discord Community:

Open a Trading Account:

Github Repo:

Risk Disclaimer:
The content on this website does not serve as investment advice but serves for research purposes only. Your capital is at risk when trading in the financial markets. Past performance is not an indicator of future results. The use of ATJ Traders' content or 3rd party investment services is solely at your own discretion and responsibility.

Affiliate Disclaimer:
Links in the description contain affiliate links. ATJ Traders may receive rewards from clicks or purchases generated from those links.
Рекомендации по теме
Комментарии
Автор

The issue with closing positions still bothers me but I have checked what works. Both df.iloc and iterrows return same pd.Series but one works and the other one doesn't.

I fixed the issue by converting the Series to a Python dict(). Example: positions[positions['ticket'] == pos_id].iloc[0].to_dict()

The code has been updated in Github.

ATJTraders