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
  #11 (permalink)  
Old 05-21-2009, 01:12 PM
Junior Member
 
Join Date: Aug 2008
Posts: 3
AbzHussain is on a distinguished road
Can someone Code These Indis For Me Please

1: A simple line that plots on the chart. The line will represent X % of price. Option to change colour and the X number.

2: As above, line plots on chart but this time it is X times ATR. example, a line on the chart plots 3 times the current ATR of timeframe/chart. again option to change colour and X

thanks alot for your efforts.
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
  #12 (permalink)  
Old 05-21-2009, 05:18 PM
Junior Member
 
Join Date: Nov 2008
Posts: 18
Al Mo is on a distinguished road
I think I have what you need...but

I am still too new to post attachments
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
  #13 (permalink)  
Old 05-21-2009, 05:38 PM
Junior Member
 
Join Date: Nov 2008
Posts: 18
Al Mo is on a distinguished road
Posting the code , currently missing the ATR stuff

//+------------------------------------------------------------------+
//| Percentage Line.mq4 |
//| Al Mo |
//| Forex Trading Software: Forex Trading Platform MetaTrader 4 |
//+------------------------------------------------------------------+
#property copyright "Al Molina"
#property link "http://www.metaquotes.net"

#property indicator_chart_window
#property indicator_buffers 1
#property indicator_color1 Yellow
//---- buffers
double PercentLine[];
extern double Percent= 0.382;

extern int barsback = 2;

//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,PercentLine);




//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----

//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();



for( int i = Bars-counted_bars-1; i>=0; i--)
{
PercentLine[i] = High[iHighest(NULL,0,MODE_HIGH,barsback,i)]- (High[iHighest(NULL,0,MODE_HIGH,barsback,i)]-Low[iLowest(NULL,0,MODE_LOW,barsback,i)]) *Percent;

}

//----

//----
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
  #14 (permalink)  
Old 05-21-2009, 11:09 PM
Junior Member
 
Join Date: Aug 2008
Posts: 3
AbzHussain is on a distinguished road
Thanks Al. I just compiled it in meta editor and it compliled with no error. thanks once again
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
  #15 (permalink)  
Old 09-10-2009, 05:04 AM
etrade's Avatar
Senior Member
 
Join Date: Aug 2007
Posts: 278
etrade is on a distinguished road
Question Size Distribution of Price Movements

Almost all indicators are based on statistical theories, but I wonder why there is no attention to "size distribution"; or maybe I'm not aware of it.

Is there an indicator showing the size distribution for peak heights? This will help traders to choose their strategies.

This will show, for instance, in a given period of time, how much it is probable to have a e.g. 100 pip movement.
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
  #16 (permalink)  
Old 09-10-2009, 05:54 AM
xx3xxx's Avatar
Senior Member
 
Join Date: Sep 2008
Posts: 411
xx3xxx is on a distinguished road
Thumbs down

we WISH !!


all indicator suppose to based on STATISTICS/ based on profitability and won't be changing when the condition change example sudden outbreak (except the current bar)


but many look so perfect in historical chart, but we realise that it is quite useless in LIVE trade - the programmer does contribute to let us understand the CANDLE better, but many of them are still quite raw

many indicators does have a good idea on the PRESENTATION

but we must do our own statistics and discrard those which are useless
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
  #17 (permalink)  
Old 09-10-2009, 06:18 AM
etrade's Avatar
Senior Member
 
Join Date: Aug 2007
Posts: 278
etrade is on a distinguished road
Definitely, it should not be a live indicator; it just provide a view of the price movement in an instrument; then a trader can compare different instruments to choose one for a specified trading system.
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


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
MTF Price keris2112 Indicators - Metatrader 4 19 03-07-2009 08:53 PM
Is a chart Timer/Counter Possible in MT4? ShaderZ Tools and utilities 22 12-04-2008 06:56 AM


All times are GMT. The time now is 01:54 PM.



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