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
  #31 (permalink)  
Old 01-12-2006, 10:41 PM
Senior Member
 
Join Date: Oct 2005
Posts: 107
treberk is an unknown quantity at this point
MT4 BronzeWarrior and SilverWarrior EAs

Attached are my conversions of the MT3 EAs. Everything is the same, except that the EAs will trade the lots you set only, and not trade 1 Lot, then 3 Lots for example, as the MT3 (default) EAs do - I think this distorts the results.

You need to put the DayImpuls.mq4 in your Inicators folder for the EAs to work.

Attached is also the current weeks results purely just to show that the EAs work - if anyone wants to modify the EAs then they are free to do so.

Last edited by newdigital; 01-13-2006 at 09:19 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
  #32 (permalink)  
Old 01-15-2006, 11:01 PM
Member
 
Join Date: Jan 2006
Posts: 34
helfen is on a distinguished road
Using VT Trader

Hi I use VT Trader --------- NOW Metatrader of course...

EUR/USD

1m
5m
15m
1hr

Bollinger Band Fibo 20 on all ecept 1m chart, 18 all exponential, central line highlighted.

Moving averages
10, 25, 50, 75, 100,
Also 3 on1m chart highlighted in black to give a trail on the candles.

When price breaks above lines, buy. When below, sell. Once above the final line, should go to next fibo band level at least during non-volatile markets.


POST Edited.

Am now learning CatFX50 because my intraday trades resulted in a loss, not through the system, but smaller time frames were too emotionally driven, resulting in bad/inappropriate trades by me.

Last edited by helfen; 03-02-2006 at 12:54 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
  #33 (permalink)  
Old 01-16-2006, 01:00 PM
hua hua is offline
Member
 
Join Date: Oct 2005
Location: Athens
Posts: 75
hua is on a distinguished road
Ask

Dear CodersGuru, thanking you once more for your lesssons trying to create a
Macd alert, but seems a lot yet to learn/read. T4 at your early convenience
would like a ''cross lines alert'' of following ''MACD+OSMA''. Tks vm in advance.
Attached Files
File Type: mq4 MACD+OsMA.mq4 (2.4 KB, 116 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
  #34 (permalink)  
Old 01-22-2006, 04:48 PM
Junior Member
 
Join Date: Nov 2005
Posts: 6
davinciproject is on a distinguished road
Smile Relative Momentum Index!

Hi,

I try to program my very "first indicator" in mql 4!

At first I read the mql 4-lessons from Codersguru.....

....thanks a lot about the developement course!!! You make a fantastic work and its a great help for us!

So I try to program the RMI - Relative Momentum Index!!! Anybody know this indicator....

....may I ask to somebody to check my piece of program???

The RMI is quite similar to the RSI --> The RSI uses a one-day-Momentum and the RMI uses n-day-Mom.

So I just change a very small part of the RSI-Script...

...but anyway, I could understand the program!

If anybody can find some mistakes, please tell me!!!
I appreciate your help,

best regards, dvp

//+------------------------------------------------------------------+
//| RMI.mq4 |
//| Copyright © 2006,|
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2006, "
#property link "http://www.metaquotes.net"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 DodgerBlue
#property indicator_level1 15
#property indicator_level2 85
//---- input parameters
extern int RMIPeriod=5;
extern int Shift=5;
//---- buffers
double RMIBuffer[];
double PosBuffer[];
double NegBuffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
string short_name;
//---- 2 additional buffers are used for counting.
IndicatorBuffers(3);
SetIndexBuffer(1,PosBuffer);
SetIndexBuffer(2,NegBuffer);
//---- indicator line
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,RMIBuffer);
//---- name for DataWindow and indicator subwindow label
short_name="RMI("+RMIPeriod+")";
IndicatorShortName(short_name);
SetIndexLabel(0,short_name);
//----
SetIndexDrawBegin(0,RMIPeriod);
//----
return(0);
}
//+------------------------------------------------------------------+
//| RMI - Relative Momentum Index |
//+------------------------------------------------------------------+
int start()
{
int i,counted_bars=IndicatorCounted();
double rel,negative,positive;
//----
if(Bars<=RMIPeriod) return(0);
//---- initial zero
if(counted_bars<1)
for(i=1;i<=RMIPeriod;i++) RMIBuffer[Bars-i]=0.0;
//----
i=Bars-RMIPeriod-1;
if(counted_bars>=RMIPeriod) i=Bars-counted_bars-1;
while(i>=0)
{
double sumn=0.0,sump=0.0;
if(i==Bars-RMIPeriod-1)
{
int k=Bars-2;
//---- initial accumulation
while(k>=i)
{
rel=Close[k]-Close[k+Shift];
if(rel>0) sump+=rel;
else sumn-=rel;
k--;
}
positive=sump/RMIPeriod;
negative=sumn/RMIPeriod;
}
else
{
//---- simple moving average
rel=Close[i]-Close[i+Shift];
if(rel>0) sump=rel;
else sumn=-rel;
positive=(PosBuffer[i+1]*(RMIPeriod-1)+sump)/RMIPeriod;
negative=(NegBuffer[i+1]*(RMIPeriod-1)+sumn)/RMIPeriod;
}
PosBuffer[i]=positive;
NegBuffer[i]=negative;
if(negative==0.0) RMIBuffer[i]=0.0;
else RMIBuffer[i]=100.0*positive/(positive+negative);
i--;
}
//----
return(0);
}
//+------------------------------------------------------------------+
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
  #35 (permalink)  
