Forex



Go Back   Forex Trading > Discussion Areas > Suggestions for Trading Systems
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

View Poll Results: What Do You Think?
Good 707 87.39%
Bad 102 12.61%
Voters: 809. You may not vote on this poll

Reply
 
Thread Tools Display Modes
  #1111 (permalink)  
Old 09-17-2007, 06:03 PM
Member
 
Join Date: Dec 2006
Posts: 67
marko [IRL] is on a distinguished road
Quote:
Originally Posted by MrPip View Post
I know many of you are waiting for this so I am posting it now.

The next phase of development will be finding a good exit method. The current method exits on the opposite signal from the two zigzag indicators.

For MM the input for Risk should be small for Burns method and can be larger for Nix version.

I hope the other inputs are obvious. The various strings are menus to chose what you want to test.

The best results tested on GBPJPY were using the default settings.

Using 3% Risk and Burns MM method did return $8695 on $10K account with drawdown of 15%. Largest profit was 2262, largest loss 438.
Average profit was 1328, average loss was 250.

Using 4% risk and nix MM method returned $8798 with drawdown of 7.8%. Largest profit was 2602, largest loss was 512.
Average profit was 1225, average loss was 171.

Let the testing begin.

Robert
Tx, very nice work, and good compere about MM and others. Seems, realy good people are on this thread. Tx, is very positive.

Marko
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1112 (permalink)  
Old 09-17-2007, 07:04 PM
Brunite's Avatar
Member
 
Join Date: Dec 2006
Posts: 88
Brunite is on a distinguished road
Quote:
Originally Posted by MrPip View Post
I know many of you are waiting for this so I am posting it now.

The next phase of development will be finding a good exit method. The current method exits on the opposite signal from the two zigzag indicators.

For MM the input for Risk should be small for Burns method and can be larger for Nix version.

I hope the other inputs are obvious. The various strings are menus to chose what you want to test.

The best results tested on GBPJPY were using the default settings.

Using 3% Risk and Burns MM method did return $8695 on $10K account with drawdown of 15%. Largest profit was 2262, largest loss 438.
Average profit was 1328, average loss was 250.

Using 4% risk and nix MM method returned $8798 with drawdown of 7.8%. Largest profit was 2602, largest loss was 512.
Average profit was 1225, average loss was 171.

Let the testing begin.

Robert
You are truly a gentleman!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1113 (permalink)  
Old 09-17-2007, 07:13 PM
Senior Member
 
Join Date: Mar 2006
Location: La Verne,CA
Posts: 560
MrPip is on a distinguished road
Thanks Nix,

This saves me some time.

Robert

Quote:
Originally Posted by nix View Post
This modification of my previous AutoLot function should do the trick and takes the StopLoss value into consideration:

