Alpaca Adapter - Questions for implementation #816
-
Hi everybody, I am currently working on implementing an adapter for Alpaca. I have made good progress by mimicking how the FTX adapter works. However, I'd appreciate your help with the points below.
Thank you for any help that you can provide. Please let me know if you have any other tips as well! Best, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @SeverinJB 1- If Alpaca have a limit of 50 per request, then you could make requests until you have received all order status? then continue 2- Its expected that as many order status reports will be generated as is necessary to accurately form the state of the system 3- Yes, that would be the convention because it looks like commission 4- Good question, their trigger order API is extremely obtuse and hard to work with, we still haven't developed a complete solution for dealing with it. I don't think this would be an issue when working with Alpaca though. Also, refer to the Binance adapters and the use of |
Beta Was this translation helpful? Give feedback.
-
@SeverinJB HI, is there any update on alpaca adapter? |
Beta Was this translation helpful? Give feedback.
Hi @SeverinJB
1- If Alpaca have a limit of 50 per request, then you could make requests until you have received all order status? then continue
2- Its expected that as many order status reports will be generated as is necessary to accurately form the state of the system
3- Yes, that would be the convention because it looks like commission
Money
can't beNone
for theOrderFilled
event4- Good question, their trigger order API is extremely obtuse and hard to work with, we still haven't developed a complete solution for dealing with it. I don't think this would be an issue when working with Alpaca though. Also, refer to the Binance adapters and the use of
msgspec
for better typing of HTTP re…