create account

Creating Custom Reports Using FinViz API by geekgirl

View this thread on: hive.blogpeakd.comecency.com
· @geekgirl ·
$167.69
Creating Custom Reports Using FinViz API
![finvizapi.png](https://images.hive.blog/DQmNjMfEMq9AtRbjniee8VyWYABMkz2ZCssRLuKjcE4FRUN/finvizapi.png)

[FinViz](https://finviz.com) is a great website for stock market traders and investors. Even if you are not interested in programming and automating trading related tasks, but you are interested in stock markets you will find FinViz to be useful website. It provides information and tools that helps in evaluating trade ideas and analyzing stocks. 

A list of valid stock tickers is needed to programmatically test various trading ideas and strategies. One of the ways I have used FinViz was to get a list of stock tickers using FinViz screener and a python code. I used to use Selenium to the list of tickers to use in other code scripts.

One of the problems of using the same list of tickers over an over is at some point the list will end up containing invalid tickers because some stocks get delisted from exchanges. For this reason, the ticker list needs to be updated from time to time. Since this tickers list is used in various different projects/codes, some of them would eventually end up not working properly due to an invalid ticker in the list.

One solution would be to create the list every time other codes/tasks are performed. But that would be inefficient. That's why I wanted to find a better way to keep tickers listed updated.

About a year ago, I have come across with FinViz API created by Mario Stoev. It is an unofficial Python API for FinViz. Feel free to visit the GitHub page for the project at https://github.com/mariostoev/finviz for details.

FinViz API has interesting functions that can be helpful for various projects and it is super easy to use.

To get a list of stocks and information about them:

```
from finviz.screener import Screener 

stock_list = Screener()
print(type(stock_list))
stock_list.to_csv('finviz_stocks_list.csv')
```

The code above gets 8000+ stock tickers and other information about tickers and saves them as a csv file. The information saved is the same that is shown on FinViz Screener as shown in the image below.

![tickers.png](https://images.hive.blog/DQmepaaPpBpSRfoZucY7z4N7SbgzexQgbxSns7xjXbe8nPc/tickers.png)

The `Screener()` has various parameters that can be used to sort, filter, and order the results. One of the interesting one is the `filter` parameter. The following code from their example, shows companies in NASDAQ which are in the S&P500, gets the performance table, and sorts it by price ascending.

```
filters = ['exch_nasd', 'idx_sp500'] 
stock_list = Screener(filters=filters, table='Performance', order='price')  
```

I didn't use any filters for my initial list, because I wanted to get all available tickers. Not passing any arguments accomplishes that. Saved list has tables like sector, industry, country, market cap, p/e, price, price change, volume that can be used later to filter based on what's needed.

Let's see what other interesting information we can get using FinViz API. 

```
import finviz

stock = finviz.get_stock('TSLA')
print(stock)
```

This will return a long dictionary format data that contains a lot more information about a specific stock ticker, in this case TSLA. The image below is an accurate representation of what is returned. In fact, the code is trying to get all of this data as shown on FinViz website and send back as result.

![stock.png](https://images.hive.blog/DQmUkG9aFdZGkUk6H5gqe9zUq4N6qAw3NmxhbthJsQSz3Pu/stock.png)

As you can see there is a lot of information listed in the image above. Getting this data programmatically may help us to use only the ones we need and perhaps create our own customized reports. Combined with the data returned with next few functions, we can have our own personal reports on specific stocks.

```
import finviz

insider = finviz.get_insider('TSLA')
print(insider)

news = finviz.get_news('TSLA')
print(news)

analyst_price_targets = finviz.get_analyst_price_targets('TSLA')
print(analyst_price_targets)
``` 

These functions are self-explanatory: `get_insider()` gets data about insider trades, `get_news()` gets lists of news articles titles and links for a specific stock ticker, and `get_analyst_price_targets` gets any information that analysts posted regarding their price targets for the stock ticker.

If we were to use any of these functions or data in our own customized reports or projects, it would also be great to get the charts for the stock tickers we are compiling information about. FinViz API makes that possible as well. Using the following few lines of code, we can download the charts for a list of stocks.

```
from finviz.screener import Screener 

stock_list = Screener(tickers=['TSLA', 'SQ', 'COIN', 'TWTR'])

stock_list.get_charts(period='d', chart_type='c', size='l', ta='1')
```

The code above creates a folder named **charts** in users folder and stores charts as .png files. 

First we need to create a stock list using Screener() and passing `tickers` argument with a list of stock tickers. Then by calling `.get_charts()` methods we saved the charts.

`.get_charts()` method has four main parameters: period, chart_type, size, and ta. Period is for timeframe and values can be 'd' for daily chart, 'w' for weekly chart, and 'm' for monthly charts. Chart_type can be 'c' for candle type chats or 'l' for lines. Size can be 'm' for small and 'l' for large. 

**ta** stands for technical analysis. The value for **ta** can be '1' if we want technical analysis on charts like sma50, sma200, trendlines, etc. If we don't need any technical analysis on the saved charts, we can simply give **ta** value of '0'. 

There is more that can be done with FinViz API. It all depends on what you are trying to accomplish. What I would like to do is create daily or weekly custom reports for certain stocks that fit the criteria described in another code. This project can be broken down into following steps:

1. Get the list of all available stock ticker symbols.
2. Use the list to run in an indicator script to find stocks that match certain criteria that is defined by the indicator. Usually result will be list of 5-6 stock tickers.
3. Collect data like chart with ta, news, detailed stock info, insider trading, analyst price targets using FinViz.
4. Using all the data collected format the results into report format with markdown and/or html.
5. Either store the report in a local machine or publish online for on the go access.

First two steps are already complete with my ticker alert script. Third step is almost complete as well, thanks to FinViz. For example to get the details about the stock, I can get the results from FinViz and also would like to format them as a table, so they can be included in the report. This can be done with the following code:

```
def get_stock_data_table(ticker):
    stock = finviz.get_stock(ticker)
    stock_table = '<table>'

    for key,value in stock.items():
        row = f"<tr><td>{key}</td><td>{value}</td></tr>"
        stock_table += row 
    
    stock_table += '</table>'
    return stock_table
```

The result would look like this for $COIN:

<table><tr><td>Company</td><td>Coinbase Global, Inc.</td></tr><tr><td>Sector</td><td>Technology</td></tr><tr><td>Industry</td><td>Software - Application</td></tr><tr><td>Country</td><td>USA</td></tr><tr><td>Index</td><td>-</td></tr><tr><td>P/E</td><td>23.50</td></tr><tr><td>EPS (ttm)</td><td>9.79</td></tr><tr><td>Insider Own</td><td>0.30%</td></tr><tr><td>Shs Outstand</td><td>209.60M</td></tr><tr><td>Perf Week</td><td>-0.99%</td></tr><tr><td>Market Cap</td><td>49.12B</td></tr><tr><td>Forward P/E</td><td>33.20</td></tr><tr><td>EPS next Y</td><td>-46.97%</td></tr><tr><td>Insider Trans</td><td>-76.51%</td></tr><tr><td>Shs Float</td><td>152.43M</td></tr><tr><td>Perf Month</td><td>-10.94%</td></tr><tr><td>Income</td><td>2.28B</td></tr><tr><td>PEG</td><td>-</td></tr><tr><td>EPS next Q</td><td>1.78</td></tr><tr><td>Inst Own</td><td>35.40%</td></tr><tr><td>Short Float</td><td>2.30%</td></tr><tr><td>Perf Quarter</td><td>-18.03%</td></tr><tr><td>Sales</td><td>5.93B</td></tr><tr><td>P/S</td><td>8.29</td></tr><tr><td>EPS this Y</td><td>519.50%</td></tr><tr><td>Inst Trans</td><td>0.50%</td></tr><tr><td>Short Ratio</td><td>0.65</td></tr><tr><td>Perf Half Y</td><td>4.27%</td></tr><tr><td>Book/sh</td><td>25.57</td></tr><tr><td>P/B</td><td>9.00</td></tr><tr><td>ROA</td><td>18.50%</td></tr><tr><td>Target Price</td><td>385.50</td></tr><tr><td>Perf Year</td><td>-</td></tr><tr><td>Cash/sh</td><td>29.75</td></tr><tr><td>P/C</td><td>7.73</td></tr><tr><td>EPS next 5Y</td><td>-</td></tr><tr><td>ROE</td><td>70.30%</td></tr><tr><td>52W Range</td><td>208.00 - 429.54</td></tr><tr><td>Perf YTD</td><td>-8.85%</td></tr><tr><td>Dividend</td><td>-</td></tr><tr><td>P/FCF</td><td>4.41</td></tr><tr><td>EPS past 5Y</td><td>-</td></tr><tr><td>ROI</td><td>33.40%</td></tr><tr><td>52W High</td><td>-46.45%</td></tr><tr><td>Beta</td><td>-</td></tr><tr><td>Dividend %</td><td>-</td></tr><tr><td>Quick Ratio</td><td>1.70</td></tr><tr><td>Sales past 5Y</td><td>-</td></tr><tr><td>Gross Margin</td><td>86.20%</td></tr><tr><td>52W Low</td><td>10.59%</td></tr><tr><td>ATR</td><td>13.90</td></tr><tr><td>Employees</td><td>1249</td></tr><tr><td>Current Ratio</td><td>1.70</td></tr><tr><td>Sales Q/Q</td><td>315.90%</td></tr><tr><td>Oper. Margin</td><td>53.00%</td></tr><tr><td>RSI (14)</td><td>38.05</td></tr><tr><td>Volatility</td><td>5.68% 5.03%</td></tr><tr><td>Optionable</td><td>Yes</td></tr><tr><td>Debt/Eq</td><td>0.63</td></tr><tr><td>EPS Q/Q</td><td>293.50%</td></tr><tr><td>Profit Margin</td><td>39.30%</td></tr><tr><td>Rel Volume</td><td>0.80</td></tr><tr><td>Prev Close</td><td>228.23</td></tr><tr><td>Shortable</td><td>Yes</td></tr><tr><td>LT Debt/Eq</td><td>0.63</td></tr><tr><td>Earnings</td><td>Nov 09 AMC</td></tr><tr><td>Payout</td><td>0.00%</td></tr><tr><td>Avg Volume</td><td>5.40M</td></tr><tr><td>Price</td><td>230.03</td></tr><tr><td>Recom</td><td>2.10</td></tr><tr><td>SMA20</td><td>-6.67%</td></tr><tr><td>SMA50</td><td>-19.09%</td></tr><tr><td>SMA200</td><td>-13.01%</td></tr><tr><td>Volume</td><td>4,309,452</td></tr><tr><td>Change</td><td>0.79%</td></tr></table>

Not all of this information is needed. Most of this data will be removed and only the most useful ones will be included in the report. It also depends on personal preferences when it comes to determining which data is more important. Other data will be formatted in a similar way.

Downloading charts for stock tickers is one of best features of FinViz. Charts are stored in a `charts` folder and files are named based on the stock ticker symbol and date in represented in seconds. Next step is to put all the scripts together and create the final report. 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/creating-custom-reports-using-finviz-api)
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 530 others
πŸ‘Ž  
properties (23)
authorgeekgirl
permlinkcreating-custom-reports-using-finviz-api
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["finviz","coding","stock","market","dev","vyb","proofofbrain","neoxian","ctp","stem","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/creating-custom-reports-using-finviz-api","links":["https://finviz.com","https://github.com/mariostoev/finviz"],"image":["https://images.hive.blog/DQmNjMfEMq9AtRbjniee8VyWYABMkz2ZCssRLuKjcE4FRUN/finvizapi.png","https://images.hive.blog/DQmepaaPpBpSRfoZucY7z4N7SbgzexQgbxSns7xjXbe8nPc/tickers.png","https://images.hive.blog/DQmUkG9aFdZGkUk6H5gqe9zUq4N6qAw3NmxhbthJsQSz3Pu/stock.png"]}
created2022-01-18 03:26:39
last_update2022-01-18 03:26:39
depth0
children14
last_payout2022-01-25 03:26:39
cashout_time1969-12-31 23:59:59
total_payout_value83.973 HBD
curator_payout_value83.716 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,844
author_reputation1,588,017,773,177,039
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,592,035
net_rshares156,581,411,436,539
author_curate_reward""
vote details (595)
@baned ·
$0.11
I’m curious to how you got all technical and it surprises me a lot since all this technical post is coming from a lady.
Hehe you are one in a million or maybe billion.

Only a financial technical person would understand most of your post haha πŸ˜‚ 
πŸ‘  
properties (23)
authorbaned
permlinkre-geekgirl-r5w34q
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.12.1"}
created2022-01-18 04:58:03
last_update2022-01-18 04:58:03
depth1
children0
last_payout2022-01-25 04:58:03
cashout_time1969-12-31 23:59:59
total_payout_value0.055 HBD
curator_payout_value0.056 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length245
author_reputation632,960,480,551
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,593,818
net_rshares107,155,700,302
author_curate_reward""
vote details (1)
@chinito ·
$0.11
finviz looks like a great tool. How long have you been trading? Do you daytrade or longer term? I trade only SPX 0dte, but have just started trading MES also.
πŸ‘  
properties (23)
authorchinito
permlinkre-geekgirl-r5xzfh
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.12.1"}
created2022-01-19 05:33:18
last_update2022-01-19 05:33:18
depth1
children2
last_payout2022-01-26 05:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.057 HBD
curator_payout_value0.057 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation189,058,453,077,167
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,631,963
net_rshares110,008,401,839
author_curate_reward""
vote details (1)
@geekgirl ·
I swing trade sometimes. Became a hodler as of late. Used to trade stocks a little bit.
πŸ‘  
properties (23)
authorgeekgirl
permlinkr5y2ax
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-01-19 06:35:21
last_update2022-01-19 06:35:21
depth2
children1
last_payout2022-01-26 06:35:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation1,588,017,773,177,039
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,633,729
net_rshares890,158,721
author_curate_reward""
vote details (1)
@chinito ·
u know, for a long time i thought 'hodl' was just a typo for HOLD. :P
properties (22)
authorchinito
permlinkre-geekgirl-r5y59s
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.12.1"}
created2022-01-19 07:39:30
last_update2022-01-19 07:39:30
depth3
children0
last_payout2022-01-26 07:39:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation189,058,453,077,167
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,635,168
net_rshares0
@emeka4 ·
$0.19
This is the first time I will be hearing of finviz and I believe it will be really helpful when using it.
πŸ‘  ,
properties (23)
authoremeka4
permlinkr5w0by
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-01-18 03:57:39
last_update2022-01-18 03:57:39
depth1
children0
last_payout2022-01-25 03:57:39
cashout_time1969-12-31 23:59:59
total_payout_value0.095 HBD
curator_payout_value0.095 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation234,166,618,016,346
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,592,581
net_rshares179,724,266,435
author_curate_reward""
vote details (2)
@emyekanem ·
$0.18
Finviz will be of great use and help to people. But can it only be used by traders?
πŸ‘  
properties (23)
authoremyekanem
permlinkr5w2qd
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-01-18 04:49:36
last_update2022-01-18 04:49:36
depth1
children2
last_payout2022-01-25 04:49:36
cashout_time1969-12-31 23:59:59
total_payout_value0.089 HBD
curator_payout_value0.093 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation29,236,206,228,365
root_title"Creating Custom Reports Using FinViz API"
beneficiaries
0.
accountdave-estates
weight300
1.
accounthiveonboard
weight100
2.
accountroomservice
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,593,462
net_rshares179,234,568,824
author_curate_reward""
vote details (1)
@geekgirl ·
Anybody can use it.
πŸ‘  
properties (23)
authorgeekgirl
permlinkr5wpe6
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-01-18 12:58:54
last_update2022-01-18 12:58:54
depth2
children1
last_payout2022-01-25 12:58:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation1,588,017,773,177,039
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,604,606
net_rshares322,325,104
author_curate_reward""
vote details (1)
@emyekanem ·
Ok... Very well then.
properties (22)
authoremyekanem
permlinkr5xaca
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-01-18 20:31:30
last_update2022-01-18 20:31:30
depth3
children0
last_payout2022-01-25 20:31:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation29,236,206,228,365
root_title"Creating Custom Reports Using FinViz API"
beneficiaries
0.
accountdave-estates
weight300
1.
accounthiveonboard
weight100
2.
accountroomservice
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,616,950
net_rshares0
@faquan ·
$0.11
>FinViz is a great website for stock market traders and investors. Even if you are not interested in programming and automating trading related tasks, but you are interested in stock markets you will find FinViz to be useful website. It provides information and tools that helps in evaluating trade ideas and analyzing stocks.

Am not really into stock trade because I need more information about it. With your explanation it means FinViz is one of the best website to learn about stock trading and also best to generate stock ticker. Thanks for sharing. I'll be following the above link to study more about the FinViz.
πŸ‘  
properties (23)
authorfaquan
permlinkr5w8bw
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-01-18 06:50:30
last_update2022-01-18 06:50:30
depth1
children0
last_payout2022-01-25 06:50:30
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.056 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length619
author_reputation52,669,593,881,748
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,597,237
net_rshares107,281,026,113
author_curate_reward""
vote details (1)
@india-leo ·
Indiaunited Curation 1642502600547
This post has been manually curated by @bhattg from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). 

Do you know that you can earn a passive income by delegating your Leo power to @india-leo account? We share 100 % of the curation rewards with the delegators. 

<sub>**Please contribute to the community by upvoting this comment and posts made by @indiaunited.**</sub>
properties (22)
authorindia-leo
permlinkindiaunited-1642502600547
categoryhive-167922
json_metadata{"app":"hiveblog/0.1","tags":["finviz","coding","stock","market","dev","vyb","proofofbrain","neoxian","ctp","stem","leofinance"]}
created2022-01-18 10:43:24
last_update2022-01-18 10:43:24
depth1
children0
last_payout2022-01-25 10:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length405
author_reputation7,493,369,334,047
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,601,827
net_rshares0
@talon12 ·
$0.11
I don't do stocks but this tool sounds very useful.  
πŸ‘  
properties (23)
authortalon12
permlinkre-geekgirl-r5wjak
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.12.1"}
created2022-01-18 10:47:09
last_update2022-01-18 10:47:09
depth1
children0
last_payout2022-01-25 10:47:09
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.056 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation4,556,977,483,843
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,601,885
net_rshares107,033,996,301
author_curate_reward""
vote details (1)
@urun ·
$0.19
already forget about finviz, thanks to remembering me about that :P I use most time tradingview and some other screener :P
πŸ‘  
properties (23)
authorurun
permlinkre-geekgirl-r5wfan
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.12.1"}
created2022-01-18 09:20:45
last_update2022-01-18 09:20:45
depth1
children0
last_payout2022-01-25 09:20:45
cashout_time1969-12-31 23:59:59
total_payout_value0.093 HBD
curator_payout_value0.093 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation94,125,949,460,949
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,600,270
net_rshares178,915,047,683
author_curate_reward""
vote details (1)
@videoaddiction · (edited)
$0.19
RE: Creating Custom Reports Using FinViz API
Stock screeners is an useful tool with which you can list the stocks you have been searching for. FinViz provides a quick analyze for users.

I think registering with Finviz is free.
πŸ‘  ,
properties (23)
authorvideoaddiction
permlinkre-geekgirl-2022118t1127689z
categoryhive-167922
json_metadata{"tags":["hive-167922","finviz","coding","stock","market","dev","vyb","proofofbrain","neoxian","ctp","stem","leofinance"],"app":"ecency/3.0.23-mobile","format":"markdown+html"}
created2022-01-18 08:02:12
last_update2022-01-18 10:57:57
depth1
children1
last_payout2022-01-25 08:02:12
cashout_time1969-12-31 23:59:59
total_payout_value0.093 HBD
curator_payout_value0.093 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation165,970,555,733,935
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,598,519
net_rshares179,967,512,312
author_curate_reward""
vote details (2)
@geekgirl ·
You don’t need to register to use its basic features.
properties (22)
authorgeekgirl
permlinkr5wpbe
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-01-18 12:57:15
last_update2022-01-18 12:57:15
depth2
children0
last_payout2022-01-25 12:57:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation1,588,017,773,177,039
root_title"Creating Custom Reports Using FinViz API"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,604,564
net_rshares0