#11 (permalink)  
Old 03-12-2007, 06:14 AM
Sophomore
 
Join Date: Feb 2007
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
anamy will become famous soon enough
Default

Yep, you're certainly on the right track. Next you'd have to change

while (index != 4)

to

while (index != 13)

so it'll read the appropriate number of bars. Your setup would then be reading a total of 12 bars (starting on the previous bar which is 1) on the 5 minute charts instead of 3 on the 15 minute chart. I think 13 would be the right number, but don't quote me on that.
Reply With Quote
  #12 (permalink)  
Old 03-14-2007, 05:00 PM
Freshman
 
Join Date: Nov 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Toddr is on a distinguished road
Default

Quote:
Originally Posted by anamy View Post
Yep, you're certainly on the right track. Next you'd have to change

while (index != 4)

to

while (index != 13)

so it'll read the appropriate number of bars. Your setup would then be reading a total of 12 bars (starting on the previous bar which is 1) on the 5 minute charts instead of 3 on the 15 minute chart. I think 13 would be the right number, but don't quote me on that.
Anamy check your private messages.

Thanks Todd
Reply With Quote
  #13 (permalink)  
Old 03-18-2007, 04:55 AM
Sophomore
 
Join Date: Feb 2007
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
anamy will become famous soon enough
Default

I fixed a problem with the orders placing and added a couple of features to accomodate some changes that Toddr said would improve the strategy.

TimeFrame=15; // Must be a valid time frame (5, 15, 240, 1440, etc)
BarsToRead=3; // Number of past bars to read on given time frame
DistanceForEntry=1; // Number of pips to enter above/below the high/low


Toddr has told me that changing the time frame to 5 and reading the past 12 bars (the whole previous hour) has a postive effect.

TimeFrame=5;
BarsToRead=12;
Attached Files
File Type: mq4 Observation Hour v1.1.mq4 (13.4 KB, 68 views)
Sponsored Links EA Shark - Automated System
We Turned $9,100 Into $109,606.
Trading LIVE Since January 2007.
Reply With Quote
  #14 (permalink)  
Old 03-19-2007, 05:20 PM
Freshman
 
Join Date: Nov 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Toddr is on a distinguished road
Default

It still is putting in many orders every tick. This morning it put in 5 Buys and 1 Pending Sell. Can you put in where it ONLY puts in 1 trade only?? This happens when the current price is about 2 pips from the High or Low when the trade is entered.
Reply With Quote
  #15 (permalink)  
Old 03-20-2007, 12:00 AM
Freshman
 
Join Date: Nov 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Toddr is on a distinguished road
Default

Ok I have manually Tediously backtested this strategy and traded it live (manually) till I can confirm the EA is bug free. Here is what I have found to be profitable with the EA if it gets tweaked.

(1) I have taken (I think?? CODING NEWBIE) out the code when a pending is hit to delete the other pending. I have seen alot on the 5 minute you can make pips when it goes up then it shoots down or visa versa.

(2) Also I took (I Think??? CODING NEWBIE) to close all other orders in since I use another strategy when the EA is on. And I do not want them closed.

(3) This EA puts orders in if the current price is at the high or low when the EA time programmed is up (example: 5 minute chart, 1400 time) and it will put execute orders on every tick. All day I have tried it and it put in atleast 5-8 Buys or Sells depending on if it is at the High or Low. It needs a limit of 1 trade ONLY. Also it is better that it does NOT put in a trade if the current price is too close (Creates too many WHIPSAWS with only 1 PIP profit). If the current Price is too close to put a pending in (InterbankFX requires 5 pips away from the Current price to enter a pending) then it is fine it does not put in a pending. I coded in an alert so if it does not go in you can make the decision if you just want to execute an order or not. My DistanceForEntry=0; since I have seen that 0 provides more pips and less stops then +1.

(4) Also it would be very helpful if it puts lines in on the High and Low so we know where they are, say a horizontal line.

