Bitcoin Forum

Economy => Trading Discussion => Topic started by: wowthere on March 08, 2017, 12:38:33 AM



Title: none
Post by: wowthere on March 08, 2017, 12:38:33 AM
to consider api errors, no time to modify it so i delete these code


Title: Re: Auto Trading by MATLAB (Poloniex API as Example)
Post by: ArdiPrabowo on March 08, 2017, 02:40:31 PM
iam not understand youre write in matlab progame
is simple how i can to work in my trading, where i can write youre progame in application my trading

you can share setting youre progame in poloniex use video


Title: Re: Auto Trading by MATLAB (Poloniex API as Example)
Post by: Gnubrew on June 18, 2017, 04:08:46 PM
Thank you, wowthere!

The code works fine for me :)

as a newbie it took me some effort to figure out what to write in %create a nonce of your style
finally I am using this code in POLO_Call:
timestamp = num2str(round(java.lang.System.currentTimeMillis / 100));
nonce = timestamp;

Your scripts are simple to use and perfectly provide historical data to run basic analyses.

Also I use them to keep an eye on my balances..
(I am using command='returnCompleteBalances'; without a currency parameter..
... it helps me not miss an ICO on poloniex, too)

If anybody plans to integrate another exchanges with your scripts, I would recomend the
API of crypotwat.ch - it offers data from a broad range of exchanges.

A question regarding your automatic trading set up?
Did you manage to get a websocket connection
to wss://api.poloniex.com to subscribe data feeds like the actual order book?

Finally, why dont you want to put your code on github.. it would make it easy to maintain and fork.




Edit: remove typos and added my nonce code