Trending stock for 22 feb 2017

SBIN
ENGINERSIN
APOLLOTYRE
TATAMTRDVR
HINDZINC
ZEEL
JKTYRE

LIN SUPERTREND AMIBROKER BUY SELL SIGNAL SYSTEM


Time Frame :-  Best in 10 minute Chart.
Thanks to Rajandran R 
www.marketcalls.in

Code :-

function GetSecondNum()
{
    Time = Now( 4 );
    Seconds = int( Time % 100 );
    Minutes = int( Time / 100 % 100 );
    Hours = int( Time / 10000 % 100 );
    SecondNum = int( Hours * 60 * 60 + Minutes * 60 + Seconds );
    return SecondNum;
}

function PopupWindowEx( popupID, bodytext, captiontext, timeout, left, top )
{
    displayText = bodytext + captiontext;
    if ( ( StaticVarGetText( "prevPopup" + popupID ) != displayText) OR ( StaticVarGet( "prevPopupTime" + popupID ) < GetSecondNum() ) )
    {
        StaticVarSetText( "prevPopup" + popupID, displayText);
        StaticVarSet( "prevPopupTime" + popupID, GetSecondNum() + timeout );
        PopupWindow( bodytext, Captiontext + popupID, timeout, Left, top );
        PlaySound("c:\\windows\\media\\ding.wav");
    }
}

_SECTION_BEGIN("Lin Supertrend");

SetBarsRequired(100000,0);


GraphXSpace = 15;

SetChartOptions(0,chartShowArrows|chartShowDates);

SetChartBkColor(ParamColor("bkcolor",ColorRGB(0,0, 0)));

GfxSetBkMode(0);

GfxSetOverlayMode(1);

SetBarFillColor(IIf(C>O,ParamColor("Candle UP Color", colorGreen),IIf(C<=O,ParamColor("Candle Down Color", colorRed),colorLightGrey)));

Plot(C,"\nPrice",IIf(C>O,ParamColor("Wick UP Color", colorDarkGreen),IIf(C<=O,ParamColor("Wick Down Color", colorDarkRed),colorLightGrey)),64,0,0,0,0);



//SetTradeDelays(1,1,1,1);

SetOption( "InitialEquity", 250000 );
SetOption( "MinShares", 1 );
SetOption( "MinPosValue", 1 );


SetPositionSize(75,spsShares);



sig = 0;
bars =0;
tar1 =0;
tar2 = 0;
tar3=0;


_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));



Factor=Param("Factor",3,1,3,1);

Pd=Param("ATR Periods",10,1,100,1);


Up = LinearReg((H+L)*0.5,Pd) + Factor*ATR(Pd);
Dn = LinearReg((H+L)*0.5,Pd) - Factor*ATR(Pd);

iATR=ATR(Pd);

TrendUp=TrendDown=Null;

trend[0]=1;

changeOfTrend=0;

flag=flagh=0;



for (i = 1; i <BarCount-1; i++) {

      TrendUp[i] = Null;

      TrendDown[i] = Null;

   

      trend[i]=1;

 

     

      if (Close[i]>Up[i-1]) {

         trend[i]=1;

         if (trend[i-1] == -1) changeOfTrend = 1;

       

      }

      else if (Close[i]<Dn[i-1]) {

         trend[i]=-1;

         if (trend[i-1] == 1) changeOfTrend = 1;

      }

      else if (trend[i-1]==1) {

         trend[i]=1;

         changeOfTrend = 0;      

      }

      else if (trend[i-1]==-1) {

         trend[i]=-1;

         changeOfTrend = 0;

      }



      if (trend[i]<0 && trend[i-1]>0) {

         flag=1;

      }

      else {

         flag=0;

      }

     

      if (trend[i]>0 && trend[i-1]<0) {

         flagh=1;

      }

      else {

         flagh=0;

      }

     

      if (trend[i]>0 && Dn[i]<Dn[i-1]){

         Dn[i]=Dn[i-1];

}

     

      if (trend[i]<0 && Up[i]>Up[i-1])

        { Up[i]=Up[i-1];

}

     

      if (flag==1)

       {  Up[i]=(H[i]+L[i])/2+(Factor*iATR[i]);;

        }

      if (flagh==1)

        { Dn[i]=(H[i]+L[i])/2-(Factor*iATR[i]);;

         }

      if (trend[i]==1) {

         TrendUp[i]=Dn[i];

         if (changeOfTrend == 1) {

            TrendUp[i-1] = TrendDown[i-1];

            changeOfTrend = 0;

         }

      }

      else if (trend[i]==-1) {

         TrendDown[i]=Up[i];

         if (changeOfTrend == 1) {

            TrendDown[i-1] = TrendUp[i-1];

            changeOfTrend = 0;

         }

      }

   }



Plot(TrendUp,"Trend",colorGreen);

Plot(TrendDown,"Down",colorRed);

Length =200;

Buy = trend==1 AND C>EMA(C,Length);
Sell=trend==-1 ;

Short=trend==-1  AND C<EMA(C,Length);
Cover=trend==1;

Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);

Short=ExRem(Short,Cover);
Cover=ExRem(Cover,Short);

Long=Flip(Buy,Sell);
Shrt=Flip(Short,Cover);
Relax = NOT Long AND NOT Buy AND NOT shrt AND NOT Sell AND NOT Sell AND NOT Cover;

BarsSincebuy = BarsSince( Buy );
BarsSinceshort = BarsSince( Short );
LastSignal = IIf( BarsSincebuy < BarsSinceshort, 1, -1 );

