Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Allocate funds to multiple live algos?

Hi All,

Can I live trade multiple algorithms and allocate a specific amount of funds to each algorithm?

I.e. say I have three seperate algos, and 3k in my account, and I want each algo to deal with / trade 1k.

Is it possible to do this via quantopian, or can I only live trade 1 algo at a time (meaning I need to mix the code of my 3 separate algos, and write code to manage the funds)?

Thanks in advance,
Shuvro

2 responses

I think you can add line to allocate .3 of cash to each algo
context.RISK_LEVEL = .3

Thanks, that's exactly what I was looking for!