asavinov / intelligent-trading-bot

Intelligent Trading Bot: Automatically generating signals and trading based on machine learning and feature engineering
https://t.me/intelligent_trading_signals
MIT License
803 stars 179 forks source link

Some assistance testing intelligent bot #29

Open KmInno opened 11 months ago

KmInno commented 11 months ago

Hello, my name is Innocent, and I am new to algorithmic trading. First of all, I would like to thank you for the hard work you put into this project. I took an interest in it and tried testing it out on my machine, but I ran into some errors. I wonder if you can help me.

The problem I encountered is when trying to run the intelligent bot to make some trades. I had finished setting up the bot server on my local machine, and I was successfully receiving signals to my Telegram account. However, when I tried to run trader.py using the command python -m services.trader -c config-sample-v0.6.dev.json, I did not receive any response, even after setting up tenssort on my computer.

I was wondering if you could guide me on how to set up trader.py and other files in the services folder so that I can test them out.

asavinov commented 11 months ago

Hi, trading is implemented within the server, that is, if you start the server, then it should be ablet to trade (so services.trader is not for trading). What the server is regularly doing is executing these functions (implemented in server.main_task()): get the latest data, analyze by generating signals, notify, trade. So the last step is trading. Yet, it is not thoroughly tested.