Forex Factory
  • Home
  • Forums
  • News
  • Calendar
  • Market
  • Login
  • User/Email: Password:
  • 4:35pm
  • Search
Menu
  • Forums
  • News
  • Calendar
  • Market
  • Login
  • 4:35pm
Search

Options

Search
Search
Search

Bookmark Thread

First Page First Unread Last Page Last Post

Printable Version

You are viewing
the Energy EXCH
beta version.

Your participation
is appreciated!

Similar Threads

Simple Moving Average Bollinger Band Strategy 15 replies

Developing algo for Modified Bollinger Band Scalping Strategy 3 replies

Let's build together a system which makes 1000%/month 427 replies

Bollinger band binary option strategy 9 replies

Bollinger Band deviation strategy Part I 12 replies

  • Trading Discussion
  • /
  • Reply to Thread
  • Subscribe
  • 34
Attachments: Bollinger Band: let's build a strategy together
Exit Attachments

Bollinger Band: let's build a strategy together

  • Last Post
  •  
  • 1 Page 2
  • 1 Page 2
  •  
  • Post #21
  • Quote
  • Jun 28, 2018 3:25pm Jun 28, 2018 3:25pm
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
Visually a good way to represent a multitude of bands .

Attached Image
Join our skype group.
  • Post #22
  • Quote
  • Jun 28, 2018 3:34pm Jun 28, 2018 3:34pm
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
I need help with building a Bollinger Band EA in mq4 format. The strategy is written in the pdf (or read: http://stockcharts.com/school/doku.p...ger_band_perce)

in pseudo code it looks like:
BUYING and SELLING on bollingerband:

Sell on upper band if:
[Daily %B(20,2.0,Daily Close) > 0.8] AND [Daily MFI(14) > 80] AND [Yesterday's Daily MFI(14) < 80] //here 2 oscillator indicators confirm overbought (the 2 indicators are MFI and %b indicators)

Money Flow Index - MFI
//Buy: Crossing 20 upwards
//Sell: Crossing 20 downwards
if(iMFI(NULL,pimfi,barsimfi,1)<20&&iMFI(NULL,pimfi,barsimfi,0)>=20)
{f18=1;}
if(iMFI(NULL,pimfi,barsimfi,1)>80&&iMFI(NULL,pimfi,barsimfi,0)<=80)
{f18=-1;}

Extra parameters in EA settings:

SECTION_A

- strategy: 1. [bounce] 2. [breakout] // if 1 is chosen, then EA only buys on lower band and sells on upper band. If 2 is chosed, then the opposite happens, so the EA buys on upper band and sells on lower band.
- only allow trades if ADR is [lower or higher] than ATR //argument: if ADR is higher than ATR, strategy 1 [bounce] has a higher probability
- only allow trades if [x2, x3, x4] TFs also hit the same upperband or lowerband. //for example current TF (timeframe) is 15 minute, then x2 means 30M chart, x4 is H1 chart. So only allow trades if current price hits upperband (or lowerband) && (if selected x4) price hits upperband also in H1 timeframe.
- only allow buy orders in an uptrend on (DEFAULT)/off
- *TREND BASED ON SMA on (DEFAULT)/OFF: [Daily SMA(20,Daily Volume) > 40000] AND [Daily SMA(60,Daily Close) > 5] //this confirms we are in a trend
- SL 20
- TP 20

SECTION_B

 

  1. Bands Period - Sets the period of the moving average our Bollinger band is based on. Recommended at 100 SMA this is x5 larger than normal setting.
  2. Bands Shift - Sets the bar from which we calculate our Bollinger Band. EG 0 = current bar, 1 = previous bar
  3. Bands Deviation - Sets the deviation calculation for price deviating from average.
  4. Bollinger Price - Sets the price to which our calculation is based.


SECTION_C, here you can play with parameters that you like to add as well

See pdf for this Bollinger Band strategy.

Attached File
File Type: rar bollinger band files.rar   243 KB | 225 downloads
Join our skype group.
  • Post #23
  • Quote
  • Jul 5, 2018 3:58pm Jul 5, 2018 3:58pm
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
It took me a long time to complete this indicator collection:
- 100+ Bollinger Band indicators (BWI's, squeeze, BB + ATR, BB + stoch, BB + macd etc etc)
- 100+ other band indicators (donchian, ATR bands, keltner, bandwidth indicators, caterpillar bands, cfb bands, kalman, hurst bands, jurik bands, kaufman bands, MA bands, fractal bands, mogalef bands, quantile bands, regression channels, RSI bands, starc bands, stoch bands with BB, TMA bands, pivot channels, vidya bands, etc etc)

Make sure to drop a like to thank the OP for the hard work.
Attached Files
File Type: rar 100+ bollinger band.rar   2.3 MB | 266 downloads
File Type: rar 100+ other bands.rar   1.4 MB | 249 downloads
Join our skype group.
1
  • Post #24
  • Quote
  • Jul 6, 2018 3:33pm Jul 6, 2018 3:33pm
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
Read this article on Bollinger Band secrets. Watch the YT videos in the article. Make sure to share your experience, opinions and trading tips from this article.

http://inspiringtraders.com/trading-...-band-trading/
Join our skype group.
  • Post #25
  • Quote
  • Jul 6, 2018 3:34pm Jul 6, 2018 3:34pm
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
Below article goes more in depth regarding Bollinger Band statistical properties and effectiveness. What did you learn from it?

https://en.m.wikipedia.org/wiki/Bollinger_Bands
Join our skype group.
  • Post #26
  • Quote
  • Jul 6, 2018 3:37pm Jul 6, 2018 3:37pm
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
Below article shows that since 2010 there are new Bollinger Band indicators using BBimpuls and BB delta. Can anyone share these indicators?

Quote
Disliked
Indicators derived from Bollinger Bands
Quote
Disliked
In Spring, 2010, John Bollinger introduced three new indicators based on Bollinger Bands. They are BBImpulse, which measures price change as a function of the bands; percent bandwidth (%b), which normalizes the width of the bands over time; and bandwidth delta, which quantifies the changing width of the bands.%b (pronounced "percent b") is derived from the formula for Stochastics and shows where price is in relation to the bands. %b equals 1 at the upper band and 0 at the lower band. Writing upperBB for the upper Bollinger Band, lowerBB for the lower Bollinger Band, and last for the last (price) value:%b = (last ? lowerBB) / (upperBB ? lowerBB)Bandwidth tells how wide the Bollinger Bands are on a normalized basis. Writing the same symbols as before, and middleBB for the moving average, or middle Bollinger Band:Bandwidth = (upperBB ? lowerBB) / middleBBUsing the default parameters of a 20-period look back and plus/minus two standard deviations, bandwidth is equal to four times the 20-period coefficient of variation.Uses for %b include system building and pattern recognition. Uses for bandwidth include identification of opportunities arising from relative extremes in volatility and trend identification.

Source: https://forex-station.com/app.php/attach/file/3226773
Join our skype group.
  • Post #27
  • Quote
  • Jul 6, 2018 3:47pm Jul 6, 2018 3:47pm
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
http://dev.bbforex.com:8082/tutorial/?p=4

Above article:
- discusses more about %b, delta, impulse, BBindex, BBmomentum, BBtrend, BB persist, etc
- explains in detail how to trade Bollinger Band in trend and ranged market. (filters, Aroon, etc)

If you want to share, let us know your opinion and trading tips from this article.
Join our skype group.
  • Post #28
  • Quote
  • Jul 10, 2018 8:10pm Jul 10, 2018 8:10pm
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
Quoting Simyc1
Disliked
{quote} Hi Michael, I'm using MT4 so will have to look i to how to add a H1 BB onto a 5min chart. Im guessing theres an EA/Indicator out there somewhere for this. I think i understand what you mean in that by checking that the price is also within the H1 BB on a 5min chart, this would add strength to the direction price may then go.... NB i'm using the H4 RSI crossover of 50 as my initial trigger to even look at a trade, then applying the BBs to it. I'll have to do some research into Donchian Bands they are totally new to me. As for a trending market...
Ignored
You stated: "Hi Michael, I'm using MT4 so will have to look i to how to add a H1 BB onto a 5min chart. Im guessing theres an EA/Indicator out there somewhere for this."

Reply:
It's not a MT4 function. For this, you have to download a custom indicator, with the name MTF Bollinger Band. There are maybe 20 different versions of MTF BB out there. An MTF BB mixed with ichimoku in one indicator is here: https://forex-station.com/viewtopic....er#p1295376465

How to use:
1. Go to M5 chart
2. Add 2 of the same indicator. In one indicator change the settings from timeframe M5 to H1.

MTF:
MTF just means multi timeframe. Modern indicators have MTF in their name, especially neat in combining with multiple indicators from different time frames on the same chart.

Other MTF and band indicators:
Kindly look at these MTF and band indicators: https://www.forexfactory.com/showthr...0#post11233590
Attached File
File Type: rar BB Kijun 6C MTF VS+TT [FS].rar   654 KB | 213 downloads
Join our skype group.
1
  • Post #29
  • Quote
  • Jul 15, 2018 3:47am Jul 15, 2018 3:47am
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
More info on Bollinger Bands in MT4:
- https://www.investopedia.com/article.../bollinger.asp
- https://www.tradingwithrayner.com/bo...ding-strategy/
- https://admiralmarkets.com/education...u-need-to-know
- https://www.thebalance.com/day-tradi...-bands-1031210
- https://traderhq.com/ultimate-guide-to-bollinger-bands/
Join our skype group.
  • Post #30
  • Quote
  • Jul 15, 2018 3:55am Jul 15, 2018 3:55am
  •  michaellobry
  • Joined Dec 2013 | Status: Member | 725 Posts
In this thread we will build our own Bollinger Band strategy by combining our heads together. Let's discuss:

DISCUSS:
- what do you think is the best way to recognize RANGED and BREAKOUT?
- what other indicators complement the Bollinger Band?
- what is in your experience the best timeframe for Bollinger Band?
- what do you confirm before entry?
- what conditions do you think should be met in the higher timeframe (before entry)?
- what Price Action do you think is best with Bollinger Band? (HnS, M, doji, other)
- what conditions (if/else) for our Bollinger Band strategy do you think could be helpful?
- what are the differences between volatile penetrations of the outer bands, common trend and correction penetrations?
- Please add as many links as possible

CONDITIONS:
- RANGED: buy on lowerband, sell on upperband
- BREAKOUT: buy on upperband, sell on lowerband
Join our skype group.
  • Post #31
  • Quote
  • Jul 17, 2018 4:46am Jul 17, 2018 4:46am
  •  MariaEduard
  • | Joined Apr 2018 | Status: Member | 238 Posts
Quoting michaellobry
Disliked
Visually a good way to represent a multitude of bands . {image}
Ignored
Nice chart, may I know the parameters of your BB? Thanks in advance.
  • Post #32
  • Quote
  • Last Post: Dec 23, 2018 10:49pm Dec 23, 2018 10:49pm
  •  ChrisGER
  • | Joined Nov 2018 | Status: Junior Member | 1 Post
Quoting michaellobry
Disliked
In this thread we will build our own Bollinger Band strategy by combining our heads together. Let's discuss: DISCUSS: - what do you think is the best way to recognize RANGED and BREAKOUT? - what other indicators complement the Bollinger Band? - what is in your experience the best timeframe for Bollinger Band? - what do you confirm before entry? - what conditions do you think should be met in the higher timeframe (before entry)? - what Price Action do you think is best with Bollinger Band? (HnS, M, doji, other) - what conditions (if/else) for our...
Ignored
I am in fact working on an indicator to determine whether the market is ranging or if it is a breakout. My current approach is doing this by comparing the change of the 20-MA (same as Bollinger Band) and the change of Bollinger Bandwidth. My thinking is, that when the change of Bandwidth is higher than the change of the Moving Average, it is most likely a Breakout. But since my coding skill is still pretty basic, it takes me a while to finish my indicator and test this ...
Thread Tools Search this Thread
Show Printable Version Show Printable Version
Email This Thread Email This Thread
Search this Thread:

Advanced Search

  • Trading Discussion
  • /
  • Bollinger Band: let's build a strategy together
  • Reply to Thread
    • 1 Page 2
    • 1 Page 2
0 traders viewing now
Top of Page

You are viewing
the Energy EXCH
beta version.

Your participation
is appreciated!

You are viewing
the Energy EXCH
beta version.

Your participation
is appreciated!

  • Facebook
  • Twitter
EE Website
  • Homepage
  • Search
  • Members
  • User Guide
  • Report a Bug
EE Products
  • Forums
  • Calendar
  • News
  • Market
About EE
  • Mission
  • Products
  • Blog
  • Contact
Follow EE
  • Facebook
  • Twitter

Other Markets:

  • Forex Factory
  • Crypto Craft
  • Metals Mine

Energy EXCH™ is a brand of Fair Economy, Inc.

Terms of Service / ©2019