Class: Cex::Bitcoinde
- Inherits:
-
Object
- Object
- Cex::Bitcoinde
- Defined in:
- lib/cex/bitcoinde.rb
Overview
classe para processar saldos & transacoes trades e ledger do bitcoinde
Instance Attribute Summary collapse
-
#api ⇒ Apius
readonly
API bitcoinde.
-
#dbq ⇒ Array<Hash>
readonly
Todos os dados bigquery.
-
#ops ⇒ Thor::CoreExt::HashWithIndifferentAccess
readonly
Opcoes trabalho.
Instance Method Summary collapse
-
#exd ⇒ Hash
Dados exchange bitcoinde - saldos & transacoes trades e ledger.
-
#formata_ledger(hlx) ⇒ String
Texto formatado transacao ledger.
-
#formata_saldos(moe, hsx) ⇒ String
Texto formatado saldos (bitcoinde).
-
#formata_trades(htx) ⇒ String
Texto formatado transacao trade.
-
#initialize(dad, pop) ⇒ Bitcoinde
constructor
API bitcoinde - obter saldos & transacoes trades e ledger.
-
#kyl ⇒ Array<Integer>
Lista txid de transacoes ledger.
-
#kyt ⇒ Array<String>
Lista txid de transacoes trades.
-
#ledger ⇒ Hash
Transacoes ledger.
-
#mostra_ledger ⇒ String
Texto transacoes ledger.
-
#mostra_resumo ⇒ String
Texto saldos & transacoes & ajuste dias.
-
#mostra_trades ⇒ String
Texto transacoes trades.
-
#trades ⇒ Hash
Transacoes trades.
Constructor Details
Instance Attribute Details
#api ⇒ Apius (readonly)
Returns API bitcoinde.
10 11 12 |
# File 'lib/cex/bitcoinde.rb', line 10 def api @api end |
#dbq ⇒ Array<Hash> (readonly)
Returns todos os dados bigquery.
12 13 14 |
# File 'lib/cex/bitcoinde.rb', line 12 def dbq @dbq end |
#ops ⇒ Thor::CoreExt::HashWithIndifferentAccess (readonly)
Returns opcoes trabalho.
14 15 16 |
# File 'lib/cex/bitcoinde.rb', line 14 def ops @ops end |
Instance Method Details
#exd ⇒ Hash
Returns dados exchange bitcoinde - saldos & transacoes trades e ledger.
30 31 32 33 34 35 36 |
# File 'lib/cex/bitcoinde.rb', line 30 def exd @exd ||= { sl: api.account, tt: api.trades, tl: api.deposits + api.withdrawals } end |
#formata_ledger(hlx) ⇒ String
Returns texto formatado transacao ledger.
94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/cex/bitcoinde.rb', line 94 def formata_ledger(hlx) format( '%<ky>6i %<dt>19.19s %<ty>-10.10s %<mo>-3.3s %<pr>19.8f %<vl>18.8f', ky: hlx[:lgid], dt: hlx[:time], ty: hlx[:tp], mo: hlx[:qtxt].upcase, pr: hlx[:qt].to_d, vl: hlx[:fee].to_d ) end |
#formata_saldos(moe, hsx) ⇒ String
Returns texto formatado saldos (bitcoinde).
62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/cex/bitcoinde.rb', line 62 def formata_saldos(moe, hsx) b = dbq[:sl][moe.downcase.to_sym].to_d e = hsx[:total_amount].to_d format( '%<mo>-5.5s %<ex>21.9f %<bq>21.9f %<ok>3.3s', mo: moe.upcase, ex: e, bq: b, ok: e == b ? 'OK' : 'NOK' ) end |
#formata_trades(htx) ⇒ String
Returns texto formatado transacao trade.
77 78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/cex/bitcoinde.rb', line 77 def formata_trades(htx) format( '%<ky>-6.6s %<dt>19.19s %<dp>10.10s %<ty>-5.5s %<mo>-8.8s %<vl>18.8f %<co>8.2f', ky: htx[:trade_id], dt: Time.parse(htx[:successfully_finished_at]), dp: Time.parse(htx[:trade_marked_as_paid_at]), ty: htx[:type], mo: htx[:trading_pair].upcase, vl: htx[:amount_currency_to_trade].to_d, co: htx[:volume_currency_to_pay].to_d ) end |
#kyl ⇒ Array<Integer>
Returns lista txid de transacoes ledger.
44 45 46 |
# File 'lib/cex/bitcoinde.rb', line 44 def kyl @kyl ||= exd[:tl].map { |h| h[:lgid] }.flatten - (ops[:t] ? [] : dbq[:nl].map { |e| e[:txid] }) end |
#kyt ⇒ Array<String>
Returns lista txid de transacoes trades.
39 40 41 |
# File 'lib/cex/bitcoinde.rb', line 39 def kyt @kyt ||= exd[:tt].map { |h| h[:trade_id] }.flatten - (ops[:t] ? [] : dbq[:nt].map { |e| e[:txid] }) end |
#ledger ⇒ Hash
Returns transacoes ledger.
54 55 56 |
# File 'lib/cex/bitcoinde.rb', line 54 def ledger @ledger ||= exd[:tl].select { |h| kyl.include?(h[:lgid]) } end |
#mostra_ledger ⇒ String
Returns texto transacoes ledger.
128 129 130 131 132 133 |
# File 'lib/cex/bitcoinde.rb', line 128 def mostra_ledger return unless ops[:v] && ledger.count.positive? puts("\nledger data hora tipo moe ---------quantidade -------------custo") ledger.sort { |a, b| b[:time] <=> a[:time] }.each { |h| puts(formata_ledger(h)) } end |
#mostra_resumo ⇒ String
Returns texto saldos & transacoes & ajuste dias.
107 108 109 110 111 112 113 114 115 116 |
# File 'lib/cex/bitcoinde.rb', line 107 def mostra_resumo puts("\nBITCOINDE\nmoeda saldo bitcoinde saldo bigquery") exd[:sl].each { |k, v| puts(formata_saldos(k, v)) } mostra_trades mostra_ledger return unless trades.count.positive? puts("\nstring ajuste dias dos trades\n-h=#{kyt.map { |e| "#{e}:0" }.join(' ')}") end |
#mostra_trades ⇒ String
Returns texto transacoes trades.
119 120 121 122 123 124 125 |
# File 'lib/cex/bitcoinde.rb', line 119 def mostra_trades return unless ops[:v] && trades.count.positive? puts("\ntrades data hora dt criacao tipo par ---------------qtd -----eur") trades.sort { |a, b| Time.parse(b[:successfully_finished_at]) <=> Time.parse(a[:successfully_finished_at]) } .each { |h| puts(formata_trades(h)) } end |
#trades ⇒ Hash
Returns transacoes trades.
49 50 51 |
# File 'lib/cex/bitcoinde.rb', line 49 def trades @trades ||= exd[:tt].select { |h| kyt.include?(h[:trade_id]) } end |