• Async Finance

  • 著者: Adam Getbags
  • ポッドキャスト

Async Finance

著者: Adam Getbags
  • サマリー

  • Finance Family! This podcast is devoted to financial markets and technology. You can see all these videos on my YouTube channel! SEARCH "Adam Getbags" I'll show you how to write programs to receive, analyze, and visualize stock and crypto market data, set up and interpret statistical studies, and interact with APIs and financial services in Python, Excel VBA, and SQL. Are you a finance Chad/Stacy, data analyst, developer or programmer, investor or trader? If you love data analysis, computer science, the markets, business, and GETTING AFTER THA' BAG, this podcast is for you!
    Adam Getbags
    続きを読む 一部表示

あらすじ・解説

Finance Family! This podcast is devoted to financial markets and technology. You can see all these videos on my YouTube channel! SEARCH "Adam Getbags" I'll show you how to write programs to receive, analyze, and visualize stock and crypto market data, set up and interpret statistical studies, and interact with APIs and financial services in Python, Excel VBA, and SQL. Are you a finance Chad/Stacy, data analyst, developer or programmer, investor or trader? If you love data analysis, computer science, the markets, business, and GETTING AFTER THA' BAG, this podcast is for you!
Adam Getbags
エピソード
  • Get Company Financial Statements In Python From Polygon.io API
    2023/10/18

    Don't have time to leaf through a million 10Q reports?

    Good thing we can quickly get company financial statement data in python using the polygon.io API.


    GET 10% OFF YOUR 1ST YEAR SUBSCRIPTION FOR THE POLYGON API

    USE CODE "GETBAGS10" WHEN SIGNING UP FOR YOUR SUBSCRIPTION!

    https://polygon.io/?utm_source=affiliate&utm_campaign=getbags


    If you've never used the API, you can see how to get setup and access your API key in the video below.

    https://youtu.be/KPA0Bo3VVgw


    All the code from the video can be found here.

    https://github.com/AdamGetbags/polygonData/blob/main/polygonFundamentalData.py

    0:20 open the docs

    0:50 pip install polygon-api-client and import modules

    1:10 create a client to connect to API

    1:24 basic fundamental data request

    1:34 assign ticker to get data for

    1:57 list_stock_financials function

    2:13 customizing function parameters

    3:24 navigating the data

    5:05 BLAMM AND JUST LIKE THAT

    - - -  

    Follow the podcast and join our larger community on Youtube to receive value on all things finance and technology!   

    https://www.youtube.com/c/adamgetbags

    If you love the content, buy me a coffee! 

    https://www.buymeacoffee.com/adamgetbags   

    Keep up with me! 

    https://www.instagram.com/damgetbags 

    https://twitter.com/damgetbags

    - - -   

    Need some ideas for your project portfolio?  

    Check out how to get historical option price data in Python from the Polygon API. 

    https://youtu.be/87O9qxfMJ-g

    Here's how to quickly get crypto data in Python from the CoinGecko API

    https://youtu.be/4-CC3u4i73k

    Here's how to create a SQL database from a Pandas DataFrame in Python

    https://youtu.be/9IPlc-nKD1k

    - - -   

    DISCLAIMER: The Information on Async Finance is provided for education and informational purposes only, without any express or implied warranty of any kind, including warranties of accuracy, completeness, or fitness for any particular purpose. The Information contained in or provided from or through Async Finance is not intended to be and does not constitute financial advice, investment recommendations, investment advice, trading advice, or any other advice. The Information on Async Finance is general in nature and is not specific to you the User or anyone else. You should not make any decision, financial, investment, trading, or otherwise, based on any of The Information presented on Async Finance without undertaking independent due diligence and consultation with a professional broker or financial advisory.

    続きを読む 一部表示
    5 分
  • List All Stock Ticker Symbols - Polygon.io API Python Tutorial
    2023/09/17

    In this first video of the series, we use Polygon.io API in python to get a list of all stock ticker symbols.

    This will be useful later when we take a look at getting price, dividend, and other fundamental data from the Polygon.io API.

    For those familiar with the API, skip to 5:35 to go full savage mode.

    GET 10% OFF YOUR 1ST YEAR SUBSCRIPTION FOR THE POLYGON API USE CODE "GETBAGS10" WHEN SIGNING UP FOR YOUR SUBSCRIPTION!

    https://polygon.io/?utm_source=affiliate&utm_campaign=getbags

    You can get all the code from the video on my Github below.

    https://github.com/AdamGetbags/polygonData/blob/main/polygonTickerList.py

    0:28 create account at polygon.io

    0:42 open the polygon and python docs

    1:04 create API key

    1:18 pip install polygon-api-client

    1:42 create an API client and authenticate

    2:29 the WRONG way to get tickers

    4:14 the RIGHT way to get tickers

    5:35 get a list of all stock ticker symbols

    - - -  

    Follow the podcast and join our larger community on Youtube to receive value on all things finance and technology!   

    https://www.youtube.com/c/adamgetbags

    If you love the content, buy me a coffee! 

    https://www.buymeacoffee.com/adamgetbags   

    Keep up with me! 

    https://www.instagram.com/damgetbags 

    https://twitter.com/damgetbags

    - - -   

    Need some ideas for your project portfolio?  

    Check out how to get historical option price data in Python from the Polygon API. 

    https://youtu.be/87O9qxfMJ-g

    Here's how to quickly get crypto data in Python from the CoinGecko API

    https://youtu.be/4-CC3u4i73k

    Here's how to create a SQL database from a Pandas DataFrame in Python

    https://youtu.be/9IPlc-nKD1k

    - - -   

    DISCLAIMER: The Information on Async Finance is provided for education and informational purposes only, without any express or implied warranty of any kind, including warranties of accuracy, completeness, or fitness for any particular purpose. The Information contained in or provided from or through Async Finance is not intended to be and does not constitute financial advice, investment recommendations, investment advice, trading advice, or any other advice. The Information on Async Finance is general in nature and is not specific to you the User or anyone else. You should not make any decision, financial, investment, trading, or otherwise, based on any of The Information presented on Async Finance without undertaking independent due diligence and consultation with a professional broker or financial advisory.

    続きを読む 一部表示
    9 分
  • Dopex API - Decentralized Options Exchange For Crypto Options Trading
    2023/09/09

    If you love options and you love crypto, then you'll love Dopex - a decentralized crypto options exchange that can be used to trade crypto options.

    They have many crypto options and single staking options vaults available, but today I'll show you how to use the Dopex API to get data on their single staking options vaults (SSOVs), total value locked, token supply, and other token data.

    Dopex Website

    https://www.dopex.io/

    Docs

    https://docs.dopex.io/

    Github + Docs

    https://github.com/dopex-io/dopex-api/blob/master/docs/v1/ENDPOINTS.md

    All the code from the video can be found below

    https://github.com/AdamGetbags/dopexData/blob/main/DopexData.py

    0:20 open the docs

    1:00 get SSOV data // navigating the data

    3:00 get SSOV APY data

    3:42 get crypto options straddle data

    4:35 get dopex farm data

    4:49 get supported tokens for price quotes

    5:09 get token price quotes

    5:29 get token supply and market cap data

    - - -  

    Follow the podcast and join our larger community on Youtube to receive value on all things finance and technology!   

    https://www.youtube.com/c/adamgetbags

    If you love the content, buy me a coffee! 

    https://www.buymeacoffee.com/adamgetbags   

    Keep up with me! 

    https://www.instagram.com/damgetbags 

    https://twitter.com/damgetbags

    - - -   

    Need some ideas for your project portfolio?  

    Check out how to get historical option price data in Python from the Polygon API. 

    https://youtu.be/87O9qxfMJ-g

    Here's how to quickly get crypto data in Python from the CoinGecko API

    https://youtu.be/4-CC3u4i73k

    Here's how to create a SQL database from a Pandas DataFrame in Python

    https://youtu.be/9IPlc-nKD1k

    - - -   

    DISCLAIMER: The Information on Async Finance is provided for education and informational purposes only, without any express or implied warranty of any kind, including warranties of accuracy, completeness, or fitness for any particular purpose. The Information contained in or provided from or through Async Finance is not intended to be and does not constitute financial advice, investment recommendations, investment advice, trading advice, or any other advice. The Information on Async Finance is general in nature and is not specific to you the User or anyone else. You should not make any decision, financial, investment, trading, or otherwise, based on any of The Information presented on Async Finance without undertaking independent due diligence and consultation with a professional broker or financial advisory.

    続きを読む 一部表示
    7 分
activate_buybox_copy_target_t1

Async Financeに寄せられたリスナーの声

カスタマーレビュー:以下のタブを選択することで、他のサイトのレビューをご覧になれます。