Forex



Go Back   Forex Trading > Trading systems > Martingale/Average Cost and Hedging
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

Reply
 
Thread Tools Display Modes
  #2771 (permalink)  
Old 07-10-2007, 12:24 AM
Senior Member
 
Join Date: Feb 2006
Posts: 587
Michel is on a distinguished road
Quote:
Originally Posted by neta1o View Post
Glad to hear you guys are still testing, I'm going to be working on this later tonight so I should have some updates.

-neta1o

EDIT: I found a few bugs with this where it doesn't close all orders, also I need to make sure the target profit is in
ratio to the pip step or even when it succeeds it will fail. You may see a lot of no market to open. It will give this message every
time it checks. I'll update this later as well.
Hi neta1o, there is also a little bug here :
PHP Code:
    for(cnt=0;cnt<OrdersTotal();cnt++)
    {
      
OrderSelect(cntSELECT_BY_POSMODE_TRADES);
      if (
OrderSymbol()==Symbol() && OrderMagicNumber()==MagicNumber
      {            
             
LastTicket=OrderTicket();
            
LastPrice=OrderOpenPrice();
            
LastLots=OrderLots();
            if (
OrderType()==OP_BUY
            {            
            
Profit=OrderProfit();
            
lastType=1;
            }
            if (
OrderType()==OP_SELL
            {
            
Profit=OrderProfit();
            
lastType=2
              }
             
OpenOrders++; 
      } 
One cannot assume that the last opened order will always be the latest of the scan loop; this may not to be a problem in BT, but it could be when working on the terminal as the order depends of the sorted column of the trade tab.
An easy and safe way to check if the order is the last one is to compare the TicketNumbers.
Another mistake seems a bad computation of the total profit.
So I suggest something like this :
PHP Code:
  LastTicket 0;
  for(
cnt=0;cnt<OrdersTotal();cnt++)
  {
      
OrderSelect(cntSELECT_BY_POSMODE_TRADES);
      if (
OrderSymbol()==Symbol() && OrderMagicNumber()==MagicNumber
      {            
          
Profit += OrderProfit();       
          
OpenOrders ++; 
          if(
OrderTicket() > LastTicket)
          {
              
LastTicket OrderTicket();
              
LastPrice OrderOpenPrice();
              
LastLots OrderLots();
              
LastType OrderType();
              
LastTime OrderOpenTime();
           }   
       }
  } 
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
  #2772 (permalink)  
Old 07-10-2007, 12:26 AM
static's Avatar
Senior Member
 
Join Date: Apr 2006
Location: 西海岸
Posts: 125
static is on a distinguished road
I haven't read the whole thread on this, but if you are opening and closing trades based entirely on indicators (and therefore searching for the trend, I assume) you might want to add a time filter to prevent opening new orders during the Asian session, you might filter out some of the whip.

Just a thought.
__________________
魑魅魍魎
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
  #2773 (permalink)  
Old 07-10-2007, 02:16 AM
Member
 
Join Date: Jun 2007
Posts: 71
neta1o is on a distinguished road
Wow

Thanks for the changes Michel

I'll be adding more intelligence to the indicator soon. Here is the updates with the bug fixes. There was one other one when multiple orders were open if profit was reached it was only closing the last order and not all of them.

-neta1o

It doesn't really matter what currency pair you use this on (I use EURUSD and GBPUSD), the more movement the better and only H4 for now.
Tests with that criteria would help my development, thanks everyone.

Last edited by neta1o; 07-10-2007 at 02:26 AM.
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
  #2774 (permalink)  
Old 07-10-2007, 02:21 AM
Member
 
Join Date: Jun 2007
Posts: 71
neta1o is on a distinguished road
Quote:
Originally Posted by static View Post
I haven't read the whole thread on this, but if you are opening and closing trades based entirely on indicators (and therefore searching for the trend, I assume) you might want to add a time filter to prevent opening new orders during the Asian session, you might filter out some of the whip.

Just a thought.
I considered filtering out certain sessions but my belief is that there are profits to be made in every session with the right strategy.

Right now my goal is to give this indicator the intelligence to do the best it can with the built in MT4 indicators. After that I'll run more tests. If certain sessions really negatively affect this EA then I'll consider having this EA shift strategies during different sessions.

Maybe during the news announcements and big whip times I could have it shift to a makegrid strategy. Obviously this is a bit out of my present scope, but these are some of my thoughts for now.

-neta1o
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
  #2775 (permalink)  
Old 07-10-2007, 02:35 AM
Member
 
Join Date: Oct 2005
Posts: 35
manz66 is on a distinguished road
Different kind of indicators

Look at this indicator, looks dynamic. Link:

Trend Explosion Forex Trading System - Forex Trading Forum

Quote:
Originally Posted by neta1o View Post
Well here is the program entirely re-written. DO NOT TRADE WITH THIS LIVE.

You may demo trade if you wish. Basically, I rewrote the 10points3 code from scratch. I took out a lot and cleaned up the 10points3 code. I also added a new function called marketQuality. This is the basis of the entry and the exit of the program.

Right now I have a simple RSI script in there, but it clearly doesn't succeed. If any big runs happens it'll fail.

I plan on adding a lot of intelligence to this.

Test it out demo if you'd like and. Let me know what we can add or subtract.

What are some good indicators that are true to direction real time?

EDIT: This has no T/P or S/L because it uses indicators to open and close the orders.

I think to make a truly successful EA we'll need to make more of the variables dynamic. It needs to adjust with the market or it will always fail. The TakeProfit and the PipStep may need to be dynamic depending on the market volume and trade volatility. It would also probably make sense to program in a conservative money management so we can avoid having everyone tinker with the maxtrade variable. The maxtrade variable can then be dynamic based on account balance.
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
  #2776 (permalink)  
Old 07-10-2007, 02:51 AM
Member
 
Join Date: Jun 2007
Posts: 71
neta1o is on a distinguished road
Quote:
Originally Posted by manz66 View Post
Look at this indicator, looks dynamic. Link:

Trend Explosion Forex Trading System - Forex Trading Forum
Did you see any links to code or download? I couldn't find it, just a description...
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
  #2777 (permalink)  
Old 07-10-2007, 03:10 AM
Member
 
Join Date: Oct 2005
Posts: 35
manz66 is on a distinguished road
This system is based on multi time frame indicators

Here is a link to get this kind of MTF indicators in TSD

Multi Timeframe Indicators

To understand what indicators he is using here is video link:

YouTube - FOREX: Trend Explosion FOREX Trading System

Quote:
Originally Posted by neta1o View Post
Did you see any links to code or download? I couldn't find it, just a description...
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
  #2778 (permalink)  
Old 07-10-2007, 04:01 AM
Member
 
Join Date: Jun 2007
Posts: 71
neta1o is on a distinguished road
Thanks manz66

I'm also currently looking at the following indicators

ADX
RVI
HMA
Waddah Attar Trend
etc...

Keep checking back
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
  #2779 (permalink)  
Old 07-10-2007, 04:24 PM
Senior Member
 
Join Date: Jun 2006
Posts: 744
yeoeleven is on a distinguished road
Fxao

neta1o,

after the change over to H4 the EA has performed better, the whipsaw effect has been removed.

As mentioned previously I have added GBPUSD to the EURUSD to give FXAO more of a challenge and am continuing to test on a very small mini account.

It may have been lucky to be in the right direction over the past surge upwards in both pairs but it has generated good profit.

Will be very interested to test your new version with extra indicators in place when you have the time to devote to it.

John
Attached Images
File Type: gif FXAO#2.gif (4.5 KB, 578 views)
Attached Files
File Type: htm FXAO#2.htm (18.3 KB, 57 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
  #2780 (permalink)  
Old 07-12-2007, 10:38 AM
Senior Member
 
Join Date: Jun 2006
Posts: 744
yeoeleven is on a distinguished road
Fxao

So where are the results from the testing??

This EA is performing very well and it seems that I am the only one interested.

neta1o is on to something here and needs helpers to test and report results, he has spent lots of his time rewriting the code from scratch and has given it to us freely, the least we can do it forward test and report.

Using a mini account and trading .1 units it has produced a closed profit of $80 since the 9th with no floating loss. A lot better than other commercial EAs I am testing under the same conditions.

John

Edited to add that the slow start was due to my using the M30 timeframe and the EA getting whipsaw from the RSI signals. As soon as the H4 was used the results were quite different.
Attached Images
File Type: gif FXAO#3.gif (4.5 KB, 511 views)
Attached Files
File Type: htm FXAO#3.htm (21.3 KB, 47 views)

Last edited by yeoeleven; 07-12-2007 at 10:42 AM. Reason: Adding an explanation
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
"USDCAD TERMINATOR", *.mq4, 10 point, 10 point 3, 10 points 3, 10 points 3.mq4, 10 points dynamic stop, 10p3MultiPipStepV001, 10p3v, 10p3v0.02, 10p3v0.03, 10p3v0.04, 10point, 10point expert advisor, 10point3 EA, 10point3 review, 10point3ke20, 10points, 10points 3, 10points 3 ea, 10points 3.mq4, 10points3, 10points3 ea, Account Equity Analyzer, alejandro galindo mq4, center of gravity, Center of Gravity2, Center of Gravity2.ex4, eurox2.mq4, forex, forex mq4, fx_fish_2ma, macd alarm, macd alert, martingale ea, Martingale mq4, mq4 forex, rmi.mq4, scalp net, search, Terminator, Turbo_JRSX.ex4, turbo_jrsx.mq4, turbo_jvel.ex4, USDCAD Terminator, usdcad terminator EA, vhf.mq4, vhf_v1, VHF_v1.mq4, www.autotradingfx.com


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

Similar Threads
Thread Thread Starter Forum Replies Last Post
need help with 10points 3 EA salamdo Expert Advisors - Metatrader 4 2 03-24-2007 02:35 PM


All times are GMT. The time now is 05:55 AM.



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