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
  #2721 (permalink)  
Old 09-08-2009, 11:34 AM
Junior Member
 
Join Date: Jan 2009
Posts: 2
dentmick is on a distinguished road
add sound alert

hi
sry i'm new and try to add sound alert for this indicator
thank u
Attached Files
File Type: ex4 #MTF_HMA_Russian_Color.ex4 (5.1 KB, 63 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
  #2722 (permalink)  
Old 09-08-2009, 07:12 PM
Antomi's Avatar
Senior Member
 
Join Date: Oct 2007
Location: Germany
Posts: 113
Antomi is on a distinguished road
Heiken Ashi alarm

Hi,
Probably I need some help from a good coder.
I use the Heiken_Ashi-Smoothed_Alerts which is to your convenience attached (unfortunately I can't attach the sound file but it can be easily changed in the parameter field).
The indicator gives me the choice to set the bar when the alarm should come up (AlertOnBar). This function has some problems. It does not work properly.

First of of all the alarm should only start after the bar is closed. Which is not the case.
E.g. if I change the AlertOnBar to 4 the alarm should come after the fourths bar with the same color is closed only ones.
The next problem is that the alarm starts again after the next 4 bars of the same color, meaning that the signal is coming every 4 bars (in case of a trend). I also have the impression that even that is not exactly defined.
The signal is just not "clean".

If someone can help me to fix that I really would appreciate.

Additionally it would be preferable to have the indicator in a separate window in histogram style.

Thanks in advance for the help.

Best

Antomi
Attached Files
File Type: mq4 Heiken_Ashi_Smoothed_Alerts.mq4 (5.6 KB, 63 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
  #2723 (permalink)  
Old 09-08-2009, 11:48 PM
newcoder's Avatar
Junior Member
 
Join Date: Jul 2009
Posts: 12
newcoder is on a distinguished road
Need an Alert for this Hama Pad Indicator

Can someone please help me place an Alert for this indicator. I have tried many things and can not do it. Thank you for you help.

#property copyright "Personalized for HAMA PAD Approach - Copyright © 2009"
#property link "http://www.forex-tsd.com"
// modified by keekkenen 2009-02-15
#property indicator_chart_window
#property indicator_buffers 6
#property indicator_color1 Red
#property indicator_color2 RoyalBlue
#property indicator_color3 Red
#property indicator_color4 RoyalBlue
#property indicator_color5 Yellow
#property indicator_color6 Yellow

int MaPeriod = 20;
double buf0[], buf1[], buf2[], buf3[], buf4[], buf5[];
string Copyright = "fxcruiser HAMA PAD (Copyright © 2009)";
//+------------------------------------------------------------------+
int init(){
SetIndexStyle(0,DRAW_HISTOGRAM, 0, 3);
SetIndexBuffer(0, buf0);
SetIndexStyle(1,DRAW_HISTOGRAM, 0, 3);
SetIndexBuffer(1, buf1);
SetIndexStyle(2, DRAW_HISTOGRAM, STYLE_SOLID, 1);
SetIndexBuffer(2, buf2);
SetIndexStyle(3, DRAW_HISTOGRAM, STYLE_SOLID, 1);
SetIndexBuffer(3, buf3);
SetIndexStyle(4, DRAW_LINE, STYLE_SOLID, 0);
SetIndexBuffer(4, buf4);
SetIndexStyle(5, DRAW_LINE, STYLE_SOLID, 0);
SetIndexBuffer(5, buf5);

setLabel(Copyright,Copyright,RoyalBlue,2,5,10,fals e,9,"Lucida Handwriting");
return(0);
}
//+------------------------------------------------------------------+
int deinit(){ObjectDelete(Copyright);}
//+------------------------------------------------------------------+
int start() {
int ExtCountedBars = 0;
double maOpen, maClose, maLow, maHigh;
double haOpen, haHigh, haLow, haClose;
if(Bars<=10) return(0);
ExtCountedBars=IndicatorCounted();
if (ExtCountedBars<0) return(-1);
if (ExtCountedBars>0) ExtCountedBars--;
int pos=Bars-ExtCountedBars-1;
while(pos>=0){
maOpen=iMA(NULL,0,MaPeriod,0,MODE_EMA,MODE_OPEN,po s);
maClose=iMA(NULL,0,MaPeriod,0,MODE_EMA,MODE_CLOSE, pos);
maLow=iMA(NULL,0,MaPeriod,0,MODE_EMA,MODE_LOW,pos) ;
maHigh=iMA(NULL,0,MaPeriod,0,MODE_EMA,MODE_HIGH,po s);

haOpen=(buf0[pos+1]+buf1[pos+1])/2.;
haClose=(maOpen+maHigh+maLow+maClose)/4.;

buf0[pos]=haOpen;
buf1[pos]=haClose;

if (buf0[pos] < buf1[pos]) {
buf2[pos] = Low[pos];
buf3[pos] = High[pos];
}else{
buf2[pos] = High[pos];
buf3[pos] = Low[pos];
}
pos--;
}
for (int i = Bars-ExtCountedBars-1; i >= 0; i--) {
buf4[i] = iMA(NULL, 0, MaPeriod, 0, MODE_EMA, PRICE_HIGH, i);
buf5[i] = iMA(NULL, 0, MaPeriod, 0, MODE_EMA, PRICE_LOW, i);
}
return(0);
}
//+------------------------------------------------------------------+
void setLabel(string name, string text, color col, int corner,
int x, int y, bool back = false, int fontsize = 9,
string fontname = "MS Sans Serif") {
if (ObjectFind(name)==-1){
// создание объекта, если не создавался или был удален
ObjectCreate(name, OBJ_LABEL, 0, 0, 0);
ObjectSetText(name, text, fontsize, fontname, col);
ObjectSet(name, OBJPROP_CORNER, corner);
ObjectSet(name, OBJPROP_BACK,back);
ObjectSet(name, OBJPROP_XDISTANCE, x);
ObjectSet(name, OBJPROP_YDISTANCE, y);
}else{
ObjectSetText(name, text, fontsize, fontname, col);
ObjectSet(name, OBJPROP_CORNER, corner);
ObjectSet(name, OBJPROP_BACK,back);
ObjectSet(name, OBJPROP_XDISTANCE, x);
ObjectSet(name, OBJPROP_YDISTANCE, y);
}
}
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
  #2724 (permalink)  
Old 09-09-2009, 11:45 AM
Junior Member
 
Join Date: Dec 2008
Posts: 16
imran.forex is on a distinguished road
Need an alert for zig and zag indicator

Dear friends,


Can u please create an alert for this indicator whenever it shows buy and sell signal (text box along with sound)


regards,

Imran
Attached Images
File Type: gif zig znd zag.gif (19.1 KB, 623 views)
Attached Files
File Type: ex4 ZigAndZag(1).ex4 (9.6 KB, 122 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
  #2725 (permalink)  
Old 09-09-2009, 12:12 PM
camisa's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Portugal
Posts: 349
camisa is on a distinguished road
Quote:
Originally Posted by imran.forex View Post
Dear friends,


Can u please create an alert for this indicator whenever it shows buy and sell signal (text box along with sound)


regards,

Imran
hi, could you please post arrow 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
  #2726 (permalink)  
Old 09-09-2009, 12:31 PM
Junior Member
 
Join Date: Dec 2008
Posts: 16
imran.forex is on a distinguished road
Quote:
Originally Posted by camisa View Post
hi, could you please post arrow indicator?
it is already attached its zig and zag 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
  #2727 (permalink)  
Old 09-09-2009, 01:12 PM
Antomi's Avatar
Senior Member
 
Join Date: Oct 2007
Location: Germany
Posts: 113
Antomi is on a distinguished road
Zig-Zack Indicator

Hi Imran,

Great to hear from you since long time.
Hopefully everything ist ok.

It would help a lot if you would provide the mq4 file instead of the compiled one.

Best

Antomi
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
  #2728 (permalink)  
Old 09-09-2009, 02:14 PM
Antomi's Avatar
Senior Member
 
Join Date: Oct 2007
Location: Germany
Posts: 113
Antomi is on a distinguished road
ZigAndZack indicator

Quote:
Originally Posted by imran.forex View Post
Dear friends,


Can u please create an alert for this indicator whenever it shows buy and sell signal (text box along with sound)


regards,

Imran

Sorry, but I have bad news.
This indicator is absolutely worthless. It repaints strongly even after 20 bars. It looks only good in the past. Just forget it.
It's just a bad joke.

Antomi
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
  #2729 (permalink)  
Old 09-09-2009, 02:38 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,083
Blog Entries: 243
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
ZigandZag indicator is here http://www.forex-tsd.com/200126-post1967.html and 3_Level_ZZ_Semafor (indicator for MT4) and here Follow The Bouncing Pip

ZigandZag originally here: ZigAndZag - MQL4 Code Base
Author: Bookkeeper.
__________________
My blog on TSD
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
  #2730 (permalink)  
Old 09-09-2009, 02:49 PM
Antomi's Avatar
Senior Member
 
Join Date: Oct 2007
Location: Germany
Posts: 113
Antomi is on a distinguished road
Heiken_Ashi_Smoothed_Alerts.mq4

Quote:
Originally Posted by Antomi View Post
Hi,
Probably I need some help from a good coder.
I use the Heiken_Ashi-Smoothed_Alerts which is to your convenience attached (unfortunately I can't attach the sound file but it can be easily changed in the parameter field).
The indicator gives me the choice to set the bar when the alarm should come up (AlertOnBar). This function has some problems. It does not work properly.

First of of all the alarm should only start after the bar is closed. Which is not the case.
E.g. if I change the AlertOnBar to 4 the alarm should come after the fourths bar with the same color is closed only ones.
The next problem is that the alarm starts again after the next 4 bars of the same color, meaning that the signal is coming every 4 bars (in case of a trend). I also have the impression that even that is not exactly defined.
The signal is just not "clean".

If someone can help me to fix that I really would appreciate.

Additionally it would be preferable to have the indicator in a separate window in histogram style.

Thanks in advance for the help.

Best

Antomi

Hi Newdigital,

Do you know some one who is able to correct this indicator (see post 2722)?
It has great potential if it works as it should.
Thanks

Antomi
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: 4 (3 members and 1 guests)
camvcvoo, lindas, yoshikatsu suzuki
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 04:38 PM.



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