Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Manual trading systems


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

View Poll Results: tell us what is your opinion about this methode
good, profitable 26 74.29%
good 5 14.29%
average 3 8.57%
not bad 0 0%
bad,not profitable 1 2.86%
Voters: 35. You may not vote on this poll

Closed Thread
 
LinkBack (56) Thread Tools Display Modes
  #2041 (permalink)  
Old 02-12-2008, 08:38 AM
Member
 
Join Date: Nov 2005
Posts: 84
nohills is on a distinguished road
And this one too of course:

if(tradingtime()>0 && opentrades()<trades())
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2042 (permalink)  
Old 02-12-2008, 10:20 AM
jokokendil's Avatar
Junior Member
 
Join Date: Feb 2008
Posts: 15
jokokendil is on a distinguished road
Still Needs Manual Assistances

Hi All,

I really thought that we cann't leave EA running by it self, still it needs our manual assistances. That's why, I like trading with both EA and Manual, like the latest technology we called it Triptronic.

GBPJPY is a very special cute pair, so we need special care to trade with it.

Have a nice trading anyway.
__________________
Joko Kendil
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2043 (permalink)  
Old 02-12-2008, 12:37 PM
TimeFreedom's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 484
TimeFreedom is on a distinguished road
Thats right. We don't get a trade everyday with weekly filter ("W1F"), which helps with choppy days, but will also miss some trades which you would have gotten without using W1F.

TimeFreedom

Quote:
Originally Posted by ArtFx2008 View Post
Hi TimeFreedom,

With your onlypivot_w1 where only get a buy signal when SMMA closes above the gold, is it mean that not erveryday we got a buy or sell signal?

Thanks & Regards,
__________________
"Believe none of what you hear and half of what you see."
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2044 (permalink)  
Old 02-12-2008, 02:54 PM
Senior Member
 
Join Date: Apr 2006
Posts: 110
davidwillis is on a distinguished road
Quote:
Originally Posted by nohills View Post
I think it has to do with this statement:

if(opentrades()>0) {return(0);}

If the first trade only worked out and the second didn't work out, for instance because of some lasterror, it will not come back because of the above statement.
That statement comes on a stop and reverse signal, and right after a closealltrades() function which is supposed to close all the open trades before we open trades in the other direction. For some reason in backtesting, it did not always close all the trades. So I put that in, so it would run through the program again, and close all the trades before we started opening more trades in the other direction.

If it only opened one trade, it will not get back to that point again even if you change it, is what we need to change is when it is looking for no open trades. We need to change it to less trades than we are supposed to have, instead of no open trades. It shouldn't be too hard, but we may have one of the trades at a slighly different price.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2045 (permalink)  
Old 02-12-2008, 02:55 PM
Senior Member
 
Join Date: Apr 2006
Posts: 110
davidwillis is on a distinguished road
Quote:
Originally Posted by TimeFreedom View Post
I have been working on a filter most of last week and have come up with a non-indicator filter using the existing idea of the open price pivot.

The filter is the weekly open price to filter out some of the choppy days. We won't filter out all the choppy days, but a majority of choppy days will be filtered out with this additional weekly open price filter. At the same time we will also filter out some good trades if we were only using the daily open price pivot without the weekly open price pivot filter.

The weekly filter doesn't come into play until Tuesday since the weekly and the daily open price is the same on Mondays, therefore we have no filters on Mondays. We only utilize the weekly filter ("W1F") on Tuesday - Friday. Here are some examples on how the W1F will work:

On Tuesday we have a Daily Open Price of 208.27 and the Weekly Open Price
of 209.13. We would only take trades if SMMA closes below the Daily Open Price of 208.27, Sell, or above Weekly Open Price
of 209.13, Buy.

Enclosed you will find a chart with the daily and weekly open price levels. I have also enclosed the indicators OnlyPivot_Level_WF1, which plots the daily and weekly open price levels and the OnlyPivot_Signal_WF1 for the signals. You will also find the [H1]_OnlyPivot_W1F_01 template.

PS: I am open for new ideas and constructive criticism. Let me have it. David can you code the W1F into your EA? I would like to run some backtests to optimize SL and TP? The gold horizontal line is the weekly open price and the teal is the daily open price.

TimeFreedom

I will work on one tonight.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2046 (permalink)  
Old 02-12-2008, 04:43 PM
Junior Member
 
Join Date: Dec 2007
Posts: 6
Dezil is on a distinguished road
Could someone post or tell where can i find the OnlyPivot_Level.mq4 file. This thread too big to fint it manualy. Thanks a lot.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2047 (permalink)  
Old 02-12-2008, 05:59 PM
TimeFreedom's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 484
TimeFreedom is on a distinguished road
You can find the indicators and template here.

TimeFreedom

Quote:
Originally Posted by Dezil View Post
Could someone post or tell where can i find the OnlyPivot_Level.mq4 file. This thread too big to fint it manualy. Thanks a lot.
__________________
"Believe none of what you hear and half of what you see."
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2048 (permalink)  
Old 02-12-2008, 06:06 PM
TimeFreedom's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 484
TimeFreedom is on a distinguished road
I don't know if this will help, but take a look at the closure logic I found in one of my EA's:

PHP Code:
//+------------------------------------------------------------------+
//| Close All Open Positions                                         |
//+------------------------------------------------------------------+      
   