Old 01-23-2006, 01:15 AM
hua hua is offline
Member
 
Join Date: Oct 2005
Location: Athens
Posts: 75
hua is on a distinguished road
Ask

Dear CodersGuru, would need once more your nice assistance. (kindly give me time for a good study of your excellent lessons). Need an alert when price touches camarilla points (as per attached indicator). tks vm once more in
advance.
Attached Files
File Type: mq4 camarilladt1.mq4 (16.6 KB, 96 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
  #36 (permalink)  
Old 01-23-2006, 02:05 PM
Member
 
Join Date: Nov 2005
Posts: 52
suffic369 is on a distinguished road
barssince()

hi,everyone,

can I find any function like barssince() of metastock or tradestation platform in MT4? or put it in another way, is there any easy way to find the prevous zigzag peak or trough, or the prevous upper or lower fratal bar position? thanks in advance!!!

suffic369
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
  #37 (permalink)  
Old 01-25-2006, 11:58 PM
jpsdyb's Avatar
Member
 
Join Date: Dec 2005
Posts: 74
jpsdyb is on a distinguished road
EA Help! - Moving Averages - Small Pips

Hi! I've been having the hardest time trying to create this expert, so I figured ask and maybe I'll receive some help from someone. So here I am asking =).

I'm trying to create an EA that runs 2 moving averages for long and 2 more moving averages for shorts. The purpose of this EA is to catch a few pips at a time (not meant for big gains). I'm trying to test different MA's for doing this, so I need to be able to modify them.

What I need this strategy EA to do is go long when 2 ema's cross and that candle is now closed - confirming the cross, and then open the trade at the opening of the next candle.
Next...the EA will not make another trade until the ema's cross opposite direction, this time now for short.

Thank you anyone interested or willing to help!
Have a great day,
J
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
  #38 (permalink)  
Old 01-26-2006, 01:57 AM
jpsdyb's Avatar
Member
 
Join Date: Dec 2005
Posts: 74
jpsdyb is on a distinguished road
I guess it could be 2 EMAS only (though i'd like to use four...possibly more for adding close buys, and close sells)

Either way, if not 4 emas , perhaps 2 emas?

Here is sample picture.
Thank you, J
Attached Images
File Type: gif ema cross example.gif (13.7 KB, 1333 views)

Last edited by jpsdyb; 01-26-2006 at 07:09 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
  #39 (permalink)  
Old 01-26-2006, 08:44 AM
Junior Member
 
Join Date: Jan 2006
Posts: 1
bull&bear is on a distinguished road
Cool Raw Ideas

HELP!
New to this indicator.Anyby could share.
1)How to u interprate the expansion & compression of group of short
term MA,namely MA of 3,5,8,10,12,15 dys.

2)How to inteprate the expansion & compression of group of long term MA
of 30,35,40,45,50,60 days.

3)Importance of S/T group ma breaks above or punches below L/T group
of ma.

4)Both L/T & S/T group compress at the same time or expand at the same
time.

5)When 1 group compresses, the other group expands.
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
  #40 (permalink)  
Old 01-26-2006, 02:05 PM
Member
 
Join Date: Dec 2005
Posts: 58
ttt123 is on a distinguished road
Asking...

Hi guys,

I was searching an "offset point average" /mq4/ in the forum but I couldn't find.

Does anybody know where I can find anythinig?

THANK YOU IN ADVANCE
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: 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
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 03:31 PM.



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