BuyPrice=ValueWhen(Buy,C);
SellPrice=ValueWhen(Sell,C);
ShortPrice=ValueWhen(Short,C);
CoverPrice=ValueWhen(Cover,C);

Title = EncodeColor(colorWhite)+ "Super Trend AFL code from www.marketcalls.in" + " - " +  Name() + " - " + EncodeColor(colorRed)+ Interval(2) + EncodeColor(colorWhite) +

 "  - " + Date() +" - "+"\n" +EncodeColor(colorRed) +"Op-"+O+"  "+"Hi-"+H+"  "+"Lo-"+L+"  "+

"Cl-"+C+"  "+ "Vol= "+ WriteVal(V)+"\n"+

EncodeColor(colorLime)+

WriteIf (Buy , " GO LONG / Reverse Signal at "+C+"  ","")+

WriteIf (Sell , " EXIT LONG / Reverse Signal at "+C+"  ","")+"\n"+EncodeColor(colorYellow)+

WriteIf(Sell , "Total Profit/Loss for the Last Trade Rs."+(C-BuyPrice)+"","")+

WriteIf(Buy  , "Total Profit/Loss for the Last trade Rs."+(SellPrice-C)+"","");



PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorGreen, 0, L, Offset=-40);
PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorLime, 0,L, Offset=-50);                    
PlotShapes(IIf(Buy, shapeUpArrow, shapeNone),colorWhite, 0,L, Offset=-45);
PlotShapes(IIf(Short, shapeSquare, shapeNone),colorRed, 0, H, Offset=40);
PlotShapes(IIf(Short, shapeSquare, shapeNone),colorOrange, 0,H, Offset=50);                    
PlotShapes(IIf(Short, shapeDownArrow, shapeNone),colorWhite, 0,H, Offset=-45);

PlotShapes(IIf(Sell, shapeStar, shapeNone),colorGold, 0, L, Offset=-15);
PlotShapes(IIf(Cover, shapeStar, shapeNone),colorGold, 0,L, Offset=-15);

duration = 10000000;

LastClose= Ref(C,-1);  // if you like to add this popup will show you

if (Buy[BarCount-2]==True)  
{
PopupWindowEx( "ID:1", "Get Ready to BUY  \n"+Name() + "  "+ Interval(2)+" :  "+ " Last ="+LastClose  , "Buy Alert -", 1000, 100, 1 ) ;
}
if (Short[BarCount-2]==True)
{
PopupWindowEx( "ID:2", "Get Ready to SHORT  \n"+Name() + "  "+ Interval(2) + "  :  "+ " Last ="+LastClose , "Short   Alert ", 1000, 1, 150 ) ;
}





TrendSL=IIf(trend==1,TrendUp,TrendDown);

sig=0;


for(i=BarCount-1;i>1;i--)

{

if(Buy[i] == 1)

{

entry = C[i];

sig = 1;

sl = TrendSL[i];

tar1 = entry + (entry * .0050);

tar2 = entry + (entry * .0092);

tar3 = entry + (entry * .0179);



bars = i;

i = 0;

}

if(Short[i] == 1)

{

sig = -1;

entry = C[i];

sl = TrendSL[i];

tar1 = entry - (entry * .0050);

tar2 = entry - (entry * .0112);

tar3 = entry - (entry * .0212);





bars = i;

i = 0;

}

}

Offset = 20;

SellSL=ValueWhen(Short,Ref(TrendSL,-1),1);
BuySL=ValueWhen(Buy,Ref(TrendSL,-1),1);



Clr = IIf(sig ==1, colorLime, colorRed);

ssl = IIf(bars == BarCount-1, TrendSL[BarCount-1], Ref(TrendSL, -1));

sl = ssl[BarCount-1];





Plot(LineArray(bars-Offset, tar1, BarCount, tar1,1), "", Clr, styleLine|styleDots, Null, Null, Offset);

Plot(LineArray(bars-Offset, tar2, BarCount, tar2,1), "", Clr, styleLine|styleDots, Null, Null, Offset);

Plot(LineArray(bars-Offset, tar3, BarCount, tar3,1), "", Clr, styleLine|styleDots, Null, Null, Offset);






buyach1 = IIf((Buy OR Long AND NOT Relax AND NOT Cover AND NOT Short AND NOT Shrt), H > tar1, 0);
buyach2 = IIf((Buy OR Long AND NOT Relax AND NOT Cover AND NOT Short AND NOT Shrt), H > tar2, 0);
buyach3 = IIf((Buy OR Long AND NOT Relax AND NOT Cover AND NOT Short AND NOT Shrt), H > tar3, 0);

sellach1 = IIf((Short OR Shrt AND NOT Relax AND NOT Sell AND NOT Buy AND NOT Long), L < tar1, 0);
sellach2 = IIf((Short OR Shrt AND NOT Relax AND NOT Sell AND NOT Buy AND NOT Long), L < tar2, 0);
sellach3 = IIf((Short OR Shrt AND NOT Relax AND NOT Sell AND NOT Buy AND NOT Long), L < tar3, 0);


// Message Board -----------------
GfxSelectFont( "Tahoma", 13, 100 );

GfxSetBkMode( 1 );

GfxSetTextColor
( colorWhite );

if ( SelectedValue( LastSignal ) == 1 )
    {
        GfxSelectSolidBrush( colorDarkGreen );
    }
    else
    {
        GfxSelectSolidBrush( colorRed );
        }


