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
  #711 (permalink)  
Old 07-25-2007, 09:08 PM
Junior Member
 
Join Date: Jun 2007
Posts: 2
pipcorn is on a distinguished road
AltrTrend Signal v2

I am new to your web forum, forgive my ignorance regarding the use of this site; I would like to get more information regarding the indicator referenced in the title block above. Author:OlegVS, Goodman. Indicator: AltrTrend_Signal_v2_2.mq4. I have downloaded it and attached it to a Meta Trader 4 chart. I would like more information regarding its use. Please help me to contact the author or any one else who has in depth knowlege of this indicator and its proper application.

Thankyou

Pipcorn: cduerk[at]tampabay.rr.com

Last edited by newdigital; 07-25-2007 at 10:02 PM.
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
  #712 (permalink)  
Old 07-25-2007, 10:26 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,059
Blog Entries: 241
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
This indicator is on this thread Signal systems (ASCTrend and other modification)
As I know the authors are admins or moderators of Russian viac forum so it is the better to ask them directly on their forum.
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
  #713 (permalink)  
Old 07-26-2007, 06:33 PM
Junior Member
 
Join Date: Feb 2007
Posts: 1
abwoofer is on a distinguished road
i need help

hi folks

i need to know from any one how trade by fx sniper crossing on 4 h fram
what broker is the best for this signal as am coufusing because every broker have its time and the colsing of the 4 hour diffrent from one to other and i can't buy or sell on crossing before the candel close so sometimes i miss it by 50-70 pip according to wait my broker candel close for 4 hour
thanks alot
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
  #714 (permalink)  
Old 07-26-2007, 11:54 PM
Junior Member
 
Join Date: Jun 2007
Posts: 16
dargane is on a distinguished road
Need Help With Indicator

I am creating an indicator that utilizes the AbsoluteStrength indicator to determine market condition. It is supposed to display a row of circles of different colors indicator signifying a particular market condition. I plan to place four copies of the indicator with different time frames for market condition confirmation. My problem is I cannot get the indicator to display. Whenever I attach it to my chart, my computer hangs up. I have tried to find the problem for a week now but am coming up blank. I'm sure it's an easy fix, I just cannot see it. I would appreciate if someone can take a look at the code and see if they notice anything wrong. I DON'T RECOMMEND ATTACHING IT TO YOUR CHART AS IT WILL HANG YOUR COMPUTER IN IT'S CURRENT FORM.

Thanks in advance for any help.


//+------------------------------------------------------------------+
//| Fantastic Four.mq4 |
//| dargane |
//| |
//+------------------------------------------------------------------+
#property copyright "dargane"

#property indicator_separate_window
#property indicator_minimum 1
#property indicator_maximum 4
#property indicator_buffers 4
#property indicator_color1 Red
#property indicator_color2 Green
#property indicator_color3 Yellow
#property indicator_color4 Blue
//---- input parameters
extern int TimeFrame=0;
extern int Mode=1;
extern int Length=10;
extern int Smooth=5;
extern int Signal=5;
extern int Price=0;
extern int ModeMA=3;
extern int OverBought=0;
extern int OverSold=0;
extern int Level=4;
//---- buffers
int ExtMapBuffer1[];
int ExtMapBuffer2[];
int ExtMapBuffer3[];
int ExtMapBuffer4[];
double Bull[];
double Bear[];
double BullSig[];
double BearSig[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
IndicatorBuffers(8);
SetIndexStyle(0,DRAW_ARROW);
SetIndexArrow(0,108);
SetIndexBuffer(0,ExtMapBuffer1);
SetIndexEmptyValue(0,0.0);
SetIndexStyle(1,DRAW_ARROW);
SetIndexArrow(1,108);
SetIndexBuffer(1,ExtMapBuffer2);
SetIndexEmptyValue(1,0.0);
SetIndexStyle(2,DRAW_ARROW);
SetIndexArrow(2,108);
SetIndexBuffer(2,ExtMapBuffer3);
SetIndexEmptyValue(2,0.0);
SetIndexStyle(3,DRAW_ARROW);
SetIndexArrow(3,108);
SetIndexBuffer(3,ExtMapBuffer4);
SetIndexEmptyValue(3,0.0);
SetIndexBuffer(4,Bull);
SetIndexBuffer(5,Bear);
SetIndexBuffer(6,BullSig);
SetIndexBuffer(7,BearSig);
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
if(Bars<=Length) return(0);
int ExtCountedBars=IndicatorCounted();
//---- check for possible errors
if (ExtCountedBars<0) return(-1);
//---- last counted bar will be recounted
if (ExtCountedBars>0) ExtCountedBars--;
int pos=Bars-ExtCountedBars-1;
while(pos>=0)
{
Bull[pos] = iCustom(Symbol(),TimeFrame,"AbsoluteStrength_v1.1" ,Mode,Length,Smooth,Signal,Price,ModeMA,OverBought ,OverSold,0,pos);
Bear[pos] = iCustom(Symbol(),TimeFrame,"AbsoluteStrength_v1.1" ,Mode,Length,Smooth,Signal,Price,ModeMA,OverBought ,OverSold,1,pos);
BullSig[pos] = iCustom(Symbol(),TimeFrame,"AbsoluteStrength_v1.1" ,Mode,Length,Smooth,Signal,Price,ModeMA,OverBought ,OverSold,2,pos);
BearSig[pos] = iCustom(Symbol(),TimeFrame,"AbsoluteStrength_v1.1" ,Mode,Length,Smooth,Signal,Price,ModeMA,OverBought ,OverSold,3,pos);
if (Bull[pos] > BullSig[pos] && Bear[pos] < BearSig[pos])
{
ExtMapBuffer1[pos] = EMPTY_VALUE;
ExtMapBuffer2[pos] = Level;
ExtMapBuffer3[pos] = EMPTY_VALUE;
ExtMapBuffer4[pos] = EMPTY_VALUE;
}
else
{
if (Bull[pos] > BullSig[pos] && Bear[pos] > BearSig[pos])
{
ExtMapBuffer1[pos] = EMPTY_VALUE;
ExtMapBuffer2[pos] = EMPTY_VALUE;
ExtMapBuffer3[pos] = Level;
ExtMapBuffer4[pos] = EMPTY_VALUE;
}
else
{
if (Bull[pos] < BullSig[pos] && Bear[pos] < BearSig[pos])
{
ExtMapBuffer1[pos] = EMPTY_VALUE;
ExtMapBuffer2[pos] = EMPTY_VALUE;
ExtMapBuffer3[pos] = EMPTY_VALUE;
ExtMapBuffer4[pos] = Level;
}
else
{
if (Bull[pos] < BullSig[pos] && Bear[pos] > BearSig[pos])
{
ExtMapBuffer1[pos] = Level;
ExtMapBuffer2[pos] = EMPTY_VALUE;
ExtMapBuffer3[pos] = EMPTY_VALUE;
ExtMapBuffer4[pos] = EMPTY_VALUE;
}
}
}
}
}
//----
return(0);
}
//+------------------------------------------------------------------+
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
  #715 (permalink)  
