Trading Nifty with Camarilla Pivots...!

linkon7

Well-Known Member
#71


5165 is the level to watch now... a 2 min bar close above that... and i enter long on 5100 call... Its still got some fat in it and incase market proves me wrong..will short NF below 5152...
 

linkon7

Well-Known Member
#72


ema 34 flat...take ur dog for a walk...!
 

linkon7

Well-Known Member
#76
AAP ko time pass se matlab hai... dog chahiye... ab ladki bhi... yaar demand barta jaa raha hai...
 

bandlab2

Well-Known Member
#79
i found this afl for CCI settings used for this method

///////////////////////////////
// CCI Woodies Style - Coded by Wring
// Amibroker 4.63.1
///////////////////////////////
//
// Note: Set Custom Scaling in dialog just below this dialogue box
// to Min -350, Max +350
//
// Set Background color to DarkOliveGreen
// Set Axes color to white
//
///////////////////////////////


z = CCI(14);
LSMA = LinearReg(C, 25 );
EMA34 = EMA(C,34);

Title = Interval(2) + " " + Name() + ", " + EncodeColor(colorOrange) +
"CCI 14=" + round(z) + ", " + EncodeColor(colorLightBlue) +
"CCI 6=" + round(CCI(6)) + EncodeColor(colorPink) +
"\nPrice=" + H + ", " + L + ", " + C +
EncodeColor(colorWhite) + " " + Date();

// Colour the bars for Woodies Trend Following
Plusbars = BarsSince(z < 0);
Minusbars = BarsSince(z > 0);
TrendBarCount = 5;
for( i = 0; i < BarCount; i++ )
{
if (Plusbars >= TrendBarCount)
Color = colorGreen;
else
if (Minusbars >= TrendBarCount)
Color = colorRed;
else
Color = colorBlack;
}

// CCI Histogram
Plot(z,"",Color,styleHistogram | styleNoLabel);
// CCI Line
Plot(z,"CCI 14",colorWhite,styleLine | styleNoLabel | styleThick);
// Turbo CCI
Plot(CCI(6),"CCI 6",colorLightBlue,styleLine | styleNoLabel);
// zero line 25lsma
Plot(0,"",IIf(C > LSMA,colorGreen,IIf(C<LSMA,colorRed,colorBlack)),
styleThick | styleNoLabel);
// Print the price label - Note div by 1000 to position price near 0 line
Plot(Prec(C / 1000,3),"",
IIf(C >=Ref(C,-1),colorGreen,colorRed),styleNoLine);

// Set up color for the 100s, green if 34ema above red if below
Color = IIf(C>EMA34,colorGreen,
IIf(C==EMA34,colorBlack,colorRed));
// Plot the 100s
Plot(100,"",Color,styleDots |styleNoLine | styleNoLabel | styleThick);
Plot(-100,"",Color,styleDots |styleNoLine | styleNoLabel | styleThick);
// Plot the 50s
PlotGrid(50,colorTeal);
PlotGrid(-50, colorTeal);
// Plot the 200s
PlotGrid(200,colorTeal);
PlotGrid(-200,colorTeal);
// Plot the 300s
PlotGrid(-300,colorTeal);
PlotGrid(300,colorTeal);
 

linkon7

Well-Known Member
#80
Its just CCI 14 and CCI-6....
rest all is mumbo jumbo... meant to confuse the living....
 

Similar threads