Bitcoin Forum
May 28, 2024, 11:31:12 AM *
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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 [40] 41 42 43 44 45 46 47 48 49 »
781  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: December 15, 2012, 02:00:15 PM
Aido, are you interested?

https://bitcointalk.org/index.php?topic=130966.0


782  Economy / Trading Discussion / Formal definition of a trading language on: December 15, 2012, 01:59:11 PM
Hi!

I thought about a way to describe trading strategies in a well-defined language. Still working on the concept, but here is a simple example, what it could look like:

Code:
rule "Compare btc-e sma"
     when
( BTCe.btc<=>usd.ticker.buy * 110% > BTCe.btc<=>usd.sma(6h) ) && ( BTCe.btc.balance() > 1.0 )
     then
BTCe.btc<=>usd.sell( BTCe.btc.balance() - 1.0)
end

The overall structure is taken from drools (that's what I want to translate it to).

Most of these expressions follow the scheme

<tradesite>.<currency pair>.<method>
or
<tradesite>.<currency>.<method>

which is quite easy to parse because the '<=>' indicates a currency pair in my app. laSeek already contributed the first construct, namely the '%' suffix. Times are always handled as microseconds here, which gives you sometimes numbers, that are not very convenient to read. So I wanted to use suffixes, like 's', 'm' and 'h' (maybe even 'd' for days) to make the numbers more readable. So 1s just translates to 1000000 here.

This structure would be simple enough to translate it automatically, which is important to me. My idea so far was to write an Antlr grammar to parse the language, because it has a non.restrictive license and everyone could add his own productions.

Is there any interested in such a definition? People willing to collaborate to create one?

Ciao,
Andreas
783  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: December 03, 2012, 08:38:58 PM
Could be, that the URL is the problem, since gox returns 403?

https://mtgox.com/api/1//generic/private/info?raw

I can't find the '?raw' argument in the docs? And I would avoid the doubled slash, although I don't think it's the actual problem.
784  Local / Deutsch (German) / Re: Jemand Erfahrung mit Zoll und Bitmit? on: November 30, 2012, 04:15:52 PM
Dann musst Du noch aufpassen wegen CE-Zeichen. Auch da gab es in letzten Monaten ne Menge Stress mit Elektronik-Sachen.
785  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 29, 2012, 07:59:39 PM
It really seems, these 2 project complement each other in some ways. I don't have a good trading code yet, but a gui and a trade site interface to connect to trade sites without any external services.
786  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 29, 2012, 07:27:13 PM
In other news, I think it might be a good idea to actually set up a forum for serious development talks and discussion instead of using this single thread.  I have the resources to set one up right now.

Would non-isis users be allowed to join such a forum? I'm interested in a working trade algo, too.
787  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 29, 2012, 05:43:21 PM
Yeah, I implemented this more or less the same way in my ChartAnalyzer class. But I meant the actual trading algo. I'm working with rule sets at moment to separate the trading code from the actual trade app. Would be cool to end up with a domain specific language to describe the actual trading.
788  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 29, 2012, 04:38:27 PM
I wonder, if there's a way to describe a trading strategy in a system independent, more descriptive, way...
789  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 24, 2012, 08:01:53 PM
Take a look at the btc-e.com website. I like their GUI a lot, so I tried to copy it in my app:



790  Local / Projektentwicklung / Re: bitcoin app sdk/ modul/ interface/ api ? on: November 17, 2012, 01:36:13 PM
Ich bastle an einem Java API für exchanges. Ist aber vermutlich nicht genau, was Du suchst...
791  Economy / Goods / Re: I'll buy one Porsche 911 for 1BTC. on: November 17, 2012, 01:24:45 PM
Why not buy it today?

http://www.ebay.com/itm/2012-Matchbox-Police-Porsche-911-Turbo-GUARDS-RED-MINT-/160876403246?pt=Action_Figures_Diecast_US&hash=item2574fb1a2e
792  Alternate cryptocurrencies / Altcoin Discussion / Re: Meta-Exchange: Use LTC on BTC infrastructure on: November 17, 2012, 12:56:02 PM
I once started a data model for an ltc exchange, but it seems there's not much interested in such an exchange...
793  Alternate cryptocurrencies / Altcoin Discussion / Re: Meta-Exchange: Use LTC on BTC infrastructure on: November 17, 2012, 10:48:32 AM
@rabbit: it seems, noone is using bitparking or vircurex? Maybe users are content with btc-e alone?
794  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 14, 2012, 04:40:36 PM
Hi!

You code is only stored local, you haven't used github or anything like that?

As you stated, 100 plus classes would take me a long time to understand. And as a java novice I may not ever understand it. I think I'll concentrate on understanding how IsisATP does its thing first before biting off more than I can chew.

Since I'm the only developer, I don't use svn or git yet. Just drop me a PM, if you want to check the sources, and I'll upload it on one of my servers and give you temporary URL to download it.
But, as I said, it's quite rough yet and work in progress. I'm still struggling with some method to get the automatic trading going, so I guess I'm behind the Isis-project.

Ciao,
Andreas
795  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 14, 2012, 12:43:27 PM
I was told, that it's 'technical trading'. But I don't speak english, so I just accepted the term.

Btw: sorry for my late reply on your query for my sources, but I just overlooked that line in your response. Sad  Or did you edit it? As I said: I can give you the sources, but it's > 100 classes and with the required jars an 8.8 MB zip file. And it's far from being complete. I'm still working on the trading interface and only the gox and btc-e implementation are halfway complete.
796  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 14, 2012, 09:42:03 AM
Care to share?

I can show you my sources, but I guess it'll take you too much time to study them?
797  Alternate cryptocurrencies / Altcoin Discussion / Re: Bitparking Litecoin Exchange on: November 13, 2012, 08:00:17 PM
A graph would be nice, but the site just lacks the trades....my app would draw a graph, if there were data to use...
798  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 13, 2012, 06:55:33 PM
That's good and necessary....

I use factor 100000000 for the price and the amount. However, if you start calculating with those amount and do (amount * price) / 100000000 you have a problem with longs. I use an ugly hack and cast temporarily to double, but I guess I'll use some BigDecimal-like format in the future. Just a lot of places, where I have to modify my code... Sad
799  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: November 13, 2012, 10:04:44 AM
I use log4j in my app. It should fill your requirements.
800  Economy / Services / Re: Android App Development - Testing the waters on: November 12, 2012, 12:51:31 PM
Now I'm on my PC again...

I just want to port some parts of my trading app to android.

Maybe the trading UI: https://i.imgur.com/MqHfF.jpg

and some parts of the bots: https://i.imgur.com/7YNbM.jpg
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 [40] 41 42 43 44 45 46 47 48 49 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!