i think i messed up my first sell order and i don't see an id beside it its "0 0"?
sometimes i would do a command and then nothing happens ie
is that to do with confirmations on my previous txs or something like that?
Let me just address this one by itself, because I see two problems in there.
I think the first one is harmless, when you did the exec placetrade sell 5002 0.0001, the command syntax was correct.
It was supposed to generate a collateral tx, and a tradeID, and I see that didnt happen on the one that returned 0 on the screen, as the whole transaction is empty (no txid, no collateral address), so that one we can either chalk up as network error, or race condition. If you want to check something, go to your bbp data directory, (the same place where debug.log is) and you can go back to that timestamp and check the trading_log. see if anything is weird in there at that particular timestamp? Maybe a wallet error or something. Now usually we handle all the known ones, like not enough balance, or wallet locked, or, in the case of DOGE if you just spent some to buy some BBP, the UTXO is spent and we have to wait 1 more block before successfuly placing another trade. But that is a known condition so you will see an error saying Unable to create transaction::No utxos - something to that effect.
But moving on to this one:
There was one you placed to buy 1000000 bbp at .00000010. What I find strange about that one is if you look at the BX, your collateral of 1DOGE was sent here:
https://live.blockcypher.com/doge/address/DNjtGEqNFE2RMbjU8kA88iStj9hcRBd9cs/(Thats the 'collateral address' of the sanc that accepted it). So its locked in there where no one can touch it unless the trade goes through, but, it has an id of "0" - which is not right. That should have an ID > current unix timestamp.
So something mostly worked on that and failed to give you good id.
Can you please try a 'exec canceltrade 0' and tell me if it gives you your 1 doge back? If it doesnt ill cover it. But yeah I have to find the debug log and fix that one.
Obviously you can place it again once you get it back.
Moving on to normal trading:
I bought the 5001,5002,5003 trades and got the BBP, so that looks like it worked correctly, yay.
(On that first issue with the completely failed tx, you should not have lost any collateral, btw, otherwise you would have seen "collateralAddressDOGE" or "BBP" populated on that output etc).