Bitcoin Forum
May 27, 2024, 07:29:06 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 »
181  Economy / Trading Discussion / Re: MtGox/TradeHill SierraChart bridge - Realtime Bitcoin charts on: July 20, 2011, 08:15:46 PM
Hi Everyone,
      Camp BX API has gone live today, and we will love a chance to work with the community to set up a Sierra charts bridge.

     We are also releasing some more advanced functionality API calls on Friday.  This should allow Sierra Charts users to execute complex strategies just like you would on a traditional broker.

      Slush - please let me know how can we help, thank you!  The API documentation is at:

https://CampBX.com/api.php

- Keyur

182  Bitcoin / Bitcoin Discussion / Camp BX API is Live! on: July 20, 2011, 03:22:11 PM
Good morning everyone,
       Camp BX API is live and available for all the Bots and day-trading gurus!  We have exposed all standard functionality of the UI through API, including:

  • Full Market Data
  • Account Data
  • Quick Buy / Quick Sell Orders
  • Bitcoin Send-To

API documentation is available at: https://www.CampBX.com/api.php

We are also pressing forward with some additional API calls that will expose functionality for Dwolla Transfers and AON/FOK/Market Price/Custom Expiry, so please stay tuned for those announcements!

Thank you,
      Keyur




Activating API Access

    API access can be activated for an account by submitting a ticket to the Helpdesk. Your ticket must include your email, username, and latest transaction date for security reasons.


Data Format

        Inputs: All input parameters for the API (with the exception of passwords) must be alpha-numeric. Repeated violations of this policy may result in an account ban.
        Outputs: The output of the API is in JSON format.

Making API Calls

    Use POST, not GET. Any API call that requires authentication must be made over SSL connection. Market data calls (which do not require authentication) can be also made over HTTP.

Standard Return Codes

    There are two generic responses common across all API calls to simplify error handling.
    ­

        Error:
        When a fatal error occurs that does not allow the API call to proceed, an Error is returned as the result. In a vast majority of the cases, error can be traced back to improper API calls or malformed parameters.
        Info:
        Info is returned when a non-fatal error occurs during the API call. For example, if an API calls to obtain a list of open orders has zero results, an Info code along with description "No open orders" will be returned by the API call.


Depth Table

    Full market depth is available through the depth table API call. The API call can be made at:
    http://CampBX.com/api/xdepth.php

    Result is a JSON object with two arrays: Asks and Bids. Each element in these two arrays has two members: first member is Price and second member is Quantity available at that price. Both numbers are rounded to two decimal points.

Market Ticker

    The API call to obtain market ticket can be made at:
    http://CampBX.com/api/xticker.php

    Result is a JSON object with three members: Last Trade Price, Best Bid Price, and Best Ask Price.


Account Balances

    An API call to obtain latest account balances can be made in following format:
    https://CampBX.com/api/myfunds.php POST: user=USERNAME pass=PASSWORD

    Result is a JSON object with six members.

        First two members show Total USD and BTC balances for a given account, provided the login credentials are correct.
        Next two members show Liquid USD and BTC balances not tied up in open orders on the order book.
        Last two members show Margin Account USD and BTC balances. When you open or close a margin position, Camp BX transparently moves funds in and out of the Margin Account; hence, no explicit funds-transfer is required.

Orders List

    An API call to obtain list open orders for an account can be made in following format:
    https://CampBX.com/api/myorders.php POST: user=USERNAME pass=PASSWORD

    Result is a JSON object with two arrays: Buy and Sell. Each array includes a sub-array of open Buy or Sell orders.

Margin Positions List

    An API call to obtain list open Margin positions for an account can be made in following format:
    https://CampBX.com/api/mymargins.php POST user=USERNAME pass=PASSWORD

    Result is a JSON object with an array of Margin positions including Margin Call Price, and current profit/loss on open positions.

Canceling an Open Order

    An API call to cancel an open order can be made in following format:
    ­
    https://CampBX.com/api/tradecancel.php POST: user=USERNAME pass=PASSWORD Type=Buy OrderID=NUMERIC_ID
    ­
    OR
    ­
    https://CampBX.com/api/tradecancel.php POST: user=USERNAME pass=PASSWORD Type=Sell OrderID=NUMERIC_ID

    Please note that the parameters for this call are case-sensitive. Type and OrderID parameters must match the exact information provided by myorders.php call outlined in the previous section.

    The "Type" parameter refers to the type of order; permitted values are Buy or Sell.
    "OrderID" must be a numeric value corresponding to the order that you are attempting to cancel.

