Forex
Google

Go Back   Forex Trading > Discussion Areas > Suggestions for Trading Systems
Forex Forum Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


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: Your trading timeframe
5 Mins 0 0%
10 Mins 0 0%
15 Mins 2 13.33%
30 Mins 6 40.00%
1 Hr 2 13.33%
4 Hrs 5 33.33%
Voters: 15. You may not vote on this poll

Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 11-11-2005, 09:11 PM
fxhst329 fxhst329 is offline
Senior Member
 
Join Date: Oct 2005
Posts: 107
fxhst329 is on a distinguished road
Point of Control

I'm trying to set up this system, which they claim makes 150% yearly.
I'm lacking neccessary charts and indicators on M4 platform. Do you
know of any indicator that would show the "Value Area (VR)"
and "Point of Control (POC)" ?

http://www.enthios.com/charts/universal.htm

http://www.enthios.com/charts/PriceHisto.htm

In case anyone has it, or would like to build it, please add it to the
files section.

Thanks!

Vlad
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 11-16-2005, 04:41 PM
fab4x fab4x is offline
Junior Member
 
Join Date: Oct 2005
Posts: 13
fab4x is on a distinguished road
Thumbs up Bartrader

I have this EA for MT3 and its simple design is to place 2 orders BUYSTOP and SELLSTOP.
Now its price is calculated from the previous bar info. The pivot value is generated and then add +17 for BUY and -13 for sell off that pivot value. If trade is executed then it should close at end of bar. If not then both are deleted at end of bar. Then it does the whole thing again.
I would use a breakeven to 0 after 10pips

Could someone take a look at this EA to make some changes to do this.



/*[[
Name := BARTRADER
Author := FAB4X
Link := http://www.FAB4X.com
Notes := Use on 15 or 30m charts
Lots := 1.00
Stop Loss := 45
Take Profit := 25
Trailing Stop := 0
]]*/


define: Slippage(5);
define: MM(0);
define: Risk(7.5);

var: cnt(0);
var: Opentrades(0);
var: lotsi(0);
var: trend("");
var: vTime(0);
var: vol1(0);
var: vol2(0);
var: myh(0),myl(0),myc(0),pivot(0),buyprice(0),sellpric e(0);
//////////////////////////////////////////////////
// Exit if not H4 charts
//////////////////////////////////////////////////
/*
if Period != 240 then
{
Comment("This expert is for 4HR Charts");
Exit;
}
*/
//////////////////////////////////////////////////
// Exit if time between EA runs is less than 5 sec.
//////////////////////////////////////////////////
if Curtime - LastTradeTime < 5 then exit;

//////////////////////////////////////////////////
// Set if back tester earlier than 2005
//////////////////////////////////////////////////
If TimeYear(time)<2005 then Exit;

//////////////////////////////////////////////////
// Set Variables
//////////////////////////////////////////////////
Slippage = Slippage*Point;
myh=High[1];
myl=Low[1];
myC=Close[1];

Pivot = ( myh+myl+myc )/ 3 ;
buyprice=pivot+17*point;
sellprice=pivot-13*point;

//////////////////////////////////////////////////
// Set Comment
//////////////////////////////////////////////////


//////////////////////////////////////////////////
///////////// Manage multiple trades /////////////
//////////////////////////////////////////////////
Opentrades = 0;
for cnt = 1 to TotalTrades
{
If OrderValue(cnt,Val_Symbol) == Symbol then
{
Opentrades++;
}
};

//////////////////////////////////////////////////
///////////// Money Manager /////////////
//////////////////////////////////////////////////
if mm != 0 then Lotsi = Ceil(Balance*risk/10000)/10
else Lotsi=Lots;

//////////////////////////////////////////////////
// Close Order after each bar!
//////////////////////////////////////////////////
if Opentrades != 0 and vTime != Time[0] then
{
for cnt=1 to TotalTrades
{
If Ord(cnt,VAL_SYMBOL) == Symbol then
{
If (Ord(cnt,VAL_TYPE)=OP_BUY or Ord(cnt,VAL_TYPE)=OP_SELL) then
{
vTime = Time[0];
CloseOrder(OrderValue(cnt,VAL_TICKET),Ord(cnt,VAL_ LOTS),(cnt,VAL_CLOSEPRICE),Slippage,BlueViolet);
// Exit;
}
If (Ord(cnt,VAL_TYPE)=OP_BUYSTOP or Ord(cnt,VAL_TYPE)=OP_SELLSTOP) then
{
vTime = Time[0];
DeleteOrder(OrderValue(cnt,VAL_TICKET),Brown);
// Exit;
}

}

}
}
//////////////////////////////////////////////////
// Open Trade at start of bar!
//////////////////////////////////////////////////
if Opentrades == 0 and vTime != Time[0] then
{

vTime = Time[0];
SetOrder(OP_BUYSTOP,Lotsi,buyprice,Slippage,buypri ce-stoploss*point,buyprice+takeprofit*point,blue);
// Exit;
};
if Opentrades > 0 then
{
//vTime = Time[0];
SetOrder(OP_SELLSTOP,Lotsi,sellprice,Slippage,sell price+stoploss*point,sellprice-takeprofit*point,Red);
// Exit;
}



exit;
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 11-20-2005, 08:32 AM
newdigital newdigital is online now
Administrator
 
Join Date: Sep 2005
Posts: 15,388
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Flat indicators

