alphavantage.reference   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 14
dl 0
loc 18
rs 10
c 0
b 0
f 0
wmc 0
1
BASE_URL = 'http://www.alphavantage.co/query'
0 ignored issues
show
Coding Style introduced by
This module should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
2
3
# time period flags
4
INTRADAY = 'I'
5
DAILY = 'D'
6
WEEKLY = 'W'
7
MONTHLY = 'M'
8
9
# field names
10
OPEN = 'open'
11
HIGH = 'high'
12
LOW = 'low'
13
CLOSE = 'close'
14
VOLUME = 'volume'
15
ADJUSTED_CLOSE = 'adjusted_close'
16
DIVIDEND = 'dividend_amount'
17
SPLIT_COEFFICIENT = 'split_coefficient'
18