Placing a New Order

    An API call to placing an order can be made in following format:
    ­
    https://CampBX.com/api/tradeenter.php POST: user=USERNAME pass=PASSWORD TradeMode=QuickBuy Quantity=DECIMAL Price=DECIMAL
    ­
    OR
    ­
    https://CampBX.com/api/tradeenter.php POST: user=USERNAME pass=PASSWORD TradeMode=QuickSell Quantity=DECIMAL Price=DECIMAL

    Please note that the parameters listed below are case-sensitive.

    The TradeMode parameter refers to the type of the order, and permitted values are QuickBuy or QuickSell.
    Quick orders are described in more detail on the FAQ page; essentially they are limit-price orders that stay open on Camp BX order book for up to 7 days.

    Quantity and Price are decimal values that must follow all rules / limits set by Camp BX. Minimum quantity to place an order is 0.5 Bitcoins.


Advanced Orders

    We are working on an API call to expose the Advanced Trading functionality afforded by the Camp BX platform. This call will allow the bots to request specific Fill-types like AON or FOK fill, Price types like Market or Limit price, and a custom Expiry date ranging from 1 hour to 31 days.

    This API call will be available on Friday July 22nd. In the meantime, we encourage you to explore and understand this functionality though the website interface prior to writing a bot around it.


Buy on Margin

    We are working on an API call to expose Margin trading functionality.

    This API call will be activated when market liquidity crosses 1,000 Bitcoins per day for a sustained period. In the meantime, we encourage you to explore and understand this functionality on testnet prior to writing a bot around it.

Short Sell

    We are working on an API call to expose Short Sell and Cover functionality.

    This API call will be activated when market liquidity crosses 1,000 Bitcoins per day for a sustained period. In the meantime, we encourage you to explore and understand this functionality on testnet prior to writing a bot around it.


183  Economy / Trading Discussion / Re: Advanced Trading API Poll - FOK / AON / Stoploss on: July 20, 2011, 03:12:32 PM
Good morning Everyone,
       Camp BX API is live, and full documentation is available at:

https://campbx.com/api.php

        We have also prioritized advanced trading API higher based on the poll results, so it will be available this Friday! 

Thank you,
      Keyur


184  Bitcoin / Bitcoin Discussion / Re: CampBX Launch - Free Trades for All Bxlievers! on: July 19, 2011, 04:57:32 AM
Camp BX seems to be trading much higher than the other exchanges. Anyone noticing that?

I noticed that on the way down. On the way back up, it was trading lower. This is a bad, bad sign.  It's an indication of frontrunning.  Somebody at Camp BX might be skimming the cream.

Billy Joe,
      We have a documented policy of never being a counter-party to any trade, and front-running is something we will never do.  You will notice a tighter parity with other sites after our API goes live on Wednesday, and bots / frequent traders start arbitraging more aggressively.

Thank you,
      Keyur

185  Bitcoin / Bitcoin Discussion / Re: CampBX Launch - Free Trades for All Bxlievers! on: July 19, 2011, 03:20:23 AM
Would you confirm that there is a 1% fee assessed for withdrawing BTCs?

If so, would I gain success in trying to convince you how wrong that is?

Stephen,
      There is no fee for BTC withdrawals.  The FAQ on our website also says the same thing.  We noticed the 1% number on Bitcoin Camp BX Wiki, and have attempted to edit/correct it today.

The only fee is 0.0005 bitcents network TX fee because we are trying to be good citizens of the network.  That comes out to about half-cent per transfer.

Hope this helps,
      Keyur

Um, sorta?

I did a BTC withdraw and was told I had to pay a 0.0005 BTC fee, but the actual transaction did not have a fee, and there's still 0.0005 BTC in my CampBX account.

Error,
    You transferred out the coins when we were testing zero-fees on the backend, while the front end still showed the 0.0005 btc fee.  

Apologies for any inconvenience - if you are planning to attend the Bitcoin Conference in NYC, perhaps I can buy you a lunch at Meze Grill and we can call it even!?  

- Keyur


186  Bitcoin / Bitcoin Discussion / Re: CampBX Launch - Free Trades for All Bxlievers! on: July 19, 2011, 02:10:31 AM
The FAQ on our website also says the same thing.

It shows:
 
Quote
There are NO fees for depositing / withdrawing Bitcoins.

But that then is inconsistent with:
 "(after TX fee): "
 - https://campbx.com/in/fundmgmt.php

