I bought a 6TB HDD for 19 990 rubles (in Russia) and started to mine Chia cryptocurrency on my Windows 10 machine using existing 500GB SSD as a temporary space. Now it is building the plots:

I bought a 6TB HDD for 19 990 rubles (in Russia) and started to mine Chia cryptocurrency on my Windows 10 machine using existing 500GB SSD as a temporary space. Now it is building the plots:
On 4/22/2021 at 00:05 my trading bot detected VIA/BTC pump on Binance crypto exchange and I did the following successful trades:
Today I started to mine BTG on my 3GB farm. The miner consumes about 1.7MB on HiveOS:
BTG did 3X in April and theoretically it can be the most profitable coin on 3GB cards.
(more…)Installed Java SDK:
sudo apt update
sudo apt install default-jdk
javac --version
javac 11.0.9.1
Cloned the repository:
git clone https://github.com/tronprotocol/wallet-cli
And found the following in wallet-cli\src\main\resources\config.conf
:
First, as a true C++ developer, I installed Ubuntu 18.04 and compiled omnicore from sources, but after that I realized that Windows omnicore-0.9.0 client can be downloaded and run directly on my Windows 10 machine.
I found omnicore-qt.exe
in the unpacked files and run it:
It is still possible to mine the following on GTX 1060 3GB in November 2020:
coin | dag size | exchange |
BTCZ | 1716MiB | https://crex24.com/ |
ZCL | 2550MiB | https://www.hotbit.io/ |
RVN | 2726MiB | https://www.binance.com/ |
In my app I display prices that I receive from Binance STORJ/BTC trade stream (green color):
Getting All Isolated Margin Symbols in PHP:
$api_key = "*****";
$secret = "*****";
$opt = [
"http" => [
"method" => "GET",
"header" => "User-Agent: Mozilla/4.0 (compatible; PHP Binance API)\r\nX-MBX-APIKEY: {$api_key}\r\n"
]
];
$context = stream_context_create($opt);
$params['timestamp'] = number_format(microtime(true)*1000,0,'.','');
$query = http_build_query($params, '', '&');
$signature = hash_hmac('sha256', $query, $secret);
$endpoint = "https://api.binance.com/sapi/v1/margin/isolated/allPairs?{$query}&signature={$signature}";
$res = file_get_contents($endpoint, false, $context);
echo $res;
Hi guys!
For those how are interested in what I am doing now I provided my app screenshots with ‘Find Peaks’ button that runs ZScore algorithm on a cryptocurrency market data (follow the this link for the algorithm source code in C++).
Honestly I am not quite enough understand yet how it works, because I run it first time today, but at least there is some correlation between input parameters and the results. The lesser the threshold
and the longer the lag
the lesser peaks are found. Increasing the influence
also reduces the peak count.