This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2008-10-17", | |
"Statement": [ | |
{ | |
"Sid": "new statement", | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": [ | |
***Your AWS Entities | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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) |
NewerOlder