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
  #461 (permalink)  
Old 01-14-2007, 05:17 PM
Junior Member
 
Join Date: Oct 2006
Posts: 1
peterkrpan is on a distinguished road
new to this

Dear CG,

Your help would be appreciated.

1-which system generates $30000/month, as indicated on the "home" page

2-how to have crosshairs stay active in Metatrader on all charts in a layout
without having to click every chart in the layout separately and on the
crosshairs tool

3- why doesn't the saved template, when applied, apply to all three new
open charts

Thank you.

Peter
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #462 (permalink)  
Old 01-14-2007, 06:12 PM
Senior Member
 
Join Date: Feb 2006
Posts: 111
tirou is on a distinguished road
Quote:
Originally Posted by majlisb
Hi all

is there any histogram indicator to draw arrow on chart not on separate window ? I want to have arrow when ADX cross a level but on hight/low of candle,

is there any sample to use that code ?

I don't know whether you are searching this type of indicator.Any how I attached this indicator.
Attached Files
File Type: mq4 ADX Crossing.mq4 (2.2 KB, 21 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #463 (permalink)  
Old 01-15-2007, 02:36 AM
Member
 
Join Date: Oct 2006
Posts: 79
takechance is on a distinguished road
Help needed in coding an EA.

Hello codersguru,

Could you please build an EA for all interested persons here based on my simple system as follows.

I am testing this for quite some times and found really good results but due to time constraints I miss so many very good trades. Automation will definitely be helpful in this regard.

The rules.

Time Frame : 30 Min, 4 Major Pairs.

Entry : Camarilla Pivots H3 (buy) and L3 (sell) IF the JMA Slope is +ve and -ve respectively just at the times price touches H3/L3. Which means not at the close of bar but on real time.

Stop Loss : Initial SL well below pivot point just for safety but preferably the EA should close positions as per below mentioned rules.

Exit : 1) At H5 point for Buy and at L5 point for Sell trades.

2) JMA slope turns -ve (for Buy trades) at the end of the bar and vice versa.

Whichever between (1) and (2) occurs first.

Your help will be highly appreciated.

Thanks.

P.S : I have now posted this query on EA suggestion folder but can't delete this one. So if the moderator wants so you can delete this. Sorry for the trouble.
Attached Images
File Type: jpg Camr+JMA.JPG (176.5 KB, 145 views)

Last edited by takechance; 01-15-2007 at 02:50 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #464 (permalink)  
Old 01-15-2007, 08:11 AM
Junior Member
 
Join Date: Nov 2006
Posts: 22
majlisb is on a distinguished road
Quote:
Originally Posted by tirou
I don't know whether you are searching this type of indicator.Any how I attached this indicator.
Thanks alot Tirou,

You are the MAN
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #465 (permalink)  
Old 01-15-2007, 03:33 PM
Senior Member
 
Join Date: Nov 2006
Posts: 137
bodshyipmonitor is on a distinguished road
how do we merge two currencies pair onto the same chart?
__________________
Require your own unique EA? PM me.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #466 (permalink)  
Old 01-20-2007, 01:06 AM
Junior Member
 
Join Date: Jan 2007
Posts: 2
jos4x is on a distinguished road
InnerBar

CodersGuru,

I would like some help for coding an indicator that finds all inner bars in a chart and if finds one will show an arrow above such bar.
TimeFrame : M15 through H4

Inner Bar Definition : When the full length of a bar is less than that full length of the previous bar.
In other words, the highest and lowest of a bar don't exceed the higher and lowest of previous one. If highs and/or lows are equal it is NOT an inner bar.

Thanks,

Jos4x
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #467 (permalink)  
Old 01-20-2007, 01:08 AM
Sadly's Avatar
Senior Member
 
Join Date: Nov 2006
Posts: 255
Sadly is on a distinguished road
Should this expression produce the same result?

if (High[i+1]>High[i+3] && High[i+1]>High[i+4])

if (High[i+1]>(High[i+3] && High[i+4]))

if (High[i+1]>(High[i+3] & High[i+4]))
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #468 (permalink)  
Old 01-20-2007, 01:27 AM
ralph.ronnquist's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 280
ralph.ronnquist is on a distinguished road
They might and they might not: in words, the expressions would be something like the following:

The first expression says that "high of bar i+1 is greater than both high of bar i+3 and high of bar i+4".

The second expression says that "high of bar i+1 is greater than the truth value representation obtained from regarding both high of bar i+3 and high of bar i+4 as truth value representations"; here zero means false and non-zero means true, with a canoncial representation as 1.

The third expression says that "look at the bits of the highs of bar i+3 and bar i+4, and combine them with a bit-wise AND operation into whatever bit pattern that is, then reinterpret that bit pattern as a double number, and test whether high of bar i+1 is greater than that double number".

I'd love to see the EA/indicator
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #469 (permalink)  
Old 01-20-2007, 01:54 AM
Sadly's Avatar
Senior Member
 
Join Date: Nov 2006
Posts: 255
Sadly is on a distinguished road
Nice 1!

So, when testing out whether the High[i+1] is > High[i+3] and also High[i+4] then:- if (High[i+1]>(High[i+3] && High[i+4])) ....

I'm attempting to modify existing code by adding 'perfection' setups to it here:- TD Sequential
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #470 (permalink)  
Old 01-20-2007, 01:59 AM
ralph.ronnquist's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 280
ralph.ronnquist is on a distinguished road
Maybe you mean: if ( High[i+1] > MathMax( High[i+3], High[i+4] ) ) ...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
histogram, forex

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

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 02:23 PM.



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