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
  #561 (permalink)  
Old 04-16-2007, 08:10 PM
Junior Member
 
Join Date: Feb 2006
Posts: 4
PIKARO is on a distinguished road
Hi!
Only a simple question: ¿Can Metatrader open a web in a window, like a window indicator?
tx in advance.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #562 (permalink)  
Old 04-16-2007, 09:04 PM
Kalenzo's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 693
Kalenzo is on a distinguished road
Quote:
Originally Posted by PIKARO
Hi!
Only a simple question: ¿Can Metatrader open a web in a window, like a window indicator?
tx in advance.
Yes it can
__________________
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
  #563 (permalink)  
Old 04-16-2007, 11:42 PM
Bobokus's Avatar
Junior Member
 
Join Date: Jan 2007
Posts: 26
Bobokus is on a distinguished road
Combine Indicator

Can anyone tell me how to add A 6 LWMA to this Fx Sniper
Attached Files
File Type: mq4 FX Sniper's Ergodic CCI Trigger (SRDC).mq4 (3.5 KB, 23 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #564 (permalink)  
Old 04-17-2007, 12:06 AM
chrinist's Avatar
Junior Member
 
Join Date: Nov 2006
Posts: 1
chrinist is on a distinguished road
question about nonlag MA

dear forex-tsd members, I am looking for an alert that will alarm me when 2 non lag ma are going to same direction. What I have setup on my charts are 2 non lag ma made by igorad. Anyways, I have one set up to 9 and the other set to 27. when the trend changes direction the 9 changes color. The same happens with the 27. Anways. how do I get it to when they both change the same color that they alert me with a sound to let me know that the trend is getting stronger? I hope I made myself clear here. Please let me know if I didnt make myself clear enough with my explanation.

chrinist
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #565 (permalink)  
Old 04-17-2007, 04:43 PM
Member
 
Join Date: Oct 2006
Posts: 69
Big Be is on a distinguished road
Tricky Programming Questions

I need some help for an EA I am working on. These are the tough questions. If you know what to do for ANY of these, can you provide an example?

This is for entrys:
1. I know how to look back. How do I flag (or remember) a condition as True for the next n bars while the program looks to see if other conditions become true?
Perhaps use a counter variable, then the question becomes: How do I count forward for n bars from the current (or even an earlier) bar?

(And where in the EA do you put the counter?)


These next questions are for exits:
2. How do I set up a variable that stores the value of the highest (or lowest) High, Low, or Close since entry? It should update every time a higher (lower) value occurs. (See also next question.)


3. How do I set up a variable that stores the value of the highest High (or lowest Low), or Close, of the last n bars since entry?

//this gives you highest/lowest prices on last 10 bars starting with current(last on the graph - zero bar)
double highestPrice = High[iHighest(Symbol(),0,MODE_HIGH,10,0)];
double lowestPrice = Low[iLowest(Symbol(),0,MODE_LOW,10,0)];
double highestClose = High[iHighest(Symbol(),0,MODE_CLOSE,10,1)];

How do you apply this to limit it to the bars since (and including) the entry bar, when you entered a trade less than 10 bars back? After 10 bars you would use the 10 bars.

Note: For High and Low, include the current bar: For Close, use the most recent closed bar.



4. "Bonus Question" If you are Hot today:
How do I close part of an open order, like 30 or 40%?

Thanks!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #566 (permalink)  
Old 04-19-2007, 03:19 AM
Senior Member
 
Join Date: Jul 2006
Posts: 100
Need2bFree is on a distinguished road
Quote:
Originally Posted by clippertm
Hello Coder's Guru,

Just a little message to thank you for your pdf guides.
They are very helpful and well done.

Hi clippertm,

Would you please either post the link where I can get these pdf files or the files themselves here.

All the best,
N2
__________________
Great spirits have always encountered violent opposition from mediocre minds...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #567 (permalink)  
Old 04-19-2007, 03:46 AM
Senior Member
 
Join Date: Jul 2006
Posts: 100
Need2bFree is on a distinguished road
Quote:
Originally Posted by codersguru
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".

I'm sorry... I guess I'm just a bit slow. Where exactly are these display options? I really need to find ALL your lessons from the very beginning. Can ANYONE direct me plz..........
__________________
Great spirits have always encountered violent opposition from mediocre minds...

Last edited by Need2bFree; 04-19-2007 at 04:04 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #568 (permalink)  
Old 04-21-2007, 08:59 PM
Junior Member
 
Join Date: Apr 2007
Posts: 14
slope is on a distinguished road
Is there a simple way to get a .csv file located in a remote server?
I know how to call it if its located in local filesystem, with Fileopen, but if I put a remote address it wont work.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #569 (permalink)  
Old 04-21-2007, 10:45 PM
forexts's Avatar
Administrator
 
Join Date: Sep 2005
Posts: 291
forexts has disabled reputation
This dll is exactly to do that:

http://www.forex-tsd.com/metatrader-...t=asynchronous

If you call the function first time, the url is addedd to a queue pending to be processed and returns ""

When finally the url is fully downloaded, data is returned instead of empty string.

You must be sure that dll is allowed in your indicator/Ea.

Quote:
Originally Posted by slope
Is there a simple way to get a .csv file located in a remote server?
I know how to call it if its located in local filesystem, with Fileopen, but if I put a remote address it wont work.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #570 (permalink)  
Old 04-24-2007, 04:30 PM
Junior Member
 
Join Date: Jul 2006
Posts: 4
forexer is on a distinguished road
applying iCustom on iCustom

How to make the indicators ( applying iCustom on iCustom ) for example, using braintrading1sig or braintrading1stop to custom indicator like HMA or T3 MA by easiest? Its problem for editing the indicator braintrading1sig source code to calculate from the value of HMA,T3 MA or another custom MAs, not calculate from the current price bars. Thanks for helping
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

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 04:31 PM.



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