Forex
Google

Go Back   Forex Trading > Discussion Areas > Setup Questions
Forex Forum Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack Thread Tools Display Modes
  #41 (permalink)  
Old 05-18-2008, 10:44 PM
shabs shabs is offline
Junior Member
 
Join Date: Oct 2007
Posts: 2
shabs is on a distinguished road
Bollinger Indicator Request

I have been looking for an indicator for MT4 that alerts when prices closes / crosses above from below and also closes / crosses below from above Bollinger Bands.

Must be able to edit Bollinger Bands settings.

I have searched but to no avail, any one help ?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #42 (permalink)  
Old 05-22-2008, 08:12 AM
vikram88 vikram88 is offline
Junior Member
 
Join Date: Apr 2008
Posts: 1
vikram88 is on a distinguished road
Bollinger Bands Cross

I am looking for a similar indicator on Bollinger bands
ie buy signal
1) Close cross lower BB 20 periods 2 Deviations &
2) RSI 14 periods cross or below 30 &
3) Stochastics 5,3,3 cros or below 20

Can someone please write this expert with sound alert for buy & sell signals
Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #43 (permalink)  
Old 05-26-2008, 06:51 AM
fxbs fxbs is offline
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 1,585
fxbs is on a distinguished road
BandsHistogram_Points.mq4: Deviation (bb width) in pips
update: +applied price (default - price Open)
Attached Images
File Type: gif bb w pips.gif (14.7 KB, 172 views)
Attached Files
File Type: mq4 BandsHistogram_BWidthPoints.mq4 (3.0 KB, 25 views)

Last edited by fxbs : 05-28-2008 at 11:47 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #44 (permalink)  
Old 06-23-2008, 12:31 PM
netk netk is offline
Junior Member
 
Join Date: Apr 2006
Posts: 17
netk is on a distinguished road
modified bollinger bands

Idea is to tweak bollinger bands so includes more ATR.
Bollinger relies on close only so this band is slightly different.

Is concept from 1993 Futures mag article.

TScode may help with idea. Shown below.
This plots but does not do the bands themselves.

Need an MQ4 that does these probability bands.

I have come across an ATRBands mq4 before , and there is the Keltner Bands too ,
The ATR bands when smoothed out are a close match to Keltner bands - so this may not be new, BUT think it is worth trying.




Variables : HighD(0), LowD(0), RangeD(0), HighW(0), LowW(0) , RangeW(0), AverageRangeD(0), AverageRangeW(0), DailyRange(0), WeeklyRange(0);

if DataCompression = 3 then
DailyRange = 12;
if DataCompression = 3 then
WeeklyRange = 52;


if DataCompression = 2 then
DailyRange = 5;
if DataCompression = 2 then
WeeklyRange = 21;

HighD = Highest(High,DailyRange);
LowD = Lowest(Low, DailyRange);
RangeD = (HighD - LowD);
AverageRangeD = Average(RangeD, DailyRange);


if close crosses below Plot1 then
alert ( "MARKET IS SHORT TERM OVERBROUGHT");

if close crosses above Plot2 then
alert ( "MARKET IS SHORT TERM OVERSOLD");

Plot1((Average(Close, DailyRange) + .5 * Average(RangeD, DailyRange)), "ST
OB");
Plot2((Average(Close, DailyRange) + .5 * Average(RangeD, DailyRange)), "ST
OS");

HighW = Highest(High,WeeklyRange);
LowW = Lowest(Low, WeeklyRange);
RangeW = (HighW - LowW);
AverageRangeW = Average(RangeW, WeeklyRange);

if close crosses below Plot3 then
alert ( "MARKET IS LONG TERM OVERBROUGHT");

if close crosses above Plot4 then
alert ( "MARKET IS LONG TERM OVERSOLD" );

Plot3((Average(Close, WeeklyRange) + .5 * Average(RangeD, WeeklyRange)), "LT
OB");
Plot4((Average(Close, WeeklyRange) + .5 * Average(RangeD, WeeklyRange)), "LT
OS");
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Similar Threads
Thread Thread Starter Forum Replies Last Post
I need HELP with Bollinger Band-CCI indicator maslow Indicators - Metatrader 4 2 06-25-2006 12:43 PM
Bollinger Band Programming Help Help iscuba11 Metatrader 4 10 05-17-2006 02:13 PM
Bollinger Band of RSI? forex123 Indicators - Metatrader 4 2 05-14-2006 06:39 AM
Five-Minute Bollinger Band System gody6000 Expert Advisors - Metatrader 4 16 05-09-2006 04:24 PM
Bollinger Band Width Ratio Maji Metatrader 4 11 03-21-2006 01:00 AM


All times are GMT. The time now is 06:11 AM.