General Trading Chat

Vivek ji this news, it seems was known to the market makers for some time now as they have jacked up the counter by 30% in this calendar year till now. I have been gung ho on this counter for quite some time now and have been quite vocal about it in this forum. I had gone on record to stick my neck out to say that we would now never see this counter in 3 figures ever. I would not be surprised to see RIL reach 3000 in the next 5 years or less. That is more than 100% from today's levels. I would be a buyer in all dips in this counter and have taken positions with an intent to roll it over on each expiry. I have already made more than 300 points in this counter since the 1st of april. So 25% of the cost of the lot recovered till now. Sorry for the long post but am excited.
 

vivektrader

In persuit of financial independence.
Vivek ji this news, it seems was known to the market makers for some time now as they have jacked up the counter by 30% in this calendar year till now. I have been gung ho on this counter for quite some time now and have been quite vocal about it in this forum. I had gone on record to stick my neck out to say that we would now never see this counter in 3 figures ever. I would not be surprised to see RIL reach 3000 in the next 5 years or less. That is more than 100% from today's levels. I would be a buyer in all dips in this counter and have taken positions with an intent to roll it over on each expiry. I have already made more than 300 points in this counter since the 1st of april. So 25% of the cost of the lot recovered till now. Sorry for the long post but am excited.
Yes, I read your post the day you wrote it, and also took a successful trade the next day.

Vivek
 

princy01

Well-Known Member
try this

can change TF...whether MA/EMA and whether on close/high/low etc

checkout various parameters

Code:
usetf = ParamToggle("Use TF", "No|Yes", 1) ;
// Author: Pratap Balakrishnan
// Copyright: All rights reserved. Not to be circulated or shared or posted on websites without the author's written permission.
// email id: [email protected]

alloff = ParamToggle("All off", "No|Yes", 0) ;

tf = Param("TF", 3, 1, 100000, 1);
Periods = Param("Periods", 13, 2, 1000, 1, 10 );
isema = ParamToggle("MA Type", "MA|EMA", 1) ;
MAstyle = ParamStyle("MA Style", styleThick) ;
Clrma = ParamColor( "Color Up", colorBlue);
isexpandLast = ParamToggle("Expand Mode", "First|Last", 1); 
expandmode = expandFirst ;
if (isexpandLast)
	expandmode = expandLast ;

if (NOT alloff)
{
	if (usetf)
	{
		tfs = tf *in1Minute ;
		TimeFrameSet(tfs) ;
	}
	else
		tfs = Interval() ;

Refp = ParamField("Price", 3);

	if (isema)
		MAhtf = EMA(Refp, Periods) ;
	else
		MAhtf = MA(Refp, Periods) ;

	if (usetf)
		MAhtfe = TimeFrameExpand(MAhtf, tfs, expandmode ) ;
	else
		MAhtfe = MAhtf ;

	str = NumToStr(tf, 1.0)+"Min"+"-P"+NumToStr(Periods, 1.0) ;
	Clr = Clrma ;
	if (usetf)
		Clre = TimeFrameExpand(Clr, tfs, expandmode ) ;
	else
		Clre = Clr ;

	if (usetf)
		TimeFrameRestore() ;

	RefMAhtfe = MAhtfe ;
	RefClre = Clre ;

	Plot( RefMAhtfe, str, RefClre, MAstyle|styleNoLabel|styleNoRescale); 
}
anybody has working solution for this , because its not working properly, need to plot HTF
60 minutes 100 and 200 EMA on options chart of 5, 15 , 30 minutes
 
St sir what's your view on lnt finance will it be another multibaggar? Sir I have shortlisted icici pru value discovery DSP blackrock microcap , kotak select focus birlasunlife equity ,icici pru long term fund can you check with your funds in which you have positions .are they better picks than that please sir compare as I also did some analysis before selecting these...it will be helpful if we get best out of best
 
St sir what's your view on lnt finance will it be another multibaggar? Sir I have shortlisted icici pru value discovery DSP blackrock microcap , kotak select focus birlasunlife equity ,icici pru long term fund can you check with your funds in which you have positions .are they better picks than that please sir compare as I also did some analysis before selecting these...it will be helpful if we get best out of best
There are so many funds and many are performing very well. Top performers of today may not be top performers after 6 months,but they will still perform well.L And T finance is a good stock but I like Bajaj Finance more.It is a matter of personal choice.

Smart_ trade
 
anybody has working solution for this , because its not working properly, need to plot HTF
60 minutes 100 and 200 EMA on options chart of 5, 15 , 30 minutes
You can modify this code snippets to your requirement


Code:
TimeFrameSet(in15Minute);
e15=EMA(C,5);
e113=EMA(C,13);
e120=EMA(C,20);
TimeFrameRestore(); 
e15x5=TimeFrameExpand( e15, in15Minute,expandLast );
e15x13=TimeFrameExpand( e113, in15Minute,expandLast );
e15x20=TimeFrameExpand( e120, in15Minute,expandLast );
e15c=WriteIf(e15x5>e15x13 OR e15x5<e15x13,"One","x");
e15c2=WriteIf(e15x5>e15x13 AND e15x5>e15x20,"On","x");
e15c3=WriteIf(e15x5<e15x13 AND e15x5<e15x20,"Oe","x");
//1h
TimeFrameSet(inHourly);
e51=EMA(C,5);
e131=EMA(C,13);
e201=EMA(C,20);
TimeFrameRestore(); 
ehx5=TimeFrameExpand( e51, inHourly,expandLast );
ehx13=TimeFrameExpand( e131, inHourly,expandLast );
ehx20=TimeFrameExpand( e201, inHourly,expandLast );
ehc=WriteIf(ehx5>ehx13 OR ehx5<ehx13,"One","x");
ehc2=WriteIf(ehx5>ehx13 AND ehx5>ehx20,"On","x");
ehc3=WriteIf(ehx5<ehx13 AND ehx5<ehx20,"Oe","x");
//4h
TimeFrameSet(inHourly*4);
eh51=EMA(C,5);
eh131=EMA(C,13);
eh201=EMA(C,20);
TimeFrameRestore(); 
eh4x5=TimeFrameExpand( eh51, inHourly*4,expandLast );
eh4x13=TimeFrameExpand( eh131, inHourly*4,expandLast );
eh4x20=TimeFrameExpand( eh201, inHourly*4,expandLast );
e4hc=WriteIf(eh4x5>eh4x13 OR eh4x5<eh4x13,"One","x");
e4hc2=WriteIf(eh4x5>eh4x13 AND eh4x5>eh4x20,"On","x");
e4hc3=WriteIf(eh4x5<eh4x13 AND eh4x5<eh4x20,"Oe","x");
//d
TimeFrameSet(inDaily);
ed5=EMA(C,5);
ed13=EMA(C,13);
ed20=EMA(C,20);
TimeFrameRestore(); 
edx5=TimeFrameExpand( ed5, inDaily,expandLast );
edx13=TimeFrameExpand( ed13, inDaily,expandLast );
edx20=TimeFrameExpand( ed20, inDaily,expandLast );
edc=WriteIf(edx5>edx13 OR edx5<edx13,"One","x");
edc2=WriteIf(edx5>edx13 AND edx5>edx20,"On","x");
edc3=WriteIf(edx5<edx13 AND edx5<edx20,"Oe","x");
 

Similar threads