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:
(more…)Category Archives: Cryptocurrencies
Nvidia 3GB mining is still alive
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…)Running a Tron node on Ubuntu 20.04 WSL
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
:
How I used OMNI USDT client on my home Windows machine
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:
What to mine on GTX 1060 3GB in November 2020
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/ |
I did not receive a peak price from Binance
In my app I display prices that I receive from Binance STORJ/BTC trade stream (green color):
(more…)Sample Binance API queries
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;
My first experiment with a peak detection algorithm
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.