Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #901 (permalink)  
Old 10-19-2007, 06:54 PM
Member
 
Join Date: Mar 2007
Posts: 72
fxinthecity is on a distinguished road
Hello ANYONE PLEASE DO THIS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #902 (permalink)  
Old 10-19-2007, 10:38 PM
Junior Member
 
Join Date: Nov 2006
Posts: 17
jsmith43 is on a distinguished road
Help needed with alert

I need a signal arrow and audio alert for this indicator at the cross over point
I know you coders are inundated with requests.
I hope one of you can find time to help me out .
It's a great indicator
Thanks in advance
Attached Files
File Type: ex4 ang_Zad (C).ex4 (3.0 KB, 109 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #903 (permalink)  
Old 10-19-2007, 10:50 PM
Senior Member
 
Join Date: May 2006
Posts: 254
banzai is on a distinguished road
Quote:
Originally Posted by boostedtrader View Post
Please, anybody can put alert to this indicator?

I tried xpMA_V2 and set MA_type to 8(hma), but no luck.

Thanks
Try this. It has pop-up and e-mail alert.
Attached Files
File Type: mq4 Slope Direction Line.mq4 (6.1 KB, 184 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #904 (permalink)  
Old 10-19-2007, 10:57 PM
Member
 
Join Date: Mar 2007
Posts: 72
fxinthecity is on a distinguished road
HI banzai can you add an alert here please,

THANKS
Attached Files
File Type: mq4 DT_ZZ.mq4 (3.6 KB, 79 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #905 (permalink)  
Old 10-19-2007, 11:18 PM
increase's Avatar
Senior Member
 
Join Date: May 2006
Posts: 845
increase is on a distinguished road
Quote:
Originally Posted by fxinthecity View Post
HI banzai can you add an alert here please,

THANKS

I added one to this
Attached Files
File Type: mq4 DT-ZZ-M1.mq4 (3.7 KB, 170 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #906 (permalink)  
Old 10-19-2007, 11:20 PM
increase's Avatar
Senior Member
 
Join Date: May 2006
Posts: 845
increase is on a distinguished road
Quote:
Originally Posted by jsmith43 View Post
I need a signal arrow and audio alert for this indicator at the cross over point
I know you coders are inundated with requests.
I hope one of you can find time to help me out .
It's a great indicator
Thanks in advance
Well you need to post thecode for anyone to do that
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #907 (permalink)  
Old 10-20-2007, 02:24 AM
Junior Member
 
Join Date: Nov 2006
Posts: 17
jsmith43 is on a distinguished road
Alert needed

Sorry, Increase never had any experience with this code stuff before
I hope this is what you need
Thanks
//--------ang_Zad (C)-------------------
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Red
//----------------------
extern double ki=4;
//--------------------
double za[],z,za2[],z2;
//************************************************** ******
int init(){
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,za);
SetIndexBuffer(1,za2);
return(0);}
//************************************************** ******
int start() {
int i,cbi;
int n,ai,bi,f,ai2,bi2,f2;
cbi=Bars-IndicatorCounted()-1;
//------------------------------------------------------------------------------------------------------------------------------
for(i=cbi; i>=0; i--) {
if (Close[i]>z && Close[i]>Close[i+1]) z=za[i+1]+(Close[i]-za[i+1])/ki;
if (Close[i]<z && Close[i]<Close[i+1]) z=za[i+1]+(Close[i]-za[i+1])/ki;
if (Close[i]>z2 && Close[i]<Close[i+1]) z2=za2[i+1]+(Close[i]-za2[i+1])/ki;
if (Close[i]<z2 && Close[i]>Close[i+1]) z2=za2[i+1]+(Close[i]-za2[i+1])/ki;
if (i>Bars-5) {z=Close[i]; z2=z;}
za[i]=z;
za2[i]=z2;
}
//------------------------------------------------------
return(0);}
//************************************************** ******
Attached Files
File Type: ex4 ang_Zad (C).ex4 (3.0 KB, 81 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #908 (permalink)  
Old 10-20-2007, 02:28 AM
Member
 
Join Date: Mar 2007
Posts: 72
fxinthecity is on a distinguished road
Quote:
Originally Posted by increase View Post
I added one to this
Thanks but you changed the indicator totaly, i just needed an alert if a dot comes, and not histogramm indicator.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #909 (permalink)  
Old 10-20-2007, 03:01 PM
Member
 
Join Date: Mar 2007
Posts: 72
fxinthecity is on a distinguished road
Can someone add an alert to this indicator.

I need always Alert if Dot comes.

Regards
Attached Files
File Type: mq4 DT_ZZ.mq4 (3.6 KB, 61 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #910 (permalink)  
Old 10-21-2007, 03:51 AM
Junior Member
 
Join Date: Aug 2007
Posts: 22
mememe is on a distinguished road
can you add an alert here please
Attached Files
File Type: mq4 SnakeBorders.mq4 (8.4 KB, 147 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
adx cross alert, alert, alert signal, ArrZZx2, ArrZZx2 alert, Audible Trade Signal Alert, bobokusfibo, bollinger, bollinger alert, bollinger bands alert, bollitoucher, candle_signal, cci, cci alert, CCI cross alert, center of gravity, DinapoliTarget_Malay, EMA-Crossover_Signal.mq4, fisher_yur4ik, fncd indicator, forex, Forex MetaTrader 4 Visual Alert indicator, forex trsi, forex tsd, FXI_Point&Figure, FXI_Point&Figure-Adv, FXI_Point&Figure-Adv.mq4, histogram, ichi cloud, indicators, indicators with alert, Jurik Volty, ki signal, LabTrend1_v2.1, laguerre alert, ma alert, MA cross alert, ma cross alert combo, ma cross signal, macd alert, macd cross alert, MA_Crossover_Signal, metatrader 4 indicators, metatrader alert, metatrader indicator alert, metatrader signal, metatrader signals, mt4 alert indicator, MULTISSRCPLUSSM, search, Signal, signal alert, signal forex, snake, snake force, snake force indicator, snake indicator, stopreversal, super_signals_v2, T3 RSI, t3 rsi alert, trsi forex, trsi indicator, tsd forex, wlxfractals, ZigZag alert


Currently Active Users Viewing This Thread: 6 (5 members and 1 guests)
pets, advfn2828, augur886, cannu, demam_emas
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

Similar Threads
Thread Thread Starter Forum Replies Last Post
I need Stochastic Oscillator with alert/signal 200 Indicators - Metatrader 4 2 04-12-2009 09:19 AM
2 signal AmiBroker how insert indicators king forex Indicators - Metatrader 4 5 11-11-2008 09:30 AM
Signal Alert vidda Suggestions for Trading Systems 5 08-12-2007 07:05 AM
changes for ki signal rizdwan74kl Indicators - Metatrader 4 2 04-02-2007 11:50 PM
Help W/Audible Alert Indicators for MA,EMA,SMA D.A. Indicators - Metatrader 4 1 02-26-2007 06:41 PM


All times are GMT. The time now is 09:12 PM.



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