pxHeight = Status( "pxchartheight" ) ;

xx = Status( "pxchartwidth");

Left = 1100;

width = 310;

x = 5;

x2 = 290;

y = pxHeight;

GfxSelectPen
( colorLightBlue, 1); // border color

GfxRoundRect
( x, y - 155, x2, y , 7, 7 ) ;


GfxTextOut( ( "Marketcalls - Supertrend V4.0"),13,y-130);

GfxTextOut
( ("" + WriteIf(Buy, "Go Long At "+C+" - SL " +Ref(TrendSL,-1),"")), 13, y-105);

GfxTextOut
( ("" + WriteIf (Short, "Go Short At "+C+" - SL " +Ref(TrendSL,-1),"")), 13, y-105);


GfxTextOut
( ("" + WriteIf (Sell AND NOT Short, "Exit Long At "+C,"")), 13, y-115);

GfxTextOut
( ("" + WriteIf (Cover AND NOT Buy, "Exit Short At "+C,"")), 13, y-115);


GfxTextOut
( ("" + WriteIf (Long AND NOT Buy, "Long At "+(BuyPrice)+" - TSL " + Ref(TrendSL,-1)+ "","")), 13, y-105);

GfxTextOut
( ("" + WriteIf (shrt AND NOT Short, "Short At "+(ShortPrice)+" - TSL " + Ref(TrendSL,-1)+ "","")), 13, y-105);

GfxTextOut
( ("" + WriteIf (Relax, "No Trade Zone - Wait","")), 13, y-105);

GfxTextOut
( ("" + WriteIf (Long AND NOT Buy, "Current P/L: "+(C-BuyPrice)+" Points","")), 13, y-85);

GfxTextOut
( ("" + WriteIf (shrt AND NOT Short, "Current P/L: "+(ShortPrice-C)+" Points","")), 13, y-85);

GfxTextOut
( ("" + WriteIf (Long OR Buy OR Shrt OR Short, "Target 1: "+tar1,"")), 13, y-65);

GfxTextOut
( ("" + WriteIf (Long OR Buy OR Shrt OR Short, "Target 2: "+tar2,"")), 13, y-45);

GfxTextOut
( ("" + WriteIf (Long OR Buy OR Shrt OR Short, "Target 3: "+tar3,"")), 13, y-25);

GfxTextOut
( ("" + WriteIf (buyach1, "Target 1: "+tar1+" :: Achiecheved","")), 13, y-65);

GfxTextOut
( ("" + WriteIf (sellach1, "Target 1: "+tar1+" :: Achiecheved","")), 13, y-65);

GfxTextOut
( ("" + WriteIf (buyach2, "Target 2: "+tar2+" :: Achiecheved","")), 13, y-45);

GfxTextOut
( ("" + WriteIf (sellach2, "Target 2: "+tar2+" :: Achiecheved","")), 13, y-45);

GfxTextOut
( ("" + WriteIf (buyach3, "Target 3: "+tar3+" :: Achiecheved","")), 13, y-25);

GfxTextOut
( ("" + WriteIf (sellach3, "Target 3: "+tar3+" :: Achiecheved","")), 13, y-25);



Filter=Buy OR Short;
AddColumn( IIf( Buy, 66 , 83 ), "Signal", formatChar, colorDefault, IIf( Buy , colorGreen, colorRed ) );
AddColumn(Close,"Entry Price",1.4, colorDefault, IIf( Buy , colorGreen, colorRed ));
AddColumn(Ref(TrendSL,-1),"Stop Loss",1.4, colorDefault, IIf( Buy , colorGreen, colorRed ));
AddColumn(tar1,"Target 1",1.4, colorDefault, IIf( Buy , colorGreen, colorRed ));
AddColumn(tar2,"Target 2",1.4, colorDefault, IIf( Buy , colorGreen, colorRed ));
AddColumn(tar3,"Target 3",1.4, colorDefault, IIf( Buy , colorGreen, colorRed ));
AddColumn(Volume,"Volume",1.0, colorDefault, IIf ((Volume > 1.25 * EMA( Volume, 34 )),colorBlue,colorYellow));


// Calculate Equity Curve

eq = Equity( 1, 0 );

//////////////////////////////////////////////////
// Calculate the Last Five Trades Profit/Losses //
//////////////////////////////////////////////////

tradesback = 5;
Signum = Cum( Buy ) + Cum( Short );
Signumstart1 = LastValue( SigNum ) - ( tradesback - 1 );
Signumstart2 = LastValue( SigNum ) - ( tradesback - 2 );
Signumstart3 = LastValue( SigNum ) - ( tradesback - 3 );
Signumstart4 = LastValue( SigNum ) - ( tradesback - 4 );
Signumstart5 = LastValue( SigNum ) - ( tradesback - 5 );

bi = BarIndex();
bistart = ValueWhen( signum == signumstart1, bi );
bicond = bi >= bistart AND bi <= LastValue( bi );


SellPL = IIf( Sell AND bicond, C-BuyPrice, 0 );
CovPL = IIf( Cover AND bicond, ShortPrice - C,0 );

cumPL = SellPL + CovPL;

//Plot (SellPL,"Sell",colorGreen,styleHistogram,maskhistogram);
///Plot (CovPL,"Cover", colorRed,styleHistogram,maskhistogram);

lsince = LowestSince(Sell OR Cover, cumPL, 0);
hsince = HighestSince(Sell OR Cover, CumPL, 0);


vs= IIf(lsince==0,hsince,lsince);


