Karthiks Options Trading Strategy

RAAMAKANT

Well-Known Member
#51
Dear Raamakant,
Why you didnt initiate your buy at previous candle (one candle before where u bought) ??
Actually that time I was looking NF opening momentum, then few minutes went in to chart setup. Meanwhile missed entry in first bar.
And I have observed many time, in first few minutes there are very much freak trades in options, and they are bit costly. Its my personal view.
 

msa5678

Well-Known Member
#52
You can do short selling but you need to pay the entire amount and not the premium amount. The Risk is UNKNOWN in this case if Market moves against our trade!!!

Those who are short trading in Options may please correct me if my understanding or what I have stated is wrong as I have not done any short selling in Options!
Which data feed is good for options ?
 
#53
sir i have query
should we enter if the body of candle does not touches both high or low wma, or we can enter for short if candle doesn't touches high & for long setup if candle dosen't touches low.
 

Purushotham

Well-Known Member
#56
Sorry to ask a basic question.
Where can I get charts showing WMA high,5 and low,5 and CCI ?
Below is the AFL for Amibroker

Change the parameters of WMA and CCI as karthik sir explained in the first post



_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();

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

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

XUV-500

Well-Known Member
#57
Below is the AFL for Amibroker

Change the parameters of WMA and CCI as karthik sir explained in the first post



_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();

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

_SECTION_BEGIN("WMA1");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 300, 1, 10 );
Plot( WMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();
hi Purusottam
will u pls upload an AFL which will plot WMA hi-lo ,CCI14
And it will plot buy arrow hen it fulfills conditions
 

XUV-500

Well-Known Member
#59
Karthik

In 2 candle method, we cancelled order if it does not get executed on immediate ( i.e. 3rd ) candle.

Is there any time limit for wait once the conditions get fulfilled?