| Total Complexity | 0 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | BASE_URL = 'http://www.alphavantage.co/query' |
||
|
|
|||
| 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 |
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.