PL1 = ValueWhen( signum == signumstart1 , vs,1 );
PL2 = ValueWhen( signum == signumstart2 , vs,1 );
PL3 = ValueWhen( signum == signumstart3 , vs,1 );
PL4 = ValueWhen( signum == signumstart4 , vs,1 );
PL5 = ValueWhen( signum == signumstart5,  vs ,1 );

//////////////////////////////////////////////////
//   Plot the Last Five Trades Profit/Losses    //
//////////////////////////////////////////////////


Title = EncodeColor(colorWhite)+ "Backtest Results  from www.marketcalls.in" + " - " +  Name() + " - " + EncodeColor(colorRed)+ Interval(2) + EncodeColor(colorWhite) +

 "  - " + Date() +" - "+"\n" +EncodeColor(colorRed) +"Op-"+O+"  "+"Hi-"+H+"  "+"Lo-"+L+"  "+

"Cl-"+C+"  "+ "Vol= "+ WriteVal(V)+"\n"+ EncodeColor(colorYellow)+ "\n\n\nLast 5 Trade Results\n" +
"\nTrade1= " + PL1
+"\n"+ "Trade2= " + PL2
+"\n"+ "Trade3= " + PL3
+"\n"+ "Trade4= " + PL4
+"\n"+ "Trade5= " + PL5;


//Magfied Market Price

FS=Param("Font Size",30,11,100,1);

GfxSelectFont("Times New Roman", FS, 700, True );

GfxSetBkMode( colorWhite );

GfxSetTextColor( ParamColor("Color",colorGreen) );

Hor=Param("Horizontal Position",940,1,1200,1);

Ver=Param("Vertical Position",12,1,830,1);

GfxTextOut(""+C, Hor , Ver );

YC=TimeFrameGetPrice("C",inDaily,-1);

DD=Prec(C-YC,2);

xx=Prec((DD/YC)*100,2);

GfxSelectFont("Times New Roman", 11, 700, True );

GfxSetBkMode( colorBlack );

GfxSetTextColor(ParamColor("Color",colorYellow) );

GfxTextOut(""+DD+"  ("+xx+"%)", Hor , Ver+45 );


_SECTION_END();

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

_SECTION_BEGIN("Time Left");

RequestTimedRefresh( 1 );

TimeFrame = Interval();

SecNumber = GetSecondNum();

Newperiod = SecNumber % TimeFrame == 0;

SecsLeft = SecNumber - int( SecNumber / TimeFrame ) * TimeFrame;

SecsToGo = TimeFrame - SecsLeft;



x=Param("xposn",50,0,1000,1);

y=Param("yposn",380,0,1000,1);



GfxSelectSolidBrush( ColorRGB( 230, 230, 230 ) );

GfxSelectPen( ColorRGB( 230, 230, 230 ), 2 );

if ( NewPeriod )

{

GfxSelectSolidBrush( colorYellow );

GfxSelectPen( colorYellow, 2 );

Say( "New period" );

}

//GfxRoundRect( x+45, y+40, x-3, y-2, 0, 0 );

//GfxSetBkMode(1);

GfxSelectFont( "Arial", 14, 700, False );

GfxSetTextColor( colorRed );

GfxTextOut( "Time Left :"+SecsToGo+"", x, y );

_SECTION_END();


IDEA NSE CASH STOCK TECHNICAL ANALYSIS FOR EDUCATON PURPOSE

It's for education purpose. I can't give any call or trading advice because I an not register with NISM or nse.

Rules for profitable day and swing trading must follow

1. Trade in the direction of the trend. Buy at or near rising 20 period MA, sell at or near downward sloping 20 period MA.This will eliminate 70-80% of your losing trades.

2. Always cut your losses and let your profits run. Take small losses and large wins.

3. Trail stop loss. Don't let a profitable trade turn to a looser.

4. Trade as per plan. Don't trade unless you know where you should get in and where you should get out.

5. Always use protective stop to limit your losses.

6. Learn to be patient. Don't trade impulsively. Wait for the right opportunities and setup.

7. If the reason you entered the trade is no longer valid, get out.

8. Do your own homework. Keep ready long/short levels to enter trade. Make use of system to inform you when the target entry/exit price is there for the taking.

9. Be open to research.

10. Give time to your sytem to work. If your method of trading is working, don't keep changing it.

11. Remember the market is never too high or low to buy or sell.

12. Be disciplined. A trader has periods of profit or losses. Don't let the losses get to you psychologically.

13. No indicator that is a 100% right all the time. Use common sense along with your method of trading. If your indicators are telling you one thing but the market is obviously doing something else, listen to the market.

14. Remember the golden rule - The market is always right.

15. Never risk all in a trade/trades. Max. loss on open positions should never be more than 5% of capital. Close all loosing positions immediately if this loss level is reached.

16. Don't overstrech your capital. Trade markets you are sufficiently capitalized for.

17. Never trade with money you cannot afford to lose.

18. If you hit your target profit, take it, or atleast protect with trailing stop loss.

19. Don't revenge trade and try to make up for all your losses in one trade.

20. Don't blindly follow someone else's recommendations or tips.

21. If there are few consecutive days of losses or there are a row of loosing tades, take a break for a few days or weeks. Trade only when you are in the right psychological frame of mind.

22. Don't trade to many markets. It's better to be an expert in one market than a novice in many.

23. If there is a marging call, it means something went wrong with your trade, and exit the trade.

24. Don't take losses personally.

