Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Indicators - Metatrader 4


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 (3) Thread Tools Display Modes
  #41 (permalink)  
Old 01-02-2008, 12:17 AM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 806
TheRumpledOne is an unknown quantity at this point
Quote:
Originally Posted by drgoodvibe View Post
Hi So with this version you've uploaded you can have this EA work with any custom indicator?

Now that is a great idea. Mind showing us how it's done?
Change the inputs:

Tell TRO_SAK what indicator(disk file name) you want to use, then load in the parameters, (-100) means to skip that parameter, load in the levels you want it to test and the colors for those levels.

For CCI, I have 100, 0, -100 for the levels.

For RSI, I have 20, 50, 80 for the levels.

When I get the chance, I'll add DIVERGENCE.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #42 (permalink)  
Old 01-02-2008, 12:23 AM
Senior Member
 
Join Date: Dec 2005
Location: Null
Posts: 537
drgoodvibe is on a distinguished road
Quote:
Originally Posted by TheRumpledOne View Post
Change the inputs:

Tell TRO_SAK what indicator(disk file name) you want to use, then load in the parameters, (-100) means to skip that parameter, load in the levels you want it to test and the colors for those levels.

For CCI, I have 100, 0, -100 for the levels.

For RSI, I have 20, 50, 80 for the levels.

When I get the chance, I'll add DIVERGENCE.

Works perfectly, this is great thank you.
__________________
Metatrader 4 - EA Live and Demo Hosting Solutions http://www.omegasupreme.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #43 (permalink)  
Old 01-02-2008, 01:10 AM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 806
TheRumpledOne is an unknown quantity at this point
Please post your chart.

I am working on a version that uses the iFunctions...

Needs debugging.

