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
  #61 (permalink)  
Old 10-08-2008, 01:19 AM
Member
 
Join Date: Sep 2008
Posts: 65
codobro is on a distinguished road
SilverTrend is a repainting indicator, which means the values you see live will probably not show up when you look back on the chart. Your results and use of it might be dramatically different (not in the way you would want).
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
  #62 (permalink)  
Old 10-08-2008, 08:26 AM
Junior Member
 
Join Date: Aug 2008
Posts: 4
willya is on a distinguished road
Quote:
Originally Posted by codobro View Post
SilverTrend is a repainting indicator, which means the values you see live will probably not show up when you look back on the chart. Your results and use of it might be dramatically different (not in the way you would want).
codobro,

If you have no repainting indicator like SilverTrend_Signal, Could you share to me?
Thankyou very much.
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
  #63 (permalink)  
Old 10-09-2008, 02:29 AM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 4,410
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
Quote:
Originally Posted by willya View Post
codobro,

If you have no repainting indicator like SilverTrend_Signal, Could you share to me?
Thankyou very much.

This ones does not no repaint:

ASCTrend system

BrainSystem: Setup Questions
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
  #64 (permalink)  
Old 10-09-2008, 02:56 PM
Junior Member
 
Join Date: Aug 2008
Posts: 4
willya is on a distinguished road
Linuxser, thankyou very much for your information.
I will check it out.
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
  #65 (permalink)  
Old 02-13-2009, 07:40 PM
Junior Member
 
Join Date: May 2008
Posts: 2
Asabs is on a distinguished road
Shi silvertrend alert

Does any1 have this indicator with pop up alert that refreshes itself.
How can 1 modify indicators?
Thank u
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
  #66 (permalink)  
Old 06-23-2009, 10:52 AM
Junior Member
 
Join Date: Oct 2008
Posts: 1
plus150 is on a distinguished road
iCustom for ASC Trend

Hi,

Can someone tell me how to look for iCustom red and blue arrow indicator ASC Signal Trend?
I try to write my own EA with this indicator but I am not a champion in MQL4

Code:
//+------------------------------------------------------------------+
//| AltrTrend_Signal_v2_2.mq4 
//| Ramdass - Conversion only
//+------------------------------------------------------------------+

#property  copyright "Author - OlegVS, GOODMAN"
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Green
#property indicator_color2 Crimson

//---- input parameters

extern int K=30;
extern double Kstop=0.5;
extern int Kperiod=150;
extern int PerADX=14;
extern int CountBars=350;

//---- buffers

double val1[];
double val2[];

//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+

int init()
  {
   string short_name;

//---- indicator line

   IndicatorBuffers(2);
   SetIndexStyle(0,DRAW_ARROW);
   SetIndexArrow(0,108);
   SetIndexStyle(1,DRAW_ARROW);
   SetIndexArrow(1,108);
   SetIndexBuffer(0,val1);
   SetIndexBuffer(1,val2);

//----

   return(0);
  }

//+------------------------------------------------------------------+
//| AltrTrend_Signal_v2_2                                            |
//+------------------------------------------------------------------+

int start()
  {   
   if (CountBars>=Bars) CountBars=Bars;
   SetIndexDrawBegin(0,Bars-CountBars+PerADX);
   SetIndexDrawBegin(1,Bars-CountBars+PerADX);
   int i,shift,counted_bars=IndicatorCounted();
   int i1,i2;
   double Range,AvgRange,smin,smax,SsMax,SsMin,SSP,price;
   bool uptrend,old;

//----

   if(Bars<=PerADX+1) return(0);

//---- initial zero

   if(counted_bars<PerADX+1)
   {
      for(i=1;i<=PerADX;i++) val1[CountBars-i]=0.0;
      for(i=1;i<=PerADX;i++) val2[CountBars-i]=0.0;
   }

//----

for (shift = CountBars-PerADX; shift>=0; shift--) 
{ 
SSP=MathCeil(Kperiod/iADX(NULL,0,PerADX,PRICE_CLOSE,MODE_MAIN,1));
	Range=0;
	AvgRange=0;
	for (i1=shift; i1<=shift+SSP; i1++)
		{AvgRange=AvgRange+MathAbs(High[i1]-Low[i1]);
		}
	Range=AvgRange/(SSP+1);
SsMax=High[shift]; SsMin=Low[shift]; 
   for (i2=shift;i2<=shift+SSP-1;i2++)
        {
         price=High[i2];
         if(SsMax<price) SsMax=price;
         price=Low[i2];
         if(SsMin>=price)  SsMin=price;
        }

smin = SsMin+(SsMax-SsMin)*K/100; 
smax = SsMax-(SsMax-SsMin)*K/100; 
	val1[shift]=0;
	val2[shift]=0;
	if (Close[shift]<smin)
		{
		uptrend = false;
		}
	if (Close[shift]>smax)
		{
		uptrend = true;
		}
   if (uptrend!=old && uptrend==true) {val1[shift]=Low[shift]-Range*Kstop;}
   if (uptrend!=old && uptrend==false) {val2[shift]=High[shift]+Range*Kstop;}
   old=uptrend;
}
   return(0);
  }

//+------------------------------------------------------------------+
Thank you

Chris
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
  #67 (permalink)  
Old 08-29-2009, 03:54 PM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 3,272
fxbs is on a distinguished road
BinaryWave [url=http://codebase.mql4.com/ru/5915]

WeightMA = 1.0;
WeightMACD = 1.0;
WeightOsMA = 1.0;
WeightCCI = 1.0;
WeightMOM = 1.0;
WeightRSI = 1.0;
WeightADX = 1.0;
Attached Images
File Type: gif binary wave.gif (9.0 KB, 223 views)
Attached Files
File Type: mq4 BinaryWave[1].mq4 (6.7 KB, 39 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
ASCTrend, asctrend newdigital, asctrend, silver trend, silver trend signal, forex, asc trend, AltrTrend_Signal_v2_2.mq4, shi_silver, SHI_SilverTrendSig.mq4, AltrTrend, signal, WPRslow, shi silver trend signal, asctrend indicator, ASCTrend 1 sig, asc trend indicator, SHI_SilverTrendSig Alert, asctrend sig, shi silver trend


Currently Active Users Viewing This Thread: 1 (0 members and 1 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
Parabolic SAR Modification Tickwatcher Indicators - Metatrader 4 22 06-20-2009 04:04 AM
Signal systems (ASCTrend and other modification) newdigital Indicators - Metatrader 3 14 02-18-2006 01:25 PM
Tooltip modification charliev Metatrader 4 4 02-08-2006 10:57 PM


All times are GMT. The time now is 04:34 PM.



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