25. Most important, have a life besides trading. If you are not happy with life in general, you will not be in the right frame of mind to be trading.

STOPLOSS BIG Mystery and its three golden keys

Mystery of Stoploss
One of the great mysteries of trading is the dreadful stop. 

*what kind of stops should I use?

The philosophy outlined here regarding stops is very different than most others. when you learn how to use stoploss wisely, you discover that stops don’t have to hurt.

Stoploss orders are the medicine of trading. 

When your trade is sick, stops are there to heal it.
The big question is whether you like to take the medicine before you get sick
as a preventive measure or you wait till you really get sick,and then use the medicine. Natural choice seems to the part two.

There a few ways of using stops:

1. No Stop specialist 
What do you call a trader that doesn’t use stops? 
An investor. 
When a trader lets a trade go against him, he gets married to the stock, starts looking at fundamentals then becomes an investor. 

I have seen people, especially six years ago, buy a stock at 100 and still hold it today, even though it’s a penny stock today. 



2. Random stop or Gambling stop 

These happen when a trader knows how much money he wants to risk on a stock, his bet on the stock, and that is his stop. 
Buy ABC stock with a 500 stop, because that is all they can allocate for this trade. These PEOPLE think trading as gambling, they put their money on the table and forget about it.

The problem with this method is that it is not a method, there is no reasoning behind the placement of the stop.

3. Adding in stop 

Some traders keep adding in money into their position as it goes against them. This is also called Dollar Cost Averaging. 
When people begin trading they think that adding money to a position lowers your cost on it and, therefore, allows you to buy more shares at a lower price. Any Investor, who liked ABC at 60, surely will like it so much more at 50, right?

The reasoning behind this method is very dangerous. 

You buy 1000 shares at 60, buy another 1000 at 59, buy another 1000 at 58. Now, your average cost is 59, not 60 as you originally wanted. The stock only has to jump up a single for you to break even, not two.
BIG PROBLEM
Problem comes when the stock keeps FALLING and you are now stuck with 3000 shares on the wrong side of a breakout. 

People using this method wipe out their accounts. Traders will become investors. If not on the first 20 trades, then on the 21st that would wipe them out. 
It only takes one large loss to devastate an account and devastate the trader.

Stops are like medicine for your trading. 

The longer you take before you swallow the bitter pill, the worse your condition is going to be. 
Preventive medicine works so much better, it prevents small weaknesses from becoming serious diseases.


Trade this way if you agree it is better

Follow this method of stops =it is very simple, 

kNOW YOUR ENTRY REASON,
WRITE IT DOWN
,
Always exit a trade 
when the reason for your entry no longer exists. 

Take Notice We said Exit, not stop. 

We do not take stops, we exit. 

At times it’s a negative exit, but it is still an exit, not a stop. 

A stop loss stops your loss, we are not interested in the trade becoming a loss.

 follows

ENTRY

If you have done your analysis right, you should be able to pinpoint an entry.

An entry is a trigger 

that starts a trend, 
starts a wave in a trend, 
starts a bounce, 
starts a fade or a break out.
--------------------------------------------------------------------------------------------------

BE accurate with your entry, AND your exit should be very simple.

If you entered a trend, you exit when you know that the reason for your entry no longer exists, when the stock refuses to start your trend. 

If you entered a breakout, you know the reason for your entry no longer exists when the stock returns back into your consolidation.

So how much is that? 
Your stop, or negative exit, (if you did your home work and pinpointed your entry,) is Noise + Spread. 

Noise is the normal fluctuation of the stock and spread is the difference between bid and ask.

Basically, if you add them together, it is the amount that the stock can pull back before you know that your entry is wrong.

For example, in day trading, most of our negative exits are less than 1 RUPEE Most of the stocks that we trade have less than A COUPLE OF RUPEES spread and noise. In Swing trading, most of our negative exits are less than 10 TO 20 RUPEES(TEN TIMES plus THAT OF DAYTRADING) for the same reason.

Some people day trade with a RUPEE stop or even two or three rupees. If you do your home work and can pinpoint your entry, how many 1 rupee negative exits can you take before you equal one point or two points? 
Imagine having 10-20 attempts for the price of one.
---------------------------------------
Three keys
There are three keys to success here:

1. Pinpoint your entry - You need to know exactly where to enter.
2. Know exactly where the reason for your entry no longer exists - Where on the chart does price have to go to invalidate your entry?
3. Re-entry - If the stock comes back and your setup is still valid, make sure that you re-enter.
Most of us pay less than 100 in commissions, which is a lot less than a devastating stop loss of multiple points.

If you have to pay 500 plus rupees for a trade that didn’t work, it is a business expense, not a stop loss. It protects you financially and psychologically. It allows you to re-enter the trade without any damages.

If you exit with an expense of 1000, it will do a lot less damage than several thousands or your whole account. 
How would you feel if you spent a few hundred bucks on a trade vs. lost several thousands on a gamble?

Traders need to get educated how to pinpoint their entries and know exactly when the trade is working or not, in order to keep stops down to business expenses, instead of serious losses.

The secret to longevity and prosperity in trading is
knowing why you are entering, 
pinpointing your entries and 
preservation of your capital.

Preservation of capital is always more important than capital appreciation.

Hope this helps your trading in some way.

Dedicated to maximizing your profits,

HOW SELECT BEST STOCK FOR INTRADAY TRADING

We often find ourself in situations where the whole market is moving up or down in any particular day but the stocks which we have positions does't move and it moves sideways and choppy where sometimes our stops gets hit or we exit at the end of the day near cost to cost .

