Forex
Google
New signals service!

Go Back   Forex Trading > Metatrader Training > Metatrader 4 mql 4 - Development course > Questions


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

Reply
 
LinkBack (2) Thread Tools Display Modes
  #1161 (permalink)  
Old 06-14-2008, 01:44 AM
sonicdeejay's Avatar
Member
 
Join Date: Apr 2008
Posts: 98
sonicdeejay is on a distinguished road
Quote:
Originally Posted by Beno View Post
Gidday In10tion

Attached is the pic of what I am trading.

I use these 4 indicators
Sell signal
1: Slow Stochastic K% Crossed D% over 80 and vice versa for Buy below 20
2: QQE RSI Crossed below ATR and vice versa for Buy
3: CCI Crosses below 0 and vice versa for Buy
4: MACD ma's crossed and 1 bar formed below 0 and vice versa for Buy

If any 3 of these conditions are met then open a position eg stoch fire signal 5 mins later MACD then 20min CCI fires signal = open position.

or any conbinations of the above as long as they are in the same direction as the Slope indicator.

Screen shot attached

Regards

May I know the setting for the slope directional line!!!

sonic
__________________
~It's not who I am underneath but, what I do that defines me!!

My FOREX Journal
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1162 (permalink)  
Old 06-14-2008, 02:03 AM
Junior Member
 
Join Date: Feb 2008
Posts: 27
dragosd1 is on a distinguished road
Hi,
could someone pls help.
I need an indi that will calculate the middle of the 00:00 hourly candle and draw a line at the +40, +80 and -40, -80 levels from the middle, with price value....
Thks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1163 (permalink)  
Old 06-14-2008, 09:09 AM
Beno's Avatar
Senior Member
 
Join Date: Aug 2006
Location: London
Posts: 256
Beno is on a distinguished road
Quote:
Originally Posted by sonicdeejay View Post
May I know the setting for the slope directional line!!!

sonic
period 10
method 2
price 0
Attached Files
File Type: tpl template.tpl (2.7 KB, 4 views)

Last edited by Beno; 06-14-2008 at 09:14 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1164 (permalink)  
Old 06-14-2008, 07:08 PM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 806
TheRumpledOne is an unknown quantity at this point
Quote:
Originally Posted by dragosd1 View Post
Hi,
could someone pls help.
I need an indi that will calculate the middle of the 00:00 hourly candle and draw a line at the +40, +80 and -40, -80 levels from the middle, with price value....
Thks
_TRO_PRICE_LEVELS_TIME

_tro_price_levels_time.gif


I modified my TRO Price Levels indicator for you.

TRO Price Levels Time has 4 inputs for levels and plots each level above/below the starting point.

Defaults are 10, 20, 40, 80 pips.

You can use the midpoint or the open as the start point.

TRO_HOUR plots the vertical hour lines.

MT4 CODE ATTACHED.
Attached Files
File Type: mq4 _TRO_PRICE_LEVELS_TIME.mq4 (4.8 KB, 13 views)
File Type: mq4 TRO_HOUR.mq4 (3.0 KB, 14 views)

Last edited by TheRumpledOne; 06-14-2008 at 07:13 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1165 (permalink)  
Old 06-17-2008, 05:44 AM
cutzpr's Avatar
Member
 
Join Date: Jan 2008
Posts: 35
cutzpr is on a distinguished road
How does one incorporate the direction of the slope of a moving average or of digital filter into an EA.

example... I could like to calculate the angle slope from the current bar to lets say 10 bars ago. Or the difference between the angle direction. Is this possible?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1166 (permalink)  
Old 06-18-2008, 12:34 PM
Junior Member
 
Join Date: Dec 2007
Posts: 13
amatrader is on a distinguished road
Hi folks

Please can some tell me if it is possible to have a date limit in an EA, what I mean is can I set an expiry date in an EA that once it reaches the set date it just stops trading.

It would probably say something like this:-

check date, if date is equal to or grater than (set date) do nothing.

That's the english version, I need the MQL4 version...lol

Thanks if anyone can help.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1167 (permalink)  
Old 06-18-2008, 12:52 PM
IN10TION's Avatar
Senior Member
 
Join Date: Mar 2007
Posts: 475
Blog Entries: 1
IN10TION is on a distinguished road
int start(){
if(TimeCurrent()>D'2008.07.01 12:00:00'){Comment("EXPIRED"); return(0);}

...

return(0);
}

Quote:
Originally Posted by amatrader View Post
Please can some tell me if it is possible to have a date limit in an EA, what I mean is can I set an expiry date in an EA that once it reaches the set date it just stops trading.

It would probably say something like this:-

check date, if date is equal to or grater than (set date) do nothing.

That's the english version, I need the MQL4 version...lol

Thanks if anyone can help.
__________________
..SUPER REVISED.. IN10TION newsReader v09.8 Lite - the best news reader on your chart
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1168 (permalink)  
Old 06-18-2008, 01:06 PM
Administrator
 
Join Date: Sep 2005
Posts: 15,986
Blog Entries: 70
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
Quote:
Originally Posted by amatrader View Post
Please can some tell me if it is possible to have a date limit in an EA, what I mean is can I set an expiry date in an EA that once it reaches the set date it just stops trading.

It would probably say something like this:-

check date, if date is equal to or grater than (set date) do nothing.

That's the english version, I need the MQL4 version...lol

Thanks if anyone can help.
Look at this thread How to LOCK/Encrypt EA
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1169 (permalink)  
Old 06-18-2008, 02:00 PM
Junior Member
 
Join Date: Dec 2007
Posts: 13
amatrader is on a distinguished road
Thank you sir... Much appreciated.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #1170 (permalink)  
Old 06-18-2008, 05:18 PM
Fxfix's Avatar
Junior Member
 
Join Date: Sep 2005
Posts: 26
Fxfix is on a distinguished road
Weekly High Low.

Can anyone post a weekly High Low indicator like the attached for the daily?
Or maybe change the attached to a weekly for me please.

Thanks in advance.
Attached Files
File Type: mq4 Daily_High_Low .mq4 (3.4 KB, 3 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
histogram

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 On
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/questions/270-ask.html
Posted By For Type Date
OzFx System:) - Page 639 This thread Refback 06-21-2008 09:53 PM
Forex SRDC Sidus Sibkis EA MT4 Forum OTCSmart This thread Refback 12-08-2007 11:46 AM


All times are GMT. The time now is 10:27 PM.



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