Bitcoin Forum
May 28, 2024, 04:27:02 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 »
681  Bitcoin / Development & Technical Discussion / Re: Bitcoin Development API's on: April 06, 2013, 06:52:34 PM
What language you want to use? (I work with Java mainly).
682  Economy / Trading Discussion / Re: trading software using bitstamp API? on: April 06, 2013, 06:06:48 PM
Are you a coder?

I'm working on a implementation, but still struggling with some details, like the fees...

683  Economy / Trading Discussion / Re: Bitcoin Trading Software for MtGox - With Neural Networks. on: April 05, 2013, 05:21:38 PM
Hey! Java is great!

Wrote my trading app in Java, too...
684  Bitcoin / Project Development / Re: [Project] Open Bitcoin Trader on: April 05, 2013, 04:34:44 PM
You need a web designer for a desktop app?  Huh
685  Bitcoin / Project Development / Re: [BETA]Bitfinex.com first Bitcoin P2P lending platform for leverage trading on: April 05, 2013, 01:12:45 PM
If it's close enough to the other APIs, I might support such an API, too...
686  Economy / Exchanges / Re: Any open source bitcoin/currency exchange software? on: April 04, 2013, 12:14:36 PM
Let us know, if you start a thread there. I'd have to enter the model into ArgoUML again, before I could post an image of the data model.
687  Economy / Exchanges / Re: Any open source bitcoin/currency exchange software? on: April 03, 2013, 11:40:27 AM
I'm willing to help with the data model and with the code, as I said.
688  Economy / Exchanges / Re: Any open source bitcoin/currency exchange software? on: April 03, 2013, 08:27:36 AM
Running an exchange here (Germany) means, that you are practically a bank. You have to report monthly, have to hire someone just to check for money laundering and there are more regulations like these.
689  Local / Suche / Re: Suche Programierer für ein trader on: April 02, 2013, 12:47:41 PM
Ich hab ein Java-Framework, welches leider kein bitcoin-24 unterstützt (kenne deren API nicht).

Ggf. möchte es jemand für Deine Zwecke erweitern?



690  Economy / Trading Discussion / Re: MTGOX Trading Questions on: April 02, 2013, 12:36:03 PM
The graph was one of the reasons, why I started my software...



I can read their graph now, but still don't consider it very convenient...

BTW: always looking for Java coders to contribute to the software... Smiley
691  Economy / Exchanges / Re: Any open source bitcoin/currency exchange software? on: April 02, 2013, 12:28:00 PM
I think the intersango code is opensourced?

I also started a data model for an exchange, but especially in the eurozone, I see a lot of legal issues with an exchange,  Angry
692  Economy / Trading Discussion / Re: API fail part II: BTC-E faceplant on: March 31, 2013, 12:37:04 PM
I can use some of the btc-e API yet. But I'm still struggling with some features. Would be cool if I could discuss deposit and withdrawal with someone.
693  Local / Anfänger und Hilfe / Re: btc-e API`s? on: March 28, 2013, 06:29:41 PM
Bei den API Demos hab ich doch ein Java Beispiel geposted.

Nonce ist einfach die aktuelle Timestamp und wird dann bei jedem Zugriff hochgezählt.

Evtl. könnten wir auch irgendwie kooperieren bei einer Trading App?
694  Economy / Goods / Re: !!! [WTS] 2007 PORSCHE CAYMAN S - 8200 MILES !!! on: March 28, 2013, 12:14:21 PM
I like the license plate idea, please don't put a sticker on this car!
LOL that was my thought as well. Whoever puts a bumper sticker on this car deserves to be shot.

Not everyone has the option for such a number plate...over here, the sticker is more or less the only option...  Sad

695  Local / Trading und Spekulation / Re: Spielerei: ein Tradebot on: March 28, 2013, 12:08:44 PM
Oft funktionieren eher simple Sachen (z.B. das mit den 2 Durchschnitten oder "Verkaufen wenn der vorige Höchstwert um 5% unterschritten wird") fast noch besser als diverse komplexe Strategien wie es z.B. http://code.google.com/p/ga-bitbot/ macht (wobei ich den noch nicht getestet habe...).

Für solche Sachen hab ich die Option eingebaut, Regeln über Drools auszuführen. Sieht im Moment noch recht kompliziert aus, weil ich noch keine vernünftige Trading-Sprache entwickeln konnte (auch dafür such ich Leute für ne Kooperation...

Code:
package TradeRuleSet1

global de.andreas_rueckert.chart.ChartProvider ChartProvider
global de.andreas_rueckert.fee.FeeCalculator FeeCalculator
global de.andreas_rueckert.trade.order.OrderBook OrderBook

rule "Compare btc-e sma"
     when
        eval( ( AccountManager.getBalance( "BTCe", "btc<=>usd") > new Price( "1.0"))
              && ChartProvider.getTicker( "BTCe", "btc<=>usd").getBuy() > ChartProvider.getSMA( "BTCe", "btc<=>usd", 6L*60L*60L*1000000L).multiply( new Price( "1.1")))
     then
         System.out.println( "Sell btc?");
end

Die Idee mit der ChartAnalyse ist wirklich nett, und ich hab dafür auch Funktionen eingebaut, aber (stellt euch dieses 'aber' ungefähr 1m gross in roter Neonschrift vor): der Bitcoin-Markt ist ziemlich unreguliert. Quasi Wild-West. Wenn es mal wieder Gerüchte über ne Firma wie BFL gibt, dass der Asic Morgen rauskommt (oder auch erst 2015), dann spielen sämtliche kleinen Märkte (Exchanges) verrückt. Dort können nämlich einzelne grössere Mitspieler durchaus den Markt in eine Richtung bewegen, die sie gerade brauchen. Wie will man das mit einer Chartanalyse erfassen?

Das ist ja der Grund, weshalb ich mich aktuell eher auf andere Sachen konzentriere.

Hier mal ein Screenshot, damit ein evtl. Mitstreiter sieht, dass was läuft:



Wie gesagt: bin immer offen für tolle Ideen, und die Funktionen zur Analyse sind teilweise schon drin. Ich glaub da aktuell nur nicht wirklich dran...   Roll Eyes

Ciao,
Andreas

696  Economy / Goods / Re: !!! New Pics [WTS] 2007 PORSCHE CAYMAN S - 8200 MILES !!! on: March 27, 2013, 03:16:14 PM
Whoever buys this wonderful car should add a sticker 'Bought with bitcoins'  Cool
697  Local / Trading und Spekulation / Re: Spielerei: ein Tradebot on: March 27, 2013, 11:15:29 AM
Na ja, jedesmal wenn sich eine Arb-Gelegenheit ergibt, sollte man sie nutzen, oder?
698  Local / Trading und Spekulation / Re: Spielerei: ein Tradebot on: March 26, 2013, 05:27:51 PM
Falls jemand ne gute Idee für eine Trading-Strategie hat: ich bastle an einem entpsrechenden Framework und bin immer an einer Zusammenarbeit interessiert...
699  Economy / Trading Discussion / Re: Isis ATP [Automated Trading Platform] - Discussion on: March 24, 2013, 04:23:28 PM
I guess the nonce is created by the app...?
700  Bitcoin / Project Development / Re: Bitcoin Price App on: March 24, 2013, 12:13:05 PM
I think you can run Phonegap on the desktop as well?

So this app would work, too?

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

And converting it to gox would require minor modifications...
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!