Flat indicator. It works (see image) but sometimes. May anybody fix the errors there.
Attached Images
File Type: gif flat.gif (17.0 KB, 1491 views)
Attached Files
File Type: mq4 Flat.mq4 (3.1 KB, 204 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 11-22-2005, 06:13 AM
newdigital newdigital is online now
Administrator
 
Join Date: Sep 2005
Posts: 15,388
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Trendlines and Divergence

All the indicators for the thread Trendlines and Divergence Strategies please post here.

Two indicators posted by alp.
Attached Files
File Type: mq4 Divergence.mq4 (4.8 KB, 677 views)
File Type: mq4 Wiseman 1.mq4 (1.9 KB, 626 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 11-26-2005, 11:45 PM
FrankC's Avatar
FrankC FrankC is offline
Member
 
Join Date: Oct 2005
Location: Santiago, Chile
Posts: 24
FrankC is on a distinguished road
Lightbulb A new EA is requested...

Hi,

I am looking for an EA to do the following:

1- Use a daily chart only,
2- Identify the first major sup-res levels,
3- If the high-low of the closing daily bar is within any of the sup-res levels, then wait for the next closing daily bar,
4- Now we have two bars to deal with. If the breakout is on the support level, then look for a reversal pattern, and if found one, go long on the opening of the next daily bar. For sell signal, if any of the first two bars has hit the res level, and a reversal pattern is detected, then sell on the next daily bar. You figure out your tp-sl levels.


If anyone is interested, I have the code for the reversal patterns,

Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #16 (permalink)  
Old 11-28-2005, 04:20 AM
forexpipmaster forexpipmaster is offline
Member
 
Join Date: Nov 2005
Posts: 65
forexpipmaster is on a distinguished road
EMA AngleZero

Is it possible to program the EMA Angle Zero right into another EA and make it part of that EA code , instead of having it work only like an indicator ??
George T
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #17 (permalink)  
Old 11-28-2005, 07:23 PM
TraderSeven's Avatar
TraderSeven TraderSeven is offline
Member
 
Join Date: Nov 2005
Posts: 80
TraderSeven is on a distinguished road
Question Sharpe Ratio, Sortino Ratio , Rina Index etc

I'm looking for a tool that reads MT4 strategy tester reports and calculates Sharpe Ratio, Sortino Ratio, Rina Index or something similar

Even better would be if it can handle several reports from diffrents systems so I can calculate the portfolio ratio.

A nice graph wouldn't hurt either :-)

Can someone help me with a (URL to a) program that does all or part of the above?
I know it's a big request but I think knowing the ratio of your sytem/portfolio is, an often overlooked, important aspect of your system design.
__________________
TraderSeven,
May the pips be with you.

Last edited by TraderSeven : 11-28-2005 at 07:31 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #18 (permalink)  
Old 12-08-2005, 04:29 PM
lsantos lsantos is offline
Junior Member
 
Join Date: Dec 2005
Posts: 1
lsantos is on a distinguished road
Trend Signal

To find the trend direction I use 2 MACD, one short and one long, and trade if both histograms are in the same direction.
Sometimes it is dificult to read the slope of the histogram, so I use a Stoch of the MACD hist. Chart attach pdf file.
I am new user of MT4 and don't know how to program,
Do you know were I can find a Stoch of the MACD hist.

Thank you
Attached Images
File Type: pdf AWT Print.pdf (67.6 KB, 266 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #19 (permalink)  
Old 12-12-2005, 04:40 AM
gbms gbms is offline
Junior Member
 
Join Date: Dec 2005
Posts: 1
gbms is on a distinguished road
Cool Simple but powerful

Hi,

I'm not a programmer. Spent 6 months trying on MQL3 and then 4 comes along. So I'm back to nowhere! Please can anyone help with the following. It should help other beginners as well, as it is the basics. Here's what I need:

1. A MQL that use two EMA's with a buy or sell signal on the cross depending on direction.
2. The value of each must be set separately.
3. The close signal is set on the reverse cross over.
4. Must include a trailing stoploss.

I've had a look at codersguru's posts at Lesson 14 - Your First Expert Advisor (Part 2) and his code looks excellent, except that it subtracts 1 MA from the other. This is excellent, but deprives me of the abillity to work with each MA independently in the Expert properties fields.

Thanks Guys.

Great site.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #20 (permalink)  
Old 12-12-2005, 12:08 PM
m217irr's Avatar
m217irr m217irr is offline
Member
 
Join Date: Nov 2005
Posts: 62
m217irr is on a distinguished road
combination of ICWR indicator and THE TUNNEL METHOD

Hi ereryone

My experience in FX trading is not more so that I lost my deposit in my mini account in fibogroup broker, that is why I start to study hard in order to get a stable way to trade with minimum risk, in this forum I learn many things and I'm almost clear and find out basic matters, I think the combination of ICWR indicator and THE TUNNEL METHOD can make a stable strategy and if it is possible to convert it to Expert Advisor it maybe have good results, anyway I want to start real trading again, please tell me if you use an expert advisor that you yourself use in your real trading and has good results so that I can increase my deposit not to lose all of my deposit .

Last edited by m217irr : 12-12-2005 at 12:55 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
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
Forum Jump


Similar Threads
Thread Thread Starter Forum Replies Last Post
Looking for some Fresh Ideas Emerald King Metatrader 4 3 01-11-2007 07:30 PM
Mandarine: original request and ideas hellkas Digital Filters 33 11-04-2006 01:46 PM


All times are GMT. The time now is 10:52 AM.