@@ -3,8 +3,15 @@ This package allows you to access several alternative data sources which are upd
33- Trading by US congressmen
44- Corporate Lobbying
55- Government Contracts
6+ - Patents
7+ - Off-exchange short volume
68- Companies' Wikipedia page views
7- - Discussion on Reddit's /r/WallStreetBets
9+ - Discussion on Reddit's r/wallstreetbets
10+ - Discussion on Reddit's r/SPACs
11+ - Companies' Twitter followings
12+ - Flights by corporate private jets
13+ - Political Beta
14+ - Insider Transactions
815
916This data can be used for backtesting and implementing trading strategies.
1017
@@ -36,6 +43,9 @@ quiver = quiverquant.quiver("<TOKEN>")
3643# Get data on WallStreetBets discussion
3744dfWSB = quiver.wallstreetbets()
3845
46+ # Get data on WallStreetBets discussion of GameStop
47+ dfWSB_GameStop = quiver.wallstreetbets(" GME" )
48+
3949# Get recent trades by members of U.S. Congress
4050dfCongress = quiver.congress_trading()
4151
@@ -45,9 +55,6 @@ dfCongress_Tesla = quiver.congress_trading("TSLA")
4555# Get trades made by U.S. Senator Richard Burr
4656dfCongress_Burr = quiver.congress_trading(" Richard Burr" , politician = True )
4757
48- # Get data on WallStreetBets discussion of Virgin Galactic
49- dfWSB_Virgin = quiver.wallstreetbets(" SPCE" )
50-
5158# Get recent corporate lobbying
5259dfLobbying = quiver.lobbying()
5360
@@ -60,11 +67,44 @@ dfContracts = quiver.gov_contracts()
6067# Get data on government contracts to Lockheed Martin
6168dfContracts_Lockheed = quiver.gov_contracts(" LMT" )
6269
70+ # Get data on off-exchange short volume
71+ dfOTC = quiver.offexchange()
72+
73+ # Get data on off-exchange short volume for AMC
74+ dfOTC_AMC = quiver.offexchange(" AMC" )
75+
6376# Get data on Wikipedia page views
6477dfWiki = quiver.wikipedia()
6578
6679# Get data on Wikipedia page views of Microsoft
6780dfWiki_Microsoft = quiver.wikipedia(" MSFT" )
81+
82+ # Get data on companies' Twitter following
83+ dfTwitter = quiver.twitter()
84+
85+ # Get data on GE's Twitter following
86+ dfTwitter_GE = quiver.twitter(" GE" )
87+
88+ # Get data on r/SPACs discussion
89+ dfSPACs = quiver.spacs()
90+
91+ # Get data on r/SPACs discussion of CCIV
92+ dfSPACs_CCIV = quiver.spacs(" CCIV" )
93+
94+ # Get data on recent corporate private jet flights
95+ dfFlights = quiver.flights()
96+
97+ # Get data on private jet flights by Target
98+ dfFlights_Target = quiver.flights(" TGT" )
99+
100+ # Get data on patents by Apple
101+ dfPatents_Apple = quiver.patents(" AAPL" )
102+
103+ # Get data on recent insider transactions
104+ dfInsiders = quiver.insiders()
105+
106+ # Get data on recent insider transactions by Tesla insiders
107+ dfInsiders_Tesla = quiver.insiders(" TSLA" )
68108```
69109
70110
0 commit comments