alpaca examples

Solutions on MaxInterview for alpaca examples by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "alpaca examples"
Lotta
09 Jul 2017
1import alpaca_trade_api as tradeapi
2
3# authentication and connection details
4api_key = 'Insert_your_api_key_here'
5api_secret = 'Insert_your_api_secret_here'
6base_url = 'https://paper-api.alpaca.markets'
7
8# instantiate REST API
9api = tradeapi.REST(api_key, api_secret, base_url, api_version='v2')
10
11# obtain account information
12account = api.get_account()
13print(account)
similar questions
queries leading to this page
alpaca examples