Forex
Google
New signals service!

Go Back   Forex Trading > Trading systems > Martingale/Average Cost and Hedging


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

Reply
 
LinkBack (90) Thread Tools Display Modes
  #1481 (permalink)  
Old 03-02-2007, 05:09 PM
frantacech's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 478
frantacech is on a distinguished road
Another system
---------------

INIT 0.2L

Picture 1

Picture 2

DELETE SELL STOP AFTER EXECUTE BUY STOP

Picture 3

AND NEW SELL STOP - 0.4L progrese!

Picture 4

bad success

Picture 5

Picture 6

and next pending order, buy stop now (BUY - SL=60, TP 40-spread=38, SELL - SL = 60-spread=58, TP 40)
next round

Picture 7

buy stop execute

Picture 8

now next sell stop

Picture 9

WOW, I am WINNER

Picture 10

delete sell stop and finish. It is time for breakfast
Profit last trade 240+75.35-239.50 = 75.85 GUARANTED!!! RISK ONLY MARGIN CALL OR MISTAKE
I like It?

Picture 11

Picture 12
----------
Attached Images
File Type: jpg 0.jpg (421.1 KB, 207 views)
Attached Files
File Type: txt rubicon.txt (1.6 KB, 68 views)
File Type: zip Screens.zip (1.38 MB, 74 views)
File Type: zip Rhombic_cze.zip (1.40 MB, 89 views)
File Type: zip pictures.zip (1.15 MB, 63 views)
__________________
RUN With The BULLS And HUNT With The BEARS - Nothing By Chance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1482 (permalink)  
Old 03-02-2007, 05:18 PM
Junior Member
 
Join Date: Jan 2007
Posts: 22
SavvyTrader is on a distinguished road
Indicator?

Hi,

Can anyone give the indicator?

Thanks for sharing.

SavvyTrader
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1483 (permalink)  
Old 03-02-2007, 05:51 PM
Senior Member
 
Join Date: Oct 2006
Posts: 187
phorex_phreak is on a distinguished road
ea

hello david,

i think ill join this thread if you guys dont mind and hopefully i can add some extra creative thinking to it, david, explain to me how the EA protects itself in the event of a major trend against it of say 400-500 pips? just curious as to how this EA will get out of that without busting out the account and margin.....

thanks david
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1484 (permalink)  
Old 03-02-2007, 06:17 PM
davidke20's Avatar
Senior Member
 
Join Date: Sep 2006
Location: 38° 53′ 51.61″ N, 77° 2′ 11.58″ W
Posts: 1,398
davidke20 is on a distinguished road
Quote:
Originally Posted by phorex_phreak
hello david,

i think ill join this thread if you guys dont mind and hopefully i can add some extra creative thinking to it, david, explain to me how the EA protects itself in the event of a major trend against it of say 400-500 pips? just curious as to how this EA will get out of that without busting out the account and margin.....

thanks david
For monster trending days, there is only 1 way to protect your capital = stop loss. For normal trending day, there is an internal algorithm to calculate the profit margin, once it hit certain profit level, it will close off whatever trade to avoid max trade. I only fine tune these part and rework on signal generator. Basically its still original 10point3 Dynamic Stop. I'm working out the PDF togather with grandpa, once its done, i'll be sending both EA and the User manual and some informative backtest result, so we can have a good laugh at it and start forward testing it. Cheers.

Regards,

David
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1485 (permalink)  
Old 03-02-2007, 07:12 PM
frantacech's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 478
frantacech is on a distinguished road
idea??? If myOrderType = 20; "Very Strong Uptrend" then stop clasic trade and switch to pyramiding with trend?