Old 07-27-2007, 04:21 AM
Roets's Avatar
Senior Member
 
Join Date: Nov 2005
Location: North West South Africa
Posts: 120
Roets is on a distinguished road
Red face Indicator signals

Hallo people,
I wonder if someone can help me here. Iwant to read the highest and lowest values of an indicator over specifies number of periods. Like you would do with the bars. But here I want to read the indicator values. Have someone atempt this yet. I'm sure its a simple procedure. I would be very happy if someone can give some guide here on how to do this.

Thanks
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
  #716 (permalink)  
Old 07-27-2007, 07:59 AM
NSV NSV is offline
Junior Member
 
Join Date: Feb 2007
Posts: 3
NSV is on a distinguished road
trend line break

Does anybody have the indicator which gives out a sound signal when price crossing a trend line, please respond, it is very necessary to me.
1.jpg
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
  #717 (permalink)  
Old 07-27-2007, 12:43 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,059
Blog Entries: 241
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
Quote:
Originally Posted by NSV View Post
Does anybody have the indicator which gives out a sound signal when price crossing a trend line, please respond, it is very necessary to me.
Attachment 39635
This indicator with alart as part of MaksiGen Trading system should have alarm on trend lines.

There are TrendLines indicator (created by raff, elite section), WSOWROTrend indicator without alert ( Trend indicators ), trendlines with alert (elite section, created by raff).

It is small thread in elite section here http://www.forex-tsd.com/expert-anal...rendlines.html

I did not check alert with MaksiGen indicator but it should work.
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
  #718 (permalink)  
Old 07-27-2007, 12:45 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,059
Blog Entries: 241
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
Quote:
Originally Posted by Roets View Post
Hallo people,
I wonder if someone can help me here. Iwant to read the highest and lowest values of an indicator over specifies number of periods. Like you would do with the bars. But here I want to read the indicator values. Have someone atempt this yet. I'm sure its a simple procedure. I would be very happy if someone can give some guide here on how to do this.

Thanks
Check this thread Highest high for an 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
  #719 (permalink)  
Old 07-28-2007, 05:55 AM
PeaceLover's Avatar
Senior Member
 
Join Date: Aug 2006
Posts: 211
PeaceLover is on a distinguished road
RSI Alert & Bollinger Alerets Indicators

Hi all,

Here are two indicators that I need them to do the right thing. The Rsi does give the alert but it does not tell me which pair and time frame the alert is on. The Bollitoucher just gives me sound and no visual alert. Can some one please add the proper alerts requirments to these. Any help would be great.

Thanks in advance

Peace for all
Attached Files
File Type: mq4 BolliToucher.mq4 (5.4 KB, 174 views)
File Type: mq4 RSI-Alert.mq4 (2.8 KB, 139 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
  #720 (permalink)  
Old 07-28-2007, 06:25 AM
Senior Member
 
Join Date: May 2006
Posts: 254
banzai is on a distinguished road
Quote:
Originally Posted by NSV View Post
Does anybody have the indicator which gives out a sound signal when price crossing a trend line, please respond, it is very necessary to me.
Attachment 39635
Try Ind TD DeMark
Attached Files
File Type: mq4 Ind_TD_DeMark_3_1_LA_Mod_03B_AIME.mq4 (21.8 KB, 269 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: 2 (0 members and 2 guests)
 
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 05:00 PM.



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