Novice traders find themselves in the above situation more than 80 percent of the time . They learn technical analysis , apply them in live market , try their luck with different indicators but nothing works . Of course it works sometimes but doesn't work consistently every time .

Sometimes you are trading a stock for couple of days and the stock is not moving anywhere and you lost your patience and moved on to another stock which is moving and as soon as you entered the stock it will hit your stoploss or it will start to move sideways and the previous stock where you lost your patience starts to move . This kind of things happen day after day .

So many times questions came in your mind that how professional day traders do day trading trading for a living ?

There are thousands and thousands of stocks listed on NSE and BSE and it is impossible to track and trade every single stock and which stock will move on which day nobody knows and if you play the news , sometimes news are good but stocks does't perform .

Now am going to show you a simple trick to find stock . For that you have to get rid of the habit of day trading every single day . There are around 22 trading days and sometimes I will trade every 22 days , sometimes I will trade on 12 to 15 days , sometimes I will trade on 7 trading days . Professional day traders don't trade every single day , they may watching the market but they don't pull the trigger . 

Stock Selection 

1 . First create a watch list of 12 to 15 stocks which falls in group A . As you
get experienced you can add more in the watch list

2 . Selection of stocks should be diversified . Meaning all the stocks should 
not be in the same sector .

3 . We will study the daily chart of all the stocks in my watch list each night 
and will see which stocks are in my criteria and going to trade them 
from the next day till the criteria does't hold .

4 . We will put a 50 and 5 Ema on the volume of the daily chart and going to 
scan on which stocks in my watch list the last 5 days average volume is 
greater than the 50 days average volume .

5 . We will pick 2 or 3 stocks from my watch list and going to trade them 
from the next day till the day day the 5 days average volume becomes 
than the 50 days average volume . Sometimes this criteria last for 2 to 
3 days and some times the criteria last for more than a month .

When there is average little volume in a stock on a daily chart most of the time the stock tends to move sideways and choppy on intraday basis and no indicator can make for you and when volume started to increase you can expect more movement on the intraday which you can catch by any trend following indicator .

MORNING 30-MINUTES DAY TRADING INTRADAY STRATEGY

This strategy is based on understanding the moves in context of the Sentiments / Supply – Demand Factor or Moves of Big traders or Operators. 
If you track the Close price you will wonder the Open price of the trade day is not always the same as that of the previous days Close price. It is because the Operators according to the sentiments lay a trap in which small traders get trapped and run into losses. If we understand these Dynamics we can make profits 90 % times in normal markets in the first 3 to 30 minutes of trading. 
( Remember you should close your positions in this time frame ) 
For this strategy it is compulsory to choose shares with very high volumes for example shares in nifty or for that matter other shares with volumes above 5 lac or 10 lac
Take the following figures and trade plan with you on the basis of calculations given below. We will call it Operators Strategy ( OS )

Difference (D) between HIGH & LOW of previous day i.e.: D = ( H – L ) 

Now OS = D / 3

BUY PRICE = ( Close – OS )

SELL PRICE = ( Close + OS )

For understanding the OS one should understand the following……..
STRONG SHARE or STRONG CLOSE (close price is higher than previous close) &
WEAK SHARE or WEAK CLOSE ( close price is lower than previous close )
Now on the basis of above calculations you are ready with the figures i.e.: BUY PRICE, CLOSE & SELL PRICE of STRONG SHARE & WEAK SHARE separately.

Now on trade day if STRONG share opens anywhere between Close & BUY PRICE you can BUY first & keep for sell @ SELL PRICE as your target. 
The Trap :- As the share opens at a price lower than Close one gets the feeling as if the share has become weak and sells it, thus falling in the trap.

On trade day if WEAK share opens at or above SELL PRICE you can SELL first & buy later @ BUY PRICE as your target.
The Trap :- As the share opens at a higher price than the Close one gets the feeling that the share has become strong and buys it thus falling in the trap.

This strategy requires you to be very fast in taking decisions and accordingly positions. Furthermore One should compulsorily come out or close the position in the mentioned time frame or as soon as target is achieved. Life is not that easy and if you find that your position was wrong immediately square it ( close it)Avoid putting Stop Loss, instead put orders immediately for covering 


* Some more morning strategies :……………….


A ) SHORT SELL :- ( sell first & buy later )

OPEN & HIGH IS SAME….
Sell just below HIGH price if it is not breaking the high price for 3 minutes.
Example : If O-H is 110 sell @ 109 with a SL ( stop loss ) just above HIGH.
Best results are observed if :-
a) Market is Bearish ( weak ) 
b) O-H rate is near or above SELL PRICE i.e.: ( Close + OS ) 
c) Weak share but O-H rate is @ or near SELL PRICE
d) If share price is not crossing above previous day’s HIGH

B ) BUYING :- ( buy first & sell later ) 

1. OPEN & LOW IS SAME…….. Buy just above LOW price if it is not breaking the low price for 3 minutes. Example : If O-L is 100 buy @ 101 with SL ( stop loss ) just below LOW.
Best results are observed if :-
a) Market is Bullish ( strong )
b) Close is Strong ( i.e.: it is a strong share )
c) O-L is near or below Close
d) O-L rate is @ or near BUY price 


2. STRONG SHARE :- ( i.e.: strong close ) 

BUY if :-…………..
a) OPEN is @ BUY price.
b) OPEN is same as pr. Close.
c) OPEN & LOW is same, as discussed above.
d) OPEN is just above pr. Close but far below SELL price.