void CloseAllOrders()
{
    
int total=ScanOpenOrders();
    for(
int cnt 0cnt totalcnt++)
    { 
    
OrderSelect(cntSELECT_BY_POS);   
    if(
OrderMagicNumber()!= MagicNumber ){continue;}
    if(
OrderSymbol()!=Symbol()){continue;}
    else
      { 
      if(
OrderClose(OrderTicket(),OrderLots(),NormalizeDouble(Bid,Digits),Slippage,Crimson)==true)
         {
         if(
CloseSuccessAlerts){Alert("Order was successfully closed.");}
         if(
ScanOpenOrders()==0)
            {
            
CloseTrade=false;
            
OpenTrade=false;
            break;
//stop the loop
            
}
         else
            {continue;} 
//if there are more trades keep looping and closing
        
}//if(OrderClose(OrderTi
      
else//close was not successful
         
{
         if(
CloseFailAlerts){ Alert("Order Close failed will retry next tick.");}
         
int err=GetLastError();
         if(
err==|| err==137 ||err==146 || err==136//Busy errors
            
{
            
Sleep(5000);//wait
            
cnt++;//try again
            
}
         }
//else//close was
     
}//else (after symbol)
   
}//for
}//void 
Quote:
Originally Posted by davidwillis View Post
That statement comes on a stop and reverse signal, and right after a closealltrades() function which is supposed to close all the open trades before we open trades in the other direction. For some reason in backtesting, it did not always close all the trades. So I put that in, so it would run through the program again, and close all the trades before we started opening more trades in the other direction.

If it only opened one trade, it will not get back to that point again even if you change it, is what we need to change is when it is looking for no open trades. We need to change it to less trades than we are supposed to have, instead of no open trades. It shouldn't be too hard, but we may have one of the trades at a slighly different price.
__________________
"Believe none of what you hear and half of what you see."
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2049 (permalink)  
Old 02-12-2008, 09:26 PM
Member
 
Join Date: Oct 2007
Posts: 37
tubby is on a distinguished road
Would it be possible to add a risk percentage input in addition to those that would like to have number lots?

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2050 (permalink)  
Old 02-13-2008, 12:17 AM
Senior Member
 
Join Date: Apr 2006
Posts: 110
davidwillis is on a distinguished road
Thanks to all of you for your input. I used basically what nohills suggested, and fixed my closealltrades (hopefully).

anyway, with the stock settings on this, it should trade just like the onlypivot, but it has the option to add the filter if you want. It should also work for any broker, if you just adjust the times right.

I think this one is working right, so I am giving it the name onlypivot_filter 1.0

Now I will start working on the weekly...
Attached Files
File Type: mq4 OnlyPivot_filter_1_0.mq4 (14.4 KB, 96 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Bookmarks

Tags
pivot, only pivot, forex tsd, The only Pivot, pivot forex, tsd forex, forex tsd forum, traders dynamic index, forex-tsd, Laquerre2-ACS1.ex4

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/manual-trading-systems/8519-only-pivot.html
Posted By For Type Date
The Only Pivot This thread Refback 07-19-2008 06:01 PM
【MT4】MetaTrader Part12【メタトレーダー】 - MetaTraderまとめWiki This thread Refback 07-14-2008 03:19 PM
bu piyasada para kazanan var m&#305;? - Page 5 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 05-14-2008 03:37 PM
Mohon Tips untuk GBP/JPY This thread Refback 03-08-2008 11:54 AM
犖犖犖萎犖項犖ム犖迦肩犖伍犖犖犖: doodeebit This thread Refback 03-08-2008 11:48 AM
TSDのフォーラムへのリンク | 1万円から目指す原資回復 This thread Refback 03-03-2008 04:59 AM
bu piyasada para kazanan var m??????????? - Page 3 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 03-01-2008 12:59 PM
bu piyasada para kazanan var m??????????? - Page 7 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 02-28-2008 10:17 PM
bu piyasada para kazanan var m??????????? - Page 7 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 02-28-2008 12:39 PM
bu piyasada para kazanan var m??????????? - Page 6 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 02-28-2008 11:29 AM
bu piyasada para kazanan var m??????????? - Page 6 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 02-27-2008 01:11 PM
bu piyasada para kazanan var m??????????? - Page 6 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 02-27-2008 11:26 AM
bu piyasada para kazanan var m??????????? - Page 3 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 02-25-2008 04:51 PM
bu piyasada para kazanan var m??????????? - Page 3 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 02-25-2008 01:58 PM
bu piyasada para kazanan var m??????????? - Page 3 - hisse.net : Ekonomi ve Borsa Forumu This thread Refback 02-25-2008 01:54 PM
Forex Trading | MetaTrader Indicators and Expert Advisors - View Single Post - pivot points This thread Refback 02-22-2008 05:37 PM
Forex Factory - ACD Method on GBP/JPY One trade a day This thread Refback 02-11-2008 10:03 AM
The Only Pivot This thread Refback 02-01-2008 01:30 PM
The Only Pivot This thread Refback 01-24-2008 09:40 PM
The Only Pivot This thread Refback 01-24-2008 08:05 PM
The Only Pivot This thread Refback 01-22-2008 08:02 PM
The Only Pivot This thread Refback 01-20-2008 05:55 PM
The Only Pivot This thread Refback 01-20-2008 03:37 PM
The Only Pivot This thread Refback 01-20-2008 03:01 PM
The Only Pivot This thread Refback 01-20-2008 11:23 AM
The Only Pivot This thread Refback 01-20-2008 10:55 AM
The Only Pivot This thread Refback 01-19-2008 10:08 PM
The Only Pivot This thread Refback 01-18-2008 10:10 PM