int OpenOrdersBasedOnTrendRSX()
{
int myOrderType=3;

Check_Trend();

double rsxcurr = iCustom(Symbol(),Period(),"Turbo_JRSX",RSX_Period, 0,0);
double rsxprev = iCustom(Symbol(),Period(),"Turbo_JRSX",RSX_Period, 0,1);
if ((rsxcurr > rsxprev) && (trendtype == 2 || trendtype == 3)) { myOrderType = 2; }
if ((rsxcurr < rsxprev) && (trendtype == 2 || trendtype == 1)) { myOrderType = 1; }

// VeryStrongTrend
if ((rsxcurr > rsxprev) && trendtype == 30) { myOrderType = 20; }
if ((rsxcurr < rsxprev) && trendtype == 10) { myOrderType = 10; }

return(myOrderType);

}

void Check_Trend()

{
UpTrendVal = iCustom(Symbol(),Period(), "Turbo_JVEL",7,-100,0,0);
DnTrendVal = iCustom(Symbol(),Period(), "Turbo_JVEL",7,-100,1,0);
TrendVal = (UpTrendVal + DnTrendVal);
Comment("LastPrice=",LastPrice," Previous open orders=",PreviousOpenOrders," Trend Direction: ",TrendTxt," Slope == ",TrendVal,"\nContinue opening=",ContinueOpening," OrderType=",myOrderType,"\n",text2,"\nLots=",lotsi ,"\n",text);
if(TrendVal <= -0.09)
{
trendtype = 1;
TrendTxt = "Strong Downtrend";
}
if(TrendVal <= -1.10)
{
trendtype = 10;
TrendTxt = "Very Strong Downtrend";
}
if(TrendVal > -0.09 && TrendVal < 0)
{
trendtype = 2;
TrendTxt = "Weak Downtrend/Ranging";
}
if(TrendVal > 0 && TrendVal < 0.09)
{
trendtype = 2;
TrendTxt = "Weak Uptrend/Ranging";
}
if(TrendVal >= 0.09)
{
trendtype = 3;
TrendTxt = "Strong Uptrend";
}
if(TrendVal >= 1.10)
{
trendtype = 30;
TrendTxt = "Very Strong Uptrend";
}
return(0);


I've got an idea as follows - classical 10point opens trades and uses martingale if there are losses. What about to take this approach: to use 10point clasic while weak, but if there is a very strong trend to turn it and start pyramiding into trend direction. It means to deviate with TP and to open new positons into trend after moving SL to BE+1 at previous position with preset pipstep = 10 for example?
__________________
RUN With The BULLS And HUNT With The BEARS - Nothing By Chance

Last edited by frantacech; 03-02-2007 at 07:53 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1486 (permalink)  
Old 03-02-2007, 07:13 PM
FutureMillionaire?'s Avatar
Senior Member
 
Join Date: Nov 2006
Location: An Englishman living in Scotland, UK
Posts: 336
FutureMillionaire? is on a distinguished road
Maybe this is not the time to post this ... with a new version in the offing, but I've done this now, so what the heck!

I've been running backtests on 10points 3_dynamic_stop (with the settings I'm actually trading live with ... just to make sure), GoblinFibo1.2 (DMBSYS settings), GoblinFibo1.2 (Yeoeleven settings) & 10_point_4_(Mod1e). They make depressing reading. They've proven to me that 10points 3_dynamic_stop still has the best potential, albeit there's a risk of a large loss (as described in #1037). My backtests run from the beginning of this year. 10points 3_dynamic_stop did indeed suffer one of these MaxTrades loss at the beginning, but recovered to perform best overall .
10_point_4_(Mod1e) completely washed out by the 11th Jan .

I noticed, after I ran these tests that the only difference between mine and Yeoeleven's was that I had mm=0. I'm currently re-running the GoblinFibo1.2 test with mm=1, but so far it hasn't made any difference.

I have noticed that these EAs can behave entirely differently depending on when they were started, so some of the big losses, you see in these tests, may not have happened with other people's test.

It seems I can't upload all these files in one go, so I'll continue in a moment....
Attached Images
File Type: gif 10points 3_dynamic_stop.gif (5.4 KB, 143 views)
File Type: gif GoblinFibo1.2_DMBSYS.gif (7.0 KB, 125 views)
Attached Files
File Type: htm 10points 3_dynamic_stop.htm (100.6 KB, 43 views)
File Type: htm GoblinFibo1.2_DMBSYS.htm (212.0 KB, 22 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1487 (permalink)  
Old 03-02-2007, 07:14 PM
frantacech's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 478
frantacech is on a distinguished road
Quote:
Originally Posted by FutureMillionaire?
Maybe this is not the time to post this ... with a new version in the offing, but I've done this now, so what the heck!

I've been running backtests on 10points 3_dynamic_stop (with the settings I'm actually trading live with ... just to make sure), GoblinFibo1.2 (DMBSYS settings), GoblinFibo1.2 (Yeoeleven settings) & 10_point_4_(Mod1e). They make depressing reading. They've proven to me that 10points 3_dynamic_stop still has the best potential, albeit there's a risk of a large loss (as described in #1037). My backtests run from the beginning of this year. 10points 3_dynamic_stop did indeed suffer one of these MaxTrades loss at the beginning, but recovered to perform best overall .
10_point_4_(Mod1e) completely washed out by the 11th Jan .

I noticed, after I ran these tests that the only difference between mine and Yeoeleven's was that I had mm=0. I'm currently re-running the GoblinFibo1.2 test with mm=1, but so far it hasn't made any difference.

I have noticed that these EAs can behave entirely differently depending on when they were started, so some of the big losses, you see in these tests, may not have happened with other people's test.

It seems I can't upload all these files in one go, so I'll continue in a moment....
1. I dont belive backtest
2. dont use mm with martingale system
__________________
RUN With The BULLS And HUNT With The BEARS - Nothing By Chance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1488 (permalink)  
Old 03-02-2007, 07:14 PM
FutureMillionaire?'s Avatar
Senior Member
 
Join Date: Nov 2006
Location: An Englishman living in Scotland, UK
Posts: 336
FutureMillionaire? is on a distinguished road
.... continued.

As I said ... This maybe a bit late, but may provide food for thought.

I'm keen to see what V12 brings.

Ray
Attached Images
File Type: gif GoblinFibo1.2_Yeoeleven.gif (6.5 KB, 121 views)
File Type: gif Mod1e.gif (5.5 KB, 114 views)
Attached Files
File Type: htm GoblinFibo1.2_Yeoeleven.htm (141.4 KB, 25 views)
File Type: htm Mod1e.htm (36.4 KB, 15 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1489 (permalink)  
Old 03-02-2007, 07:17 PM
FutureMillionaire?'s Avatar
Senior Member
 
Join Date: Nov 2006
Location: An Englishman living in Scotland, UK
Posts: 336
FutureMillionaire? is on a distinguished road
Quote:
Originally Posted by frantacech
1. I dont belive backtest
2. dont use mm with martingale system
No, I've never trusted backtests either. Generally, because they tend to be over optimistic. People see wonderful results on backtest, and then can't reproduce them in real time. I did it, just as a comparison between the EAs. In the event, they don't seem optimistic at all
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1490 (permalink)  
Old 03-02-2007, 08:08 PM
Senior Member
 
Join Date: Jun 2006
Posts: 743
yeoeleven is on a distinguished road
Detailed statement

Well after reading all about the back testing results I suppose my forward testing must be a fluke.

In 10 days of trading this Combo account it has averaged $110 per day profit with very little in the way of risky situations.

I do not back test neither do I trust in backtesting results so you must forgive me if I still believe that this combination actually works.

Closed profit $1282.42 Floating loss $7.60

John
Attached Images
File Type: gif Combo#8.gif (5.1 KB, 130 views)
Attached Files
File Type: htm Combo#8.htm (125.6 KB, 43 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
www.autotradingfx.com, 10points 3, 10point, 10points3, forex, 10points, 10points 3.mq4, 10p3v0.04, Terminator, 10 points dynamic stop, Center of Gravity2.ex4, Account Equity Analyzer, MACD Alert, mq4 forex, 10point3ke20, *.mq4, vhf_v1, eurox2.mq4, VHF_v1.mq4, forex mq4, Martingale mq4, 10 point 3, Turbo_JRSX.ex4, 10 points 3.mq4, 10points 3 ea

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/martingale-average-cost-hedging/3473-10points-3-mq4.html
Posted By For Type Date
Salire e ritracciare - Pagina 16 - Forum di Finanzaonline.com This thread Refback 08-07-2008 02:59 PM
Salire e ritracciare - Pagina 16 - Forum di Finanzaonline.com This thread Refback 08-07-2008 06:20 AM
Salire e ritracciare - Pagina 16 - Forum di Finanzaonline.com This thread Refback 08-06-2008 11:40 PM
Salire e ritracciare - Pagina 16 - Forum di Finanzaonline.com This thread Refback 08-06-2008 10:20 PM
Part Time Wealth Building Trading System - Weekly Scalping - Page 88 This thread Refback 08-06-2008 02:57 PM
Is This My Holy Grail EA :D This thread Refback 07-10-2008 05:03 AM
Martingale EA - Alternative to FXTradepro This thread Refback 07-09-2008 04:25 PM
¥á¥¿¥È¥ì¡¼¥À¡¼¤À¤¡¡ª¡¡ This thread Refback 06-13-2008 05:13 PM
FX¥·¥¹¥Æ¥à¥È¥ì¡¼¥É¼«Æ°ÇäÇã¼ÂÁ©¼¼ Post #3546 Refback 06-08-2008 01:11 PM
¥á¥¿¥È¥ì¡¼¥À¡¼¤À¤¡¡ª¡¡ 200805 This thread Refback 06-06-2008 03:32 PM
Wonderful Expert - Forex Trading | MetaTrader Indicators and Expert Advisors This thread Refback 05-16-2008 11:38 AM
[intraday]martingale strategy dan variasinya - Page 6 - Forexindo Forum This thread Refback 05-14-2008 02:40 AM
Expert Advisors on live account - Alpari (UK)'s Forex and CFDs Forum This thread Refback 05-01-2008 08:50 PM
íÇÇÎæÇä åá íæÌÏ ÇÓÊÑÊÌíå ÌíÏå á scapling - ãäÊÏíÇÊ ÇáãÊÏÇæá ÇáÚÑÈí This thread Refback 04-30-2008 03:28 PM
Expert Advisors on live account - Alpari (UK)'s Forex and CFDs Forum This thread Refback 04-23-2008 06:45 AM
Martingale EA - Alternative to FXTradepro This thread Refback 04-03-2008 02:13 PM
تست اکسپرت 10Points3 - Sarmaye Forums This thread Refback 03-29-2008 07:39 AM
Per tutti: Expert Advisor/Strategia da valutare - Forex Forum This thread Refback 03-27-2008 06:13 PM
Forex Mini - 300 30000 forex mini This thread Refback 03-18-2008 08:13 AM
FX¥·¥¹¥Æ¥à¥È¥ì¡¼¥É¼«Æ°ÇäÇã¼ÂÁ©¼¼ Post #3546 Refback 03-16-2008 03:11 PM
FX¥·¥¹¥Æ¥à¥È¥ì¡¼¥É¼«Æ°ÇäÇã¼ÂÁ©¼¼ Post #3546 Refback 03-16-2008 01:37 PM
Download 10points3 Ea - Type Your Search Here This thread Refback 03-10-2008 01:24 PM
10points3¤Î¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¡Ö10p3MultiPipStepV001¡× FX¥·¥¹¥Æ¥à¥È¥ì¡¼¥É¼«Æ°ÇäÇã¼ÂÁ©¼¼ Post #3546 Refback 03-09-2008 11:42 AM
10points3 Ea - Type Your Search Here This thread Refback 02-27-2008 01:38 AM
Which EA is making money for you? This thread Refback 02-25-2008 12:12 PM
Per tutti: Expert Advisor/Strategia da valutare - Forex Forum This thread Refback 02-23-2008 12:03 PM