BollingerBands

Did Bollinger Bands help you?

  • Yes

    Votes: 239 77.9%
  • No

    Votes: 68 22.1%

  • Total voters
    307

jagankris

Well-Known Member
can u provide me afl of BOLLINGERWORM ....??
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g,
Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}", O, H, L, C,
SelectedValue( ROC( C, 1 )) ));
Plot( C, "Close", ParamColor("Color", colorBlue ), styleNoTitle |
ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();

_SECTION_BEGIN("Bollinger Bands");
P = ParamField("Price field",-1);
Periods = Param("Periods", 20, 2, 300, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );
Color = ParamColor("Color", colorCycle );
Style = ParamStyle("Style");
Plot(Ref(BBandTop(C,20,2),-3),"",colorYellow,styleDashed);
Plot(Ref(BBandBot(C,20,2),-3),"",colorYellow,styleDashed);
_SECTION_END();

_SECTION_BEGIN("EMA");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1, 10 );
Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

_SECTION_BEGIN("EMA1");
Plot( EMA( High, 2 ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

_SECTION_BEGIN("EMA2");
Plot( EMA( low, 2), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();
 

columbus

Well-Known Member

columbus

Well-Known Member
Columbus ...

Something wrong I guess ... NF broke 5320 BUT the candle shows closing above 5350 ?
Hi SM,

Nothing WRONG I suppose.

1.You are talking about NF ,but my chart pertains to Nifty-SPOT.
2.Just observe Right-Upper corner.LOW=5303 and Close=5312.
3.Generally I will send wicks to background by choosing them as black colour,
I will plot only SOLID portion of candle and it sometimes lead to this
confusion.
 

TraderRavi

low risk profile
we are around the same level now, from where september vertical journey took off....so this journey comes to an end...now lets move on to next station...
 
Thread starter Similar threads Forum Replies Date
B AmiBroker 0

Similar threads