Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - ParadoximA

Pages: [1]
1
General Discussion / 0.1% Fee for bitCNY, bitUSD, and bitEUR Markets?
« on: March 12, 2018, 05:49:07 pm »
The markets with bitCNY, bitUSD and bitEUR now have a 0.1 % market fee. Why the change? Were there any announcements made? Is this possibly (hopefully!?) temporary?

2
Technical Support / Best way to send funds to/from Bitshares?
« on: December 22, 2017, 11:34:02 am »
What is the most reliable cryptocurrency for withdrawals from bitshares? What is everyone using?

Scanning these forums, it appears that people are having issues withdrawing Ethereum from Openledger. Despite the warnings, I've tried to withdraw Ethereum - my ETH balance decreases but the transaction doesn't show up on etherscan.io or in my ETH wallet.

Withdrawing BTC isn't useful right now, with the fees being so high.

From what I can tell, other exchanges seem to often have problems with BTS.

So what is everyone else using for withdrawals?

(PS - I do have an open support ticket for the missing ETH - the transaction is here: https://cryptofresh.com/tx/7092b0b48d85e7479a1f7c7a0b0d3f8333c6aeef)

3
Technical Support / Changing Account Password
« on: July 31, 2017, 08:08:07 am »
Is it possible to change the account password?

Under settings -> account model, there is the option to "add password generated keys". Does that change the account password? Or add more passwords? Will the old password be removed? Where are the active key, owner key and memo keys used? Are any of these the account password?

I'm lost with this system and don't know where else to find help. I usually don't mind clicking everything to see what it does, but in this case I'm afraid of losing access to my account.

4
Technical Support / Very slow market buy with pybitshares API
« on: July 29, 2017, 05:13:26 pm »
Hi everyone. I've been trying out the pybitshares API and can get it to do almost everything I need. However, when I buy or sell on the market, it takes between 10 and 20 minutes before the transaction shows up. During that time, python is using a lot of CPU. Am I doing something wrong, or is that normal? Market queries etc are instant. Buying and selling with the web interface is also instant. When I added the private key, it also took several minutes (I thought python had crashed, and I restarted it a few times, before allowing it to finally add the key).

Here's what I did:
I created a new account (account model) using my browser, then created a new wallet using the pybitshares API, then imported my private key (bitshares.wallet.addPrivateKey('xxxxx')).

Below is the code that produces the problem.
Code: [Select]
from bitshares import BitShares
from bitshares.market import Market
from bitshares.price import Price
from bitshares.amount import Amount
from bitshares.account import Account
import time

account = Account("xxxxx")
Node1="wss://bitshares.openledger.info/ws"#Nuremberg, Germany
bitshares=BitShares(Node1,nobroadcast=False)
market = Market("BTS:USD")
print(market.bitshares.wallet.unlock("xxxxx"))
USD_Bal=account.balance('USD')
print('Buying BTS')
print(market.buy(\
    Price(0.115, "USD/BTS"),\
    Amount(USD_Bal/0.115*0.5, "BTS"),\
    account="xxxxx",\
    returnOrderId='head'\
    ))

I've tried without the returnOrderId='head' setting, it's still slow. Any ideas?

Pages: [1]