Bitcoin Forum
June 23, 2024, 10:07:55 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Trading Discussion / Re: Investment Bitcoin | Instant WITHDRAWAL, 5% INTEREST DAILY on: February 23, 2014, 11:24:10 AM

Basically, consider this:

Invest $1000 in Leancy.

In a year, they will generate (with your $1000) $54,211,841,600.00 (do the math, 1000 * 1.05 * 365).

Conclusion: Ponzi Scheme.
2  Economy / Service Discussion / Re: how to set a stop loss on btc-e? on: January 08, 2014, 06:56:11 PM
BTC-E does not offer such an option.

However, Qt Bitcoin Trader does. You can download it here: http://sourceforge.net/projects/bitcointrader/
You need to set up an API key for it, which you can do on your BTC-E profile.

On this trader you can set up rules, such as: if the market price of BTC goes below $500, sell all BTC at highest buy rate (and a whole lot of other options).
3  Economy / Trading Discussion / Re: HAL 10K - PHP Open source Trading bot on: January 07, 2014, 04:56:30 PM
intrd, thank you for your quick reply Smiley

I have one more question (which I like to illustrate).

http://postimg.org/image/j785rn5wf/

This is while using Live Trading (with paper) with the following config:

Code:
	/* Custom trading algoritm parameters */
$percentual=0.6; //Minimum percentage of profit on the purchase (Use the current fee applied by MtGox);
$bidfee=0.6; //Just for simulation purposes (Use the current fee applied by MtGox);
$up_diff=5; //(sell) profit points (in USD) above the purchase price;
$up_diff_inv=0; //(sell) stop loss (in USD) below the purchase price;
$down_diff=2; //(buy) profit points (in USD) below the selling price;
$down_diff_inv=0; //(buy) stop loss (in USD) above the selling price;
$secure_ticker=300.99500; //Security value that prevents the bot to make sales below a certain value;
$emacross=true; //Turn on EMA crossover method (if emacross=true, Simple Market Direction Method automatically is turned off);
$emaShort=10; //EMA short period(in minutes because you are using $interval=60;) for EMA crossover method;
$emaLong=21; //EMA long period(in minutes because you are using $interval=60;) for EMA crossover method;
$emaDiff=0; //EMA difference between short and long crossover;
$last_two_orders=false; //Base next move on the last two transactions value;
$interval=10; //Bot loop interval (in seconds);
$timeout=80; //Timeout in seconds for completion of the bid/ask;
$sudden_mode=0; //When active, the bot makes a purchase at the sale price, or a sale at the purchase price. Used only when there is a need for immediate order processing. It will be disabled after the order is processed;
$reverse_prices=0; //Same as Sudden, but definite. It will never turned off;
$manualstoploss=0; //When active, in every action stop-loss requests remote confirmation of the bot operator;
$dire=6; //Amount of past intervals used in the identification of Simple Market Direction Method;
$dire_limbo=13; //Minimum variation (in USD) to define whether the direction is out of limbo or not (limbo: when the bot still trying to set the direction of the market);
$vol_limbo=450.78526468; //Minimum volume (in USD) to consider an abnormal change at the volume of an interval to another;

/* Backtesting and Paper trading */
$fake=true; //Turns on/off simulation (backtesting);
$paper=true; //Paper trading is simulation with Real Live Tickers but w/ fake money balance. (If Paper trading is true, $fake needs to be defined to "true");
$fake_btc_balance="2"; //Initial amount of BTC for the simulation;
$fake_btc_usd_buyedprice="990.80000"; //Initial purchase price of BTC (ATENTION: you need to set this value for Backtesting and Paper trading);
$fake_datetime_of_firstbid="2014-01-07 00:00:00"; //Initial datetime (same as first line of $fakegox_tickers file below)
$fakegox_tickers=$datadir."fakegox_tickers(test3).txt"; //Access http://bitcoincharts.com/charts/mtgoxUSD, set the period (must be a period that supports interval 1min), click Raw Data, copy/paste the contents of the table in a TXT file and replaces tabulations by "," comma);

In the middle, there is a lot of fluctation in the price, and the bot buys and sells constantly at the perfect price.

My question: Is this possible when you trade with real money? Because when that's the case, this config is very profitable  Shocked
4  Economy / Trading Discussion / Re: HAL 10K - PHP Open source Trading bot on: January 07, 2014, 09:15:44 AM
First of all, thanks for making this amazing opensource tradingbot! Cheesy
The graph works like a charm (but sometimes the 'buy' and the 'sell' points are not on the yellow USD/BTC line)

There is however one problem I come across everytime I run the code.

Code:
$ 1035.015 <up/up> bid @ 1014 stoploss: 1040 (last: ask @ 1020 [profit])
*** EMAShort1032.44 / EMALong1028.07
*** High volume detected! 146994.68
*** Checking for open orders...  no orders.
$ 1042 <up/up> bid @ 1014 stoploss: 1040 (last: ask @ 1020 [profit])
*** #Hit wall!
*** #SUDDEN MODE on!
$ bid 2.0119309811464 @ $1044.1 (prev: 1020) - 2014-01-07 09:13:10
array(2) {
  ["result"]=>
  string(7) "success"
  ["data"]=>
  string(26) "98374829984767289039847839"
}
*** Processing order... done!array(8) {
  ["type"]=>
  string(3) "bid"
  ["amount"]=>
  float(2.0119309811464)
  ["price"]=>
  string(6) "1044.1"
  ["datetime"]=>
  string(19) "2014-01-07 09:13:10"
  ["success"]=>
  string(26) "98374829984767289039847839"
  ["status"]=>
  string(9) "processed"
  ["prem"]=>
  string(4) "loss"
  ["sudden_mode"]=>
  int(0)
}

*** EMAShort1036.99 / EMALong1030.62
*** Checking for open orders...  no orders.

After 'Processing...Done! He gives some weird code lines what seems to be code that need to be executed. Does anyone know how to solve this?

Also, (newbie question) where can you see the profit you made?

Thanks in advance!
5  Other / Beginners & Help / Re: What's do you expect to see from Bitcoin in 2014? on: January 06, 2014, 11:36:09 PM
I expect to see more and more companies accept bitcoin (and maybe even litecoin) in 2014.
Also, my guess is that countries will have a more accepting attitude towards bitcoin.

This is my first post. I actually want to post in the Trading section, but I found out I had to post here to do that.
So here you are Wink
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!