3) BUY if Share crosses above its intraday High price.

Best results if market is bullish. Keep the target of getting out @ SELL price, if it is showing strength & volume is more than pr. Day.


Note : 

AVERAGING: Never average in loosing position. Average only in winning positions.
TRAILING STOP-LOSS: - The SL of profit following your winning position is called trailing SL.
Losses : are part of intraday trading , success of 70% plus is what one should work for & refine your strategy.Hard Fact : In The game of intraday trading if you are consistently achieving 1% profit of your total intraday volume you are achieving wonders. 
Greed & Fear are enemies of intraday traders.

NOTE:-  WE ARE NOT RESPONSIBLE FOR ANY LOSS FROM THIS STRATEGY PLEASE BACK TEST THIS BEFORE USE.

अंतहीन गिरावट का सिलसिला और मार्टिन टेलर का खत

शायद अंशधारकों को ऐसा पत्र कभी पढऩे को न मिल सके। जब नेव्स्की कैपिटल के सफल हेज फंड प्रबंधक मार्टिन टेलर ने कहा कि वह इस वर्ष के आरंभ में हेज फंड बंद कर रहे हैं तो उन्होंने न केवल भविष्य बांचने की क्षमता का प्रदर्शन किया बल्कि हमें उससे भयभीत भी किया। टेलर ने कहा कि वह इसे इसलिए बंद कर रहे हैं क्योंकि चीन और भारत में जो कुछ घटित हो रहा है उसे पढऩा अत्यंत कठिन है। यह भी कि कंपनियां सीमित मात्रा में आंकड़े जारी कर रही हैं ताकि वे निवेशकों और नियामकों की निगरानी से बची रह सकें। 
 
टेलर ने जनवरी के आरंभ में जारी पत्र में लिखा, 'फिलहाल चीन की वास्तविक जीडीपी की वृद्घि दर 7.1 प्रतिशत बताई जा रही है और भारत में 7.4 प्रतिशत। ये दोनों ही अतिरंजित हैं। आंकड़ों के साथ यह छेड़छाड़ चाहे जानबूझ की गई हो या अनजाने में हुई हो, लेकिन वह तेजी से विस्तारित होते निवेश क्षेत्र के लिए वृहद और सूक्ष्म आर्थिक जानकारियां हासिल करना मुश्किल बना देती है।'
 
इस वर्ष की शुरुआत में चीन से आए संकेतों ने जाहिर कर दिया कि टेलर का फैसला एकदम सही था। चीन की मुद्रा और शेयर बाजार प्रबंधन में स्पष्टï अदूरदर्शिता नजर आई। इसने वैश्विक बाजारों को भी प्रभावित किया। इस बीच बैंक ऑफ जापान के गवर्नर हारुहिको कुरोडा ने ब्याज दरों को घटाकर 0.1 प्रतिशत नकारात्मक कर दिया। यह जापान की अपस्फीति से निपटने की कोशिश थी। इसके जरिये यह प्रयास भी किया गया कि कंपनियां कर्मचारियों को बेहतर वेतन भत्ते प्रदान करें। लेकिन जब प्रतिक्रियास्वरूप येन में गिरावट के बजाय तेजी आने लगी तो यह उपाय बेमानी हो गया। उस वक्त एबेनॉमिक्स विफल हो गई। गत सप्ताह जापान ने कहा कि चौथी तिमाही में उसकी जीडीपी 1.4 फीसदी कम हुई है। 
 
नकारात्मक दरों के दायरे की बात करें तो बैंक ऑफ जापान के दर कटौती करने तथा यूरो क्षेत्र में और कटौती के अनुमानों के बीच दुनिया भर के शेयरों की कीमतों में गिरावट देखने को मिली। नकारात्मक अथवा अत्यंत कम ब्याज दरों तथा प्रतिफल में स्थिरता ने बैंकिंग कारोबार को मुश्किल भरा बना दिया है। जापान में 10 साल के बॉन्ड पर प्रतिफल पहली बार नकारात्मक हो गया। 
 
जरा कल्पना कीजिए कि 29 जनवरी को नकारात्मक दरों का फैसला लेने के पहले बैंक ऑफ जापान की क्या स्थिति रही होगी? वे क्या सोच रहे होंगे? क्या किसी ने यह प्रश्न उठाया होगा कि जापानी बैंकों को नकारात्मक ब्याज दर का बोझ ग्राहकों पर डालते हुए परेशानी हो सकती है। यह भी कि रेटिंग एजेंसियां और बैंक विश्लेषक झटपट यह आकलन कर बैठेंगे कि बैंक का परिचालन मुनाफा 8 से 15 फीसदी तक गिर जाएगा। नतीजतन पिछले कुछ सप्ताह के दौरान जापान के बैंकों के शेयरों के दाम 30 प्रतिशत तक गिरे हैं।
 
बैंकों को लेकर अफरातफरी का यह माहौल गत सप्ताह यूरोप और यहां तक कि अमेरिका में प्रवेश कर गया। वहां भी बैंकों ने सन 2008 की गिरावट के बाद जमकर नकदीकरण किया है। इस वर्ष अमेरिकी बैंकों के शेयरों की कीमत में 20 प्रतिशत की गिरावट के बाद जेपी मॉर्गन के करिश्माई मुख्य कार्याधिकारी जैमी डिमॉन ने अपने बैंक में 2.5 करोड़ डॉलर मूल्य के शेयर खरीद कर यह दिखाया कि उनके बैंक की बुनियाद मजबूत है। 
 
