Mercado profundo, controle de mercado, robôs manipuladores, ferramentas de mercado.

Autora:3 porquinhos, Data: 2019-05-02 20:50:00
Tags:Criador de mercadoPython

A estratégia de corrida para o mercado, a estratégia geral, é obter o preço atual e, ao mesmo tempo, exibir um pedido de compra e venda com maior profundidade, que pode ser copiado por outros mercados, que pode ser referenciado por outras tendências.


# -*- coding: UTF-8 -*-
import requests
import time
import random
import hashlib
import sys
import threading
from api import *

symbol = sys.argv[1]
gap= float(sys.argv[2]) #密度/价差
baseamount = float(sys.argv[3])
basebuy = float(sys.argv[4])
amount_add	= float(sys.argv[5]) 	#挂单增量	数字型(number)
amount_add2 = float(sys.argv[6]) 	#挂单增量	数字型(number)
longperoidlimit = int(sys.argv[7])
bigbase = float(sys.argv[8])				#大单基准量
orderlimit = int(sys.argv[9])   #总单量
api_key = sys.argv[10]
secret_key = sys.argv[11]

shortperoidlimit = 3	#高频单量

pre_short_id = []	#高平id标记
pre_long_id = []	#低频id标记
pre_big_id = 0

requests.packages.urllib3.disable_warnings()

def GetTicker():

def GetPV():

def GetDepth():

def GetSign(sign_str):


def GetOrders():

def create_order(side,price,amount):

def CancelOrder(order_id):

def Buy(price,amount):

def Sell(price,amount):

def GetRecords(symbol,period):

def GetPrecision():

def getrr():

def ordersend_shortperoid():

def ordersend_longperoid():

def send_big_order():

def cancel():


if __name__ == '__main__':
	precision = GetPrecision()
	print(precision)
	i = 0
	for x in precision:
		if precision[i]['symbol'] == symbol:
			pricedot = precision[i]['price_precision']
			amountdot = precision[i]['amount_precision']
		i += 1
	pricegap =  max(gap,pow(10,-pricedot))
	threading_list = [ordersend_shortperoid,ordersend_longperoid,send_big_order,cancel]
	threadingList = []
	threadingDict = {}
	for x in threading_list:
		th = threading.Thread(target=x)
		threadingList.append(th)
		threadingDict[th.__dict__['_name']] = th.__dict__['_target']
		th.start()

	while True:
		try:
			time.sleep(200)
			for i in threadingList:
				if i.is_alive() is False:
					threadingList.remove(i)
					result = threadingDict.pop(i.name)
					th = threading.Thread(target=result)
					threadingList.append(th)
					threadingDict[th.__dict__['_name']] = th.__dict__['_target']
					th.start()
		except Exception as e:
			print('check error',e)

Relacionados

Mais.

Lcgs005O que é melhor é mudar para o Maio?

Não, não.Qual é a sua forma de contato?

3 porquinhos 15800768444