Beta Testing
  #1 (permalink)  
Old 11-16-2005, 04:10 AM
Freshman
 
Join Date: Nov 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
lowphat is on a distinguished road
Default Beta Testing

im checking out beta1 for the 1st day very cool.
1. I added some closing logic and then decided i want to let stoploss and Take profit handle it but i didnt see a way to delete the closing logic or any type of logic after it has been added.

2. levels would be extremely nice like the signal has to have came from -75 to -50 to enter at 50. or williams has to have traveled 25 in one direction for signal/entry. any of those would be rockin

3. another thing i see really useful is to set amount of pips traveled with the last xx bars. like if there has been 50 pips move in last 6 bars stay out. or *only* if theres been a 50pip move with the last 6 bars enter<----that last one seems very usefull for breakout type stratagy.

4. breakout code based on a daily open/high or an open on a certain time candle or from a time range like take the high and low of 6-9 then buy stops and sell stops put at xx ammount above high and low.

5. ability to make rules run only on 1 day of the week or certain days of the week.

6. I know some of these ideas may be more based on my styles so i know it may not be feasible to put in as general settings.

7. i will post anything i can find when testing zerocode :P

Last edited by lowphat : 11-16-2005 at 04:55 AM.
Reply With Quote
  #2 (permalink)  
Old 11-16-2005, 04:22 AM
Freshman
 
Join Date: Nov 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
lowphat is on a distinguished road
Default

a save settings option where you can save settings from each expert u make.
possibly make it file based and then maybe a recent files saved option like u see in alot of programs in the file menu.
Reply With Quote
  #3 (permalink)  
Old 11-16-2005, 04:24 AM
Freshman
 
Join Date: Nov 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
lowphat is on a distinguished road
Default

after you set comparision have the curser jump to statement b
and when you decide to change logic in the same window have it overwrite
instead of append
Reply With Quote
  #4 (permalink)  
Old 11-16-2005, 05:37 AM
Freshman
 
Join Date: Nov 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
lowphat is on a distinguished road
Default

buystop sellstop buylimit selllimits set at xx amount of pips after condition is met which can play retraces. i notice on some conditions it always retraces a certain ammount of pips. pipstep would also be nice
Reply With Quote
  #5 (permalink)  
Old 11-16-2005, 07:02 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,991
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

Quote:
Originally Posted by lowphat
im checking out beta1 for the 1st day very cool.
1. I added some closing logic and then decided i want to let stoploss and Take profit handle it but i didnt see a way to delete the closing logic or any type of logic after it has been added.
You can delete any logic by first select it and then click the X button (not close window button) at the top-right.

Quote:
Originally Posted by lowphat
2. levels would be extremely nice like the signal has to have came from -75 to -50 to enter at 50. or williams has to have traveled 25 in one direction for signal/entry. any of those would be rockin
It's possible. Just feed your own logics. Try to do it first, and I'll help you later on.

Quote:
Originally Posted by lowphat
3. another thing i see really useful is to set amount of pips traveled with the last xx bars. like if there has been 50 pips move in last 6 bars stay out. or *only* if theres been a 50pip move with the last 6 bars enter<----that last one seems very usefull for breakout type stratagy.
You can do it by yourself in logic. Example: Buy only if market has not moved 50 pips since last 6 bars, so add to buy logics:
Abs(Close[6] - PriceBid) < 50 * Point

Quote:
Originally Posted by lowphat
4. breakout code based on a daily open/high or an open on a certain time candle or from a time range like take the high and low of 6-9 then buy stops and sell stops put at xx ammount above high and low.
Beta 1 doesn't support entry orders, but how about market order instead? Example: Buy if bid price > 11 pips + the highest high of last 7 bars. Add to buy logics:
PriceBid > (11 * Point) + Highest(MODE_HIGH,7,7)

Quote:
Originally Posted by lowphat
5. ability to make rules run only on 1 day of the week or certain days of the week.
It's possible. Example 1: Sell only on Monday and Friday. Add to sell logics:
DayOfWeek = 2
OR DayOfWeek = 6


Example 2: Buy only between 2PM-5PM. Add to buy logics:
Hour => 14
AND Hour <= 17


Hope all above help you, and thanks for detail feedback.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.

Last edited by scorpion : 11-16-2005 at 07:07 AM.
Reply With Quote
  #6 (permalink)  
Old 11-16-2005, 08:19 PM
Freshman
 
Join Date: Nov 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
lowphat is on a distinguished road
Default

day 2 Im actually use to the way the curser handles now and have no problems with curser not change focus or having to overwrite anything. everything is natural also everything runs great so far with what i have tried. the 1st ea i made just for a test seems to have made money in the backtest. i wasnt planning on using the expert as it was only a test but im gonna drop it and try to test it for a month to see if it continues. now on to creating some of the ideas i have had for awhile. so far this is rocken my socksen
Reply With Quote
  #7 (permalink)  
Old 11-17-2005, 01:05 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,991
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

I'm here to help ya.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #8 (permalink)  
Old 11-18-2005, 02:06 AM
Freshman
 
Join Date: Nov 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
lowphat is on a distinguished road
Default

anyone know how to add the distance between %k and %d for entry like .if %d and %k are seperated by at least 5 points and etc. maybe its
Stoc (5) %K Current > Stoc (5) %D Current
or do i need to have a prev
Stoc (5) %K prevoius > Stoc (5) %D previous
Stoc (5) %K Current > Stoc (5) %D Current +7
Reply With Quote
  #9 (permalink)  
Old 11-18-2005, 03:20 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,991
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

You'll need below logic to check if current %d and %k are at least 5 points apart.

Abs(Stoc (5) %K Current - Stoc (5) %D Current) >= 5

We use Abs() is get absolute value of the calculation. In other words, it converts negative to positive.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #10 (permalink)  
Old 11-18-2005, 05:31 AM
Freshman
 
Join Date: Nov 2005
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
lowphat is on a distinguished road
Default

Quote:
Originally Posted by scorpion
You'll need below logic to check if current %d and %k are at least 5 points apart.

Abs(Stoc (5) %K Current - Stoc (5) %D Current) >= 5

We use Abs() is get absolute value of the calculation. In other words, it converts negative to positive.
thx mucho this thing is great

i dont know if this would actually be usefull but heres an idea for future. if theres a indicator not used and when u hit 3. output tab have it show something like note: indicatorx was not used.
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
ZeroCode Beta 2 Status scorpion MetaTrader and ZeroCode 85 06-21-2008 05:11 PM
Tradestation 2000i Strategy testing bilbozzo Trading Systems 7 11-18-2007 05:24 AM
Newbie testing DLMv1[1].3 alpin Trading Systems 3 09-29-2006 06:53 AM
Zero code beta 2 suggestions Belzebut MetaTrader and ZeroCode 0 06-12-2005 10:40 AM


All times are GMT. The time now is 12:56 AM.
Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2008, 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

Main Menu

Economic Forecast