Mudraa.com
Search Mudraa.com

Home


Buy & Sell Used Cars at CarBHP.com





Topic: Learning Section
santhosh kumar
View Profile

Nifty Futures Trade With Trend ( gci MT4)

From : Santhosh Kumar at 11:46 AM - Aug 29, 2010 ( )
Total Views: 10180
2 , 7 Bookmark

Share it on Facebook
tradewithtrendd


In Reply to above Message (1 to 20 out of 42) -- Latest Replies are put on Top | First | << Previous | Next >> | Last |
vimal raj
View Profile
From : Vimal Raj at 12:18 PM - Jan 18, 2013 ( )
download indicator

http://www.4shared.com/file/bWb2sYkF/tradewithtrend.html


vimal raj
View Profile
From : Vimal Raj at 12:17 PM - Jan 18, 2013 ( )

Super trading HDIL with super trend

http://www.icharts.in/forum/super-trading-hdil-with-super-trend-t4834,postorder,desc,start,165.html


vimal raj
View Profile
From : Vimal Raj at 12:13 PM - Jan 18, 2013 ( )


vimal raj
View Profile
From : Vimal Raj at 12:09 AM - Jan 02, 2013 ( )

TRADE WITH TREND...COMBINE MOVING AVERAGE...LOOKS GOOD


vinay kumar
View Profile
From : Vinay Kumar at 10:50 PM - May 17, 2012 ( )

HERE IS THE AFL FOR THE SAME.....

THANKS FOR R. RAJENDRAN

 

 

/* Done by Rajandran R */
/* Author of www.marketcalls.in */

_SECTION_BEGIN("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);

_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,10,1);
Pd=Param("ATR Periods",10,1,100,1);
Up=(H+L)/2+(Factor*ATR(Pd));
Dn=(H+L)/2-(Factor*ATR(Pd));
iATR=ATR(Pd);
TrendUp=TrendDown=Null;
trend[0]=1;
changeOfTrend=0;
flag=flagh=0;

for (i = 1; i <BarCount; 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);

Buy = trend==1;
Sell=trend==-1;

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


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);

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

for(i=BarCount-1;i>1;i--)
{
if(Buy[i] == 1)
{
entry = C[i];
sig = "BUY";
sl = TrendSL[i];
tar1 = entry + (entry * .0050);
tar2 = entry + (entry * .0092);
tar3 = entry + (entry * .0179);

bars = i;
i = 0;
}
if(Sell[i] == 1)
{
sig = "SELL";
entry = C[i];
sl = TrendSL[i];
tar1 = entry - (entry * .0050);
tar2 = entry - (entry * .0112);
tar3 = entry - (entry * .0212);


bars = i;
i = 0;
}
}
Offset = 20;
Clr = IIf(sig == "BUY", 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);

//Plot(LineArray(bars-Offset, sl, BarCount, sl,1), "", colorDarkRed, styleLine|styleLine, Null, Null, Offset);
//Plot(LineArray(bars-Offset, entry, BarCount, entry,1), "", colorGreen, styleLine|styleLine, Null, Null, Offset);

for (i=bars; i <BarCount;i++)
{
PlotText(""+sig+"@"+entry, BarCount+1,entry,Null,colorBlue);
PlotText("T1@"+tar1,BarCount+3,tar1,Null,Clr);PlotText("T2@"+tar2,BarCount+3,tar2,Null,Clr);PlotText ("T3@"+tar3,BarCount+3,tar3,Null,Clr);

}

messageboard = ParamToggle("Message Board","Show|Hide",1);
if (messageboard == 1 )
{
GfxSelectFont( "Tahoma", 13, 100 );
GfxSetBkMode( 1 );
GfxSetTextColor( colorWhite );

if ( sig =="BUY")
{
GfxSelectSolidBrush( colorBlue ); // this is the box background color
}
else
{
GfxSelectSolidBrush( colorRed ); // this is the box background color
}
pxHeight = Status( "pxchartheight" ) ;
xx = Status( "pxchartwidth");
Left = 1100;
width = 310;
x = 5;
x2 = 290;

y = pxHeight;

GfxSelectPen( colorGreen, 1); // broader color
GfxRoundRect( x, y - 98, x2, y , 7, 7 ) ;
GfxTextOut( ( "Marketcalls - Supertrend"),13,y-100);
GfxTextOut( (" "),27,y-100);
GfxTextOut( ("Last " + sig + " Signal came " + (BarCount-bars-1) * Interval()/60 + " mins ago"), 13, y-80) ; // The text format location
GfxTextOut( ("" + WriteIf(sig =="BUY",sig + " @ ",sig + " @") + " : " + entry), 13, y-60);
GfxTextOut( ("Trailing SL : " + TrendSL + " (" + WriteVal(IIf(sig == "SELL",entry-sl,sl-entry), 2.2) + ")"), 13, y-40);
/*GfxTextOut( ("TGT:1 : " + tar1), 13, y -80);
GfxTextOut( ("TGT:2 : " + tar2), 13,y-60);
GfxTextOut( ("TGT:3 : " + tar3), 13,y-40);*/
GfxTextOut( ("Current P/L : " + WriteVal(IIf(sig == "BUY",(C-entry),(entry-C)),2.2)), 13, y-22);;

}

