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
  #231 (permalink)  
Old 08-09-2006, 02:08 PM
Junior Member
 
Join Date: Dec 2005
Posts: 4
Non Liquet is on a distinguished road
Quote:
Originally Posted by currencyshmuck
hello guys,
you all may know the name of this author but never knew that
his method coded into software.
Pesavento wroted among the others this wonderful books:
* Fibonacci Ratios with Pattern Recognition
* Profitable Patterns for Stock Trading
* Astro-Cycles : Traders Viewpoint
by the way i know that ENSIGN software also have his original Pesavento Patterns study tool wich can be seen in the next link.
if someone can import it from ENSIGN to MetaTrader 4 it will be amazing.
http://www.ensignsoftware.com/help/pesavento.htm
This may not be what you're looking for, but have you seen the sb_ZUP indicator from http://www.workmanworld.com/TradingF...2/Default.aspx
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #232 (permalink)  
Old 08-09-2006, 07:09 PM
Junior Member
 
Join Date: Aug 2006
Posts: 1
muckyboy is on a distinguished road
Pivot Points based on EST

I live in the UK, and my server is in CHF, so the time axis is based on Central European Standard Time. I have Pivot.mq4 (from MetaQuotes), which, therefore, calculates daily pivots based on CEST (or the summer time equivalent). However, I would like to see the pivot point calculation based on the EST (New York). My outline program would have the user enter the number of hours offset from whatever world time the user has on his screen with that of New York. Find the bars which mark yesterday's 00:00 and 23:59 then define a new day by adding the offset (in my case -6). Scan the new day for the highest high and lowest low and output the HH, LL and close for use in calculating the pivot points for today relative to EST.

I'd appreciate any suggestions/guidance.

NB I now have an excellent start from the link quoted above. http://www.workmanworld.com/TradingF...2/Default.aspx

Last edited by muckyboy; 08-09-2006 at 08:56 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #233 (permalink)  
Old 08-12-2006, 04:44 AM
niva's Avatar
Senior Member
 
Join Date: Mar 2006
Posts: 101
niva is on a distinguished road
how to deal iAD() function

I want to use iAD() to produce value for every bar, and then store them in to an array, then do an iMAOnArray() to this array, then output result. However my code doesn't work. Can anyone help?

int pos=Bars-ExtCountedBars;

while(pos>=0){
adarray[pos]=iAD(NULL,0,pos);
ExtMapBuffer1[pos]=iMAOnArray(adarray,0,5,0,MODE_LWMA,pos);
ExtMapBuffer2[pos]=iAC(NULL,0,pos);
pos--;
}
__________________
Forex TSD is NO. 1
EA's blog: http://eaconfigs.blogspot.com/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #234 (permalink)  
Old 08-12-2006, 05:07 AM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 696
Kalenzo is on a distinguished road
Quote:
Originally Posted by niva
I want to use iAD() to produce value for every bar, and then store them in to an array, then do an iMAOnArray() to this array, then output result. However my code doesn't work. Can anyone help?

int pos=Bars-ExtCountedBars;

while(pos>=0){
adarray[pos]=iAD(NULL,0,pos);
ExtMapBuffer1[pos]=iMAOnArray(adarray,0,5,0,MODE_LWMA,pos);
ExtMapBuffer2[pos]=iAC(NULL,0,pos);
pos--;
}
FIll up that adarray first, then make iMaOnArray.
And u don't need second buffer adarray if u put the same values in ExtMapBuffer2. The example I attached bellow should work fine.

int pos=Bars-ExtCountedBars;

while(pos>=0){
ExtMapBuffer2[pos]=iAC(NULL,0,pos);
pos--;
}

pos=Bars-ExtCountedBars;

while(pos>=0){
ExtMapBuffer1[pos]=iMAOnArray(ExtMapBuffer2,0,5,0,MODE_LWMA,pos);
pos--;
}
__________________
You need proffesional mql coder? Contact me! I will help you!
........................................
http://www.fxservice.eu/
........................................
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #235 (permalink)  
Old 08-16-2006, 08:39 AM
Junior Member
 
Join Date: Apr 2006
Posts: 15
Hopexicerat is on a distinguished road
Codersguru, I have something for you, can you PM your email address, I cannot message you because your pm box is full.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #236 (permalink)  
Old 08-17-2006, 11:35 AM
Member
 
Join Date: Apr 2006
Posts: 61
gordon is on a distinguished road
Is there a simple way of cloning a trend line ?
I have looked but cannot find it.

thanks

Gordon
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #237 (permalink)  
Old 08-17-2006, 11:37 AM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 696
Kalenzo is on a distinguished road
Quote:
Originally Posted by gordon
Is there a simple way of cloning a trend line ?
I have looked but cannot find it.

thanks

Gordon
Click on the trend line, to select it, then press and hold ctrl key and then just drag and drop with mouse left button.
__________________
You need proffesional mql coder? Contact me! I will help you!
........................................
http://www.fxservice.eu/
........................................
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #238 (permalink)  
Old 08-17-2006, 02:25 PM
Member
 
Join Date: Apr 2006
Posts: 61
gordon is on a distinguished road
thanks

Gordon
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #239 (permalink)  
Old 08-17-2006, 07:36 PM
Junior Member
 
Join Date: Jun 2006
Posts: 15
autopips is on a distinguished road
Write_Alert() and Read_Alert() function ?

Hello,

I know the function Alert() which means to WRITE an alert.
I need the reverse function: can MT4 also READ the messages of the alerts ?

One complicated way would be to send the alert by email to myself, then somehow get the content of the email and parse it, and then feed it into MT4 using a dll. How to do this exactly ? Or is there an easier way ?

Autopips
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #240 (permalink)  
Old 08-17-2006, 08:52 PM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 696
Kalenzo is on a distinguished road
Quote:
Originally Posted by autopips
Hello,

I know the function Alert() which means to WRITE an alert.
I need the reverse function: can MT4 also READ the messages of the alerts ?

One complicated way would be to send the alert by email to myself, then somehow get the content of the email and parse it, and then feed it into MT4 using a dll. How to do this exactly ? Or is there an easier way ?

Autopips
If u specify the right properties in options of metatrader u can make string message and send it to u by SendMail() function, but better way is to use the dll made by codersguru witch can be found on his web page www.metatrader.info in the tools section.
__________________
You need proffesional mql coder? Contact me! I will help you!
........................................
http://www.fxservice.eu/
........................................
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
histogram, forex, ZUP_v1.mq4

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 10:53 PM
Forex SRDC Sidus Sibkis EA MT4 Forum OTCSmart This thread Refback 12-08-2007 12:46 PM


All times are GMT. The time now is 06:14 AM.



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