Bitcoin Forum
September 12, 2024, 10:26:16 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [VBNET] need help  (Read 1046 times)
LeChatNoir (OP)
Hero Member
*****
Offline Offline

Activity: 699
Merit: 501


Coinpanion.io - Copy Successful Crypto Traders


View Profile WWW
May 03, 2013, 06:51:03 PM
 #1

Hi guys i'm looking for someone who can program a VBNET very simple trading interface for this exchange http://www.mcxnow.com/exchange/MNC.
Anyone willing to help me?

Coinpanion.io - Copy Successful Crypto Traders
gweedo
Legendary
*
Offline Offline

Activity: 1498
Merit: 1000


View Profile
May 03, 2013, 06:55:52 PM
 #2

Does it have to be VBNET? If you want I can code up a simple java trading app for you. PM me if interested
LeChatNoir (OP)
Hero Member
*****
Offline Offline

Activity: 699
Merit: 501


Coinpanion.io - Copy Successful Crypto Traders


View Profile WWW
May 03, 2013, 07:03:17 PM
 #3

Yes it has to be VBNET because it's the only language i know.
The idea is to pay someone to show me how to authenticate, insert order and cancel orders in VBNET, from that point i can develop the algo on my own.

Coinpanion.io - Copy Successful Crypto Traders
zeocrash
Full Member
***
Offline Offline

Activity: 134
Merit: 100


View Profile
May 03, 2013, 07:49:51 PM
 #4

Do they have an API??
LeChatNoir (OP)
Hero Member
*****
Offline Offline

Activity: 699
Merit: 501


Coinpanion.io - Copy Successful Crypto Traders


View Profile WWW
May 03, 2013, 07:59:41 PM
 #5

Do they have an API??


Yes they do but there's no documentation yet.
The developer said to look at the code of the page to know how to interface trading applications with the exchange.
Have no idea how to that but i'm sure it's possible.

Coinpanion.io - Copy Successful Crypto Traders
zeocrash
Full Member
***
Offline Offline

Activity: 134
Merit: 100


View Profile
May 03, 2013, 08:24:23 PM
 #6

I've had a look through the code (my javascript is a little rusty but i think i get the idea).

It seems that orders are entered using an HTTP Get statement

for example to get your balance go to the URI "http://www.mcxnow.com/info?cur=MNC" (you need to be logged in)


for the order book "http://www.mcxnow.com/orders?cur=MNC" does not require login



I'm still figuring out the Buy and sell functions and the login.
LeChatNoir (OP)
Hero Member
*****
Offline Offline

Activity: 699
Merit: 501


Coinpanion.io - Copy Successful Crypto Traders


View Profile WWW
May 04, 2013, 05:29:44 AM
 #7

I've had a look through the code (my javascript is a little rusty but i think i get the idea).

It seems that orders are entered using an HTTP Get statement

for example to get your balance go to the URI "http://www.mcxnow.com/info?cur=MNC" (you need to be logged in)


for the order book "http://www.mcxnow.com/orders?cur=MNC" does not require login



I'm still figuring out the Buy and sell functions and the login.

Have you figured that out?

Coinpanion.io - Copy Successful Crypto Traders
LeChatNoir (OP)
Hero Member
*****
Offline Offline

Activity: 699
Merit: 501


Coinpanion.io - Copy Successful Crypto Traders


View Profile WWW
May 05, 2013, 08:08:42 PM
 #8

I tried to login using the following code but had no luck

 Dim URL As String = "http://www.mcxnow.com/login.php?user=username&password=password"
      Dim request As WebRequest = WebRequest.Create(URL)
      request.Method = "POST"
      request.ContentType = "application/x-www-form-urlencoded"
      Dim response As WebResponse = request.GetResponse()
      Dim reader As StreamReader = New StreamReader(response.GetResponseStream())
      Dim str As String = reader.ReadToEnd()
      TextBox1.Text = str

this is the login information i've found in the code of the page i'm trying to connect to

<div id="logincontainer"><a href='javascript:document.login.submit()'>Login</a><form id='login' name='login' method='post' action='?login'><input type='text' name='user' placeholder='username'><input type='password' name='pass' placeholder='password'><input type='submit' style='display:none;'/></form></div>

What am i doing wrong?

Coinpanion.io - Copy Successful Crypto Traders
andycee
Sr. Member
****
Offline Offline

Activity: 462
Merit: 500


View Profile
February 10, 2014, 09:31:18 AM
 #9

Old thread, I know...

Did you get anywhere with this ?


https://mcxnow.com/orders?cur=MAX

..returns an orderbook in XML, as expected
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!