|
|||||||
| 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 |
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
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 ? |
|
|||
|
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 |
|
|||
|
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"); |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
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 |