Then I can combine the 2!!
Attached Files
File Type: mq4 _TRO_SAK_i.mq4 (21.0 KB, 87 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #44 (permalink)  
Old 01-02-2008, 11:49 PM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 1,957
fxbs is on a distinguished road
not bad?

Forex Factory - View Single Post - Trend Hugger System
TraderGeek :
"Logic:
All this does is compare the most recent closed bar (so 1 bar ago) to the one before that. If the color is different, it generates an alert/email that says the color changed. At that point it's up to you to do any other due diligence, wait for another bar to close, etc.

Also, the alerting logic only runs once per bar, not per tick. So on the first tick of a newly opened bar, it looks at the prior two bars to detect a color change. It does not look at the newly opened bar at all. I thought of making sure it was the same color as the most recently closed bar, but decided not to as I think a lot of people are trading this system differently than others."
PHP Code:
bool NewBar() {

    static 
datetime LastTime 0;

    if (
Time[0] != LastTime) {
        
LastTime Time[0];        
        return (
true);
    } else
        return (
false);
}
[..............]

     if (
NewBar())
     {
      
string CurrColor;
      
string PrevColor;
      
      
//calc CurrColor
      
if (ind_buffer1[1] != 0)
          
CurrColor "LimeGreen";
      if (
ind_buffer1s[1] != 0)
          
CurrColor "Green";
      if (
ind_buffer2[1] != 0)
          
CurrColor "Red";
      if (
ind_buffer2s[1] != 0)
          
CurrColor "Maroon";
          
      
//Calc PrevColor
      
if (ind_buffer1[2] != 0)
          
PrevColor "LimeGreen";
      if (
ind_buffer1s[2] != 0)
          
PrevColor "Green";
      if (
ind_buffer2[2] != 0)
          
PrevColor "Red";
      if (
ind_buffer2s[2] != 0)
          
PrevColor "Maroon";
          
      
      
      if (
CurrColor != PrevColor)
      {
         
         
string AlertText Symbol() + ": oSMA Color Change";
        
         if (
AlertOn)
            
Alert(AlertText);
         if (
EmailOn)              
            
SendMail(AlertText,"");
      } 
Attached Files
File Type: mq4 OsMA_Color2Alert.mq4 (5.2 KB, 66 views)

Last edited by fxbs; 01-02-2008 at 11:51 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #45 (permalink)  
Old 01-05-2008, 07:19 PM
TheRumpledOne's Avatar
Banned
 
Join Date: Nov 2006
Posts: 806
TheRumpledOne is an unknown quantity at this point


Latest version.

Code on MTF thread.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #46 (permalink)  
Old 02-27-2008, 09:19 PM
Senior Member
 
Join Date: Oct 2005
Posts: 328
Perky is on a distinguished road
oh rumply one! i use your tro sak indicator thanks how do you get an expert to read it
Attached Images
File Type: gif chart.gif (82.8 KB, 550 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #47 (permalink)  
Old 03-06-2008, 04:25 AM
Junior Member
 
Join Date: Dec 2006
Location: Kanada
Posts: 6
bratt is on a distinguished road
re: Multi time frame ... easy_iCustom and Alerts!

Hello Codersguru,

I hope someone here can help me figure outthis indicator. I been trying to get it (easy_iCustom and Alerts! indicator) to work so that it alerts when two different timeframe Stochastics both cross at same time, 5m & 15m on Stochastics. Is it even possible, I wonder. Can someone please post an pre configured one for me? I'm all thumbs, Thanks

signed, Richie

-->
Attached Images
File Type: jpg jp3.jpg (25.0 KB, 500 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #48 (permalink)  
Old 09-11-2008, 08:02 PM
Member
 
Join Date: Jun 2008
Posts: 71
MoreYummy is on a distinguished road
do you think it will work on asctrend? im trying to have it signal me when there is an arrow.
cant figure out how to modify so it will give out arrow and alert, and email all together when there is an arrow coming out.

thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #49 (permalink)  
Old 09-15-2008, 05:23 AM
marcelcorzo's Avatar
Member
 
Join Date: Oct 2007
Location: Colombia
Posts: 81
marcelcorzo is on a distinguished road
Quote:
Originally Posted by MoreYummy View Post
do you think it will work on asctrend? im trying to have it signal me when there is an arrow.
cant figure out how to modify so it will give out arrow and alert, and email all together when there is an arrow coming out.

thanks.
Hi, moreyummy, in the asctrend thread there are some asctrend indicator swith signal. I'm using this one:
Attached Files
File Type: mq4 ASCTrend_Sound.mq4.mq4 (6.2 KB, 17 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #50 (permalink)  
Old 09-18-2008, 10:22 AM
Junior Member
 
Join Date: Jul 2008
Posts: 1
Hudak is on a distinguished road
Zero Lag MACD

Hi Folks,

I am new here and am I looking for trading system based on ZeroLagMACD and ZeroLagStoch. I found these indicators but when I want to adjust them into AOS I failed. Maybe because I can not do any complicated programing.

Does somebody has AOS based on ZeroLag MACD and ZeroLagStoch?

Thank you for your help.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
icustom

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/indicators-metatrader-4/1094-easy-icustom-alerts.html
Posted By For Type Date
。レForex。ロMetaTrader Partュコ。レCFD.&Futures。ロ - MetaTrader、゙、ネ、畍iki This thread Refback 02-01-2008 09:00 AM
。レForex。ロMetaTrader Partュコ。レCFD.&Futures。ロ - MetaTrader、゙、ネ、畍iki This thread Refback 01-08-2008 11:15 AM
【Forex】MetaTrader PartY【CFD.&Futures】 This thread Refback 11-04-2007 05:22 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
iCustom function homicida Questions 56 07-28-2008 09:57 AM
iCustom question .. yaniv_av Indicators - Metatrader 4 16 06-20-2008 04:37 PM
icustom maje Questions 24 12-05-2007 09:26 AM
I need help on creating an Icustom statement for my EA using this indicator as input! iscuba11 Expert Advisors - Metatrader 4 4 09-11-2006 07:18 PM
iCustom() problem billritz Indicators - Metatrader 4 5 08-23-2006 07:22 AM


All times are GMT. The time now is 09:39 AM.



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