@@ -3,8 +3,15 @@ This package allows you to access several alternative data sources which are upd
3
3
- Trading by US congressmen
4
4
- Corporate Lobbying
5
5
- Government Contracts
6
+ - Patents
7
+ - Off-exchange short volume
6
8
- 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
8
15
9
16
This data can be used for backtesting and implementing trading strategies.
10
17
@@ -36,6 +43,9 @@ quiver = quiverquant.quiver("<TOKEN>")
36
43
# Get data on WallStreetBets discussion
37
44
dfWSB = quiver.wallstreetbets()
38
45
46
+ # Get data on WallStreetBets discussion of GameStop
47
+ dfWSB_GameStop = quiver.wallstreetbets(" GME" )
48
+
39
49
# Get recent trades by members of U.S. Congress
40
50
dfCongress = quiver.congress_trading()
41
51
@@ -45,9 +55,6 @@ dfCongress_Tesla = quiver.congress_trading("TSLA")
45
55
# Get trades made by U.S. Senator Richard Burr
46
56
dfCongress_Burr = quiver.congress_trading(" Richard Burr" , politician = True )
47
57
48
- # Get data on WallStreetBets discussion of Virgin Galactic
49
- dfWSB_Virgin = quiver.wallstreetbets(" SPCE" )
50
-
51
58
# Get recent corporate lobbying
52
59
dfLobbying = quiver.lobbying()
53
60
@@ -60,11 +67,44 @@ dfContracts = quiver.gov_contracts()
60
67
# Get data on government contracts to Lockheed Martin
61
68
dfContracts_Lockheed = quiver.gov_contracts(" LMT" )
62
69
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
+
63
76
# Get data on Wikipedia page views
64
77
dfWiki = quiver.wikipedia()
65
78
66
79
# Get data on Wikipedia page views of Microsoft
67
80
dfWiki_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" )
68
108
```
69
109
70
110
0 commit comments