So I just assumed the FAQ was incorrect.

[he only fee is 0.0005 bitcents network TX fee because we are trying to be good citizens of the network.  That comes out to about half-cent per transfer.

So yes, my apologies!  I think I saw the "(after TX fee): " and calculated it as if it were a proportional amount.

Perhaps that "TX fee" could be made into a link that goes to the FAQ where the 0.0005 BTC fee is described?


Stephen, no worries - you voiced what was a potential concern for many users.

We have taken out the TX fee for now.   We can reinstate it (next time with proper communication!) when volume exceeds 1K transfers per day.

Thank you again,
       Keyur




187  Bitcoin / Bitcoin Discussion / Re: CampBX Launch - Free Trades for All Bxlievers! on: July 19, 2011, 01:16:05 AM
Would you confirm that there is a 1% fee assessed for withdrawing BTCs?

If so, would I gain success in trying to convince you how wrong that is?

Stephen,
      There is no fee for BTC withdrawals.  The FAQ on our website also says the same thing.  We noticed the 1% number on Bitcoin Camp BX Wiki, and have attempted to edit/correct it today.

The only fee is 0.0005 bitcents network TX fee because we are trying to be good citizens of the network.  That comes out to about half-cent per transfer.

Hope this helps,
      Keyur


188  Bitcoin / Bitcoin Discussion / Re: CampBX Launch - Free Trades for All Bxlievers! on: July 18, 2011, 10:51:29 PM
You mean bitcoins are really being traded for $0.25? I'm signing up!

Well, these prices reflect the on-going testing of the API, not real trades I am afraid!   Need to filter these out from the feed going out to Bitcoin Charts.

But I would still love to have you on-board at Camp BX!

Thank you,
    Keyur

189  Bitcoin / Bitcoin Discussion / Re: CampBX Launch - Free Trades for All Bxlievers! on: July 18, 2011, 10:22:05 PM
From bitcoincharts: Day's Range 0.25 — 19.48

Seriously?

Someone has an open buy order at $0.25. My guess is bitcoincharts isn't interpreting the API quite right. Or the API isn't sending what bitcoincharts wants.

Bitcoin Charts is performing as designed, this one is our issue to fix!   We are working on a tweak to filter out some trades.

Thank you,
    Keyur



190  Economy / Trading Discussion / Advanced Trading API Poll - FOK / AON / Stoploss on: July 18, 2011, 02:31:24 AM
Hi everyone,
       Camp BX is gearing up to release an API on Wednesday for accessing market data and executing Quick Sell / Quick Buy orders.  

However those familiar with Camp BX website might have noticed additional options such as:  

  • FOK Fill (Fill-Or-Kill)
  • AON Fill (All-Or-Nothing)
  • Market Price Orders
  • Custom Expiry Dates
  • Stoploss Orders
(https://CampBX.com/main.php)

These features are modeled after standard SEC guidelines, and try to emulate functionality you have come to expect from your broker as closely as possible.

We want to know if you would like to see this functionality exposed through API calls!  Please comment and share your thoughts.  We will use the feedback / suggestions from this thread to prioritize our development team's efforts.

Thank you,
      Keyur



191  Bitcoin / Bitcoin Discussion / Re: CampBX Launch - Free Trades for All Bxlievers! on: July 18, 2011, 12:51:11 AM
FYI: This is what I see using firefox 3.6 and clicking on the testnet.campbx.com webpage.



TeraPool: Please use the link https://campbx.com/testnet/ instead.

Our old SSL certificate has been replaced, and that's why you will get a warning from the browsers.

Thank you,
     Keyur


192  Bitcoin / Bitcoin Discussion / Re: Camp BX - Free Trades Reminder! on: July 18, 2011, 12:35:45 AM

Hi everyone,
     We are listed on Bitcoin Charts now!

A big thank you to the folks behind Bitcoin Charts and Bitcoin Watch for setting us up, and putting together an excellent dashboard for Bitcoin.

Thank you,
     Keyur


193  Bitcoin / Bitcoin Discussion / Re: Camp BX - Text Message (SMS) Feature Now Available! on: July 16, 2011, 01:38:13 AM
You guys are so awesome  Grin. Been using your platform for the past few days, and damn I'm impressed.

Thank you Vegetta!  Happy to have you on Camp BX!

- Keyur

194  Bitcoin / Bitcoin Discussion / Re: Camp BX - Text Message (SMS) Feature Now Available! on: July 16, 2011, 01:37:27 AM
This is a great feature. Thanks for adding it!

    Our top customers will always have this feature available for free.  However for the first month, this feature is free for all Camp BX users!

However, I'm concerned about what the cost might be. I don't do a lot of trading so I'll probably never be a "top" customer.


Hi Error,
    Keep in mind that we also include the Friends & Family referral program towards identifying top customers!

The price for SMS alerts is $2 per month, so it may make sense to opt-in if you plan on keeping Bitcoins or USD exceeding $1,000 in value.

Hope this helps,
     Keyur

195  Bitcoin / Bitcoin Discussion / Re: I noticed some CampBX ads... on: July 15, 2011, 07:56:43 PM
Don't get be wrong, I really hope CampBX takes off. This ad just seemed a little hyperbolic. Do they know something I don't? What argument would you use to justify their statement? is it justifiable?

Damien,
     Thank you for your kind words about CBX! 

     To clarify, we have looked in to growing through acquisition or partnerships, and performed due-diligence in to TradeHill USA, TradeHill Ltd., Mutum Sigilum (aka Mt.Gox) and pulled all their records for review.  We also had phone conversations with multiple European regulators to ask about all companies. 

Thank you,
     Keyur

196  Bitcoin / Bitcoin Discussion / Re: I noticed some CampBX ads... on: July 15, 2011, 07:33:40 PM
We haven't really tried to make a big issue out of this but TradeHill is based in both the US in addition to Chile and always has been.
We follow regulations regarding MSB, AML and we maintain a US business account at an FDIC insured bank.

Jered, just PMed you about these.

Thank you,
     Keyur

197  Bitcoin / Bitcoin Discussion / Camp BX - Text Message (SMS) Feature Now Available! on: July 15, 2011, 02:18:14 PM

Hi everyone,

    We are happy to announce that we have completed Camp BX integration with a SMS (text-message) gateway.  This allows our users to benefit from 2-factor authentication, and we have more features coming out soon including instant trade notifications on your phone.

     Text Message 2-factor authentication greatly increases your account security by authenticating your logins and Bitcoin transfers using two distinct channels: your Internet connection and your Cellular network.
    If your account credentials are compromised due to a malware or a hacker attack, your account is still protected as long as you have your cell-phone.

    How does it work? Once we activate this feature for your account, every attempt to login or transfer Bitcoins will send a text message to your phone containing a 5-letter case-sensitive code. This code must be entered correctly for a transaction to proceed.

    How to Activate 2-factor: You can opt in for the Text Message 2-factor authentication feature by submitting a ticket to the helpdesk containing your email, username, last transaction date, and your phone number at https://CampBX.com/contact.php  This feature is available only for phone numbers in the USA.

    Why can't I edit my own phone number? If you can edit your phone number, so can a hacker. That is why this field is managed by our helpdesk to ensure proper security.

    Our top customers will always have this feature available for free.  However for the first month, this feature is free for all Camp BX users!

Thank you,
     Keyur

PS: Final day of free trades!


198  Bitcoin / Bitcoin Discussion / Re: Camp BX - Free Trades Reminder! on: July 14, 2011, 03:03:45 AM

@All We will be on Bitcoin Charts middle of next week! 

Dev teams are moving ahead full-steam with the API testing, and as soon as the API goes live we will be published on Bitcoin Charts website as well!


199  Bitcoin / Bitcoin Discussion / Re: Camp BX - Free Trades Reminder! on: July 14, 2011, 03:03:03 AM


how's business going?

btw, can you make me a banner for my CampBX referral link?

i'm kinda noob at that stuff.

MSD,
      We are pushing to cross the 2,000 active users mark, which we believe to be the tipping point for any Bitcoin website.

Glad to see that you using the friends & family referral program!  We will get you a JPG banner tomorrow.

Thank you,
    Keyur



200  Bitcoin / Bitcoin Discussion / Camp BX - Free Trades Reminder! on: July 13, 2011, 09:10:49 PM
Good afternoon everyone,
         Camp BX has commission free-trades for three more days, so make the best best use of this promotion while it is still active!  All commission accrued by Friday 5 PM will be refunded in full on Sunday.

Happy trading!
https://CampBX.com/main.php

Thank you,
    Keyur

PS: Stay tuned for one more news tomorrow! 
You can follow our news announcements via our Twitter or Facebook feeds:
Twitter: https://twitter.com/campbx
Facebook: https://www.facebook.com/pages/Camp-BX/243377035674755


Pages: « 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!