Statistics For The $ALIVE Token For Week 42

Hello dear Hivers,

here are the:

$ALIVE Statistics For The Last 7 Days, 2023/10/13 to 2023/10/19:

Who has bought how many $ALIVE at which time:

01_BoughtALiveByTime.png

Top $ALIVE Buyers And $HIVE Sellers

The inside of the circle shows the buyers of $ALIVE, ordered by $HIVE they have spent. The outside shows the recipients of that $HIVE (sellers of $ALIVE):
02_TopTenAliveBuyers.png

Commulated Amount Of Bought $ALIVE Per Person

Top 10 $ALIVE buyers, how much they got and how much $HIVE they spend for this. Sorted by $HIVE, that was spent:
03_CommulatedAmountOfBoughtAlive.png

Top 20 $ALIVE Buyers

Sorted by the $HIVE, they have spent:

Buyer(Descending)Sold $HIVE% Sold $HIVEBought $ALIVEAvg. PriceNumber of Trades
@pwbanker50.9311829.81 %1687.334210.0305352
@onlyhive30.9835818.14 %1067.184200.0289738
@sidekicker16.429389.62 %549.990200.0299518
@mcbot16.278799.53 %541.426600.0296535
@ironshield15.451239.04 %483.841110.0319615
@heartbeatonhive9.974455.84 %321.784300.031006
@aliveandthriving9.280805.43 %299.736810.030447
@master-lamps6.771953.96 %237.300800.0294218
@sylmarill5.897693.45 %182.978300.031589
@androshchuk1.644450.96 %50.000000.032891
@edgerik1.586450.93 %50.000000.031595
@cursephantom1.232470.72 %39.004000.031601
@ana-maria1.100440.64 %38.881100.028301
@topworlds1.023400.60 %34.000000.030101
@hivecurious0.890450.52 %28.413700.031326
@yintercept0.544340.32 %18.367900.0301810
@atomcollector0.369270.22 %12.240000.030154
@bajadera0.225660.13 %8.000000.028211
@dswap0.090550.05 %3.034600.030464
@pepentropy0.063030.04 %2.000000.031433
others0.060110.04 %1.900800.063212
Sum:170.82967100 %5657.418630.03204237

Commulated Amount Of Sold $ALIVE Per Person

Top 10 $ALIVE Sellers, how much they sold and how much $HIVE they got for this, sorted by $HIVE:
04_CommulatedAmountOfSoldAlive.png

Top 20 $ALIVE Sellers

Sorted by the $HIVE, they have got:

Seller(Descending)Earned $HIVE% Earned $HIVESold $ALIVEAvg. PriceNumber of Trades
@onlyhive37.4897921.95 %1224.211920.0308817
@pwbanker26.1909215.33 %859.432500.030419
@sidekicker16.880889.88 %549.329310.0306413
@jlufer13.310907.79 %455.694300.0293019
@master-lamps10.892976.38 %343.637000.0316618
@dimascastillo909.397335.50 %312.900100.030032
@mcbot6.434083.77 %209.630700.0307816
@dswap5.432203.18 %192.154000.028786
@hive.pizza4.685912.74 %166.113600.028214
@arcange4.145562.43 %129.584900.031993
@arveno3.045981.78 %101.439100.030022
@misshugo2.699591.58 %95.693200.028211
@mypathtofire2.155631.26 %73.680700.0294811
@gank2.009501.18 %68.601000.029234
@gestion.alive1.858161.09 %64.749800.028885
@awesomegames0071.841481.08 %62.895700.029281
@florakese1.721931.01 %55.727700.030253
@arhus-8471.713831.00 %56.000000.0306010
@eolianpariah21.630410.95 %57.061300.029403
@kojiri1.311680.77 %41.735300.031431
others15.980939.35 %537.146500.0304689
Sum:170.82966100 %5657.418630.03032237

Price Of The $ALIVE

05_PriceOfAlive.png

$ALIVE Summarize Metrics

grafik.png

RequestReceived HiveReceived HIVE %Sold $ALIVEAvg. Price
sell106.4084862.29%3607.071110.02944
buy64.4211837.71%2050.347510.03118
sum:170.82966100%5657.418620.03031

Comparison With Other Tokens

$HIVE/Token

This figure shows the value of $HIVE compared to some tokens. Be aware of the nonlinear (root square) y-axes.

01_HivePerToken.png

US-Dollar/Token

Value of $USD compared to some token. Be aware of the nonlinear (root square) y-axes.

02_USDPerToken.png

coinMarketCapChart.png
Origin

Table Of Token Prices in $HIVE and $USD

Average value of the prices of the token. Hive and US-Dollar compared to the token:

03_TableOfTokenPrices.png


grafik.png

grafik.png

Links:
@achimmertens/posts?filter=stats
@anobel
https://github.com/achimmertens


Some More Words

This week I have worked on the coinmarketcap screenshot. Until then I made a screenshot from https://coinmarketcap.com/currencies/hive-blockchain/ manually every week. Now I have found a method to do it automatecally. I created the folllowing JavaScript:

const { Builder, By, Key, until } = require('selenium-webdriver');
const fs = require('fs');

(async function example() {
  let currentDate = new Date();
  let folderDate = currentDate.toISOString().slice(0, 10)
  var fileFolder = 'screenshots_'+folderDate+'\/Token';
  var fileName = 'coinMarketCapChart.png';
  let driver = await new Builder().forBrowser('chrome').build();
  try {
    await driver.manage().window().setRect({ width: 1040, height: 768 });
    await driver.get('https://coinmarketcap.com/currencies/hive-blockchain/');
    //await new Promise(resolve => setTimeout(resolve, 1500));  // be sure, that everything is loaded
    //let button2 = await driver.findElement(By.xpath("//li[text()='7D']"));
    let button2 = await driver.findElement(By.id('react-tabs-34'));
    await button2.click();

    //let section = await driver.findElement(By.id('__next'));
    let section = await driver.findElement(By.className('main-content'));

    try {
      let button = await driver.findElement(By.id('onetrust-accept-btn-handler'));
      await button.click();
    } catch (error) {
      console.log('Button not found');
    }

    await new Promise(resolve => setTimeout(resolve, 1500));  // be sure, that everything is loaded
    let screenshot = await section.takeScreenshot();
    fs.writeFileSync(fileFolder+'\/'+fileName, screenshot, 'base64');
    console.log('Die Datei '+fileFolder+'\/'+fileName+' wurde erstellt');
  } finally {
    await driver.quit();
  }
})();

Now I don't need this manually step any more and can let run it automately.

The data of today (friday) is missing. I'm gonna check that next week.

Regards,

Achim Mertens

H2
H3
H4
Upload from PC
Video gallery
3 columns
2 columns
1 column
27 Comments