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
:
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;(more…)
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.
Enable huge pages by running gpedit.msc and adding the current user to Local Computer Policy->Computer Configuration->Windows Settings->Security Settings->Local Policies->User Rights Assignment->Lock pages in memory:
and logging out of current Windows session for changes take effect.
(more…)