Alexandr Savinov

Results 27 comments of Alexandr Savinov

Hi, as far as I understood you have division by zero in feature generation. There could be multiple reasons for that. If you provide more information about what features you...

Is it the latest version? If not then could you please update your installation and execute all steps again. The reason is that I did many fixes and now it...

You can install it using conda ``conda install -c conda-forge ta-lib`` which includes Windows binary library. If you do not want to use conda for your porject then just do...

It seems that the package is not available for Python 3.11. Try Python 3.10: ``` conda create -n itb python=3.10 conda activate itb conda install -c conda-forge ta-lib ``` Then...

It fails to build TA-lib for Windows. In Python 3.10 you can use conda to install TA-ib without building (binary library provided by conda) using the instructions at the end...

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...

> I try to run trade service but its stop with no reason If you could provide more details about "stop" (exception, no response, error/warning messages etc.), "no reason" as...

There is no separate trade service. The module ``service.trader.py`` contains only some functions for trading. So do not execute it. (Yes, the name is somewhat misleading but it is for...

The score is positive if the price is going to grow in some future and if it exceeds the ``buy_signal_threshold`` then it a BUY (LONG) signal. Vice versa, the score...

Hi, yes, you cannot use it for mor than 2 inputs. It is because we assume the existence of two separate predictors: upward predictors and downward predictors. One model tries...