套利利潤的計算
我根據 3 個交易所買賣訂單進行了計算。(Cryptsy、C-cex和Bter)並考慮了DOGE/BTC市場。
cryptsy 和 C-cex 都有相同的計算來獲得買賣訂單的淨總金額(包括交易費用的最終金額)。在這些交易所中,買賣交易所的交易費用均以 DOGE/BTC 市場的 BTC 為單位。但是 bter 對賣單的計算與在 cryptsy 和 C-cex 中的買單計算不同。這里以 BTC 為單位買入交易費,以 DOGE 為單位賣出交易費。
我對計算利潤感到非常困惑?請查看 Cryptsy 和 Bter 網站,了解賣單之間的區別。
DOGE/BTC 市場
案例(1):買賣交易所交易手續費均為BTC(cryptsy-buy,C-cex-sell)
購買交易所 = Cryptsy
賣出交易所 = C-Cex
購買金額 = 1 DOGE
賣出金額 = 1 DOGE
購買價格 = 0.0000038 BTC //取自 cryptsy 交易所 DOGE/BTC 購買
賣出價 = 0.0000042 BTC //取自 Ccex 交易所 DOGE/BTC 賣出
buy_ex_txn_fee = 0. 002 BTC (0.2%)
sell_ex_txn_fee = 0. 0015 BTC (0.15%)
購買訂單:
Total = buy_amount * buy_price (Total = 1 * 0.0000038 = 0.0000038 BTC) buy_txn_fee = Total * buy_ex_txn_fee (buy_txn_fee = 0.0000038 * 0. 002 = 0.000000008 BTC) buy_order_Net_total = Total + buy_txn_fee (buy_order_Net_total = 0.000003808 BTC)
賣單:
Total = sell_amount * sell_price (Total = 1 * 0.0000042 = 0.0000042 BTC) sell_txn_fee = Total * sell_ex_txn_fee (sell_txn_fee = 0.0000038 * 0. 0015 = 0.000000006 BTC) sell_order_Net_total = Total - sell_txn_fee (sell_order_Net_total = 0.000004194 BTC)
利潤:
Profit = sell_order_net_total – buy_order_net_total (Profit =0.000004194 BTC - 0.000003808 BTC = 0.000000386 BTC)
案例(2):(對於相同的DOGE/BTC市場,買入BTC(cryptsy)交易手續費,賣出DOGE(Bter)交易手續費)
購買交易所 = Cryptsy
賣出交換 = Bter
購買金額 = 1 DOGE
賣出金額 = 1 DOGE
買入價 = 0.0000038 BTC
賣出價 = 0.0000042 BTC
buy_ex_txn_fee = 0. 002 BTC (0.2%)
sell_ex_txn_fee = 0. 0018 DOGE (0.18%)
購買訂單:
Total = buy_amount * buy_price (Total = 1 * 0.0000038 = 0.0000038 BTC) buy_txn_fee = Total * buy_ex_txn_fee (buy_txn_fee = 0.0000038 * 0. 002 = 0.000000008 BTC) buy_order_Net_total = Total + buy_txn_fee (buy_order_Net_total = 0.000003808 BTC)
賣單:
Total = sell_amount * sell_price (Total = 1 * 0.0000042 = 0.0000042 BTC) **// sell_ex_txn_fee is in terms of DOGE. How should I calculate profit?**
利潤:
Profit = ???
我是否朝著正確的方向前進?還有其他最簡單的計算利潤的方法嗎?如果可能的話,請用步驟順序向我解釋一下?
的公式
sell_order_Net_total
將是:sell_order_Net_total = sell_amount * sell_price * (1- sell_ex_txn_fee)
最終收益:
Profit = sell_order_Net_total - buy_order_Net_total
請記住,兩個交易所之間也有交易費用。如果您在 1 個交易所將所有 DOGE 換成 BTC,在另一個交易所用 BTC 換成 DOGE,則您需要將兩個賬戶與等量的 DOGE/BTC 混合。如果您想在交易所之間進行交易,還應考慮交易費用。