How to Create a Stock Screener Using an API || Stock Analysis with Python Part 9

Поделиться
HTML-код
  • Опубликовано: 8 июн 2024
  • ​ @Matt Macarty
    #dataanalytics #pythonprogramming #stockmarket
    Use API to create a stock screener
    ✅ Please SUBSCRIBE:
    ruclips.net/user/subscription_...
    Videos:
    [Part 1]( • How to Get a List of ... )
    [Part 2]( • How to Download S&P 50... )
    [Part 3]( • How to Download and Sa... )
    [Part 4]( • Stock Analysis with Py... )
    [Part 5]( • Calculate Returns, Cre... )
    [Part 6]( • Download, Transform an... )
    [Part 7]( • Python for Stock Analy... )
    [Part 8]( • Stocks About to Announ... )
    [Part 9]( • How to Create a Stock ... )
    [Part 10]( • Automate Stock Analysi... )
    [Part 11]( • Python for Stock Analy... )
    [Part 12]( • How to Calculate & Nor... )
    **This video is for educational purposes only. The information provided should not be construed as investment advice. **
    ✅ Get the code:
    github.com/mjmacarty/python-s...
    ✅ If you are interested in subscribing to a data bundle from EODHistoricalData, use this link for special pricing (I get a referral):
    eodhistoricaldata.com/alphabench
    Use Python to extract columns of data from stored files for any number of securities

Комментарии • 4

  • @nickcabak3962
    @nickcabak3962 Год назад

    hi Matt, do you think it would be possible to make a screener that looks for something like a "x"% move in "y" days and have it return all the tickers/dates that satisfy those conditions. thanks in advance! edit-preferably having this look historically also, not current day

    • @MattMacarty
      @MattMacarty  Год назад

      Yes, I think this should be pretty straight forward. Probably just make a function with the percent change, the time window and the symbols as inputs and the logic should start to come together.

  • @lucksimi3320
    @lucksimi3320 Год назад

    Hi
    Can you make a stock scanner in realtime that scan all stocks of Hong Kong and send an alert in telegram when price cross over 20 ema

    • @MattMacarty
      @MattMacarty  Год назад

      Sure I don't see why you couldn't. EOD has near real time data (50ms delay) and they have Hong Kong. Getting the prices would be a single API call and you could just store all your EMAs in a single DataFrame for quick comparison