Skip to content

Instantly share code, notes, and snippets.

View McKlayne's full-sized avatar
🎯
Focusing

McKlayne Marshall McKlayne

🎯
Focusing
View GitHub Profile
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "new statement",
"Effect": "Allow",
"Principal": {
"AWS": [
***Your AWS Entities
]
@McKlayne
McKlayne / webull_analyst_script.py
Last active June 10, 2021 01:14
A break down of how to grab all of the analyst data from Webull for every stock.
#Import all packages needed
import pandas as pd
import numpy as np
from config import username, password
from progressbar import progressbar
from webull import webull # for paper trading, import 'paper_webull'
#login to webull/authenticate with API
wb = webull()
wb.login(username, password)