-
When using machine learning models, how can I use my own indicator data that I have already computed, instead of computing it in pybroker?I want to use dataframe form to import indicator data directly. |
Beta Was this translation helpful? Give feedback.
Answered by
edtechre
Apr 30, 2023
Replies: 1 comment 4 replies
-
Hi @yys123, You can add the indicator data as columns to your DataFrame and register them using pybroker.register_columns(). For an example, refer to the |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
edtechre
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @yys123,
You can add the indicator data as columns to your DataFrame and register them using pybroker.register_columns(). For an example, refer to the
rsi
column in the Creating a Custom Data Source notebook.