Trading

監控BTC交易盈虧的方法?

  • January 21, 2018

有人在監控 BTC 交易盈虧方面有什麼建議嗎?考慮到交易所徵收的交易費用(即 GDAX),我覺得很困惑。我使用 Coinigy 製作圖表和輸入訂單。

不需要花哨的腳本和數據庫:

[你投入了什麼] - [你得到了什麼] = [你的利潤]

所有你必須知道的:

  • 期初BTC的價格
  • 期末比特幣價格
  • 擁有所有美元存款/取款的清單
  • 擁有所有 BTC 存款/取款的清單(以及進行存款或取款時 BTC 的美元價值)

我將嘗試用一個例子來解釋:

  1. 起始餘額 = $0 + 1 BTC
  2. 存入 $1,000(餘額 = $1,000 + 1 BTC)
  3. 購買 1 BTC @ 900 美元/BTC 1% 費用 = 0.01 BTC(餘額 = 100 美元 + 1.99 BTC)
  4. 賣出 0.5 BTC @ 920 美元/BTC 1% 費用 = 46 美元(餘額 = 555.40 美元 + 1.49 BTC)
  5. 提取 500 美元(餘額 = 55.40 美元 + 1.49 比特幣)

一定時期內的利潤

= ([value of all assets at end of period] – [value of all assets at beginning of period]) + ([value of assets withdrawn] – [value of assets deposited])
= (($55.40 + 1.49BTC) - ($0 + 1BTC)) + (($500 + 0BTC) - ($1,000 + 0BTC))
= (($55.40 + 1.49BTC x $920) - ($0 + 1BTC x $900)) + (($500 + $0 x $920) - ($1,000 + $0 x $900)) // convert BTC to USD for the price at that time
= (($55.40 + $1,370.80) - ($0 + $900)) + (($500 + $0) - ($1,000 + $0))
= ($1,426.20 - $900) - $500 // My assets is worth $1426.20 at the end of the period, it was worth $900 at the beginning of the period but I added $500 from external sources (deposit - withdraw)
= $26.20 // Total value of my assets increased by $26.20

即使我本月進行零交易並且在我持有 BTC“股票”時 BTC 價格上漲,但從美元的角度來看,我會因為我的總資產價值以美元計算的增加而獲得“利潤”。

此電子表格為您進行計算,您只需輸入您的買入和賣出:https ://github.com/alanhett/coin-cost-basis

引用自:https://bitcoin.stackexchange.com/questions/46529