Stocks To Keep A Close Eye On

Status
Not open for further replies.
Re: Stocks To Keep A Close Eye On - Chapter II

'JAI BABA'

For Short Term Traders/Investors (For 30/11/2009)



43) BUY IDFC (CMP 137.40) @ 144.50
Quantity 12 Shares
Stop Loss 129.10
First Target 159.90




Quantity Of Share To BUY Is Position Sized For Rs.20000 Available For Each Scrip
(Adjust Qty. Depending On Your Availability)


Happy & Safe Investing

SavantGarde
Savantda

IDFC - believe thats a typo.....

regards
 

lazytrader

Well-Known Member
Re: sbi demat - Inter Depo Intra CM - DR

Hi,
Can some one explain what this "Inter Depo Intra CM - DR" means ?
This is a bill head that was given for some amount debited from my sav account by sbi demat. The best place to ask for this is with sbi demat, as they had debited the money. But I never get reply from them after repeated reminders and follow up emails. I get funny replies from them like, sbicaps ask to contact sbi demat, sbi helpdesk ask me to contact sbicaps etc...this cycle went on. They never look what is in the email chain, they just try to push it to others. Finally a manager from sbicaps was brought into loop and he forwarded the email to a manager (his signature says chief manager, not sure which dept). He sent me the screenshot of the bill, that says "Inter Depo Intra CM - DR". When I asked him, what this is, he replied that, "details are clear in the bill, if you will go through the entire bill details". But I didn't understand this bill head.
This was the reply at last - for all transactions you will do on online trading will be charged Rs 6/- irrespective of quantity or value of share. If you submit DIS then it is charged on value basis
There's already a thread on it demat related issues I had created loooong time ago in which Savantji has clarified many doubts. So I will reply to your post there: http://www.traderji.com/equities/31650-demat-its-nuances-5.html#post387962
 
Re: Stocks To Keep A Close Eye On - Chapter II

Hello sirs,

can i have 5/6 sytem for metastock version 10 so that I will incorporate it in my computer in advance thanks

regards



Dear Anant Ji,
Thanks for the Afl.
I am attaching the single MA 20 system provided by you. Please check is it updated or not.

_SECTION_BEGIN("SingleMA1");

SetChartOptions(0, chartShowDates | chartWrapTitle);

Type = ParamList("Average Type", "SMA,EMA,LinReg");
P = Param("Averaging Period", 20, 3, 100);
Q = Param("%Change", 2, 0.1, 10, 0.1);
BP = Param("BB Period", 20, 3, 100);
BW = Param("BB Width", 2, 0.5, 10, 0.5);
BBOption = ParamToggle("Plot BB", "No I Yes");

Report = ParamList("Trigs or Update or Tgt-SL?", "Triggers|Update|Tgt-SL");

if(Type == "EMA") A = EMA(C, P);
if(Type == "SMA") A = MA(C, P);
if(Type == "LinReg") A = LinearReg(C, P);

SL = Trough(L, Q, 1);
Tgt = 2 * H - SL;
MeanPrice = Prec((O + C) / 2, 2);

Part = 100 * (H - A) / (H - L);

BBTop = BBandTop(C, BP, BW);
BBBot = BBandBot(C, BP, BW);

Buy = (Prec(C, 2) > Prec(A, 2)) AND Part > 70;
Sell = H < A;

Buy = ExRem(Buy, Sell);
Sell = ExRem(Sell, Buy);
Bought = Flip(Buy, Sell);
Sold = Flip(Sell, Buy);
NextTgt = ValueWhen(Buy, Tgt, 1);

for(i = 1; i < BarCount; i++)
{
if(Bought AND NOT Buy)
{
SL = Max(SL, SL[i - 1]);
if(C[i - 1] >= 0.9999 * NextTgt[i - 1]) NextTgt = Tgt[i - 1];
NextTgt = Max(NextTgt, NextTgt[i - 1]);
}
}
BuyDate = ValueWhen(Buy, Ref(DateTime(), 1), 1);
BuyPrice = ValueWhen(Buy, Ref(MeanPrice, 1), 1);
SellPrice = ValueWhen(Sell, Ref(MeanPrice, 1), 1);

TgtReached = IIf(Bought AND NOT Buy AND C >= 0.9999 * NextTgt, True, False);
SLHit = IIf(Bought AND NOT Buy AND C < SL, True, False);
SLHit = ExRem(SLHit, Buy);

