My Bank Nifty Option trades.

vishal7176

Well-Known Member
#31
@ Varunji , ST sir , and all senior

Its request to all of you . here is one more thread for OBV Method for Banknifty options.
New people are not aware about old OBV concept . cause of lots of changes there since inception of old method /thread.

Please try to Introduce one post of whole OBV concept like Trade set up,Time frame,chart setup, MM,RR,etc.
(there is lots of confusion regarding method)

Thanks
 
#32
@ Varunji , ST sir , and all senior

Its request to all of you . here is one more thread for OBV Method for Banknifty options.
New people are not aware about old OBV concept . cause of lots of changes there since inception of old method /thread.

Please try to Introduce one post of whole OBV concept like Trade set up,Time frame,chart setup, MM,RR,etc.
(there is lots of confusion regarding method)

Thanks
Varunji will decide which method from OBV template to use for trades here.After he decides that, we can discuss the method,charts,timeframe etc.

Smart_trade
 

marimuthu13

Well-Known Member
#33
@ Varunji , ST sir , and all senior

Its request to all of you . here is one more thread for OBV Method for Banknifty options.
New people are not aware about old OBV concept . cause of lots of changes there since inception of old method /thread.

Please try to Introduce one post of whole OBV concept like Trade set up,Time frame,chart setup, MM,RR,etc.
(there is lots of confusion regarding method)

Thanks
no confusion in method as such...but concepts was evloved from 1. Simple overlaying of OBV into 36 and 200 EMA 2. band of 15, 30, 60 min periods, 3. PDC line..4. LV bar 5. EMA 2 high low band aka VKA bands...etc etc...
 

marimuthu13

Well-Known Member
#35
@ marimuthu sir and all senior

there is NON-amibroker user also here . somone use trade-tiger, kite,pi, or anyother software .

if the whole concept in one place it will help for all others those new to this method .

thanks varunji for this OBV concept .
thanks ST sir and all senior .
Hi vishal7176,

i am just stranger to this concept , and i too dont use or never used AMI broker...

may be others will help you in this regards.
 

mark8tune

Active Member
#36
Are you going to trade Banknifty weekly option or banknifty monthly option contracts ? If done with discipline required and with a proper system a good mind set and a proper risk and money management it's easy because options are as risky as rewarding too. waiting for your trades.
 
#38
Code:
_SECTION_BEGIN("OBV");
Plot( OBV(), _DEFAULT_NAME(), ParamColor("Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

_SECTION_BEGIN("Bollinger Bands");
P = ParamField("Price field",-1);
Periods = Param("Periods", 6, 2, 300, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );
Color = ParamColor("Color", colorCycle );
Style = ParamStyle("Style");
Plot( BBandTop( P, Periods, Width ), "BBTop" + _PARAM_VALUES(), Color, Style );
Plot( BBandBot( P, Periods, Width ), "BBBot" + _PARAM_VALUES(), Color, Style );
_SECTION_END();

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

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

_SECTION_BEGIN("Keltner Bands");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );
Color = ParamColor("Color", colorCycle );
Style = ParamStyle("Style", styleLine | styleNoLabel);

CenterLine = MA( P, Periods );
KTop = CenterLine + Width * ATR( Periods );
//KBot = CenterLine - Width * ATR( Periods );

Plot( KTop, "KBTop" + _PARAM_VALUES(), Color, Style );
//Plot( KBot, "KBBot" + _PARAM_VALUES(), Color, Style );
_SECTION_END();

_SECTION_BEGIN("Keltner Bands1");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );
Color = ParamColor("Color", colorCycle );
Style = ParamStyle("Style", styleLine | styleNoLabel);

CenterLine = MA( P, Periods );
//KTop = CenterLine + Width * ATR( Periods );
KBot = CenterLine - Width * ATR( Periods );

//Plot( KTop, "KBTop" + _PARAM_VALUES(), Color, Style );
Plot( KBot, "KBBot" + _PARAM_VALUES(), Color, Style );
_SECTION_END();

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

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

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

_SECTION_BEGIN("Bollinger Bands2");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1 );
Width = Param("Width", 2, 0, 10, 0.05 );
Color = ParamColor("Color", colorCycle );
Style = ParamStyle("Style");
Plot( BBandTop( P, Periods, Width ), "BBTop" + _PARAM_VALUES(), Color, Style );
Plot( BBandBot( P, Periods, Width ), "BBBot" + _PARAM_VALUES(), Color, Style );
_SECTION_END();
This is the code for channel on OBV
 
#39
_SECTION_BEGIN("HiLo Vol N");

n=Day() != Ref(Day(), -1);

a=LowestSince(n,V);
hh=ValueWhen(V==a,H);
ll=ValueWhen(V==a,L);

Plot(hh,"\nLVhb",colorGreen,styleDashed|styleThick);
Plot(ll,"\nLVlb",colorred,styleDashed|styleThick);

_SECTION_END();

This is the code for LV bar.
 

Similar threads