Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 293 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 293 Bytes

Alpaca implementation for the CyberHead's brokers module

Also you can use it as an even easier way to use the Alpaca Api:

from alpaca import Alpaca
broker = Alpaca(API_KEY, API_SECRET, endpoint)

broker.symbol = 'GOOG'
broker.quantity = 10
response = broker.buy()

print(response)