_SECTION_END();


Chandra Gupta M
View Profile
From : Chandra Gupta M at 06:36 PM - Feb 06, 2012 ( )

Is this AFL available for amibroker


narasimha ch
View Profile
From : Narasimha Ch at 06:23 PM - Feb 05, 2012 ( )

This indicator will fail in sideways market. One should trade cautiously.


balu rajgopal
View Profile
From : Balu Rajgopal at 06:23 PM - Feb 05, 2012 ( )

mr.abhijit, please tell me where to download to begin with?

pl. help


abhijit M.
View Profile
From : Abhijit M. at 06:21 PM - Feb 05, 2012 ( )

I sort it out. Thank you very much vimal... ur really good bro


balu rajgopal
View Profile
From : Balu Rajgopal at 06:19 PM - Feb 05, 2012 ( )

is this link to be downloaded for nifty future trends sir?

http://www.aboutcurrency.com/university/metatrader/how_to_add_custom_indicators_metatrader4.shtml


prakash chotu
View Profile
From : Prakash Chotu at 06:17 PM - Feb 05, 2012 ( )

THANKS SIR 


abhijit M.
View Profile
From : Abhijit M. at 06:08 PM - Feb 05, 2012 ( )

Dear Vimal, i have downloaded the software but could you guide me how to use buy and sale trigger in the chart (just like image as above)


vimal raj
View Profile
From : Vimal Raj at 06:08 PM - Feb 05, 2012 ( )

 

How to add custom indicators to Metatrader 4 Charts

http://www.aboutcurrency.com/university/metatrader/how_to_add_custom_indicators_metatrader4.shtml


abhijit M.
View Profile
From : Abhijit M. at 06:04 PM - Feb 05, 2012 ( )

This Message is deleted by Abhijit M..




vimal raj
View Profile
From : Vimal Raj at 05:41 PM - Feb 05, 2012 ( )
FDM_Trend_Power mt4 indicator
 

http://www.4shared.com/file/SuOlllqT/FDM_Trend_Power.html


Thyagarja Krishnamurthy
View Profile
From : Thyagarja Krishnamurthy at 05:37 PM - Feb 05, 2012 ( )

It is really  a very useful  indicator.   Dear brother Santhosh,  could you please  provide the link to download the FDM TREND POWER Indicator also. Together with  Trade With Trend, this FDM  Trend power indicator  will be effective tool in decidint on the  trade initiation  and termination of trade.  


Thank you in advance

Rajan


Chandra Gupta M
View Profile
From : Chandra Gupta M at 04:08 PM - Feb 05, 2012 ( )

Very Good indicator just stays with trend 


vimal raj
View Profile
From : Vimal Raj at 04:00 PM - Feb 05, 2012 ( )

View Profile
From : Santhosh Kumar at 11:48 AM - Aug 29, 2010 (18 months ago)



1)Download and Intall the GCT Trading Software 

http://www.gcitrading.com/mtdownload/gci4setup.exe
2)When launching the program for the first time, you will see a window with the registration form; after you have filled it in, you will automatically get a demo account.
3)Now Right Click on the Market Watch
4)Select SYMBOLS
5)To get Nifty Futures goto Indexes and select NSE_Nifty among the list
6)Click on the Tab SHOW
7)Now the Corresponding Ticker will be available in the Market Watch
8)To get the chart just right click on the Ticker and Select Chart Window
10)Now Charts are live and you can change the Peridicity of the chart and change it for the required time frame(1 Min, 5Min, 15Min,Hourly,Daily,Weekly,Monthly

download indicator

http://www.4shared.com/file/bWb2sYkF/tradewithtrend.html


vimal raj
View Profile
From : Vimal Raj at 03:58 PM - Feb 05, 2012 ( )

Trade with trend 


gayathri raamakrishnan
View Profile
From : Gayathri Raamakrishnan at 05:02 PM - Dec 06, 2011 ( )

Thanks for sharing this indicator ji. It is very useful.


1 to 20 out of 42 | First | << Previous | Next >> | Last |
(1) 2 3

Login to participate in discussion.



Recently Discussed Posts of Santhosh Kumar

Learning Section >> NSE AND BSE REAL TIME CHARTS [MotiveWave software ] (29)

Learning Section >> Fibonacci Calculator excel sheet (6)

Learning Section >> alternative for tatechnics.in [ KELI ] AMIBROKER (33)

Learning Section >> price alert indicator (5)

Learning Section >> What Is Heikin-Ashi and How to Trade with It? (14)






Disclaimer: The messages and ideas posted on this website are user's own views. Mudraa.com does not own any responsiblity for the information provided by the users.Data delayed 15 to 20 minutes unless otherwise indicated.