Trading Strategies Using Technical Analysis

Which date should the meet be held?

  • February 27th 2011

    Votes: 19 59.4%
  • March 6th 2011

    Votes: 8 25.0%
  • March 13th 2011

    Votes: 5 15.6%

  • Total voters
    32
  • Poll closed .

SwingKing

Well-Known Member

Dear Raunak sir,
please look image...is my understanding correct?
1.appolo tyre still not came to its base....so itstill strong in longer term
2.where i marked extremly bullish...if there ti reverse and take ph it is in buy..that point of time
3. as imaginery bars now itretraces about 38.2 and pull back& break to break point 2 then scrip is in bullish

your advice will help to understand it correctly....[/QUOTE]

VJAY,

Good work.

I'll try and post a video in the evening on Apollo tyres.

I'll be able to explain better I suppose. Let us see how that goes.

Tc
 

SwingKing

Well-Known Member
Hi raunak
In ur strategies which is the most useful for positional trading in NSE stocks for 2-3 days

Regards
None of the strategies mentioned on main page our mine. Just what I have read in few books and found them to work well. For positional trades on Nifty, 20/50 crossover should do very well over the long term. You can use that and invest in various stocks as well. You will be able to capture majority of moves.

For investment point of view, 15/150 cross also proves to be very beneficial. Whipsaws will be there, but gains will be accordingly.

Tc
 

gb333

Active Member
Ok Raunak... Will u kindly paste the link for the AFLs of ur strategy like,,,
1. 3-4 Days Swing Setup (With AFL)
2. 5 Day Momentum Trading Strategy (With AFL)
3. Rectangular breakout for Intraday Purpose (With AFL)

Regards
 

SwingKing

Well-Known Member
Ok Raunak... Will u kindly paste the link for the AFLs of ur strategy like,,,
1. 3-4 Days Swing Setup (With AFL)
2. 5 Day Momentum Trading Strategy (With AFL)
3. Rectangular breakout for Intraday Purpose (With AFL)

Regards
AFL's had been removed as some problems were reported.

Not that hard to code. Just understand the basic setups.

I'll try and get them re-coded. Will take some time though.

Tc
 
Sir,Five day Momentum AFL does not show any chart but if explored it shows result.
AFL:
//5 Day Momentum Method. Modify Accordingly
// Stop Loss set at 2%. Please follow the stop loss mentioned in post

Buy = ADX(14)>35 AND PDI(14)>MDI(14) AND Cross(StochK(8,3),StochD(8,3,3)) AND StochK(8,3)<30;
Sell = Ref(Close,4);
Short=ADX(14)>35 AND MDI(14)>PDI(14) AND Cross(StochD(8,3,3),StochK(8,3)) AND StochK(8,3)>70;
Cover=Ref(Close,4);

Filter = Buy OR Short;
AddColumn(IIf(Buy,High,Null),"Buy Only Above",1.3);
AddColumn(IIf(Buy,High*0.98,Null), "Buy Stop Price",1.2);
AddColumn(IIf(Short,Low,Null),"Short Only Below",1.2);
AddColumn(IIf(Short,Low*1.02,Null),"Short Stop Loss",1.2);
AddColumn(ADX(14),"ADX (14)", 1.2);
AddColumn(PDI(14),"PDI",1.2);
AddColumn(MDI(14),"MDI",1.2);
AddColumn(StochK(8,3),"StochK",1.2);
Sell = ExRem(Sell,Buy);
Cover = ExRem(Cover,Short);
PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorGreen, 0, L, Offset=-20);
PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorLime, 0,L, Offset=-30);
PlotShapes(IIf(Buy, shapeUpArrow, shapeNone),colorWhite, 0,L, Offset=-25);
PlotShapes(IIf(Short, shapeSquare, shapeNone),colorRed, 0, H, Offset=20);
PlotShapes(IIf(Short, shapeSquare, shapeNone),colorOrange, 0,H, Offset=30);
PlotShapes(IIf(Short, shapeDownArrow, shapeNone),colorWhite, 0,H, Offset=-25);
 

SwingKing

Well-Known Member
Sir,Five day Momentum AFL does not show any chart but if explored it shows result.
AFL:
//5 Day Momentum Method. Modify Accordingly
// Stop Loss set at 2%. Please follow the stop loss mentioned in post

Buy = ADX(14)>35 AND PDI(14)>MDI(14) AND Cross(StochK(8,3),StochD(8,3,3)) AND StochK(8,3)<30;
Sell = Ref(Close,4);
Short=ADX(14)>35 AND MDI(14)>PDI(14) AND Cross(StochD(8,3,3),StochK(8,3)) AND StochK(8,3)>70;
Cover=Ref(Close,4);

Filter = Buy OR Short;
AddColumn(IIf(Buy,High,Null),"Buy Only Above",1.3);
AddColumn(IIf(Buy,High*0.98,Null), "Buy Stop Price",1.2);
AddColumn(IIf(Short,Low,Null),"Short Only Below",1.2);
AddColumn(IIf(Short,Low*1.02,Null),"Short Stop Loss",1.2);
AddColumn(ADX(14),"ADX (14)", 1.2);
AddColumn(PDI(14),"PDI",1.2);
AddColumn(MDI(14),"MDI",1.2);
AddColumn(StochK(8,3),"StochK",1.2);
Sell = ExRem(Sell,Buy);
Cover = ExRem(Cover,Short);
PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorGreen, 0, L, Offset=-20);
PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorLime, 0,L, Offset=-30);
PlotShapes(IIf(Buy, shapeUpArrow, shapeNone),colorWhite, 0,L, Offset=-25);
PlotShapes(IIf(Short, shapeSquare, shapeNone),colorRed, 0, H, Offset=20);
PlotShapes(IIf(Short, shapeSquare, shapeNone),colorOrange, 0,H, Offset=30);
PlotShapes(IIf(Short, shapeDownArrow, shapeNone),colorWhite, 0,H, Offset=-25);
This is because it is only an exploration/scan as described by Jeff Cooper.

It has just been coded based on what he has described.

Only entry method is valid. For exit one can do so if stock rises 2-3% in next 2-3 trading sessions. The sell criteria here is not valid. Sell has to be done manually. Stop is low of buy day or 1% risk of portfolio.

However this is just a basic rule given by him. Try and explore more options.

Tc
 

Similar threads