Since I started to listen to Xing Da’s build big A strategy system from zero, for the overall strategy of the coin circle also has a new understanding, last year Yuan universe earned a lot of money, but this year basically all the losses, probably because of the summary in: 1. Frequent transaction losses 2. Income is not fixed, resulting in an imbalance in the mentality, which summarizes themselves is also if you want to be able to trade in the long term to achieve a result that can make you satisfied, it is necessary to target the The current situation to make changes, combined with the term arbitrage can make themselves in the bull market cycle can earn emotional premium, there is a stable income, so the overall strategy of their current mainly for the term arbitrage and other arbitrage way to do research, in order to strive for the bull market to get satisfied with the risk-free returns and then use it for risky investments in the road of trading to go a little farther, look up the term arbitrage video with the code, there should be a lot of family members need to target is to want for the overall delivery contract in the currency for all the monitoring, to achieve which currency to reach their own set premium, the first time to be able to arbitrage, so based on this, is sort of my start to optimize the start of the period arbitrage!
Constant traversal monitoring is performed for the coins of the CoinSafe delivery contract, so as to be able to intervene at the first time when the premium occurs, and then the improved code is also interpreted at the level of a white person.
This combination of methods can be applied to the strategy want to monitor all of the exchange’s underlying, based on Xingda coursework and thus optimization, the next will be more in-depth optimization of arbitrage, the profits of cash arbitrage comes from the bull market incremental funds as well as emotional premium, if you want to have a high demand for returns, you need to do enough details in place, carefully go to the exchange’s documentation, the next will be more in-depth optimization of arbitrage, the profit from the bull market incremental funds and emotional premium, if you want to have high requirements for returns, you need to do enough details in place, carefully go to the exchange’s documentation. The optimization of the handling fee to do how cheap it can be how cheap it must be, Xingda provides the registration link of the fee rebate, as well as the configuration of the necessary BNB as a fee reduction, if you do not want to bear the volatility of the BNB with other sub-accounts on the BNB hedge, all the reduced expenses can be arbitrage on the arbitrage for you to generate more profits, if there is a better optimization of the demand for more guidance from the family, I will Follow up on this strategy for continuous optimization
for coin in coin_list: spot_symbol_name = {'type1': coin + 'USDT', 'type2': coin + '/USDT'} spot_symbol_name_list.append(spot_symbol_name)
for coin in coin_list: for future_date in future_date_list: future_symbol_name = {'type1': coin + 'USD_' + future_date} future_symbol_name_list.append(future_symbol_name)
whileTrue:
spot_sell1_price_list = []
future_buy1_price_list = []
spot_name_price_dict = {}
future_name_price_dict = {} for spot_symbol_name in spot_symbol_name_list: spot_sell1_price = exchange.publicGetTickerBookTicker(params={'symbol': spot_symbol_name['type1']})['askPrice'] spot_sell1_price_list.append(spot_sell1_price)
for future_symbol_name in future_symbol_name_list: future_buy1_price = exchange.dapiPublicGetTickerBookTicker(params={'symbol': future_symbol_name['type1']})[0][ 'askPrice'] future_buy1_price_list.append(future_buy1_price)