Cross currency hedging strategy in blockchain asset quantification transaction
In a hedging strategy, there are various types of hedging. Cross market hedge, cross period hedge and so on. Today, let's talk about cross variety hedge, which is exactly the cross currency hedge strategy in the quantitative transaction of blockchain assets. Generally, the subject matter of hedging transactions is the same, while cross currency ...
Posted by kark_1999 on Wed, 26 Feb 2020 18:55:14 -0800
Using average trend index to assist MACD strategy
Preface
"Trend is your friend" is a proverb familiar to every trader. But friends who have done deals may realize that trends always start without warning and end abruptly. So in CTA strategy, how to catch the trend and filter the volatile market is the tireless pursuit of many subjective and quantitative traders. In this course, we ...
Posted by donbueck on Wed, 26 Feb 2020 00:03:40 -0800
Hand in hand to teach you how to transform "commodity futures Plan Commission tool" into a one-day strategy
In the last article, we learned How to write a commodity futures plan entrustment tool , this is a semi manual trading strategy. So how can we implement an automatic plan delegation strategy? In this issue, let's implement and transform this tool into an automatic trading strategy.
Strategic thinking
Similarly, the mechanism of automatical ...
Posted by skiingguru1611 on Mon, 24 Feb 2020 02:31:25 -0800
HyperLedgr deployment, initializing the network.
start
Check the prerequisites of the platform in order to successfully develop blockchain products.
Installation prerequisites, click the link: Precondition.
For more details, click: more details.
List of prerequisites
The latest version of git
The latest version of curl
Any version of wget
Docker and docker composedocker --version re ...
Posted by VagabondKites on Sun, 23 Feb 2020 23:52:41 -0800
Deploy Ethereum smart contract (Token release)
pragma solidity ^0.4.24;
contract EIP20Interface{
//Get the balance of the owner address
function balanceOf(address _owner) public view returns (uint256 balance);
//Transfer: transfer in ﹐ value tokens from one's own account to ﹐ address
function transfer(address _to, uint256 _value)public returns (bool success);
/ ...
Posted by beebum on Sat, 22 Feb 2020 09:22:08 -0800
Deploy Ethereum smart contract (Hello World)
Ethereum is a public blockchain platform that provides a smart contract function. To develop an application on Ethereum, you need to install Geth based on Go language on its client. The official website is: https://github.com/ethereum/go-ethereum.
1. Enter the command line window
2. Enter in the command line window
geth --datadir "E:\geth ...
Posted by stockton on Sat, 22 Feb 2020 06:03:32 -0800
[CryptoZombies - 1 Solidity tutorial] 011 Require
I. Preface
Read some blockchain tutorials, papers, just found a project on the Internet, CryptoZombies.
If you want to know more about machine learning, deep learning, blockchain, computer vision and other related technologies, and want to communicate with more tycoons, please scan the QR code belo ...
Posted by dnoonan on Mon, 17 Feb 2020 23:30:16 -0800
How to use CouchDB wallet in Fabric Node SDK
When an application interacts with a Hyperledger Fabric network, the Fabric node first verifies the identity of the application, that is, whether the certificate held by the application allows access to the Hyperledger Fabric network.In Hyperledger, these identities are stored in the wallet.In this tutorial, we will show you how to use a CouchD ...
Posted by andrewgarn on Sun, 09 Feb 2020 20:49:30 -0800
JavaScript only needs 200 lines of code to develop blockchain
Implement a simple blockchain with JavaScript development. Through this development process, you will understand what blockchain technology is: blockchain is a distributed database, and the storage structure is a growing linked list, which contains many orderly records.
However, in general, when we talk about blockchain, we also talk about ...
Posted by kylebragger on Mon, 03 Feb 2020 05:14:03 -0800
Only 180 lines of code are needed to develop blockchain with Go language
What language does blockchain development use? Through this article, you will use go language to develop your own blockchain (or build blockchain with go language), understand how hash function keeps the integrity of blockchain, master how to create and add new blocks with go language programming, realize multiple nodes to generate blocks th ...
Posted by chalexan on Mon, 03 Feb 2020 05:13:46 -0800