This one page is to cover the team objective and tasks.
-
Create an automatic trading system on market making and arbitrage strategies
-
Create a legal funding pool mechanism for funding and profit allocation
| #!/usr/bin/python | |
| import random | |
| import os | |
| from collections import deque | |
| st1 = {} | |
| st2 = {} | |
| st3 = {} | |
| st4 = {} |
| id,deal2,deal3,deal4,deal5,deal6,deal7,deal8,deal9,deal10,deal1 | |
| d1,S,S,S,S,S,S,S,S,S,S | |
| d2,S,S,S,S,S,S,S,S,S,S | |
| d3,S,S,S,S,S,S,S,S,S,S | |
| d4,S,S,S,S,S,S,S,S,S,S | |
| d5,S,S,S,S,S,S,S,S,S,S | |
| d6,S,S,S,S,S,S,S,S,S,S | |
| d7,S,S,S,S,S,S,S,S,S,S | |
| d8,S,S,S,S,S,S,S,S,S,S | |
| d9,S,S,S,S,S,S,S,S,S,S |
| # Install development package | |
| sudo yum groupinstall 'Development Tools' | |
| # Set g++ compiler | |
| sudo dd if=/dev/zero of=/swapfile bs=64M count=16 | |
| # Install vim | |
| sudo yum install vim | |
| # Create folders |
| pip3 install jupyter | |
| pip3 install numpy | |
| pip3 install pandas | |
| pip3 install scipy |
| free | |
| dd if=/dev/zero of=/var/swap.img bs=1024k count=1000 | |
| mkswap /var/swap.img | |
| swapon /var/swap.img | |
| free |
| p4 dirs //depot/MMA/interfaces/"*" | sed 's/$/\/.../' | xargs p4 grep -e SimIOCMarketRoutes |
| #!/bin/bash | |
| # @link https://gist.github.com/mattscilipoti/8424018 | |
| # | |
| # Called by "git push" after it has checked the remote status, | |
| # but before anything has been pushed. | |
| # | |
| # If this script exits with a non-zero status nothing will be pushed. | |
| # | |
| # Steps to install, from the root directory of your repo... |
| // you can use includes, for example: | |
| #include <algorithm> | |
| using namespace std; | |
| #define vii vector<pair<int, int>> | |
| #define pii pair<int, int> | |
| #define g0( a ) get<0>( a ) | |
| #define g1( a ) get<1>( a ) | |
| int solution1(vector<int> &A, vector<int> &B, vector<int> &C) { | |
| // write your code in C++11 (g++ 4.8.2) |
| // you can use includes, for example: | |
| #include <algorithm> | |
| #include <string> | |
| #include <iostream> | |
| using namespace std; | |
| #define vii vector<pair<int, int>> | |
| #define pii pair<int, int> | |
| #define g0( a ) get<0>( a ) | |
| #define g1( a ) get<1>( a ) |