भारत और चीन की बात पर वापस लौटें तो हर कहीं आर्थिक दलीलों का अभाव नजर आ रहा है। मंगलवार को सामने आए चीन के जनवरी माह के ऋण संबंधी आंकड़े बताते हैं कि वहां कर्ज में 25 खरब रेनमिनबी यानी 385 अरब डॉलर का इजाफा हुआ है। यह पिछले साल की समान अवधि की तुलना में 10 खरब रेनमिनबी अधिक है। इसके लिए कुछ हद तक यह बात जिम्मेदार है कि चीन के कारोबारी और बैंक तेजी से विदेशी मुद्रा का कर्ज निपटा रहे हैं क्योंकि वहां मुद्रा का अवमूल्यन किया गया है। फाइनैंशियल टाइम्स के मुताबिक गत सात महीनों में वहां विदेशी कर्ज में 859 अरब रेनमिनबी की गिरावट आई है। 
 
लेकिन नए कर्ज का तकरीबन आधा हिस्सा बुनियादी ढांचे में जाता नजर आ रहा है। इससे पता चलता है कि चीन गैर जवाबदेह अंदाज में कर्ज कम करने के बजाय वृद्घि दर को और बढ़ाने पर ध्यान केंद्रित कर रहा है। जबकि उसका कर्ज जीडीपी की तुलना में 250 प्रतिशत से अधिक है। जापान और चीन के उलट भारत का आर्थिक आकार छोटा है लेकिन भला किसने सोचा होगा कि प्रधानमंत्री नरेंद्र मोदी के दल के लोग तथा उनके समर्थक मेक इन इंडिया समिट के दौरान ही अखबारों के पहले पन्ने की सुर्खियों को विश्वविद्यालय छात्रों पर देशद्रोह के आरोप और फिर उन पर शारीरिक हमलों के हवाले कर देंगे। यहां तक कि उन पर अदालत में भी हमला किया गया? या फिर वह घटना जिसमें एक बार फिर वोडाफोन पर अतीत प्रभावी कर का मामला जग जाना, जबकि यह मामला अभी विवाद निस्तारण की प्रक्रिया में है। 
 
टेलर अपने पत्र में कहते हैं, 'हां हम स्वीकार करते हैं कि राजनीति अर्थशास्त्र को प्रभावित करती है और राजनीतिक विश्लेषण हमारी प्रक्रिया का बड़ा हिस्सा रहा है। परंतु इससे पहले कभी भी दुनिया ऐसे नेताओं से इस कदर नहीं संचालित हुई जहां राष्ट्रवाद की दलील यूं सब पर भारी पड़ती हो।' उनका इशारा चीन, भारत, रूस और तुर्की की ओर था। वह लिखते हैं कि यकीनन पारिभाषिक तौर पर राष्ट्रवाद के साथ तार्किक पथ पर चलना मुश्किल है। बाहरियों के लिए उसका भरोसे के साथ अनुसरण करना आसान नहीं। इससे एक उच्च अनिश्चितता वाला माहौल तैयार होता है। 

BY
राहुल जैकब /  February 22, 2016  @ BUSINESS STANDARD

SIMPLE EMA DAY TRADING STRATEGY


This is combination of 55 and 89 EMA in 5 minute chart.

When to Buy -   when 55 EMA cross and goes above 89 EMA and next candle close above previous candle then buy with 1% stop loss and Target 1% or more as per your confidence.

When to Sell  - Just reverse of Buy when 55 EMA cross and goes down below 89 EMA and next candle close below previous candle then sell with 1% stop loss and Target  1% or more as per your confidence.


NOTE:-   Please beck test this strategy before use. We are not responsible for any loss.

Not Successful In Day Trading Then It's For You




Day trading is all about momentum and nothing else.  You need some way to identify stocks with momentum.  Though a knowledge of technicals surely helps, it is not completely fool proof.  You should always rely on combination of technicals and not on a single one.  You need to devise your own methodology and test it by paper trading before entering the real market.  If you are a intra-day stock futures trader keep the following as base and then supplement with further value-additions:

1) Stock selection for trading intra day futures:

   a) Do not trade during the first half an hour of the opening.

   b) By 10.00 am you will definitely have a fair idea about the general trend or atleast the market sentiment.  This is a function of prev day DJIA performance, current day's Asian markets performance, etc.

  c) If general sentiments appear to be positive, look for stocks with momentum that can be gone long.  Similarly if sentiments appear to be negative, look for stocks with momentum that can be gone short.

   d) Now comes the crucial aspect of identifying stocks with momentum (bullish and bearish).  At 9.50am to 10am, go to  the market watch section of exchange's website  and find out stocks which have the following characteristics :

i) Open price is the lowest price / near lowest of the day so far. (indicates bullish trend with momentum)

ii) Open price is the highest price / near highest of the day so far. (indicates bearish trend with momentum)

The above can be easily automated in excel by downloading the excel link from the exchange's website. If the general sentiments appear to be positive, focus of item i) else focus on item ii).  If the general market trend is directionless and range bound focus on a combination of i) and ii).  Few more parameters can also be supplemented to i) and ii) to confirm the momentum.

e) Last but not the least is discipline.   Have a strict SL depending upon your risk appetite.  If you are in profit do not hesitate to book it as greediness is the biggest enemy of a trader.  If you are in loss, SL will take care of your exit.   Do not overtrade.