Bitcoin Forum
September 24, 2025, 06:23:58 AM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Micro Earnings / Re: [ANN] Alien Faucet - 4010 Satoshi an HOUR (limited) on: March 06, 2015, 06:07:20 AM
New alien?
http://prntscr.com/6daqht
2  Economy / Investor-based games / Re: [6170 Payouts] CoinsDouble.Com - 100% PROFIT in 100 HRS - 10% INSTANT REF PAY on: March 05, 2015, 03:09:06 AM
I'm waiting my coins

http://prntscr.com/6cutzs
http://prntscr.com/6cuudo

My addresses for:
Xpy -> PN9VrXfKxCi4wvff4bPe4EoHbWmRKiRLLP
DOGE -> DSB3jX1MNAkZEsd9NxXgZEBdT7dqN66reQ
BtC -> 13AnXk1sgvTL2Q4CHd7rRCsUkYUGJeMb7T
3  Economy / Investor-based games / Re: [2539 Payouts] CryptoTriple.org - *SPECIAL OFFERS* New Plan: 900% after 100 hour on: March 03, 2015, 04:02:08 AM

https://dogechain.info/tx/04ecf00288b6360528ae1edb0f95b4d3ff22948b431b321a71f3b532e35dc68d

My address
DSB3jX1MNAkZEsd9NxXgZEBdT7dqN66reQ
4  Economy / Investor-based games / Re: [2025 Payouts] CryptoTriple.org - *SPECIAL OFFERS* New Plan: 900% after 100 hour on: March 02, 2015, 03:04:32 PM
http://prntscr.com/6brxpj

tX ID
https://dogechain.info/tx/a6e56fd166a5d8a07a8031dcc2da3e9aee4f63390ebf5e6651dad1d186df0591

Send doge for
DSB3jX1MNAkZEsd9NxXgZEBdT7dqN66reQ
5  Economy / Investor-based games / Re: [1559 Payouts] CryptoTriple.org - *SPECIAL OFFERS* New Plan: 600% after 100 hour on: March 02, 2015, 02:03:17 AM

tx ID:
https://dogechain.info/tx/a916c145c65d443d417d2b0e274f85b688e9cc4a770651e4b689d0d41790c88d
https://dogechain.info/tx/bda9b5e024524e46181a849341a7768e1ff628f20b19d3c070aba59e578615e9

Send doge here:
DSB3jX1MNAkZEsd9NxXgZEBdT7dqN66reQ
6  Economy / Investor-based games / Re: [785 Payouts] CryptoTriple.org - 200% PROFIT in 100 HRS - 10% INSTANT REF PAY on: February 28, 2015, 08:38:30 PM

send doge for DSB3jX1MNAkZEsd9NxXgZEBdT7dqN66reQ
7  Bitcoin / Project Development / Re: Haasonline Simple Trade Bot For BTCe and Bitstamp[Main topic] on: February 26, 2015, 04:54:10 PM
8  Bitcoin / Project Development / Re: Haasonline Simple Trade Bot For BTCe and Bitstamp[Main topic] on: February 25, 2015, 06:11:52 AM
I'm trying to set api's and this error appear....what's happening?? And what I can do??
http://prntscr.com/69jhtd
9  Economy / Games and rounds / Re: BTCJam forum name verification on: February 17, 2015, 03:22:35 AM
'I want to link my Bitcointalk name with BTCJam's. Verification code: 6d25cfde-b4e3-487a-830d-9e4dcfe7d363'
10  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: February 14, 2015, 07:33:36 AM
Running auto, but when all tasks comPlete I need to restart manually….It’s Possible to restart automatic??

Just add third rule "Enable all rules" you will get a loop.

How I can do this??


Be more specific coz I won't get an infinity loop.....Send screens of every rule please
11  Bitcoin / Pools / Most profitable btc pool on: February 13, 2015, 02:56:38 AM
I've 10 tH/s and want to put it to mine, but I dont know which are the most profitable pool, anyone can help me..
12  Alternate cryptocurrencies / Pools (Altcoins) / Most profitable btc pool on: February 12, 2015, 02:11:25 PM
I've 10 tH/s and want to put it to mine, but I dont know which are the most profitable pool, anyone can help me......Screens will be good too.
13  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: February 03, 2015, 12:40:46 AM
Running auto, but when all tasks comPlete I need to restart manually….It’s Possible to restart automatic??

Just add third rule "Enable all rules" you will get a loop.

How I can do this??
14  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: February 02, 2015, 04:46:42 PM
Running auto, but when all tasks comPlete I need to restart manually….It’s Possible to restart automatic??


my rules
var executed=false;
function executeRule()
{
 executed=true;
 if(trader.get("ApiLag")>10)
 {
 trader.log("Api lag is to high");
 trader.delay(1,"executeRule()");
 return;
 }

 var amount = trader.get("Balance","BTC");

 var price = trader.get("BTCUSDexchange" , "LastMyBuyPrice");
 price += price * 0.008;

 trader.sell("BTCUSDexchange" , amount , price);
 trader.groupDone();
}

var baseVariable = calcBaseVariable();
function calcBaseVariable()
{
 baseVariable = trader.get("BTCUSDexchange" , "LastMyBuyPrice");
 baseVariable += baseVariable*0.01;
 return baseVariable;
}

trader.on("LastPrice").changed()
{
 if(executed)return;
 if(symbol != "BTCUSDexchange")return;
 calcBaseVariable();
 if(value <= baseVariable) executeRule();
}

and
var executed=false;
function executeRule()
{
 executed=true;
 if(trader.get("ApiLag")>10)
 {
 trader.log("Api lag is to high");
 trader.delay(1,"executeRule()");
 return;
 }

 var amount = trader.get("Balance","USD");

 var price = trader.get("BTCUSDexchange" , "LastPrice");
 price -= price * 0.01;

 trader.buy("BTCUSDexchange" , amount / price , price);
 trader.groupDone();
}

var baseVariable = calcBaseVariable();
function calcBaseVariable()
{
 baseVariable = trader.get("BTCUSDexchange" , "LastMySellPrice");
 baseVariable += baseVariable*0.01;
 return baseVariable;
}

trader.on("LastPrice").changed()
{
 if(executed)return;
 if(symbol != "BTCUSDexchange")return;
 calcBaseVariable();
 if(value <= baseVariable) executeRule();
}

Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!