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
  #31 (permalink)  
Old 12-06-2005, 11:44 PM
Maratha's Avatar
Junior Member
 
Join Date: Dec 2005
Posts: 13
Maratha is on a distinguished road
Could not find lesson 2

Hi Codesguru,

The links that you provided in lessons section for lesson 1 and 2 are not working. I found lesson 1 (welcome.pdf) on the thread, but could not locate lesson 2....would you pl post the message and thread for the same?

Thanks,

Maratha.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #32 (permalink)  
Old 12-06-2005, 11:45 PM
lowphat's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 200
lowphat is on a distinguished road
How hard would it be to making a basic expert for shi

Last edited by lowphat; 12-22-2005 at 11:06 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #33 (permalink)  
Old 12-07-2005, 12:28 AM
codersguru's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 986
codersguru has a spectacular aura aboutcodersguru has a spectacular aura aboutcodersguru has a spectacular aura about
Arrow Change your Display Options

Quote:
Originally Posted by Maratha
Hi Codesguru,

The links that you provided in lessons section for lesson 1 and 2 are not working. I found lesson 1 (welcome.pdf) on the thread, but could not locate lesson 2....would you pl post the message and thread for the same?

Thanks,

Maratha.
Maratha,

To locate lesson 2 (And other old lessons) you have to change the option From The-->Last month to Last 2 months in your "Display Options".
__________________
Hope it helps !
Coders' Guru
Senior MQL programmer:
www.xpworx.com/custom.htm
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #34 (permalink)  
Old 12-07-2005, 12:46 AM
Maratha's Avatar
Junior Member
 
Join Date: Dec 2005
Posts: 13
Maratha is on a distinguished road
Got it!

Thanks!! BTW, you have done a great job here!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #35 (permalink)  
Old 12-07-2005, 07:19 AM
lowphat's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 200
lowphat is on a distinguished road
Is there an easyer way to code a range

Last edited by lowphat; 12-22-2005 at 11:04 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #36 (permalink)  
Old 12-07-2005, 12:27 PM
fx1 fx1 is offline
Junior Member
 
Join Date: Nov 2005
Location: Pretoria , South Africa
Posts: 10
fx1 is on a distinguished road
Hi Codesguru,

is it possible to get the highest / lowest value of an indicator like the RSI of the last say 20 bars , by using the highest / lowest functions ?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #37 (permalink)  
Old 12-08-2005, 02:15 PM
hua hua is offline
Member
 
Join Date: Oct 2005
Location: Athens
Posts: 75
hua is on a distinguished road
DFC high alert

Excuse me sir, i am trying very hard to learn by your valuable lessons but its hard for me. (Maybe my husband who is a real ''expert'' in forex could do that, but not me, but away from new year he will be back so yu can talk a lot with him and maybe yu could find the holly grail in trading together with him).
so i need an alert when price touches the attached indicator. Is that possible pls? tks vm in advance again.
Attached Files
File Type: mq4 DFC High.mq4 (7.9 KB, 168 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #38 (permalink)  
Old 12-08-2005, 07:49 PM
Junior Member
 
Join Date: Dec 2005
Posts: 1
segul is on a distinguished road
hello codesguru,
i am new to this forum.i use daily , weekly ,monthly pivots to follow the market direction. i managed to get daily and weekly pivot plotters.But i was unable to get monthly pivots. Could you please help me out. please tell me how to get monthly and probably yearly pivots.

thanking you,
segul.

Last edited by segul; 12-11-2005 at 09:11 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #39 (permalink)  
Old 12-25-2005, 01:31 AM
Member
 
Join Date: Dec 2005
Posts: 32
zuhainis is on a distinguished road
Reading JMASlope Value From Expert

Hi Codersguru,
I'm trying to get current JMASlope value using iCustom but not sure how to do it, can you please help me?

Is this correct?

double Slope = iCustom(NULL,0,"JMASlope",14,0,0);

Thank you.
Attached Files
File Type: mq4 JMASlope.mq4 (11.2 KB, 96 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #40 (permalink)  
Old 12-25-2005, 01:46 AM
codersguru's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 986
codersguru has a spectacular aura aboutcodersguru has a spectacular aura aboutcodersguru has a spectacular aura about
Arrow iCustom with JMASlope

Quote:
Originally Posted by zuhainis
Hi Codersguru,
I'm trying to get current JMASlope value using iCustom but not sure how to do it, can you please help me?

Is this correct?

double Slope = iCustom(NULL,0,"JMASlope",14,0,0);

Thank you.
zuhainis,

Try this:

PHP Code:
     double Slope iCustom(NULL,0,"JMASlope",14,0,0,0); 
parmeter 1 :the symbol - NULL for current symbol.
parmeter 2 : time frame - 0 for current time frame.
parmeter 3 : indicator name - here it's "JMASlope".
parmeter 4 : this is a setting for JMASlope - Length = 14.
parmeter 5 : this is a setting for JMASlope - Phase = 1500.
parmeter 6 : the line (buffer) number (range from 0 to 7).
parmeter 7 : the working bar - 0 for the current bar.

I didn't try it yet, so please try it and tell me what will you get?
__________________
Hope it helps !
Coders' Guru
Senior MQL programmer:
www.xpworx.com/custom.htm
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:22 AM.



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