I have made 50 pips within the past 5 trades using this method, but the EA kept putting in orders (refer to #3) so if I used the EA live, I would be way in debt.

I will keep everyone posted after the EA is refined so we can all make money!!!

HAPPY TRADING
Attached Files
File Type: mq4 Observation Hour v2.mq4 (12.9 KB, 47 views)
Reply With Quote
  #16 (permalink)  
Old 03-20-2007, 06:27 AM
Sophomore
 
Join Date: Feb 2007
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
anamy will become famous soon enough
Default

Quote:
Originally Posted by Toddr View Post
(3) This EA puts orders in if the current price is at the high or low when the EA time programmed is up (example: 5 minute chart, 1400 time) and it will put execute orders on every tick. All day I have tried it and it put in atleast 5-8 Buys or Sells depending on if it is at the High or Low. It needs a limit of 1 trade ONLY. Also it is better that it does NOT put in a trade if the current price is too close (Creates too many WHIPSAWS with only 1 PIP profit). If the current Price is too close to put a pending in (InterbankFX requires 5 pips away from the Current price to enter a pending) then it is fine it does not put in a pending. I coded in an alert so if it does not go in you can make the decision if you just want to execute an order or not. My DistanceForEntry=0; since I have seen that 0 provides more pips and less stops then +1.
Whenever I've tested the EA, it has only put in two orders. But, I've added a line of code as a last attempt to stop the EA from putting in too many orders. If this doesn't fix the problem, then I don't know what will.
Attached Files
File Type: mq4 Observation Hour v2.1.mq4 (13.0 KB, 73 views)
Reply With Quote
  #17 (permalink)  
Old 03-22-2007, 03:36 AM
Freshman
 
Join Date: Nov 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Toddr is on a distinguished road
Default

anamy,

Ok I have tested it and wow today it made over 80 pips when I set it up for 1300 GMT and the the Fed came out. The Pending are right on target. I use 0 from the High and LOW setting.

It now only puts in 1 position when the current price is close to the High (Fixed). So that is GREAT. But when it is at the LOW and the current price is too close then it does not put in a sell or anything.

Can you make sure it will do the same on a SELL as it does now on a BUY. Like I said the BUY is working GREAT it is just the SELL when the current price is too close to the LOW that it will not put in the SELL order. Tested it all day


Again GREAT EA and the pending are right on. Just the SELL needs fixed and we are on to a MONEY MAKER.

Also I set it not to delete the opposite pending or delete existing orders and I may have messed something up doing that. The reason for not deleting the opposite pendings is like yesterday it whipsawed and hit the Low at about 1500 and went only 5 pips profit (I got out). They it went Long another 20 pips above the High from 1300 GMT and I caught that. Works well in sidways markets if you set the T/P low. And REALLY PROFITABLE in a trending market.

I look forward to testing the revised EA and updating you further. Thanks

PS I have attached the EA, but I have not touched the code since you posted it yesterday.
Attached Files
File Type: mq4 Observation Hour v2[1].1.mq4 (13.0 KB, 97 views)
Reply With Quote
CIS Trading System GBP/USD i just need and EA for it
  #18 (permalink)  
Old 06-08-2007, 09:53 PM
Freshman
 
Join Date: Mar 2007
Posts: 5
Thanks: 0
Thanked 1 Time in 1 Post
gaquino is on a distinguished road
Default CIS Trading System GBP/USD i just need and EA for it

EA needed for a great Simple Trading System

Let me first Explain the System a picture is worth a thousand words so here you go.

At 11:00 Pacific Standard Time the dotted line shows what time the signal starts, this indicator generates a buy and sell signal. From this point you trail your buy and sell entry orders with trailing stops. There is a signal everynight so your always trading, It takes about 10 mins to setup and you can walk away. The only thing is i found a way to make more pips using the same system.

The upper red line is a buy and the lower red line is the sell. This system does about 250 to 350 pips on average, there is only been on bad month with a loss of 40 pips

Let me show you a pic where i could of made alot more money if i had an EA that would exit me out of this trade at a better point. Instead of earning 10 pips i would of earned 45 pips, this happens at least 3 to 5 times a month sometimes even more.


So what i need is Exit EA that will exit me out when blue line crosses the green line.
http://www.forexproindicator.com/get...?performid=261

Any question about the indicator or the EA please write back.


Reply With Quote
it dosen't work
  #19 (permalink)  
Old 06-19-2007, 08:36 AM
Freshman
 
Join Date: Jun 2007
Posts: 12
Thanks: 3
Thanked 0 Times in 0 Posts
nasree is on a distinguished road
Default it dosen't work

hi,

I download your file but why nothing appear on my time frame H1..
Anything wrong to my download or your program itself.

Thanks

p/s l love your program if is really work.I will know how much I can get pips.
Reply With Quote
  #20 (permalink)  
Old 06-23-2007, 08:11 PM
Sophomore
 
Join Date: Jul 2006
Posts: 87
Thanks: 5
Thanked 7 Times in 3 Posts
et_phonehome_2 is on a distinguished road
Default

Quote:
Originally Posted by gaquino View Post
EA needed for a great Simple Trading System

Let me first Explain the System a picture is worth a thousand words so here you go.

At 11:00 Pacific Standard Time the dotted line shows what time the signal starts, this indicator generates a buy and sell signal. From this point you trail your buy and sell entry orders with trailing stops. There is a signal everynight so your always trading, It takes about 10 mins to setup and you can walk away. The only thing is i found a way to make more pips using the same system.

The upper red line is a buy and the lower red line is the sell. This system does about 250 to 350 pips on average, there is only been on bad month with a loss of 40 pips

Let me show you a pic where i could of made alot more money if i had an EA that would exit me out of this trade at a better point. Instead of earning 10 pips i would of earned 45 pips, this happens at least 3 to 5 times a month sometimes even more.


So what i need is Exit EA that will exit me out when blue line crosses the green line.

Any question about the indicator or the EA please write back.

Are those the Guppy MA in your charts? How will it it hold up in range bound market if those bands were very narrow? I don't use multiple MA, just curious if you confirm it with any other indicators?
Reply With Quote
Reply


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Fisher Transform Dick Trading Systems 90 12-27-2008 02:24 PM
Tradestation 2000i Strategy testing bilbozzo Trading Systems 7 11-18-2007 05:24 AM
Scorpion Need Help Convert EA Please txsundevil Trading Systems 2 09-28-2006 08:18 PM
The strategy of profitable commerce on Forex currency pair GBP/USD samuray Classified Ads 2 05-07-2006 08:18 PM
Trend strategy EA code needed discomania Trading Systems 0 01-16-2006 10:14 AM


All times are GMT. The time now is 07:07 PM.
Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0

Registered members have access to special online forex currency trading tools, software, mt4 expert advisors and indicators. Register now