Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mariostoev committed Jan 20, 2019
2 parents bab7e74 + 7af50ae commit adab450
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![HitCount](http://hits.dwyl.io/mariostoev/finviz.svg)](http://hits.dwyl.io/mariostoev/finviz)


`finviz` is compatible with Python 3.5+ only
`finviz` is compatible with Python 3.6+ only

**What is Finviz?**

Expand Down Expand Up @@ -36,14 +36,18 @@ Any quotes data displayed on finviz.com is delayed by 15 minutes for NASDAQ, and
for stock in stock_list[9:19]: # Loop through 10th - 20th stocks
print(stock['Ticker'], stock['Price']) # Print symbol and price

# Add more filters
stock_list.add(filters=['fa_div_high']) # Show stocks with high dividend yield
# or just stock_list(filters=['fa_div_high'])

# Print the table into the console
print(stock_list)

![alt text](https://i.imgur.com/cb7UdxB.png)

### Download results as charts

stocks.get_charts(period='m', chart_type='c', size='l', ta=False) # Monthly, Candles, Large, No Technical Analysis
stock_list.get_charts(period='m', chart_type='c', size='l', ta=False) # Monthly, Candles, Large, No Technical Analysis

# period='d' > daily
# period='w' > weekly
Expand All @@ -62,3 +66,6 @@ Any quotes data displayed on finviz.com is delayed by 15 minutes for NASDAQ, and

You can read the rest of the documentation inside the docstrings.

### Contributing

You can contribute to the project by reporting bugs, suggesting enhancements, or directly by extending and writing features (see the ongoing [projects](https://github.com/mariostoev/finviz/projects/1)).
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)
)

0 comments on commit adab450

Please sign in to comment.