| New signals service! | |
|
|||||||
| Register in Forex TSD! | |
|
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time). Click here to register and get more information |
|
![]() |
|
|
LinkBack (15) | Thread Tools | Display Modes |
|
|||
|
It looks like what you can also do in the casino, at the roulette-table. Put your money on black, and when the result is red, double your stake on black. As long as you everytime double the stakes when you lose, eventually black will come out and you will win a little bit.
So you will win a lot of small amounts, and the system seems good. And you will lose a few huge amounts, at the moments you have very bad luck. At the end, when you play/trade long enough, you will lose all your money. ![]() |
|
|||
|
Hedge
Quote:
Looks good hedging system, but do u have any statistical data from various data sample that said " I found the price usually can go back just for 3 or 4 times,maybe less, in such as range about 90~120pips ". in other words...did u've backtesting or forwardtesting this system ? thx ============== Forex Indicators Collection |
|
||||
|
Deja vu
I tried exactly this system about year ago with bad results. It seems quite profitable at first but then I margined out very often.
I thought I have the Holy Grail but the truth is it's not (yet). Maybe I gave up too soon and could tweak the settings a bit. Maybe some filter to trade only during volatile times... But I think it has some potential. It was one of me first EAs. I think I deleted it. Maybe not will try to dig it out. ![]() |
|
||||
|
Quote:
Last edited by harryhid; 10-22-2006 at 09:29 AM. |
|
||||
|
Quote:
|
|
|||
|
Lots Optimised
Hi Harryhid,
good luck with your strategy. I also tried something similar with a grid type approach and using a macd. I still believe that it has merit and needs more attention. About the only thing that stopped me was my lack of coding ability. I did have some help on this forum and at yahoo with the lots which I think is a tricky part. double LotsOptimised() { double MACD3 = iMACD(Symbol(), 0, 12, 26, 9, PRICE_CLOSE, MODE_MAIN, 3); double MACD2 = iMACD(Symbol(), 0, 12, 26, 9, PRICE_CLOSE, MODE_MAIN, 2); double MACD1 = iMACD(Symbol(), 0, 12, 26, 9, PRICE_CLOSE, MODE_MAIN, 1); double MACD0 = iMACD(Symbol(), 0, 12, 26, 9, PRICE_CLOSE, MODE_MAIN, 0); double lots = InitialLots;//default lots 0.1 - there will be no error if lots will not be set by the other part of the code int total = OrdersTotal(); for(int i=0;i<total;i++) { OrderSelect(i,SELECT_BY_POS,MODE_TRADES); if( OrderSymbol() == Symbol()&& (OrderType() == OP_BUY || OP_SELL) && ((MACD0>0 && MACD1>0 && MACD2>0 && MACD3<0) || (MACD0 <0 && MACD1<0 && MACD2<0 && MACD3>0))) { switch(OrderLots()) { case 0.1:return(0.2); case 0.2:return(0.4); case 0.4:return(0.8); case 0.8:return(0.8); default:return(InitialLots); } } } return(lots); } //+------------------------------------------------------------------+ Hope it helps! |
![]() |
| Bookmarks |
|
|
LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/expert-advisors-metatrader-4/4213-maybe-will-very-profitable-safe.html
|
||||
| Posted By | For | Type | Date | |
| View topic - Can TB do this? | TradeBullet support | This thread | Refback | 04-07-2008 08:56 AM | |
| Multiple10Points-X2 EA - Page 669 - CariGold Forum | This thread | Refback | 03-07-2008 08:36 AM | |
| Multiple10Points-X2 EA - Page 669 - CariGold Forum | This thread | Refback | 03-07-2008 06:37 AM | |
| Can NinjaTrader do this? - NinjaTrader Support Forum | This thread | Refback | 01-20-2008 05:26 AM | |
| Forums - Can NeoTicker Do This? | This thread | Refback | 10-09-2007 10:08 AM | |
| Can NeoTicker DO this? - NeoTicker Forums | This thread | Refback | 09-05-2007 10:08 PM | |
| Forums - Can NeoTicker Do This? | This thread | Refback | 08-01-2007 06:20 PM | |
| Forums - Can NeoTicker Do This? | This thread | Refback | 07-14-2007 05:24 PM | |
| Can NinjaTrader do this? - NinjaTrader Support Forum | This thread | Refback | 07-03-2007 03:13 PM | |
| kreslik.com - Traders Community :: View topic - Which Auto Trading Software Can Do Strategy? | This thread | Refback | 07-01-2007 04:33 AM | |
| View topic - Can TB do this? | TradeBullet support | This thread | Refback | 06-30-2007 08:03 PM | |
| Forums - Can NeoTicker Do This? | This thread | Refback | 06-30-2007 02:34 AM | |
| Forums - Can NeoTicker Do This? | This thread | Refback | 06-27-2007 05:48 PM | |
| Can NeoTicker DO this? - NeoTicker Forums | This thread | Refback | 06-26-2007 02:38 PM | |
| View topic - Can TB do this? | TradeBullet support | This thread | Refback | 06-24-2007 09:53 PM | |
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Profitable Ea | faifarni | Expert Advisors - Metatrader 4 | 9 | 01-04-2008 01:08 PM |
| MT4 decompiler safe? | charliev | Metatrader 4 | 11 | 12-04-2007 12:16 AM |
| Breadcombe- Is this EA profitable? | mingkwong | Expert Advisors - Metatrader 4 | 0 | 05-02-2007 04:28 PM |
| Safe Zone Ind. | spiketrader | Indicators - Metatrader 4 | 5 | 08-23-2006 03:59 PM |