Newbie question. Does QuantRocket support the use of TA_Lib or Pandas TA? I don't see either in the Docker Container so I assume the answer is not but didn't know if it was something we could import or not. Thanks.
You can install packages in containers using pip or conda. Due to the microservice architecture, you need to install packages in each container where you need to use them, which is usually jupyter
plus one or more of moonshot
, zipline
, or satellite
depending on your workflow. After installing on moonshot
, zipline
, or satellite
, you should restart the container so the container application sees the change (not necessary for jupyter
).
I would suggest pandas TA over TA-Lib due to the difficulty of installing the latter.
1 Like
Roger that. Thanks Brian.