Code:
double AutoLots(int Risk, int StopLossInPips, double MIN_lots = 0.1, double MAX_lots = 5)
{
   int    Decimals = 0;
 
   double LotStep = MarketInfo(Symbol(), MODE_LOTSTEP);
   double LotSize = MarketInfo(Symbol(), MODE_LOTSIZE);
   double LotTickValue = MarketInfo(Symbol(), MODE_TICKVALUE);

   if(LotStep == 0.01)
      Decimals = 2;
   if(LotStep == 0.1)
      Decimals = 1;

   double LotsToRisk = ((AccountFreeMargin()*Risk)/100)/StopLossInPips;
   double Lots = StrToDouble(DoubleToStr(LotsToRisk/LotTickValue,Decimals));
  
   if (Lots < MIN_lots)
      Lots = MIN_lots;
   if (Lots > MAX_lots)
      Lots = MAX_lots;

   return(Lots);    
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1114 (permalink)  
Old 09-17-2007, 07:18 PM
goodsignal's Avatar
Member
 
Join Date: Jul 2007
Posts: 39
goodsignal is on a distinguished road
thank you

Quote:
Originally Posted by MrPip View Post
I know many of you are waiting for this so I am posting it now.

The next phase of development will be finding a good exit method. The current method exits on the opposite signal from the two zigzag indicators.

For MM the input for Risk should be small for Burns method and can be larger for Nix version.

I hope the other inputs are obvious. The various strings are menus to chose what you want to test.

The best results tested on GBPJPY were using the default settings.

Using 3% Risk and Burns MM method did return $8695 on $10K account with drawdown of 15%. Largest profit was 2262, largest loss 438.
Average profit was 1328, average loss was 250.

Using 4% risk and nix MM method returned $8798 with drawdown of 7.8%. Largest profit was 2602, largest loss was 512.
Average profit was 1225, average loss was 171.

Let the testing begin.

Robert

thanks a lot ,Mrpip,could you post all indicators work with your ea? BTW I bought a fast computer,if you need help for test,just let me know.

best wish
luke
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1115 (permalink)  
Old 09-17-2007, 07:33 PM
Senior Member
 
Join Date: Mar 2006
Location: La Verne,CA
Posts: 560
MrPip is on a distinguished road
indicators for EA

Quote:
Originally Posted by goodsignal View Post
thanks a lot ,Mrpip,could you post all indicators work with your ea? BTW I bought a fast computer,if you need help for test,just let me know.

best wish
luke
BigBear,

It would help if you post all indicators needed on the first post.

The zigzag indicators are already on the first post by BigBear.
These are the indicators used for confirmation of ZigZag indicators.The rest are standard with MT4.

Robert
Attached Files
File Type: mq4 Heiken Ashi.mq4 (3.6 KB, 210 views)
File Type: mq4 Heiken_Ashi_Smoothed.mq4 (4.2 KB, 238 views)
File Type: mq4 nonlagdot.mq4 (4.7 KB, 292 views)
File Type: mq4 QQE.mq4 (3.1 KB, 284 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1116 (permalink)  
Old 09-17-2007, 08:15 PM
burn0050's Avatar
Member
 
Join Date: Feb 2007
Location: Denver, CO
Posts: 33
burn0050 is on a distinguished road
Initial testing

Quote:
Originally Posted by MrPip View Post

Let the testing begin.

Robert
MrPip, thanks for all of your hard work. I have downloaded data for GBPJPY and GBPUSD that goes back to 2004.

Here are some initial findings. I don't have time to post exact results, but I will give you the summary.

I used both GBPJPY and GBPUSD, timeframes H1 and H4, MM - lot and nix and burn0050. I have used filters and no filters (original rules).

Basically, this EA is very profitable for 2007. In my testing so far, 2005 and 2006 are losing years - I am testing 1/1/200[x] - 1/1/200[x+1].

I think that BigBear is perhaps exiting on the first NLZZ line drawn, rather than wait for a signal in the opposite direction. Forex11 tends to use take profit or a trailing stop.

I have not tested the TP or TS method for these years to see if it makes a difference. We will need to code the "exit on first NLZZ" and test to see if that makes a difference also.

Thanks for sharing,
burn0050
__________________
He who laughs last thinks slowest
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1117 (permalink)  
Old 09-17-2007, 09:29 PM
Senior Member
 
Join Date: Mar 2006
Location: La Verne,CA
Posts: 560
MrPip is on a distinguished road
New EA

It came to my attention that the EA was using the default inputs for the 2 zigzag indicators.

I am attaching the newest version of the EA.

I modified it to include inputs for the zigzag indicators and added the new MM from Nix.

Robert
Attached Files
File Type: mq4 bouncingPipEA_mpowerV31.mq4 (28.9 KB, 365 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1118 (permalink)  
Old 09-17-2007, 10:45 PM
Member
 
Join Date: Jul 2007
Posts: 76
zmax is on a distinguished road
Igor

Igor,


I'm posting here an indicator I coded using the rules you explained in page 106. Can you please check it and let me know if it works like the one you can't give us ). Anyway i'm not interested in the indicator you have, i'm much much more interested in the way you use it. Can you please tell me how are you using it? I know it is not related to bigbear strategy but it could help me to use it as a filter for bigbear strategy so would be ok

Here is my version of ZigZag_Trend for Metatrader it paints an arrow where a X% movement was found down or up. If X% down from the recent high than a down arrow placed. It paints more than one arrows of the same color one after the other so you can see where another X% in the same direction was found.

Please check it and let me know what you think

Thanks, Zmax
Attached Files
File Type: mq4 PrecentualZZ_Victor.mq4 (2.8 KB, 216 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1119 (permalink)  
Old 09-17-2007, 11:08 PM
Member
 
Join Date: Jul 2007
Posts: 76
zmax is on a distinguished road
Ups,

Found a problem with the indicator, will update a fixed version soon.

Thanks, Zmax
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #1120 (permalink)  
Old 09-17-2007, 11:40 PM
1Dave7's Avatar
Senior Member
 
Join Date: Aug 2007
Posts: 183
1Dave7 is on a distinguished road
Smile

Quote:
Originally Posted by MrPip View Post
It came to my attention that the EA was using the default inputs for the 2 zigzag indicators.

I am attaching the newest version of the EA.

I modified it to include inputs for the zigzag indicators and added the new MM from Nix.

Robert
What timeframe is the EA supposed to run on - 1 Hr / 4 Hr??

Dave
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
forex tsd, forex-tsd, bouncing pips, Bouncing Pip, follow the bouncing pip, Supernova, bouncing, nonlag zigzag, nonlagdot, bouncing pip ea, forex, BigBear, MrPip, signal_bars_v6, MACD-DIV, QQE_Alert_MTF_v5, signal_bars_v6.ex4, bear system forex tsd, Jacko, tsd forex, follow, mr pip, zig zagy, big bear, the bouncing pip, f4mnect, qqe repaint, orderclose error 4108, mode_tickvalue, follow the bouncing pips, boucing pips, candles, qqe alert, boucing pip, mtf mfi, forex suggestions, #00_ZZ_Window, NonLagZigZag_V2, bouncingpip, forex bouncing pip, Money Flow Index, fastbrokerfx, zig zag pointer, macd div


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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


All times are GMT. The time now is 12:43 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.