lita-onewheel-finance 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.ruby-version +1 -0
- data/.travis.yml +8 -0
- data/Gemfile +3 -0
- data/README.md +22 -0
- data/Rakefile +6 -0
- data/lib/lita-onewheel-finance.rb +4 -0
- data/lib/lita/handlers/onewheel_finance.rb +96 -0
- data/lita-onewheel-finance.gemspec +28 -0
- data/spec/fixtures/alphavantage-global-quote.json +14 -0
- data/spec/fixtures/effr.html +1160 -0
- data/spec/lita/handlers/onewheel_finance_spec.rb +19 -0
- data/spec/spec_helper.rb +14 -0
- metadata +173 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a3c920ab62fdcefc8e2b6d33f16a860a1a7f6aa28260362a2adb4246bbcdebe9
|
4
|
+
data.tar.gz: f9d2a039da92b283372849240591f17a7f2ba4a03853b228b3a53cc0fe076147
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 01afc0dc98552d112a9164c2a5e197bd261b2feb49ab78493e5c03dab0d2676b7167cc723ffed3930e0abfebfadb64110fef9988f6765a4750832c9e1a438d99
|
7
|
+
data.tar.gz: b092371ee4f72cc21986a2aaaf8d6e4080cbaa930f012443839900985f86bd888973d041166f4135df7884c02f2d9955ae8f72d96a10e45fc49d689ee8938bda
|
data/.gitignore
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.6.5
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# lita-onewheel-finance
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/onewheelskyward/lita-onewheel-finance.png?branch=master)](https://travis-ci.org/onewheelskyward/lita-onewheel-finance)
|
4
|
+
[![Coverage Status](https://coveralls.io/repos/onewheelskyward/lita-onewheel-finance/badge.png)](https://coveralls.io/r/onewheelskyward/lita-onewheel-finance)
|
5
|
+
|
6
|
+
TODO: Add a description of the plugin.
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add lita-onewheel-finance to your Lita instance's Gemfile:
|
11
|
+
|
12
|
+
``` ruby
|
13
|
+
gem "lita-onewheel-finance"
|
14
|
+
```
|
15
|
+
|
16
|
+
## Configuration
|
17
|
+
|
18
|
+
TODO: Describe any configuration attributes the plugin exposes.
|
19
|
+
|
20
|
+
## Usage
|
21
|
+
|
22
|
+
TODO: Describe the plugin's features and how to use them.
|
data/Rakefile
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
require 'rest-client'
|
2
|
+
|
3
|
+
class Colors
|
4
|
+
prefix = "\x03"
|
5
|
+
@white = "#{prefix}00"
|
6
|
+
@black = "#{prefix}01"
|
7
|
+
@blue = "#{prefix}02"
|
8
|
+
@green = "#{prefix}03"
|
9
|
+
@red = "#{prefix}04"
|
10
|
+
@brown = "#{prefix}05"
|
11
|
+
@purple = "#{prefix}06"
|
12
|
+
@orange = "#{prefix}07"
|
13
|
+
@yellow = "#{prefix}08"
|
14
|
+
@lime = "#{prefix}09"
|
15
|
+
@teal = "#{prefix}10"
|
16
|
+
@aqua = "#{prefix}11"
|
17
|
+
@royal = "#{prefix}12"
|
18
|
+
@pink = "#{prefix}13"
|
19
|
+
@grey = "#{prefix}14"
|
20
|
+
@silver = "#{prefix}15"
|
21
|
+
@reset = prefix
|
22
|
+
|
23
|
+
class << self
|
24
|
+
attr_reader :white, :black, :blue, :green, :red, :brown, :purple, :orange, :yellow, :lime, :teal, :aqua, :royal, :pink, :grey, :silver, :reset
|
25
|
+
end
|
26
|
+
|
27
|
+
def initialize
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
class GlobalQuote
|
32
|
+
attr_reader :symbol, :open, :high, :low, :price, :volume, :trading_day, :prev_close, :change, :change_percent
|
33
|
+
|
34
|
+
def initialize(json_blob)
|
35
|
+
Lita.logger.debug "parsing: #{json_blob}"
|
36
|
+
hash = JSON.parse(json_blob)
|
37
|
+
quote = hash["Global Quote"]
|
38
|
+
|
39
|
+
quote.keys.each do |key|
|
40
|
+
case key
|
41
|
+
when "01. symbol"
|
42
|
+
@symbol = quote[key]
|
43
|
+
when "02. open"
|
44
|
+
@open = self.fix_number quote[key]
|
45
|
+
when "03. high"
|
46
|
+
@high = self.fix_number quote[key]
|
47
|
+
when "04. low"
|
48
|
+
@low = self.fix_number quote[key]
|
49
|
+
when "05. price"
|
50
|
+
@price = self.fix_number quote[key]
|
51
|
+
when "06. volume"
|
52
|
+
@volume = quote[key]
|
53
|
+
when "07. latest trading day"
|
54
|
+
@trading_day = quote[key]
|
55
|
+
when "08. previous close"
|
56
|
+
@prev_close = self.fix_number quote[key]
|
57
|
+
when "09. change"
|
58
|
+
@change = self.fix_number quote[key]
|
59
|
+
when "10. change percent"
|
60
|
+
@change_percent = self.fix_number quote[key]
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def fix_number(price_str)
|
66
|
+
price_str.to_f.round(2)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
module Lita
|
71
|
+
module Handlers
|
72
|
+
class OnewheelFinance < Handler
|
73
|
+
config :apikey, required: true
|
74
|
+
route /quote\s+(\w+)/i, :handle_quote, command: true
|
75
|
+
|
76
|
+
def handle_quote(response)
|
77
|
+
url = "https://www.alphavantage.co/query"
|
78
|
+
Lita.logger.debug "#{url} #{{function: 'GLOBAL_QUOTE', symbol: response.matches[0][0], apikey: config.apikey}.inspect}"
|
79
|
+
resp = RestClient.get url, {params: {function: 'GLOBAL_QUOTE', symbol: response.matches[0][0], apikey: config.apikey}}
|
80
|
+
stock = GlobalQuote.new resp
|
81
|
+
|
82
|
+
str = "#{stock.symbol}: $#{stock.price} "
|
83
|
+
if stock.change >= 0
|
84
|
+
# if irc
|
85
|
+
str += "#{Colors::green} ⬆$#{stock.change}#{Colors::reset}, #{Colors::green}#{stock.change_percent}%#{Colors::reset} "
|
86
|
+
else
|
87
|
+
str += "#{Colors::red} ↯$#{stock.change}#{Colors::reset}, #{Colors::red}#{stock.change_percent}%#{Colors::reset} "
|
88
|
+
end
|
89
|
+
|
90
|
+
response.reply str
|
91
|
+
end
|
92
|
+
|
93
|
+
Lita.register_handler(self)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = "lita-onewheel-finance"
|
3
|
+
spec.version = "0.0.0"
|
4
|
+
spec.authors = ["Andrew Kreps"]
|
5
|
+
spec.email = ["andrew.kreps@gmail.com"]
|
6
|
+
spec.description = "Wee li'l stock quote bot"
|
7
|
+
spec.summary = spec.description
|
8
|
+
spec.homepage = "https://github.com/onewheelskyward/lita-onewheel-finance"
|
9
|
+
spec.license = "MIT"
|
10
|
+
spec.metadata = { "lita_plugin_type" => "handler" }
|
11
|
+
|
12
|
+
spec.files = `git ls-files`.split($/)
|
13
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
14
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
15
|
+
spec.require_paths = ['lib']
|
16
|
+
|
17
|
+
spec.add_runtime_dependency 'lita', '~> 4.7'
|
18
|
+
spec.add_runtime_dependency 'rest-client', '~> 2'
|
19
|
+
#spec.add_runtime_dependency 'nokogiri', '~> 1'
|
20
|
+
|
21
|
+
spec.add_development_dependency 'bundler', '~> 2'
|
22
|
+
#spec.add_development_dependency 'pry-byebug'
|
23
|
+
spec.add_development_dependency 'rake', '~> 13'
|
24
|
+
spec.add_development_dependency 'rack-test', '~> 0.8'
|
25
|
+
spec.add_development_dependency 'rspec', '~> 3'
|
26
|
+
spec.add_development_dependency 'simplecov', '~> 0.16'
|
27
|
+
spec.add_development_dependency 'coveralls', '~> 0.8'
|
28
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"Global Quote": {
|
3
|
+
"01. symbol": "LULU",
|
4
|
+
"02. open": "229.8000",
|
5
|
+
"03. high": "231.7500",
|
6
|
+
"04. low": "227.5300",
|
7
|
+
"05. price": "230.8300",
|
8
|
+
"06. volume": "1188879",
|
9
|
+
"07. latest trading day": "2019-12-30",
|
10
|
+
"08. previous close": "230.0200",
|
11
|
+
"09. change": "0.8100",
|
12
|
+
"10. change percent": "0.3521%"
|
13
|
+
}
|
14
|
+
}
|
@@ -0,0 +1,1160 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="en">
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
5
|
+
<meta charset="utf-8">
|
6
|
+
<title>Effective Federal Funds Rate (EFFR) | FRED | St. Louis Fed</title>
|
7
|
+
<script>
|
8
|
+
dataLayer = [];
|
9
|
+
</script>
|
10
|
+
|
11
|
+
<!-- Google Tag Manager -->
|
12
|
+
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
13
|
+
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
14
|
+
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
15
|
+
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
16
|
+
})(window,document,'script','dataLayer','GTM-5L322W');</script>
|
17
|
+
<!-- End Google Tag Manager -->
|
18
|
+
|
19
|
+
<meta name="description" content="View data of the Effective Federal Funds Rate, or the interest rate depository institutions charge each other for overnight loans of funds.">
|
20
|
+
<meta name="keywords" content="frb ny, federal, daily, rate, copyrighted: citation required, usa, nation, nsa, Economic Data, FRED, St. Louis Fed, Federal Reserve">
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
<script type="application/ld+json">
|
25
|
+
{
|
26
|
+
"@context": "http://schema.org",
|
27
|
+
"@type": "Dataset",
|
28
|
+
"license": "https://research.stlouisfed.org/fred_terms.html#copyright-citation-required",
|
29
|
+
"name": "Effective Federal Funds Rate",
|
30
|
+
"description": "View data of the Effective Federal Funds Rate, or the interest rate depository institutions charge each other for overnight loans of funds.",
|
31
|
+
"keywords": "frb ny, federal, daily, rate, copyrighted: citation required, usa, nation, nsa, Economic Data, FRED, St. Louis Fed, Federal Reserve, New York Fed, United States of America, Not Seasonally Adjusted",
|
32
|
+
"dateModified": "2019-12-13T08:01:00-06:00",
|
33
|
+
"inLanguage": "en-US",
|
34
|
+
"distribution": {
|
35
|
+
"@type": "DataDownload",
|
36
|
+
"url": "https://fred.stlouisfed.org/series/EFFR"
|
37
|
+
},
|
38
|
+
"alternateName": "EFFR",
|
39
|
+
"includedInDataCatalog": {
|
40
|
+
"@type": "DataCatalog",
|
41
|
+
"name": "FRED",
|
42
|
+
"alternateName": "Federal Reserve Economic Data",
|
43
|
+
"url": "https://fred.stlouisfed.org/",
|
44
|
+
"publisher": {
|
45
|
+
"@type": "Organization",
|
46
|
+
"name": "Federal Reserve Bank of St. Louis",
|
47
|
+
"url": "https://www.stlouisfed.org/",
|
48
|
+
"address": {
|
49
|
+
"@type": "PostalAddress",
|
50
|
+
"addressLocality": "St. Louis",
|
51
|
+
"addressRegion": "MO",
|
52
|
+
"postalCode": "63102",
|
53
|
+
"streetAddress": "Federal Reserve Bank Plaza, 1 Broadway",
|
54
|
+
"addressCountry": "USA"
|
55
|
+
},
|
56
|
+
"department": "Research Division",
|
57
|
+
"email": "fred@stlouisfed.org",
|
58
|
+
"telephone": "(314) 444-3733"
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
</script>
|
64
|
+
|
65
|
+
<link rel="preconnect" href="https://research.stlouisfed.org">
|
66
|
+
<link rel="preconnect" href="https://uapi.stlouisfed.org">
|
67
|
+
<link rel="preconnect" href="https://alfred.stlouisfed.org">
|
68
|
+
<link rel="preconnect" href="https://fred.stlouisfed.org">
|
69
|
+
<link rel="preconnect" href="https://fred.stlouisfed.org">
|
70
|
+
<link rel="preconnect" href="https://apis.google.com">
|
71
|
+
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
|
72
|
+
<link rel="preconnect" href="https://www.google-analytics.com">
|
73
|
+
<link rel="preconnect" href="https://www.googletagmanager.com">
|
74
|
+
<link rel="preconnect" href="https://fonts.gstatic.com">
|
75
|
+
|
76
|
+
<meta name="apple-itunes-app" content="app-id=451715489">
|
77
|
+
<meta name="google-play-app" content="app-id=org.stlouisfed.research.fred">
|
78
|
+
|
79
|
+
<meta name="series-tag" content="frb ny"><meta name="series-tag" content="federal"><meta name="series-tag" content="daily"><meta name="series-tag" content="rate"><meta name="series-tag" content="copyrighted: citation required"><meta name="series-tag" content="usa"><meta name="series-tag" content="nation"><meta name="series-tag" content="nsa">
|
80
|
+
|
81
|
+
<meta name="twitter:card" content="summary_large_image">
|
82
|
+
<meta name="twitter:site" content="@stlouisfed">
|
83
|
+
<meta name="twitter:description" content="Effective Federal Funds Rate">
|
84
|
+
<meta name="twitter:title" content="FRED Economic Data">
|
85
|
+
<meta name="twitter:url" content="https://fred.stlouisfed.org/series/EFFR">
|
86
|
+
<meta name="twitter:image" content="https://fred.stlouisfed.org/graph/fredgraph.png?width=880&height=440&id=EFFR">
|
87
|
+
<meta property="og:image" content="https://fred.stlouisfed.org/graph/fredgraph.png?width=880&height=440&id=EFFR">
|
88
|
+
<meta property="og:type" content="website">
|
89
|
+
<meta property="og:title" content="Effective Federal Funds Rate">
|
90
|
+
<meta property="og:url" content="https://fred.stlouisfed.org/series/EFFR">
|
91
|
+
|
92
|
+
<!-- Global site tag (gtag.js) - Google Analytics -->
|
93
|
+
<script>
|
94
|
+
window.dataLayer = window.dataLayer || [];
|
95
|
+
function gtag(){dataLayer.push(arguments);}
|
96
|
+
gtag('js', new Date());
|
97
|
+
gtag('config', 'UA-9926151-28', { 'optimize_id': 'GTM-PP3C95H'});
|
98
|
+
</script>
|
99
|
+
<link rel="unapi-server" type="application/xml" title="unAPI" href="https://fred.stlouisfed.org/unapi/"/>
|
100
|
+
<meta name="citation_type" content="Web Page">
|
101
|
+
<meta name="citation_title" content="Effective Federal Funds Rate">
|
102
|
+
<meta name="citation_short_title" content="EFFR">
|
103
|
+
<meta name="citation_author" content="">
|
104
|
+
<meta name="citation_website_title" content="FRED, Federal Reserve Bank of St. Louis">
|
105
|
+
<meta name="citation_keywords" content="EFFR">
|
106
|
+
<meta name="citation_public_url" content="https://fred.stlouisfed.org/series/EFFR">
|
107
|
+
<meta name="citation_rights" content="">
|
108
|
+
<meta name="dc.extra" content="The federal funds market consists of domestic unsecured borrowings in U.S. dollars by depository institutions from other depository institutions and certain other entities, primarily government-sponsored enterprises.
|
109
|
+
|
110
|
+
The effective federal funds rate (EFFR) is calculated as a volume-weighted median of overnight federal funds transactions reported in the FR 2420 Report of Selected Money Market Rates.
|
111
|
+
|
112
|
+
For more information, visit the Federal Reserve Bank of New York (https://www.newyorkfed.org/markets/obfrinfo). ">
|
113
|
+
<meta name="citation_date" content="2019-12-13">
|
114
|
+
<meta name="dcterms:PeriodOfTime" content="start:2000-07-03; end:2019-12-12;">
|
115
|
+
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
|
116
|
+
|
117
|
+
<!--<meta name="viewport" content="width=device-width">-->
|
118
|
+
<!--[if IE]>
|
119
|
+
<link rel="stylesheet" type="text/css" href="/css/ie.css">
|
120
|
+
|
121
|
+
<![endif]-->
|
122
|
+
<link rel="canonical" href="https://fred.stlouisfed.org/series/EFFR">
|
123
|
+
|
124
|
+
|
125
|
+
|
126
|
+
</head>
|
127
|
+
|
128
|
+
<body class="series-page">
|
129
|
+
<!-- pingdom_uptime_check=uXCPjTUzTxL7ULra -->
|
130
|
+
<link rel="stylesheet" type="text/css" href=/css/1551876305.bootstrap.custom.min.css><script> </script>
|
131
|
+
<link rel="stylesheet" type="text/css" href=/css/1576244597.series.min.css><script> </script>
|
132
|
+
<link rel="stylesheet" type="text/css" href=/assets/select2/dist/css/1508969298.select2.min.css>
|
133
|
+
|
134
|
+
<!-- Google Tag Manager (noscript) -->
|
135
|
+
<noscript>
|
136
|
+
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5L322W"
|
137
|
+
height="0" width="0" style="display:none;visibility:hidden"></iframe>
|
138
|
+
</noscript>
|
139
|
+
<!-- End Google Tag Manager (noscript) -->
|
140
|
+
|
141
|
+
<!--googleoff: snippet-->
|
142
|
+
<a href="#content-container" class="sr-only sr-only-focusable">Skip to main content</a>
|
143
|
+
<!--googleon: snippet-->
|
144
|
+
<a name="top" id="top"></a>
|
145
|
+
<!--[if lt IE 7 ]>
|
146
|
+
<div id="container" class="ie6 container"><![endif]-->
|
147
|
+
<!--[if IE 7 ]>
|
148
|
+
<div id="container" class="ie7 container"><![endif]-->
|
149
|
+
<!--[if IE 8 ]>
|
150
|
+
<div id="container" class="ie8 container"><![endif]-->
|
151
|
+
<!--[if IE 9 ]>
|
152
|
+
<div id="container" class="ie9 container"><![endif]-->
|
153
|
+
<!--[if IE]>
|
154
|
+
<div id="container" class="ie container"><![endif]-->
|
155
|
+
<!--[if !(IE)]><!-->
|
156
|
+
<div id="container" class="container"><!--<![endif]-->
|
157
|
+
<div id="header" class="col-xs-12">
|
158
|
+
<div>
|
159
|
+
<div id="hidden-user" class='hide'></div>
|
160
|
+
<div id="action-modal"></div>
|
161
|
+
<div class="col-xs-10 col-sm-12 col-md-8 header-logo">
|
162
|
+
<a href="/">
|
163
|
+
<picture>
|
164
|
+
<source srcset="/images/fred-masthead-2x.png" media="(min-width: 767px)">
|
165
|
+
<source srcset="/graph/images/clear.png" media="(max-width: 767px)">
|
166
|
+
<img src="/images/fred-masthead-2x.png" id="fred-logo" alt="" class="hidden-xs fred-masthead">
|
167
|
+
</picture>
|
168
|
+
<span style="margin-top:6px;" class="visible-xs" id="logo-replacement">
|
169
|
+
<picture class="fred-header-mobile-masthead">
|
170
|
+
<source srcset="/images/fred-masthead-mobile-2x.png" media="(max-width: 767px)">
|
171
|
+
<source srcset="/graph/images/clear.png" media="(min-width: 768px)">
|
172
|
+
<img src="/images/fred-masthead-mobile-2x.png" id="fred-logo" alt="" class="visible-xs fred-mobile-masthead">
|
173
|
+
</picture>
|
174
|
+
</span>
|
175
|
+
</a>
|
176
|
+
<a href="https://research.stlouisfed.org">
|
177
|
+
<picture>
|
178
|
+
<source srcset="/images/fred-masthead-research-2x.webp" type="image/webp" media="(min-width: 767px)">
|
179
|
+
<source srcset="/images/fred-masthead-research-2x.png" type="image/jpeg" media="(min-width: 767px)">
|
180
|
+
<source srcset="/graph/images/clear.png" media="(max-width: 767px)">
|
181
|
+
<img src="/images/fred-masthead-research-2x.png" alt="" class="hidden-xs" id="logo">
|
182
|
+
</picture>
|
183
|
+
</a>
|
184
|
+
</div>
|
185
|
+
<div id="head-right" class="col-xs-2 col-sm-12 col-md-4"
|
186
|
+
style="padding-right: 5px; padding-left: 0;text-align: right;">
|
187
|
+
<span class="visible-xs-block">
|
188
|
+
<a class="btn btn-default btn-sm" data-parent="#research-nav" data-toggle="collapse"
|
189
|
+
data-target="#nav-inner" href="#" style="margin-top:10px;">
|
190
|
+
<i class="fa fa-bars fa-2x"></i></a>
|
191
|
+
</span>
|
192
|
+
<div class="hidden-xs" id="signin-wrap">
|
193
|
+
<div id="user-nav"></div>
|
194
|
+
</div>
|
195
|
+
|
196
|
+
<form action="/search" id="head-search-form" class="hidden-xs col-md-12">
|
197
|
+
<div id="head-search-container">
|
198
|
+
<select id="head-search" name="head-search">
|
199
|
+
<option></option>
|
200
|
+
</select>
|
201
|
+
<input type="hidden" name="st" class="search-text-input">
|
202
|
+
</div>
|
203
|
+
</form>
|
204
|
+
</div>
|
205
|
+
</div>
|
206
|
+
<div id="notifications-container"></div>
|
207
|
+
</div>
|
208
|
+
|
209
|
+
<style>
|
210
|
+
.navbar-nav>li>a {line-height: inherit;}
|
211
|
+
#nav-accordion .panel { border: none; }
|
212
|
+
#nav-accordion .panel-body { padding: inherit; }
|
213
|
+
#nav-accordion.panel-group { margin-bottom: inherit; }
|
214
|
+
</style>
|
215
|
+
|
216
|
+
<nav class="col-xs-12 navbar" id="research-nav" role="navigation">
|
217
|
+
<div id="nav-inner" class="navbar-collapse collapse" style="padding-left: 0; padding-right: 0;">
|
218
|
+
|
219
|
+
<form action="/search" id="nav-search-form" class="visible-xs-block col-xs-12" style="margin-top: 8px;margin-bottom: 4px;">
|
220
|
+
<div class="input-group" id="nav-search-container">
|
221
|
+
<input type="text" class="form-control" id="nav-search" name="st" placeholder="Search FRED">
|
222
|
+
<span class="input-group-btn">
|
223
|
+
<button type="submit" class="btn btn-default" id="nav-search-button"><i class="fa fa-search"></i></button>
|
224
|
+
</span>
|
225
|
+
</div>
|
226
|
+
</form>
|
227
|
+
|
228
|
+
<ul id="main-nav" class="navbar navbar-nav col-xs-12">
|
229
|
+
<li>
|
230
|
+
<a href="/" id="fred-link">FRED<span class="trademark">®</span> Economic Data</a>
|
231
|
+
</li>
|
232
|
+
<li class="visible-xs">
|
233
|
+
<a href="https://research.stlouisfed.org/useraccount/">My Account</a>
|
234
|
+
</li>
|
235
|
+
<li>
|
236
|
+
<a href="https://research.stlouisfed.org/info-services.html" class="research-site-link">Information Services</a>
|
237
|
+
</li>
|
238
|
+
<li>
|
239
|
+
<a href="https://research.stlouisfed.org/publications/" id="publications-link" class="research-site-link">Publications</a>
|
240
|
+
</li>
|
241
|
+
<li>
|
242
|
+
<a href="https://research.stlouisfed.org/wp/" id="workingpapers-link" class="research-site-link">Working Papers</a>
|
243
|
+
</li>
|
244
|
+
<li>
|
245
|
+
<a href="https://research.stlouisfed.org/econ/" id="economist-link" class="research-site-link">Economists</a>
|
246
|
+
</li>
|
247
|
+
<li>
|
248
|
+
<a href="https://research.stlouisfed.org/about.html" class="research-site-link">About</a>
|
249
|
+
</li>
|
250
|
+
<li class="hidden-xs hidden-sm navbar-right" style="border:0">
|
251
|
+
<a href="http://www.stlouisfed.org" class="research-site-link">St. Louis Fed Home</a>
|
252
|
+
</li>
|
253
|
+
</ul>
|
254
|
+
</div>
|
255
|
+
</nav>
|
256
|
+
|
257
|
+
|
258
|
+
<div style="padding-left: 10px; padding-right: 10px;" class="clear" id="content-container">
|
259
|
+
|
260
|
+
|
261
|
+
<abbr class="unapi-id" title="EFFR"></abbr>
|
262
|
+
|
263
|
+
<div class="col-xs-12" id="main-content-column">
|
264
|
+
<!--<link rel="stylesheet" type="text/css" href=/assets/bootstrap/dist/css/1550073338.bootstrap.min.css>
|
265
|
+
<link rel="stylesheet" type="text/css" href=/css/1576244597.main.css>
|
266
|
+
-->
|
267
|
+
<p id="breadcrumbs" class="site-breadcrumbs">
|
268
|
+
<span>
|
269
|
+
<a class="breadcrumb_link" href="/categories">Categories</a> > <a class="breadcrumb_link" href="/categories/32991">Money, Banking, & Finance</a> > <a class="breadcrumb_link" href="/categories/22">Interest Rates</a> > <a class="breadcrumb_link" href="/categories/118">FRB Rates - discount, fed funds, primary credit</a>
|
270
|
+
</span>
|
271
|
+
</p>
|
272
|
+
|
273
|
+
|
274
|
+
<div id="page-title" class="page-title">
|
275
|
+
<h1 class="series-title">
|
276
|
+
<span id="series-title-text-container" class="col-xs-10 col-lg-11 pull-left">
|
277
|
+
<div id='favorite-toggle-container' class="favorite-toggle-container">
|
278
|
+
<a href="#" id='favorite-star' class="fa fa4 fa-star-o favorite-toggle" data-series-id="EFFR" title="Add to Favorites"></a>
|
279
|
+
</div> Effective Federal Funds Rate<span class="smaller"> (EFFR)</span> </span>
|
280
|
+
<div id="download-button-container">
|
281
|
+
<span class="pull-right col-xs-1">
|
282
|
+
<!-- Download button -->
|
283
|
+
<div class="btn-group pull-right">
|
284
|
+
<button type="button" id="download-button" class="btn-link series-button dropdown-toggle meta-button-round fg-download-btn-gtm" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
285
|
+
<span class="fg-download-btn-gtm">Download </span><i class="fa fa-download fg-download-btn-gtm"></i></span>
|
286
|
+
</button>
|
287
|
+
<ul id="fg-download-menu" class="dropdown-menu download-menu">
|
288
|
+
</ul>
|
289
|
+
</div>
|
290
|
+
</span>
|
291
|
+
</div>
|
292
|
+
</h1>
|
293
|
+
<input type="hidden" name="series-recently-viewed" class="series-recently-viewed" value="Effective Federal Funds Rate">
|
294
|
+
|
295
|
+
</div>
|
296
|
+
|
297
|
+
<link rel="stylesheet" type="text/css" href=/assets/components-font-awesome/css/1477392983.font-awesome.min.css>
|
298
|
+
<link rel="stylesheet" type="text/css" href=/assets/bootstrap-datepicker/dist/1544152624.bootstrap-datepicker.min.css>
|
299
|
+
<div id="series-meta-row" class="row series-attributes">
|
300
|
+
<div id="meta-left-col" class="col-xs-12 col-sm-7 col-md-6">
|
301
|
+
|
302
|
+
|
303
|
+
<div id="mobile-meta-col" style="display:none;" class="pull-left col-xs-12">
|
304
|
+
2019-12-12: <span class="series-meta-observation-value">1.55</span> |
|
305
|
+
Percent |
|
306
|
+
<span class="series-meta-value-frequency">
|
307
|
+
Daily </span> |
|
308
|
+
Updated: <span title="Dec 13, 2019 8:01 AM CST">Dec 13, 2019</span>
|
309
|
+
</div>
|
310
|
+
<div class="pull-left meta-col">
|
311
|
+
<p class="series-meta-label">Observation:</p>
|
312
|
+
<span class="series-meta-value">2019-12-12:</span>
|
313
|
+
<span class="series-meta-observation-value">1.55</span>
|
314
|
+
<span class="hidden-sm small link recent-obs-link fg-more-obs-gtm" id="recent-obs-link">(+ more)</span>
|
315
|
+
<br /><span class="updated-text" title="Dec 13, 2019 8:01 AM CST">Updated: Dec 13, 2019</span>
|
316
|
+
<div id="recent-obs-table" style="display:none">
|
317
|
+
<table id="recent-obs" class="table table-condensed">
|
318
|
+
<tr>
|
319
|
+
<td align="right">2019-12-12: </td>
|
320
|
+
<td align="right" class="series-obs value">1.55</td>
|
321
|
+
<td> </td>
|
322
|
+
</tr>
|
323
|
+
<tr>
|
324
|
+
<td align="right">2019-12-11: </td>
|
325
|
+
<td align="right" class="series-obs value">1.55</td>
|
326
|
+
<td> </td>
|
327
|
+
</tr>
|
328
|
+
<tr>
|
329
|
+
<td align="right">2019-12-10: </td>
|
330
|
+
<td align="right" class="series-obs value">1.55</td>
|
331
|
+
<td> </td>
|
332
|
+
</tr>
|
333
|
+
<tr>
|
334
|
+
<td align="right">2019-12-09: </td>
|
335
|
+
<td align="right" class="series-obs value">1.55</td>
|
336
|
+
<td> </td>
|
337
|
+
</tr>
|
338
|
+
<tr>
|
339
|
+
<td align="right">2019-12-06: </td>
|
340
|
+
<td align="right" class="series-obs value">1.55</td>
|
341
|
+
<td> </td>
|
342
|
+
</tr>
|
343
|
+
<tr><td colspan=2><a id="viewall-button" href="/data/EFFR.txt" target="_blank" class="btn btn-primary fg-view-all-obs fg-view-all-obs-gtm">View All</a></td></tr>
|
344
|
+
</table>
|
345
|
+
</div>
|
346
|
+
</div>
|
347
|
+
<div class="pull-left meta-col">
|
348
|
+
<p class="series-meta-label">Units:</p>
|
349
|
+
<span class="series-meta-value"><span class="series-meta-value-units">Percent</span>,<br />Not Seasonally Adjusted </span>
|
350
|
+
</div>
|
351
|
+
<div class="pull-left meta-col">
|
352
|
+
<p class="series-meta-label">Frequency:</p>
|
353
|
+
<span class="series-meta-value">
|
354
|
+
<span class="series-meta-value-frequency">
|
355
|
+
Daily </span>
|
356
|
+
</span>
|
357
|
+
</div>
|
358
|
+
</div>
|
359
|
+
<div id="meta-right-col" class="col-xs-12 col-sm-5 col-md-6 pull-right">
|
360
|
+
<div id="mobile-meta-icons" class="col-sm-2 pull-left">
|
361
|
+
<div id="meta-download-button-sm" class="pull-left"> <!-- Download button -->
|
362
|
+
<div class="btn-group">
|
363
|
+
<button type="button" id="download-button" class="btn-link series-button dropdown-toggle meta-button-round fg-download-btn-gtm" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
364
|
+
<span class="fg-download-btn-gtm">Download </span><i class="fa fa-download fg-download-btn-gtm"></i>
|
365
|
+
</button>
|
366
|
+
<ul class="dropdown-menu">
|
367
|
+
<li><a href="#" id="download-data" class="fg-export-xls-gtm fs-export-gtm" rel="nofollow"><i class="fa fa-file-excel-o"></i> Excel</a></li>
|
368
|
+
<li><a href="#" id="download-data-csv" class="fg-export-csv-gtm fs-export-gtm" rel="nofollow"><i class="fa fa-file-text"></i> CSV</a></li>
|
369
|
+
<li><a href="#" id="export-png" class="fg-export-png-gtm fs-export-gtm" rel="nofollow"><i class="fa fa-picture-o"></i> Image</a></li>
|
370
|
+
<li><a href="#" id="export-powerpoint" class="fg-export-ppt-gtm fs-export-gtm" rel="nofollow"><i class="fa fa-file-powerpoint-o"></i> PowerPoint</a></li>
|
371
|
+
<li><a href="#" id="export-pdf" class="fg-export-pdf-gtm fs-export-gtm" rel="nofollow"><i class="fa fa-file-pdf-o"></i> PDF</a></li>
|
372
|
+
</ul>
|
373
|
+
</div>
|
374
|
+
</div>
|
375
|
+
<div id="meta-twitter-button-sm" class="pull-left"><a href="#" title="" target="_blank" rel="nofollow" class="share-button share-twitter meta-button-round"><i class="fa fa-twitter fa-2x fg-share-gtm"></i></a></div>
|
376
|
+
</div>
|
377
|
+
|
378
|
+
<div id="zoom-controls" class="col-xs-6 col-sm-8 col-md-9 pull-left ">
|
379
|
+
<div class="col-sm-offset-0 col-lg-offset-2 col-sm-12">
|
380
|
+
<div id="date-quick-range" class="pull-left col-xs-12 col-sm-12 col-md-4">
|
381
|
+
<span class="ranges ">
|
382
|
+
<span id="zoom-1yr" class="link fg-range-gtm fg-range-1y-gtm">1Y</span> |
|
383
|
+
<span id="zoom-5yr" class="link fg-range-gtm fg-range-5y-gtm">5Y</span> |
|
384
|
+
<span id="zoom-10yr" class="link fg-range-gtm fg-range-10y-gtm">10Y</span> |
|
385
|
+
<span id="zoom-all" class="link fg-range-gtm fg-range-max-gtm">Max</span>
|
386
|
+
</span>
|
387
|
+
</div>
|
388
|
+
<div id="date-custom-range" class="pull-left col-xs-12 col-sm-12 col-md-7">
|
389
|
+
<form class="form-inline" role="form" id="graph-date-range">
|
390
|
+
<div id="zoom-start">
|
391
|
+
<label class="sr-only" for="input-cosd">From</label>
|
392
|
+
<input type="text" id="input-cosd" class="input-sm cosd form-control pull-left fg-start-date-gtm" style="font-size:.85em;" value="2000-07-03">
|
393
|
+
</div>
|
394
|
+
|
395
|
+
<div class="pull-left date-seperator "><span class="hidden-xs hidden-sm">to</span></div>
|
396
|
+
|
397
|
+
<div id="zoom-end" class="">
|
398
|
+
<input id="input-coed" type="text" class="input-sm coed form-control pull-left fg-end-date-gtm" style="font-size:.85em" value="2019-12-12">
|
399
|
+
</div>
|
400
|
+
<div id="zoom-pie" class="pull-right hide">
|
401
|
+
<div class="pull-left pie-date-label" style="margin: 8px 5px 0 5px;"><span class="hidden-xs hidden-sm">Date: </span></div>
|
402
|
+
<input id="input-pie-date" type="text" class="input-sm pie-date form-control " style="font-size:.85em" value="">
|
403
|
+
</div>
|
404
|
+
<input type="hidden" class="initial-cosd" value="2000-07-03">
|
405
|
+
<input type="hidden" class="initial-coed" value="2019-12-12">
|
406
|
+
</form>
|
407
|
+
</div>
|
408
|
+
</div>
|
409
|
+
</div>
|
410
|
+
<div id="edit-button-container" class="col-sm-1 col-md-3 pull-right">
|
411
|
+
<a href="#0" class="overlay-btn overlay-btn-large series-button btn-warning pull-right fg-edit-btn-gtm">Edit Graph <i class="fa fa-cog fg-edit-btn-gtm"></i><!--<span class="badge badge-hero badge-danger">3</span>--></a>
|
412
|
+
<a href="#" class="overlay-btn hide edit-icon-toggle meta-button-round"><i class="fa fa-cog fa-2x fg-edit-btn-gtm" aria-hidden="true"></i></a>
|
413
|
+
</div>
|
414
|
+
<div id="cal-button-container" style="display:none;" class="col-sm-1 pull-right">
|
415
|
+
<a href="#" class="calendar-icon-toggle"><i class="fa fa-calendar fa-2x fg-cal-btn-gtm" aria-hidden="true"></i></a>
|
416
|
+
</div>
|
417
|
+
|
418
|
+
</div>
|
419
|
+
</div>
|
420
|
+
|
421
|
+
<link rel="stylesheet" type="text/css" href=/graph/css/1576244597.fredgraph.min.css>
|
422
|
+
<script type="text/javascript">
|
423
|
+
WebFontConfig = {
|
424
|
+
google: { families: ["Open+Sans"]}
|
425
|
+
};
|
426
|
+
(function() {
|
427
|
+
var wf = document.createElement('script');
|
428
|
+
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
|
429
|
+
'://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js';
|
430
|
+
wf.type = 'text/javascript';
|
431
|
+
wf.async = 'true';
|
432
|
+
var s = document.getElementsByTagName('script')[0];
|
433
|
+
s.parentNode.insertBefore(wf, s);
|
434
|
+
})(); </script>
|
435
|
+
<input type="hidden" id="cosd" value="2000-07-03">
|
436
|
+
<input type="hidden" id="coed" value="2019-12-12">
|
437
|
+
|
438
|
+
|
439
|
+
<input type="hidden" id="range" value="">
|
440
|
+
<input type="hidden" id="mode" value="fred">
|
441
|
+
<div id="zoom-and-share">
|
442
|
+
|
443
|
+
|
444
|
+
<div id="resizable-graph-container">
|
445
|
+
<div id="fullscreen-btn">
|
446
|
+
<img src="/graph/images/fullscreen.png" id="fullscreen-btn-icon"></img>
|
447
|
+
</div>
|
448
|
+
<div id="root" data-graph-mode="fred">
|
449
|
+
<div class="loading-ring" /></div>
|
450
|
+
</div>
|
451
|
+
</div>
|
452
|
+
<br style="clear:both">
|
453
|
+
</div>
|
454
|
+
<div id="save-share-tab" class="save-share">
|
455
|
+
<div class="row">
|
456
|
+
<div id="share-col-copyright" class="pull-left">
|
457
|
+
<p class="copyright-note hide"><strong>Data in this graph are copyrighted. Please review the copyright information in the <span class="link show-notes">series notes</span> before sharing.</strong></p>
|
458
|
+
</div>
|
459
|
+
</div>
|
460
|
+
<div class="row">
|
461
|
+
<div id="share-col-1" class="pull-left col-xs-7 col-sm-7">
|
462
|
+
<div class="btn-group share-dropdown pull-left">
|
463
|
+
<button type="button" id="share-links-btn" class="btn-link series-button dropdown-toggle fg-share-links-btn-gtm" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
464
|
+
Share<span class="collapsable-btn-text fg-share-links-btn-gtm"> Links</span> <i class="fa fa-link bigger fg-share-links-btn-gtm"></i>
|
465
|
+
</button>
|
466
|
+
<ul class="dropdown-menu">
|
467
|
+
<li><a href="#" class="permalink-btn page-permalink-btn fg-page-permalink-gtm" data-target=".page-permalink-container"><i class="fa fa-link bigger fg-page-permalink-gtm"></i> Page short URL</a></li>
|
468
|
+
<li><a href="#" class="permalink-btn embed-code-btn" data-target=".embed-code-container"><i class="fa fa-code bigger"></i> Embed in website</a></li>
|
469
|
+
<li><a href="#" class="permalink-btn image-permalink-btn" data-target=".image-permalink-container"><i class="fa fa-link bigger"></i> Image short URL</a></li>
|
470
|
+
|
471
|
+
</ul>
|
472
|
+
</div><!-- /share-dropdown -->
|
473
|
+
|
474
|
+
<div id="add-category-modal"><!-- React component; initialized with JS --></div>
|
475
|
+
<div class="btn-group account-dropdown pull-left">
|
476
|
+
<button type="button" id="share-links-btn" class="btn-link series-button dropdown-toggle fg-account-tools-btn-gtm" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
477
|
+
Account<span class="collapsable-btn-text fg-account-tools-btn-gtm"> Tools</span></a> <i class="fa fa-user bigger fg-account-tools-btn-gtm"></i>
|
478
|
+
</button>
|
479
|
+
<ul class="dropdown-menu">
|
480
|
+
|
481
|
+
<li class="save-graph save-graph-modal-btn" id="save-graph-modal-btn"><!-- React component; initialized with JS--></li>
|
482
|
+
<li class="add-to-dashboard" id="add-to-dashboard-modal-btn"><!-- React component; initialized with JS--></li>
|
483
|
+
<li class="add-data-list"><a href="https://research.stlouisfed.org/useraccount/datalists/addseries/EFFR" id="datalist" target="_blank" class="FredAddToDataList-gtm"><i class="fa fa-table bigger"></i> Add to data list</a></li>
|
484
|
+
<li id="email-notify-container" data-notification-id="419980" class="notify-updates"><a href="https://research.stlouisfed.org/useraccount/addemailnotification/419980" id="emailnotify" class="FredAddEmailNotify-gtm"><i class="fa fa-envelope bigger"></i> Get email notification</a></li>
|
485
|
+
</ul>
|
486
|
+
</div><!-- /account-dropdown -->
|
487
|
+
</div><!-- /share-col-1 -->
|
488
|
+
<div id="share-col-2" class="pull-right col-xs-5 col-sm-4 col-md-2">
|
489
|
+
<div id="share-socialmedia" class="social-links pull-right">
|
490
|
+
<a href="/graph/share.php" target="_blank" class="share-twitter tooltips social-share-link" data-toggle="tooltip" data-placement="top" title="" data-share-type="twitter" data-original-title="Share on Twitter"><i class="fa fa-twitter fa-3x fg-share-gtm"></i></a>
|
491
|
+
<a href="/graph/share.php" target="_blank" class="share-reddit tooltips social-share-link" data-toggle="tooltip" data-placement="top" title="" data-share-type="reddit" data-original-title="Share on Reddit" ><i class="fa fa-reddit fa-3x fg-share-gtm"></i></a>
|
492
|
+
<a href="/graph/share.php" target="_blank" class="share-facebook tooltips social-share-link" data-toggle="tooltip" data-placement="top" title="" data-share-type="facebook" data-original-title="Post on Facebook"><i class="fa fa-facebook fa-3x fg-share-gtm"></i></a>
|
493
|
+
<a href="/graph/share.php" target="_blank" class="share-linkedin tooltips social-share-link" data-toggle="tooltip" data-placement="top" title="" data-share-type="linkedin" data-original-title="Post to Linkedin"><i class="fa fa-linkedin fa-3x fg-share-gtm"></i></a>
|
494
|
+
<br class="clear">
|
495
|
+
</div>
|
496
|
+
</div><!-- /share-col-2 -->
|
497
|
+
</div><!-- /row -->
|
498
|
+
|
499
|
+
|
500
|
+
|
501
|
+
|
502
|
+
|
503
|
+
|
504
|
+
</div><!-- /save-share-tab -->
|
505
|
+
<div class="tabs-left tabs-scroll">
|
506
|
+
<div class="tab-content-scroll noscrollbar" data-target="#tab-nav">
|
507
|
+
|
508
|
+
<div id="notes" class="tab-pane ">
|
509
|
+
<div class="panel notes-series-group">
|
510
|
+
<div class="panel-heading">
|
511
|
+
NOTES
|
512
|
+
</div>
|
513
|
+
<div id="notes-content" class="panel-body">
|
514
|
+
|
515
|
+
|
516
|
+
<p class="col-xs-12 col-md-6 pull-left padding-r25"><strong>Source:</strong>
|
517
|
+
<a class="note-source series-source fg-ext-link-gtm fg-source-link-gtm" rel="nofollow" href="http://www.newyorkfed.org/" target="_blank">Federal Reserve Bank of New York
|
518
|
+
<i class="fa fa-external-link" aria-hidden="true"></i></a>
|
519
|
+
<p class="col-xs-12 col-md-6 pull-left"><strong>Release:</strong>
|
520
|
+
<a
|
521
|
+
class="note-release series-release fg-ext-link-gtm fg-release-link-gtm" rel="nofollow"
|
522
|
+
href="https://apps.newyorkfed.org/markets/autorates/fed%20funds" target="_blank">Federal Funds Data
|
523
|
+
<i class="fa fa-external-link" aria-hidden="true"></i></a> <div class="clearfix"></div>
|
524
|
+
|
525
|
+
<p class="col-xs-12 pull-left"><strong>Units:</strong>
|
526
|
+
<span class="series-meta-value"><span class="series-meta-value-units">
|
527
|
+
Percent</span>, Not Seasonally Adjusted
|
528
|
+
</span>
|
529
|
+
</p>
|
530
|
+
<p class="col-xs-12 pull-left"><strong>Frequency:</strong>
|
531
|
+
<span class="series-meta-value">
|
532
|
+
<span class="series-meta-value-frequency">
|
533
|
+
Daily </span>
|
534
|
+
</span>
|
535
|
+
</p>
|
536
|
+
|
537
|
+
<h4 class="section-title hide">Notes:</h4>
|
538
|
+
<p class="series-notes">The federal funds market consists of domestic unsecured borrowings in U.S. dollars by depository institutions from other depository institutions and certain other entities, primarily government-sponsored enterprises.<br><br>The effective federal funds rate (EFFR) is calculated as a volume-weighted median of overnight federal funds transactions reported in the FR 2420 Report of Selected Money Market Rates.<br><br>For more information, visit the <a href="https://www.newyorkfed.org/markets/obfrinfo">Federal Reserve Bank of New York</a>.</p>
|
539
|
+
|
540
|
+
|
541
|
+
<div class="series-citation">
|
542
|
+
<h4 class="section-title">Suggested Citation:</h4>
|
543
|
+
<div>
|
544
|
+
<p class="citation">
|
545
|
+
Federal Reserve Bank of New York,
|
546
|
+
Effective Federal Funds Rate [EFFR],
|
547
|
+
retrieved from FRED,
|
548
|
+
Federal Reserve Bank of St. Louis;
|
549
|
+
https://fred.stlouisfed.org/series/EFFR,
|
550
|
+
December 15, 2019.
|
551
|
+
</p>
|
552
|
+
</div>
|
553
|
+
</div>
|
554
|
+
|
555
|
+
</div>
|
556
|
+
</div><!-- panel -->
|
557
|
+
</div>
|
558
|
+
|
559
|
+
|
560
|
+
<div id="releasetables" class="tab-pane hide">
|
561
|
+
<div class="panel">
|
562
|
+
<div class="panel-heading">
|
563
|
+
RELEASE TABLES
|
564
|
+
</div>
|
565
|
+
<div id="releasetables-content" class="panel-body">
|
566
|
+
</div><!-- /panel-body -->
|
567
|
+
</div><!-- /panel -->
|
568
|
+
</div><!-- /relatedcontent -->
|
569
|
+
|
570
|
+
<div id="relatedcontent" class="tab-pane ">
|
571
|
+
<div class="panel">
|
572
|
+
<div class="panel-heading">
|
573
|
+
RELATED CONTENT
|
574
|
+
</div>
|
575
|
+
<div id="relatedcontent-content" class="panel-body">
|
576
|
+
<h2>Related Resources</h2>
|
577
|
+
<div id="related-resource-container" class="row">
|
578
|
+
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 related-resource">
|
579
|
+
|
580
|
+
|
581
|
+
|
582
|
+
|
583
|
+
|
584
|
+
<a href=" https://research.stlouisfed.org/publications/page1-econ/2014/03/01/would-increasing-the-minimum-wage-reduce-poverty/?&utm_source=fred.stlouisfed.org&utm_medium=Referral&utm_term=related_resources&utm_content=&utm_campaign=pageone
|
585
|
+
" target="_blank" title="Would Increasing the Minimum Wage Reduce Poverty?">
|
586
|
+
<img class="related-resource-img fg-res-img-lnk-gtm" src="/graph/images/clear.png" data-src=" https://fred.stlouisfed.org/images/related_resources_pageone.png
|
587
|
+
">
|
588
|
+
</a>
|
589
|
+
<div class="related-resource-source">
|
590
|
+
Article
|
591
|
+
</div>
|
592
|
+
<div class="related-resource-title">
|
593
|
+
<a href=" https://research.stlouisfed.org/publications/page1-econ/2014/03/01/would-increasing-the-minimum-wage-reduce-poverty/?&utm_source=fred.stlouisfed.org&utm_medium=Referral&utm_term=related_resources&utm_content=&utm_campaign=pageone
|
594
|
+
" target="_blank" title="Would Increasing the Minimum Wage Reduce Poverty?">
|
595
|
+
<strong class="fg-res-ttl-lnk-gtm">Would Increasing the Minimum Wage Reduce Poverty?</strong>
|
596
|
+
</a>
|
597
|
+
</div>
|
598
|
+
</div>
|
599
|
+
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 related-resource">
|
600
|
+
|
601
|
+
|
602
|
+
|
603
|
+
|
604
|
+
|
605
|
+
<a href=" https://fredblog.stlouisfed.org/2019/07/20-19-hindsight/?utm_source=series_page&utm_medium=related_content&utm_term=related_resources&utm_campaign=fredblog
|
606
|
+
" target="_blank" title="20/19 Hindsight">
|
607
|
+
<img class="related-resource-img fg-res-img-lnk-gtm" src="/graph/images/clear.png" data-src=" https://fred.stlouisfed.org/fredgraph.png?g=ogUq&nsh=1&width=600&height=400&trc=1
|
608
|
+
">
|
609
|
+
</a>
|
610
|
+
<div class="related-resource-source">
|
611
|
+
FRED Blog
|
612
|
+
</div>
|
613
|
+
<div class="related-resource-title">
|
614
|
+
<a href=" https://fredblog.stlouisfed.org/2019/07/20-19-hindsight/?utm_source=series_page&utm_medium=related_content&utm_term=related_resources&utm_campaign=fredblog
|
615
|
+
" target="_blank" title="20/19 Hindsight">
|
616
|
+
<strong class="fg-res-ttl-lnk-gtm">20/19 Hindsight</strong>
|
617
|
+
</a>
|
618
|
+
</div>
|
619
|
+
</div>
|
620
|
+
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 related-resource">
|
621
|
+
|
622
|
+
|
623
|
+
|
624
|
+
|
625
|
+
|
626
|
+
<a href=" https://research.stlouisfed.org/dashboard/13160?&utm_source=fred.stlouisfed.org&utm_medium=Referral&utm_term=related_resources&utm_content=&utm_campaign=dashboard
|
627
|
+
" target="_blank" title="Interested in Interest Rates?">
|
628
|
+
<img class="related-resource-img fg-res-img-lnk-gtm" src="/graph/images/clear.png" data-src=" https://fred.stlouisfed.org/images/related_resources_dashboard.png
|
629
|
+
">
|
630
|
+
</a>
|
631
|
+
<div class="related-resource-source">
|
632
|
+
Dashboard
|
633
|
+
</div>
|
634
|
+
<div class="related-resource-title">
|
635
|
+
<a href=" https://research.stlouisfed.org/dashboard/13160?&utm_source=fred.stlouisfed.org&utm_medium=Referral&utm_term=related_resources&utm_content=&utm_campaign=dashboard
|
636
|
+
" target="_blank" title="Interested in Interest Rates?">
|
637
|
+
<strong class="fg-res-ttl-lnk-gtm">Interested in Interest Rates?</strong>
|
638
|
+
</a>
|
639
|
+
</div>
|
640
|
+
</div>
|
641
|
+
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 related-resource">
|
642
|
+
|
643
|
+
<a href="https://alfred.stlouisfed.org/series?seid=EFFR&utm_source=series_page&utm_medium=related_content&utm_term=related_resources&utm_campaign=alfred" target="_blank" title="Effective Federal Funds Rate">
|
644
|
+
<img class="related-resource-img fg-alfred-lnk-gtm" src="/graph/images/clear.png" data-src="https://alfred.stlouisfed.org/alfredgraph.png?mode=alfred&nsh=1&type=image/png&chart_type=column&width=600&height=400&id=EFFR,EFFR&vintage_date=2019-12-12,2019-12-13&cosd=2019-12-11,2019-12-12&coed=2019-12-11,2019-12-12&key=1de06659e330fe38d0fd489849e0bfcb">
|
645
|
+
</a>
|
646
|
+
<div class="related-resource-source">
|
647
|
+
ALFRED Vintage Series
|
648
|
+
</div>
|
649
|
+
<div class="related-resource-title">
|
650
|
+
<a href="https://alfred.stlouisfed.org/series?seid=EFFR&utm_source=series_page&utm_medium=related_content&utm_term=related_resources&utm_campaign=alfred" target="_blank" title="Effective Federal Funds Rate"><strong class="fg-alfred-lnk-gtm" >Effective Federal Funds Rate</strong></a>
|
651
|
+
</div>
|
652
|
+
</div>
|
653
|
+
</div>
|
654
|
+
<h2>Other Formats</h2>
|
655
|
+
<div class="series-tag-cloud">
|
656
|
+
|
657
|
+
<a class="series-tag fg-oth-fmt-lnk-gtm" href="/series/DFF" target="_blank">Daily, Not Seasonally Adjusted</a>
|
658
|
+
<a class="series-tag fg-oth-fmt-lnk-gtm" href="/series/FEDFUNDS" target="_blank">Monthly, Not Seasonally Adjusted</a>
|
659
|
+
<a class="series-tag fg-oth-fmt-lnk-gtm" href="/series/FF" target="_blank">Weekly, Not Seasonally Adjusted</a>
|
660
|
+
<div class="clearfix"></div>
|
661
|
+
</div>
|
662
|
+
<h2>Related Categories</h2>
|
663
|
+
<div class="series-tag-cloud">
|
664
|
+
<a class="series-tag fg-related-category-link-gtm" href="/categories/118" target="_blank">FRB Rates - discount, fed funds, primary credit</a>
|
665
|
+
<a class="series-tag fg-related-category-link-gtm" href="/categories/22" target="_blank">Interest Rates</a>
|
666
|
+
<a class="series-tag fg-related-category-link-gtm" href="/categories/32991" target="_blank">Money, Banking, & Finance</a>
|
667
|
+
<div class="clearfix"></div>
|
668
|
+
</div>
|
669
|
+
<h2>Sources</h2>
|
670
|
+
<div class="series-tag-cloud">
|
671
|
+
|
672
|
+
<a class="series-tag fg-related-source-link-gtm" href="/source?soid=96" target="_blank">More Releases from Federal Reserve Bank of New York</a>
|
673
|
+
|
674
|
+
<div class="clearfix"></div>
|
675
|
+
</div>
|
676
|
+
<h2>Releases</h2>
|
677
|
+
<div class="series-tag-cloud">
|
678
|
+
<a class="series-tag fg-related-release-link-gtm" href="/release?rid=378" target="_blank">More Series from Federal Funds Data</a>
|
679
|
+
<div class="clearfix"></div>
|
680
|
+
</div>
|
681
|
+
|
682
|
+
<h2>Tags</h2>
|
683
|
+
<div class="series-tag-cloud">
|
684
|
+
<a class="series-tag fg-tag-lnk-gtm" href="/tags/series?t=frb%20ny" target="_blank">
|
685
|
+
New York Fed
|
686
|
+
</a>
|
687
|
+
<a class="series-tag fg-tag-lnk-gtm" href="/tags/series?t=federal" target="_blank">
|
688
|
+
Federal
|
689
|
+
</a>
|
690
|
+
<a class="series-tag fg-tag-lnk-gtm" href="/tags/series?t=daily" target="_blank">
|
691
|
+
Daily
|
692
|
+
</a>
|
693
|
+
<a class="series-tag fg-tag-lnk-gtm" href="/tags/series?t=rate" target="_blank">
|
694
|
+
Rate
|
695
|
+
</a>
|
696
|
+
<a class="series-tag fg-tag-lnk-gtm" href="/tags/series?t=copyrighted%3A%20citation%20required" target="_blank">
|
697
|
+
Copyrighted: Citation Required
|
698
|
+
</a>
|
699
|
+
<a class="series-tag fg-tag-lnk-gtm" href="/tags/series?t=usa" target="_blank">
|
700
|
+
United States of America
|
701
|
+
</a>
|
702
|
+
<a class="series-tag fg-tag-lnk-gtm" href="/tags/series?t=nation" target="_blank">
|
703
|
+
Nation
|
704
|
+
</a>
|
705
|
+
<a class="series-tag fg-tag-lnk-gtm" href="/tags/series?t=nsa" target="_blank">
|
706
|
+
Not Seasonally Adjusted
|
707
|
+
</a>
|
708
|
+
</div>
|
709
|
+
<div class="clearfix"></div>
|
710
|
+
</div><!-- /panel-body -->
|
711
|
+
</div><!-- /panel -->
|
712
|
+
</div><!-- /relatedcontent -->
|
713
|
+
|
714
|
+
|
715
|
+
</div>
|
716
|
+
</div>
|
717
|
+
|
718
|
+
<div id="popover-container"></div>
|
719
|
+
|
720
|
+
<div class="hide">
|
721
|
+
<div class="color-popover">
|
722
|
+
<span class="color color-inline color-picker-color" style="background:#4572A7"></span>
|
723
|
+
<span class="color color-inline color-picker-color" style="background:#AA4643"></span>
|
724
|
+
<span class="color color-inline color-picker-color" style="background:#89A54E"></span>
|
725
|
+
<span class="color color-inline color-picker-color" style="background:#80699B"></span>
|
726
|
+
<span class="color color-inline color-picker-color" style="background:#3D96AE"></span>
|
727
|
+
<br class="clear">
|
728
|
+
<span class="color color-inline color-picker-color" style="background:#DB843D"></span>
|
729
|
+
<span class="color color-inline color-picker-color" style="background:#92A8CD"></span>
|
730
|
+
<span class="color color-inline color-picker-color" style="background:#A47D7C"></span>
|
731
|
+
<span class="color color-inline color-picker-color" style="background:#B5CA92"></span>
|
732
|
+
<span class="color color-inline color-picker-color" style="background:#FFFFFF"></span>
|
733
|
+
<br class="clear">
|
734
|
+
<span class="color color-inline color-picker-color" style="background:#0000FF"></span>
|
735
|
+
<span class="color color-inline color-picker-color" style="background:#FF0000"></span>
|
736
|
+
<span class="color color-inline color-picker-color" style="background:#006600"></span>
|
737
|
+
<span class="color color-inline color-picker-color" style="background:#ff6600"></span>
|
738
|
+
<span class="color color-inline color-picker-color" style="background:#6400C8"></span>
|
739
|
+
<br class="clear">
|
740
|
+
<span class="color color-inline color-picker-color" style="background:#CB4AC5"></span>
|
741
|
+
<span class="color color-inline color-picker-color" style="background:#D6AE00"></span>
|
742
|
+
<span class="color color-inline color-picker-color" style="background:#336699"></span>
|
743
|
+
<span class="color color-inline color-picker-color" style="background:#DD4477"></span>
|
744
|
+
<span class="color color-inline color-picker-color" style="background:#660000"></span>
|
745
|
+
<br class="clear">
|
746
|
+
<span class="color color-inline color-picker-color" style="background:#000000"></span>
|
747
|
+
<span class="color color-inline color-picker-color" style="background:#444444"></span>
|
748
|
+
<span class="color color-inline color-picker-color" style="background:#666666"></span>
|
749
|
+
<span class="color color-inline color-picker-color" style="background:#999999"></span>
|
750
|
+
<span class="color color-inline color-picker-color" style="background:#CCCCCC"></span>
|
751
|
+
<br class="clear">
|
752
|
+
<input type="text" class="form-control hex" style="width:105px" maxlength="7">
|
753
|
+
</div>
|
754
|
+
</div>
|
755
|
+
<div class="modal fade" id="remove-series-modal">
|
756
|
+
<div class="modal-dialog">
|
757
|
+
<div class="modal-content">
|
758
|
+
<div class="modal-header">
|
759
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
760
|
+
<h3>Confirm Delete</h3>
|
761
|
+
</div>
|
762
|
+
<div class="modal-body">
|
763
|
+
<p>Are you sure you want to remove this series from the graph? This can not be undone.</p>
|
764
|
+
</div>
|
765
|
+
<div class="modal-footer">
|
766
|
+
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
|
767
|
+
<button type="button" class="btn btn-danger" id="remove-series-confirmation">Remove</button>
|
768
|
+
</div>
|
769
|
+
</div>
|
770
|
+
</div>
|
771
|
+
</div>
|
772
|
+
|
773
|
+
<div class="modal fade" id="permalink-modal">
|
774
|
+
<div class="modal-dialog">
|
775
|
+
<div class="modal-content">
|
776
|
+
<div class="modal-header">
|
777
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
778
|
+
<h3 id="permalink-modal-header">Permalink/Embed</h3>
|
779
|
+
</div>
|
780
|
+
<div class="modal-body">
|
781
|
+
<!-- /Share Radio -->
|
782
|
+
<div class="col-xs-12" id="graph-radios">
|
783
|
+
<div class="radio graph-link-container" id="graph-link-update-container">
|
784
|
+
<label>
|
785
|
+
<input id="graph-link-update-radio" class="graph-link-update-radio" type="radio">
|
786
|
+
<div id="graph-link-update"></div>
|
787
|
+
</label>
|
788
|
+
</div>
|
789
|
+
<div class="radio graph-link-container" id="graph-link-range-container">
|
790
|
+
<label>
|
791
|
+
<input id="graph-link-range-radio" class="graph-link-range-radio" type="radio">
|
792
|
+
<div id="graph-link-range"></div>
|
793
|
+
</label>
|
794
|
+
</div>
|
795
|
+
<div class="radio graph-link-container" id="graph-link-static-container">
|
796
|
+
<label>
|
797
|
+
<input id="graph-link-static-radio" class="graph-link-static-radio" type="radio">
|
798
|
+
<div id="graph-link-static"></div>
|
799
|
+
</label>
|
800
|
+
</div>
|
801
|
+
</div>
|
802
|
+
<div class="pull-left col-xs-12 embed-input-container">
|
803
|
+
<div class="embed-code-container input-group input-group-sm padding-btm20">
|
804
|
+
<input type="text" id="embed-code" class="readonly form-control fg-share-embed-gtm fg-share-gtm" readonly="readonly" value="">
|
805
|
+
<span id="copy-embed-code" data-clipboard-target="#embed-code" class="input-group-btn copy-to-clipboard">
|
806
|
+
<span class="btn btn-default fg-share-gtm"><i class="fa fa-clipboard" data-original-title="" title=""></i></span></span>
|
807
|
+
</div>
|
808
|
+
<a href="#" id="collapse-embed-responsive" class="embed-code-container collapse-embed-responsive">
|
809
|
+
Make it responsive
|
810
|
+
</a>
|
811
|
+
<div id="embed-container-responsive" class="embed-container-responsive input-group input-group-sm hidden padding-top20 padding-btm20">
|
812
|
+
<input type="text" id="embed-code-responsive" class="readonly form-control" readonly="readonly" value="">
|
813
|
+
<span id="copy-embed-code-responsive" data-clipboard-target="#embed-code-responsive" class="input-group-btn copy-to-clipboard">
|
814
|
+
<span class="btn btn-default btn-response fg-share-gtm pull-left"><i class="fa fa-clipboard" data-original-title="" title=""></i></span></span>
|
815
|
+
</div>
|
816
|
+
<a href="https://fredhelp.stlouisfed.org/fred/graphs/share-my-fred-graph/how-to-embedding-fred-graphs/" target="_blank" class="embed-code-container">
|
817
|
+
See FRED Help for usage instructions
|
818
|
+
</a>
|
819
|
+
<div class="page-permalink-container input-group input-group-sm" style="display:none">
|
820
|
+
<input type="text" id="link-code" class="readonly form-control fg-share-link-gtm fg-share-gtm" value="" readonly="readonly">
|
821
|
+
<span id="copy-link-code" data-clipboard-target="#link-code" class="input-group-btn copy-to-clipboard"><span class="btn btn-default fg-share-gtm"><i class="fa fa-clipboard" data-original-title="" title=""></i></span></span>
|
822
|
+
</div>
|
823
|
+
<div class="image-permalink-container input-group input-group-sm" style="display:none">
|
824
|
+
<input type="text" id="image-code" class="readonly form-control fg-share-image-gtm fg-share-gtm" value="" readonly="readonly">
|
825
|
+
<span id="copy-image-code" data-clipboard-target="#image-code" class="input-group-btn copy-to-clipboard"><span class="btn btn-default fg-share-gtm"><i class="fa fa-clipboard" data-original-title="" title=""></i></span></span>
|
826
|
+
</div>
|
827
|
+
</div>
|
828
|
+
<br />
|
829
|
+
</div>
|
830
|
+
<div class="modal-footer">
|
831
|
+
<button type="button" class="btn btn-default" data-dismiss="modal">Done</button>
|
832
|
+
</div>
|
833
|
+
</div>
|
834
|
+
</div>
|
835
|
+
</div>
|
836
|
+
<div class="modal fade" id="save-graph-modal">
|
837
|
+
<div class="modal-dialog modal-sm">
|
838
|
+
<div class="modal-content">
|
839
|
+
<div class="modal-header">
|
840
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
841
|
+
<h3>Save Graph To User Account</h3>
|
842
|
+
</div>
|
843
|
+
<div class="modal-body">
|
844
|
+
<button type="button" class="btn btn-default series-button update-graph" data-graph-id="">Save graph</button>
|
845
|
+
<button type="button" class="btn btn-default series-button save-graph">Save as new graph</button>
|
846
|
+
</div>
|
847
|
+
<div class="modal-footer">
|
848
|
+
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
|
849
|
+
</div>
|
850
|
+
</div>
|
851
|
+
</div>
|
852
|
+
</div>
|
853
|
+
|
854
|
+
|
855
|
+
<div id="share-modal" class="modal fade " role="dialog">
|
856
|
+
|
857
|
+
</div>
|
858
|
+
|
859
|
+
<div class="loading-icon alert alert-info hide alert-dismissible" style="width:191px;position:fixed;bottom:0;right:20px;z-index:5000">
|
860
|
+
<button type="button" class="close" data-dismiss="alert">×</button>
|
861
|
+
<i class="fa fa-spinner fa-spin"></i> Retrieving data.
|
862
|
+
</div>
|
863
|
+
|
864
|
+
<div class="update-alert alert alert-success alert-dismissible hide" style="width:191px;position:fixed;bottom:0;right:20px;z-index:5000">
|
865
|
+
<button type="button" class="close" data-dismiss="alert" style="z-index:5000">×</button>
|
866
|
+
<i class="fa fa-check"></i> Updating graph.
|
867
|
+
</div>
|
868
|
+
|
869
|
+
|
870
|
+
<button disabled class="drawer-dropdown-trigger filter-tags-btn btn affix btn-block btn-default dropdown-is-active"><i class="fa fa-filter" style="padding-right:5px;"></i>Filter <span class="badge badge-primary hidden">0</span></button>
|
871
|
+
</div>
|
872
|
+
|
873
|
+
|
874
|
+
<link href=/css/1576244597.footer.min.css rel="stylesheet" media="all"><script> </script>
|
875
|
+
<br class="clear">
|
876
|
+
</div>
|
877
|
+
|
878
|
+
<div id="footer" class="hidden-print row ">
|
879
|
+
<a name="foot-search-a" class="xs-anchor"></a>
|
880
|
+
<form action="/search" id="foot-search-form" class="visible-xs-block col-xs-12">
|
881
|
+
<div id="foot-search-container">
|
882
|
+
<input type="text" id="foot-search" name="st" class="js-placeholder" title="Search FRED"><button type='submit' class="pull-right" id="foot-search-button"> </button>
|
883
|
+
</div>
|
884
|
+
</form>
|
885
|
+
|
886
|
+
|
887
|
+
<div class="col-xs-12 col-sm-2">
|
888
|
+
<ul>
|
889
|
+
<li class="footer-section-header">SERVICES</li>
|
890
|
+
<li><a href="/">FRED®</a></li>
|
891
|
+
<li><a href="https://alfred.stlouisfed.org/">ALFRED®</a></li>
|
892
|
+
<li><a href="https://geofred.stlouisfed.org">GeoFRED®</a></li>
|
893
|
+
<li><a href="https://fraser.stlouisfed.org">FRASER®</a></li>
|
894
|
+
<li><a href="https://ideas.repec.org">IDEAS</a></li>
|
895
|
+
</ul>
|
896
|
+
</div>
|
897
|
+
|
898
|
+
<div class="col-xs-12 col-sm-2 col-md-3">
|
899
|
+
<ul>
|
900
|
+
<li class="footer-section-header">RESEARCH</li>
|
901
|
+
<li><a href="https://research.stlouisfed.org/regecon/">Eighth District Economy</a></li>
|
902
|
+
<li><a href="https://research.stlouisfed.org/wp/">Working Papers</a></li>
|
903
|
+
<li><a href="https://research.stlouisfed.org/conferences/">Events</a></li>
|
904
|
+
<li><a href="https://research.stlouisfed.org/publications/">Publications</a></li>
|
905
|
+
<li><a href="https://research.stlouisfed.org/resources.html">Other Resources</a></li>
|
906
|
+
</ul>
|
907
|
+
</div>
|
908
|
+
|
909
|
+
<div class="col-xs-12 col-sm-3">
|
910
|
+
<ul>
|
911
|
+
<li class="footer-section-header">TOOLS</li>
|
912
|
+
<li><a href="https://fred.stlouisfed.org/fred-mobile/">FRED Mobile Apps</a></li>
|
913
|
+
<li><a href="https://fred.stlouisfed.org/fred-addin/">FRED Add-In for Excel®</a></li>
|
914
|
+
<li><a href="https://research.stlouisfed.org/useraccount/fredcast/">
|
915
|
+
FREDcast®
|
916
|
+
</a><li>
|
917
|
+
<li><a href="https://fredhelp.stlouisfed.org/fred/graphs/share-my-fred-graph/embedded-fred-a-widget-just-for-you/">Embeddable FRED Widget</a></li>
|
918
|
+
<li><a href="https://research.stlouisfed.org/docs/api/">Developer/APIs</a></li>
|
919
|
+
</ul>
|
920
|
+
</div>
|
921
|
+
<div class="col-xs-12 col-sm-2 ">
|
922
|
+
<ul>
|
923
|
+
<li class="footer-section-header">ABOUT</li>
|
924
|
+
<li><a href="https://research.stlouisfed.org/jobopps/">Careers</a></li>
|
925
|
+
<li><a class="contact-hash" href="https://fred.stlouisfed.org/contactus/">Contact</a></li>
|
926
|
+
<li><a href="https://research.stlouisfed.org/rss/">RSS</a></li>
|
927
|
+
<li><a href="https://research.stlouisfed.org/legal.html">Legal</a></li>
|
928
|
+
<li><a href="https://research.stlouisfed.org/privacy.html">Privacy Notice & Policy</a></li>
|
929
|
+
</ul>
|
930
|
+
</div>
|
931
|
+
<div class="col-xs-12 col-sm-3 col-md-2">
|
932
|
+
<ul>
|
933
|
+
<li class="footer-section-header">OUR SITES</li>
|
934
|
+
<li><a href="http://www.stlouisfed.org/">St. Louis Fed</a></li>
|
935
|
+
<li><a href="http://federalreserveonline.org">Federal Reserve System</a></li>
|
936
|
+
<li><a href="https://research.stlouisfed.org">Research Division</a></li>
|
937
|
+
<li><a href="http://www.stlouisfed.org/education/">Education Resources</a></li>
|
938
|
+
</ul>
|
939
|
+
</div>
|
940
|
+
</div>
|
941
|
+
|
942
|
+
<div class="footer2 hidden-print row">
|
943
|
+
<div class="col-xs-12 col-sm-3">
|
944
|
+
<h3>Need Help?</h3>
|
945
|
+
<div>
|
946
|
+
<a href="https://fred.stlouisfed.org/contactus/" class="q-and-a-link-gtm">Questions or Comments</a>
|
947
|
+
</div>
|
948
|
+
|
949
|
+
<div style="padding: 10px 0 20px 0;">
|
950
|
+
<a href="https://fredhelp.stlouisfed.org/">FRED Help</a>
|
951
|
+
</div>
|
952
|
+
</div>
|
953
|
+
|
954
|
+
<div class="col-xs-12 col-sm-6">
|
955
|
+
<div class="col-xs-12">
|
956
|
+
<h3>Subscribe to the FRED newsletter</h3>
|
957
|
+
<form role="form" class="form-horizontal newsletter-form" method="post" style="padding:0;margin:0">
|
958
|
+
<div>
|
959
|
+
<div class="col-xs-12" style="padding-left: 0;">
|
960
|
+
<div class="input-group">
|
961
|
+
<input type="text" name="email" placeholder="Email" class="form-control email">
|
962
|
+
<span class="input-group-btn"><button type="submit" class="btn btn-default subscribe-newsletter-btn-gtm" style="color: #333;">Subscribe</button></span>
|
963
|
+
</div>
|
964
|
+
</div>
|
965
|
+
</div>
|
966
|
+
</form>
|
967
|
+
</div>
|
968
|
+
</div>
|
969
|
+
<hr class="visible-xs-block">
|
970
|
+
<div class="col-xs-12 col-sm-2 col-sm-offset-1">
|
971
|
+
<h3>Follow us</h3>
|
972
|
+
<div class="col-xs-12" style="margin-bottom: 10px; padding-left: 0;">
|
973
|
+
<a href="http://bit.ly/9ngC3L"><i class="fa fa-fw fa-2x fa-twitter"></i></a>
|
974
|
+
<a href="http://bit.ly/HeaderFB"><i class="fa fa-fw fa-2x fa-facebook"></i></a>
|
975
|
+
<a href="http://bit.ly/aY9TVF"><i class="fa fa-fw fa-2x fa-youtube"></i></a>
|
976
|
+
<a href="http://bit.ly/d056zL"><i class="fa fa-fw fa-2x fa-linkedin"></i></a>
|
977
|
+
</div>
|
978
|
+
</div>
|
979
|
+
</div>
|
980
|
+
|
981
|
+
<div class="hidden-print visible-xs-block">
|
982
|
+
<a style="margin: 5px; display: block; padding:5px 10px; text-align: center" href="#top">Back to Top</a>
|
983
|
+
</div>
|
984
|
+
|
985
|
+
<div id="footer-bottom">
|
986
|
+
<div id="address">
|
987
|
+
Federal Reserve Bank of St. Louis,
|
988
|
+
One Federal Reserve Bank Plaza,
|
989
|
+
St. Louis, MO 63102
|
990
|
+
</div>
|
991
|
+
</div>
|
992
|
+
|
993
|
+
</div>
|
994
|
+
<script>
|
995
|
+
// function to parse cookies, and return the value
|
996
|
+
function getCookie(name) {
|
997
|
+
var cookies = document.cookie.split(';');
|
998
|
+
for (var i in cookies) {
|
999
|
+
var cookie = cookies[i].trim().split('=');
|
1000
|
+
if (cookie[0] == name) {
|
1001
|
+
return cookie[1];
|
1002
|
+
}
|
1003
|
+
}
|
1004
|
+
return null;
|
1005
|
+
}
|
1006
|
+
// certain pages in FRED set a custom tag variable
|
1007
|
+
// this gets sent to Google Analytics so we can see what tags people are using
|
1008
|
+
if (window.tags) {
|
1009
|
+
dataLayer.push({'tags':tags});
|
1010
|
+
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
// if the user is logged in, send the value of the liruid cookie to Google Analytics
|
1014
|
+
var researchLiruid = getCookie('research-liruid');
|
1015
|
+
dataLayer.push({'userId':researchLiruid});
|
1016
|
+
|
1017
|
+
</script>
|
1018
|
+
<!--<script src=/assets/modernizr/dist/1544152624.modernizr.min.js></script>-->
|
1019
|
+
<script src=/assets/jquery/dist/1463764735.jquery.min.js type="text/javascript"></script>
|
1020
|
+
<script src=/assets/bootstrap/dist/js/1550073338.bootstrap.min.js></script>
|
1021
|
+
<script>
|
1022
|
+
// force expire the .fred.stlouisfed.org _ga cookie
|
1023
|
+
document.cookie = document.cookie + '_ga=;domain=.fred.stlouisfed.org;expires=Sat, 01-Jan-2000 00:00:00 GMT';
|
1024
|
+
</script>
|
1025
|
+
|
1026
|
+
<script defer src=/assets/1576244596.jquery.menu-aim.min.js></script>
|
1027
|
+
<script defer src="/js/lib/jquery/plugins/jquery.hotkeys.js"></script>
|
1028
|
+
<script async src=/js/1576244596.common.min.js></script>
|
1029
|
+
<script src="/js/jquery/plugins/jquery.cookie.js"></script>
|
1030
|
+
<script defer src=/js/1568140746.vendors.dist.js></script>
|
1031
|
+
<script defer src=https://research.stlouisfed.org/assets/js/1568140697.user-init.js></script>
|
1032
|
+
<script defer src=/assets/select2/dist/js/1508969298.select2.min.js></script>
|
1033
|
+
|
1034
|
+
<link href=/css/1576244597.contact.min.css rel="stylesheet" media="(min-width: 767px)"><script> </script>
|
1035
|
+
<div id="site-feedback-button">
|
1036
|
+
<picture>
|
1037
|
+
<source srcset="/images/button.webp" type="image/webp" media="(min-width: 767px)">
|
1038
|
+
<source srcset="/images/button.png" type="image/jpeg" media="(min-width: 767px)">
|
1039
|
+
<source srcset="/graph/images/clear.png" media="(max-width: 600px)">
|
1040
|
+
<img src="/images/button.png" height="135" width="36" class="site-feedback-btn site-feedback-btn-gtm" alt="Click to send us feedback" role="button" data-toggle="modal" data-target="#feedback-modal">
|
1041
|
+
</picture>
|
1042
|
+
</div>
|
1043
|
+
<div id="feedback-modal" class="modal fade">
|
1044
|
+
<div class="modal-dialog">
|
1045
|
+
<div class="modal-content">
|
1046
|
+
<div class="modal-header">
|
1047
|
+
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
1048
|
+
<p>Send Us Feedback</p>
|
1049
|
+
</div>
|
1050
|
+
<div class="modal-body">
|
1051
|
+
|
1052
|
+
<div id="contact-container" class="col-xs-12 user-form">
|
1053
|
+
<div id="feedback-form-status"></div>
|
1054
|
+
<form id="feedback-form">
|
1055
|
+
<p style="font-size:1.2em;font-weight:bold"><a href="https://fredhelp.stlouisfed.org/#fred-data-how-can-i-find-data-on-fred">View FRED Help for faster help.</a></p>
|
1056
|
+
<div class="section mb-10">
|
1057
|
+
<label for="feedback-form-name" class="field prepend-icon">
|
1058
|
+
<input type="text" name="contact-name" id="feedback-form-name" class="gui-input" placeholder="Name">
|
1059
|
+
<label for="contact-name" class="field-icon">
|
1060
|
+
<i class="fa fa-user"></i>
|
1061
|
+
</label>
|
1062
|
+
</label>
|
1063
|
+
</div>
|
1064
|
+
|
1065
|
+
<div class="section mb-10">
|
1066
|
+
<label for="feedback-form-email" class="field prepend-icon">
|
1067
|
+
<input type="text" name="email" id="feedback-form-email" class="gui-input" placeholder="Email Address">
|
1068
|
+
<label for="email" class="field-icon">
|
1069
|
+
<i class="fa fa-envelope-o"></i>
|
1070
|
+
</label>
|
1071
|
+
</label>
|
1072
|
+
</div>
|
1073
|
+
|
1074
|
+
<div class="section mb-10">
|
1075
|
+
<label for="feedback-form-profession" class="field prepend-icon">
|
1076
|
+
<input type="text" name="profession" id="feedback-form-profession" class="gui-input" placeholder="Profession">
|
1077
|
+
<label for="profession" class="field-icon">
|
1078
|
+
<i class="fa fa-suitcase"></i>
|
1079
|
+
</label>
|
1080
|
+
</label>
|
1081
|
+
</div>
|
1082
|
+
<div class="section mb-10">
|
1083
|
+
<label for="feedback-form-organization" class="field prepend-icon">
|
1084
|
+
<input type="text" name="organization" id="feedback-form-organization" class="gui-input" placeholder="Organization">
|
1085
|
+
<label for="organization" class="field-icon">
|
1086
|
+
<i class="fa fa-building-o"></i>
|
1087
|
+
</label>
|
1088
|
+
</label>
|
1089
|
+
</div>
|
1090
|
+
<div class="section mb-10">
|
1091
|
+
<label for="feedback-form-product" class="field select">
|
1092
|
+
<select id="feedback-form-product" name="product" class="empty">
|
1093
|
+
<option value="" selected="selected"><i class="fa fa-th"></i>Choose a product... *</option>
|
1094
|
+
<option value="Data and graphs in FRED">Data and graphs in FRED</option>
|
1095
|
+
<option value="Dashboard, saved graphs, data lists">Dashboard, saved graphs, data lists</option>
|
1096
|
+
<option value="Maps in GeoFRED">Maps in GeoFRED</option>
|
1097
|
+
<option value="Retrieving FRED data via Excel Add-In">Retrieving FRED data via Excel Add-In</option>
|
1098
|
+
<option value="Data and graphs in ALFRED (archival FRED)">Data and graphs in ALFRED (archival FRED)</option>
|
1099
|
+
<option value="FRED API">FRED API</option>
|
1100
|
+
<option value="FRED iPhone or iPad app">FRED iPhone or iPad app</option>
|
1101
|
+
<option value="FRED Android app">FRED Android app</option>
|
1102
|
+
<option value="Other">Other</option>
|
1103
|
+
|
1104
|
+
</select>
|
1105
|
+
<i class="arrow double"></i>
|
1106
|
+
</label>
|
1107
|
+
</div>
|
1108
|
+
|
1109
|
+
<div class="section mb-10">
|
1110
|
+
<label for="feedback-form-topic" class="field select">
|
1111
|
+
<select id="feedback-form-topic" name="topic" class="empty">
|
1112
|
+
<option value="" selected="selected"><i class="fa fa-th"></i>What topic can we assist you with? *</option>
|
1113
|
+
<option value="Technical Question">Technical Question</option>
|
1114
|
+
<option value="Help with Data">Help with Data</option>
|
1115
|
+
<option value="Permissions to use the Data">Permissions to use the Data</option>
|
1116
|
+
<option value="General Inquiry">General Inquiry</option>
|
1117
|
+
</select>
|
1118
|
+
<i class="arrow double"></i>
|
1119
|
+
</label>
|
1120
|
+
</div>
|
1121
|
+
<div class="section mb-10">
|
1122
|
+
<label for="feedback-form-comments" class="field prepend-icon">
|
1123
|
+
<textarea class="gui-textarea" id="feedback-form-comments" name="comments" placeholder="Your comments *"></textarea>
|
1124
|
+
<label for="store-desc" class="field-icon">
|
1125
|
+
<i class="fa fa-edit"></i>
|
1126
|
+
</label>
|
1127
|
+
</label>
|
1128
|
+
</div>
|
1129
|
+
<div class="hidden aria-hidden">
|
1130
|
+
<input type="hidden" id="hash-share" class="readonly hidden" value="" readonly="readonly">
|
1131
|
+
|
1132
|
+
</div>
|
1133
|
+
|
1134
|
+
<button type="submit" class="feedback-form-btn btn btn-primary">Send feedback</button>
|
1135
|
+
</form>
|
1136
|
+
<div class="col-xs-12 mt-10 sm-txt"><p>We will reply as soon as possible. If you have not received a response within two business days, please send your inquiry again or call (314) 444-3733.</p></div>
|
1137
|
+
</div>
|
1138
|
+
</div><!-- /modal-body -->
|
1139
|
+
<div class="modal-footer text-right">
|
1140
|
+
<button class="feedback-form-btn btn btn-primary" type="button">Send Feeback</button>
|
1141
|
+
</div>
|
1142
|
+
|
1143
|
+
</div><!-- /modal-content -->
|
1144
|
+
</div><!-- /modal-dialog -->
|
1145
|
+
</div><!-- /feedback-modal -->
|
1146
|
+
</div>
|
1147
|
+
▽<script>
|
1148
|
+
var websiteCfg = {"research_host" : "research.stlouisfed.org", "fred_host" : "fred.stlouisfed.org", "alfred_host" : "alfred.stlouisfed.org"};
|
1149
|
+
</script>
|
1150
|
+
|
1151
|
+
<a href="#0" class="back-top">Top</a>
|
1152
|
+
<script src=/assets/bootstrap-datepicker/dist/1544152624.bootstrap-datepicker.min.js></script>
|
1153
|
+
<script defer src=/assets/clipboard.js/dist/1544152624.clipboard.min.js></script>
|
1154
|
+
<script src=/assets/fileDownload/1576244596.fileDownload.min.js></script>
|
1155
|
+
<script src=/graph/js/1576244596.bottomextra.min.js></script>
|
1156
|
+
|
1157
|
+
<head><link href="/static/css/main.css?jVIvySNc1lSr" rel="stylesheet"></head><script src="/static/js/main.js?jVIvySNc1lSr"></script>
|
1158
|
+
|
1159
|
+
</body>
|
1160
|
+
</html>
|