Forex



Go Back   Forex Trading > Discussion Areas > Suggestions for Trading Systems
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

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
 
Thread Tools Display Modes
  #11 (permalink)  
Old 11-11-2005, 10:11 PM
Senior Member
 
Join Date: Oct 2005
Posts: 148
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #12 (permalink)  
Old 11-16-2005, 05:41 PM
Junior Member
 
Join Date: Oct 2005
Posts: 16
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #13 (permalink)  
Old 11-20-2005, 09:32 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
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, 2762 views)
Attached Files
File Type: mq4 Flat.mq4 (3.1 KB, 305 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
  #14 (permalink)  
Old 11-22-2005, 07:13 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
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, 930 views)
File Type: mq4 Wiseman 1.mq4 (1.9 KB, 878 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
  #15 (permalink)  
Old 11-27-2005, 12:45 AM
FrankC's Avatar
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #16 (permalink)  
Old 11-28-2005, 05:20 AM
Member
 
Join Date: Nov 2005
Posts: 68
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #17 (permalink)  
Old 11-28-2005, 08:23 PM
TraderSeven's Avatar
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 08:31 PM.
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
  #18 (permalink)  
Old 12-08-2005, 05:29 PM
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 Files
File Type: pdf AWT Print.pdf (67.6 KB, 406 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
  #19 (permalink)  
Old 12-12-2005, 05:40 AM
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!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #20 (permalink)  
Old 12-12-2005, 01:08 PM
m217irr's Avatar
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 01:55 PM.
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
bartrader, Bartrader EA, bartrader forex, bartrader.ex4, black dog, close the trade, dtosc, dtosc indicator, DTOsc metastock, dtosc metatrader, dtosc mq4, Earlybird V1.ex4, hilbert, makegrid, merdekarama, Merdekarama Ea, Merdekrama, pyratool, raw ideas, reopen, simple verticle, skywalker, SpearmanRankCorr, Stealth Earlybird V1.ex4, systems, trading, v-tbv6


Currently Active Users Viewing This Thread: 2 (1 members and 1 guests)
0.618
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
Looking for some Fresh Ideas Emerald King Metatrader 4 3 01-11-2007 08:30 PM
Mandarine: original request and ideas hellkas Digital Filters 33 11-04-2006 02:46 PM


All times are GMT. The time now is 12:52 PM.



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