if(Status("action") == actionIndicator)
{
Ttl = EncodeColor(colorTurquoise) + "Single MA system, AFL by ANANT NAVALE" + "\n"
+ WriteIf(Buy, EncodeColor(colorGreen) + "Buy Triggered Today, Buy this stock Tomorrow.","")
+ WriteIf(Sell, EncodeColor(colorRed) + "Sell Triggered Today, Sell This stock Tomorrow.", "")
+ EncodeColor(colorTan) + WriteIf(Bought AND NOT Buy, "Bought @ " + BuyPrice + ". "
+ "Target Price = " + NextTgt + ", Stop Loss = " + SL + ".\n"
+ WriteIf(TgtReached, "Target Reached. Next Target = " + Ref(NextTgt, 1) + ".\n", "")
+ EncodeColor(colorGold) + "Profit / Loss so far = " + Prec(100 * (C - BuyPrice) / BuyPrice, 2) + "%", "")
+ WriteIf(Sold AND NOT Sell, "Sold @ " + SellPrice + "\nProfit / Loss in Previous Trade = " + Prec(100 * (SellPrice - BuyPrice) / BuyPrice, 2) + "%", "");

_N(Title = StrFormat("{{NAME}} ({{INTERVAL}}), {{DATE}} ; O=%g, H=%g, L=%g, C=%g, {{VALUES}}\n\n", O, H, L, C) + Ttl);

Marker = Buy * shapeUpArrow + Sell * shapeDownArrow;
MarkerColor = IIf(Sell, colorRed, colorSeaGreen);
MarkerDist = Buy * L *0.995 + Sell * H * 1.005;

PlotOHLC(O, H, L, C, "", colorLightGrey, styleBar);
Plot(A, Type + "(" + P +")", colorYellow, styleLine | styleThick);
Plot(IIf(Bought, NextTgt, Null), "Target", colorBlueGrey, styleLine);
Plot(SL, "Trail SL", colorTeal, styleLine);
PlotShapes(Marker, MarkerColor, 0, MarkerDist);
if(BBOption) Plot(BBtop, "BB-Top", colorPink, styleLine);
if(BBOption) Plot(BBBot, "BB-Bot", colorPink, styleLine);
}

if((Status("action") == actionExplore) AND Report == "Triggers")
{
Filter = Buy OR Sell;

SetOption("NoDefaultColumns", True);

AddTextColumn(Name(), "Symbol", 77, colorDefault, colorDefault, 120);
AddColumn(DateTime(), "Trigger Date", formatDateTime);
AddColumn(IIf(Buy, 66, 83), "Signal", formatChar, colorYellow, IIf(Buy, colorGreen, colorRed));
AddColumn(C, "C. M. P.", 6.2);
AddColumn(IIf(Buy OR Bought, NextTgt, Null), "Target", 6.2);
AddColumn(IIf(Buy OR Bought, SL, Null), "StopLoss", 6.2);
}
if((Status("action") == actionExplore) AND Report == "Update")
{
Filter = True;

SetOption("NoDefaultColumns", True);

AddColumn(DateTime(), "Updated On", formatDateTime, colorDefault, colorDefault, 96);
AddTextColumn(Name(), "Symbol", 77, colorDefault, colorDefault, 120);
AddColumn(BuyDate, "Buy Date", formatDateTime, colorDefault, colorDefault, 96);
AddColumn(BuyPrice, "Buy Price", 6.2);
AddColumn(NextTgt, "Target", 6.2);
AddColumn(SL, "StopLoss", 6.2);
AddColumn(C, "CMP", 6.2, colorDefault, colorDefault, 96);
}
if((Status("action") == actionExplore) AND Report == "Tgt-SL")
{
Filter = TgtReached OR SLHit;

SetOption("NoDefaultColumns", True);

AddColumn(DateTime(), "Updated On", formatDateTime, colorDefault, colorDefault, 96);
AddTextColumn(Name(), "Symbol", 77, colorDefault, colorDefault, 120);
AddColumn(BuyDate, "Buy Date", formatDateTime, colorDefault, colorDefault, 96);
AddColumn(BuyPrice, "Buy Price", 6.2);
AddColumn(NextTgt, "Target", 6.2);
AddColumn(SL, "StopLoss", 6.2);
AddColumn(C, "CMP", 6.2, colorDefault, colorDefault, 96);
AddColumn(IIf(TgtReached, 89, 32), "Tgt Hit?", formatChar, colorYellow, IIf(TgtReached, colorGreen, colorDefault));
AddColumn(IIf(SLHit, 89, 32), "SL-Hit", formatChar, colorYellow, IIf(SLHit, colorRed, colorDefault));
}

_SECTION_END();
 
Status
Not open for further replies.

Similar threads