Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent 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
  #331 (permalink)  
Old 08-02-2009, 11:18 AM
Member
 
Join Date: May 2008
Posts: 29
harrytn is on a distinguished road
Hi Guys,

Greetings!

I earnestly need programmer/expert help to modify the two attached indicators:

1. Tz-Pivot : Add show "Day Before Previous Day High/Low" with Vertical line. Attached a screenshot marked for better understanding.

2. TicksSeparateVolume : Program into a Multi Timeframe version.

I have been looking around many trader’s forum to search the type of function indicator, unfortunately could not locate one.

I hope those Programmer/Expert may take a look and help to solve my desire; your kind help will be greatly appreciated.

Thank you

Harrytn
Attached Images
File Type: jpg Tz-Pivot.JPG (49.8 KB, 746 views)
Attached Files
File Type: mq4 Tz Pivot.mq4 (22.9 KB, 78 views)
File Type: mq4 Volume Ticks Separate.mq4 (3.2 KB, 72 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
  #332 (permalink)  
Old 08-06-2009, 10:01 PM
Senior Member
 
Join Date: Aug 2008
Location: London
Posts: 138
Limstylz is on a distinguished road
Fixed Fibonacci Pivot

All,

I wrote this indicator for another site. I am posting it here as I couldn't find one to use myself so I programmed this. Apologies if a similar one has been posted before.

This pivot indicator plots fixed fibonacci lines from any specified open hour bar.

I managed to get around the buffer limitation by splitting the indicator into two. Both MUST be applied to the chart at the same time to view all levels.
Attached Files
File Type: mq4 Fib Pivots(a).mq4 (6.8 KB, 70 views)
File Type: mq4 Fib Pivots(b).mq4 (6.7 KB, 64 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
  #333 (permalink)  
Old 08-07-2009, 12:20 PM
Member
 
Join Date: May 2008
Posts: 29
harrytn is on a distinguished road
Pivot Indicator - Y's HiLo & B4Y's HiLo

Hi My Dear Friends,

Refer to my early posts on Pivot indicator setting acquired, so for not respond has acted.

Again, I'm posted the following code taken from the existing MT4 file hope someone who able to help to modify and add in the the followings:

1. LocalTimeZone.
2. Vertical line show on Today, yesterday & Beforeyesterday.
3. Pivot Resistance & Support 1, 2 & 3.

Your kind assistant is appreciated.



//+------------------------------------------------------------------+
//| HiLo2DayBefore.mq4 |
//+------------------------------------------------------------------+

#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//YLow, low of yesterday.
//YHigh, high of yesterday.
//B4YLow, low of before yestersay.
//B4YHigh, high of before yesterday.
//PP, pivot point.
ObjectDelete("YLow");
ObjectDelete("B4YLow");
ObjectDelete("YHigh");
ObjectDelete("B4YHigh");
ObjectDelete("PIVOT");
Comment(" ");
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{

//----
double yesterday_close,yesterday_high,yesterday_low,befor e_yesterday_close,before_yesterday_high,before_yes terday_low;

yesterday_close = iClose(NULL,PERIOD_D1,1);
yesterday_high = iHigh(NULL,PERIOD_D1,1);
yesterday_low = iLow(NULL,PERIOD_D1,1);
before_yesterday_close = iClose(NULL,PERIOD_D1,2);
before_yesterday_high = iHigh(NULL,PERIOD_D1,2);
before_yesterday_low = iLow(NULL,PERIOD_D1,2);

//---- Calculate Pivots

//Comment("\nYesterday quotations :\nH ",yesterday_high,"\nL ",yesterday_low, "\nC ",yesterday_close,"\n\nBefore yesterday quotations :\nH ",before_yesterday_high,"\nL ",before_yesterday_low, "\nC ",before_yesterday_close);
double pivot = (yesterday_high + yesterday_low + yesterday_close)/3;// Standard Pivot

drawLine(yesterday_low,"YLow", Plum,0);
drawLabel("Low yesterday",yesterday_low,Plum);
drawLine(before_yesterday_low,"B4YLow", Plum,0);
drawLabel("Low before yesterday",before_yesterday_low,Plum);

drawLine(pivot,"PIVOT",Aqua,1);
drawLabel("Pivot level",pivot,Aqua);

drawLine(yesterday_high,"YHigh",CornflowerBlue,0);
drawLabel("High yesterday",yesterday_high,CornflowerBlue);
drawLine(before_yesterday_high,"B4YHigh",Cornflowe rBlue,0);
drawLabel("High before yesterday",before_yesterday_high,CornflowerBlue);


//----
return(0);
}
//+------------------------------------------------------------------+
void drawLabel(string name,double lvl,color Color)
{
if(ObjectFind(name) != 0)
{
ObjectCreate(name, OBJ_TEXT, 0, Time[10], lvl);
ObjectSetText(name, name, 8, "Arial", EMPTY);
ObjectSet(name, OBJPROP_COLOR, Color);
}
else
{
ObjectMove(name, 0, Time[10], lvl);
}
}


void drawLine(double lvl,string name, color Col,int type)
{
if(ObjectFind(name) != 0)
{
ObjectCreate(name, OBJ_HLINE, 0, Time[0], lvl,Time[0],lvl);

if(type == 1)
ObjectSet(name, OBJPROP_STYLE, STYLE_SOLID);
else
ObjectSet(name, OBJPROP_STYLE, STYLE_DOT);

ObjectSet(name, OBJPROP_COLOR, Col);
ObjectSet(name,OBJPROP_WIDTH,1);

}
else
{
ObjectDelete(name);
ObjectCreate(name, OBJ_HLINE, 0, Time[0], lvl,Time[0],lvl);

if(type == 1)
ObjectSet(name, OBJPROP_STYLE, STYLE_SOLID);
else
ObjectSet(name, OBJPROP_STYLE, STYLE_DOT);

ObjectSet(name, OBJPROP_COLOR, Col);
ObjectSet(name,OBJPROP_WIDTH,1);

}
}

Last edited by harrytn; 08-07-2009 at 05:43 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
  #334 (permalink)  
Old 08-12-2009, 11:37 PM
Junior Member
 
Join Date: Sep 2008
Posts: 5
yetidarko is on a distinguished road
Question Weekly, Monthly Open Line

Hello All

Does anybody have an indicator like the one below -

for weekly and monthly open price line

with historical -

http://www.forex-tsd.com/210937-post195.html
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
  #335 (permalink)  
Old 08-13-2009, 06:13 AM
Junior Member
 
Join Date: Mar 2008
Posts: 1
gsfx is on a distinguished road
hi guy, I wanted to know if there is to know you volatily pivot indicator with alarm. I have not found anything

thanks a lot
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
  #336 (permalink)  
Old 09-01-2009, 05:15 AM
Junior Member
 
Join Date: Jul 2009
Posts: 8
jerzzhere is on a distinguished road
Pivot Point Indicator

Anyone know where I can get a Pivot Point Indicator that leave last days lines one the chart? The ones I have change the lines daily making it hard to look back on the price action.

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
  #337 (permalink)  
Old 09-01-2009, 05:34 AM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Spring)
Posts: 4,412
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 jerzzhere View Post
Anyone know where I can get a Pivot Point Indicator that leave last days lines one the chart? The ones I have change the lines daily making it hard to look back on the price action.

Thanks!
Check out this thread.
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
  #338 (permalink)  
Old 09-01-2009, 01:06 PM
Junior Member
 
Join Date: Apr 2009
Posts: 2
gaston is on a distinguished road
FiboPiv with Alert

Hi
Does anyone has FiboPiv with alert. That is Alert when price crosses the lines (S/R) . Or can anyone please add the alert. Thanks
Attached Files
File Type: mq4 FiboPiv_v2.mq4 (4.6 KB, 30 views)
File Type: mq4 FiboPiv_v3.mq4 (5.1 KB, 59 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
  #339 (permalink)  
Old 09-15-2009, 12:15 PM
Senior Member
 
Join Date: Sep 2007
Posts: 954
avi1 is on a distinguished road
Quote:
Originally Posted by Linuxser View Post
Check out this thread.
does anyone have historic diag fiv level thx
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
  #340 (permalink)  
Old 09-16-2009, 03:11 PM
Junior Member
 
Join Date: Sep 2009
Posts: 12
fazi is on a distinguished road
Cam L5 needed

Hi Guys,

Can anyone of You add Cam L5 line to this indicator?

thank you in advance

Patryk
Attached Files
File Type: mq4 xPivotMultiday-with-middle.mq4 (14.6 KB, 41 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
auto pivot indicator, camarilladt8, Daily Pivot, daily pivot indicator, daily pivot mq4, daily pivots, fibo pivot indicator, FiboPiv, forex, forex pivot indicator, forex pivot indicators, forex pivots, indicator pivot, indicators, indicators forex, Metatrader 4 PIVOT, metatrader 4 pivot indicator, metatrader mq4 pivot, metatrader pivot, metatrader pivot indicator, MetaTrader pivots, monthly pivot, mq4 pivot, MT4 pivot, mt4 pivot indicator, mt4 pivot indicators, pivot, pivot calculator, pivot daily indicator, pivot indicator, pivot indicator for metatrader, pivot indicator forex, pivot indicator metatrader, pivot indicator mt4, Pivot indicators, pivot metatrader, pivot mq4, pivot mq4 MT4, PIVOT mt4, Pivot point, pivot point indicator, pivot point mq4, pivot points indicator, Pivot Points Multitimeframe, pivot sunday monday, pivot trading, pivot.mq4, pivots daily, pivots daily.mq4, Pivots indicator, session pivot, support & resistance, support and resistance, Volatility Pivot, weekly pivot, weekly pivot indicator, weekly pivot mq4


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
Pivot Trading kokas Documentation 15 10-14-2009 06:41 PM
Name that Pivot Indicator - Help Please ??? euro_dude Metatrader 4 8 05-31-2009 03:40 PM
pivot kohzadi Indicators - Metatrader 4 10 06-17-2007 01:43 AM
Help - Pivot Indicator Only HMTRG Indicators - Metatrader 4 4 03-02-2007 04:17 PM


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



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