<<  >> (p.32)
    Author Topic: Mycelium Bitcoin Wallet  (Read 586917 times)
    Jan (OP)
    Legendary
    *
    Offline Offline

    Activity: 1043
    Merit: 1002



    View Profile
    April 25, 2014, 09:48:27 PM
     #621

    What does "Expected trade time" mean? It is present for some sellers and not for the others. Are those the sellers who already completed trade and "expected trade time" shows their past performance?
    Yes. It is the median trade time for that seller, and a measure for how long time you can expect until you have your coins.

    Is Expected Time the time between initial trade request and Cash Received pressed, or Trade Accepted and Cash Received, or something else?

    Hmm.. now that you ask... Had to look:

    Code:
    SELECT max(fulfillmentTime) AS median FROM (SELECT fulfillmentTime, ntile(2) OVER (ORDER BY fulfillmentTime) AS bucket FROM SELECT  (SESSION.lastChange - SESSION.creationTime) AS fulfillmentTime FROM TradeSessionInt SESSION CROSS JOIN TraderInt trader1 CROSS JOIN TraderInt trader2 WHERE SESSION.peer_id = trader1.id AND SESSION.owner_id = trader2.id AND (trader1.address = :address OR trader2.address = :address) AND SESSION.isFinal = TRUE AND SESSION.state = 'TRADE_SUCCESS') AS sessiontimes) AS t WHERE bucket = 1 GROUP BY bucket;
    TL;DR
    "Expected trade time" is the median duration of the time between trade requested and transaction confirmed for all trades of the seller.

    TL;DR
    "Expected trade time" is the time you can expect until you get your funds  Grin

    Mycelium let's you hold your private keys private.
Page 31
Viewing Page: 32