My System - My trades.

bubble87

Never Go Full Retard
Tuna ji i beg to differ. If you are advocating a trading system then you have to take the bouquets and brickbats. There is no point in giving a system and not standing by it. This p&L thing is just an escape route to wash your hands from your responsibility about the efficacy of the system. The whole idea of pressure to perform as you put it does not hold any water as you are not doing anything but your system is. The pressure is and should be handled by your system. The system is devised only to capture the market moves you cannot say that the markets performed differently so your trades failed. There is a saying that ships are safe in the harbour but that is not why they are made. It needs to test itself in rough waters. Once you realise that it is not about you but your system that we are talking about will take the EGO out.
Brilliantly put, Varun Sir. And from a newbie viewpoint, learning from live trades of someone experienced like you, Xray sir, Subha da and Tuna sir is probably the best way of learning.
 

Subhadip

Well-Known Member

kumudhan

Well-Known Member
RDMA SIGNAL
Code:
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
//Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
SetChartBkColor(colorBlack) ;
SetBarFillColor( IIf( C >O AND C>MA(C,21) AND C>EMA(C,8),colorBlack, IIf( C <O AND C>MA(C,21) AND C>EMA(C,8),colorBlueGrey,IIf(( C<O AND C<MA(C,21) AND C>EMA(C,8)) OR ( C<O AND C>MA(C,21) AND C<EMA(C,8)) ,colorYellow,IIf(( C>O AND C<MA(C,21) AND C>EMA(C,8)) OR ( C>O AND C>MA(C,21) AND C<EMA(C,8)) ,colorBlack,IIf( C>O AND C<MA(C,21) AND C<EMA(C,8) ,colorBlack,colorRed) )))));
Col=IIf( C<MA(C,21) AND C<EMA(C,8) ,colorRed,IIf( C>MA(C,21) AND C>EMA(C,8),colorBlueGrey,IIf(( C<MA(C,21) AND C>EMA(C,8)) OR ( C>MA(C,21) AND C<EMA(C,8)) ,colorYellow,colorYellow)));
Plot( C, "Close", col, styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
black =  C >O AND C>MA(C,21) AND C>EMA(C,8);
blue = C <O AND C>MA(C,21) AND C>EMA(C,8);
bb = black OR blue;
red =  C <O AND C<MA(C,21) AND C<EMA(C,8);
Sell =  Cross(red,bb);
Buy = Cross(bb,red);
Buyabove = High;
Buystop = Ref(Low,-2);
Sellbelow = Low;
Sellstop = Ref(High,-2);
sig = Buy OR Sell;
Filter = sig;
AddColumn(Sell,"sell");
AddColumn( Buy, "buy");
AddColumn(Buyabove,"buyabove",1.2,colorBlue);
AddColumn(Buystop,"buystop",1.2,colorBlue);
AddColumn(Sellbelow,"sellbelow",1.2,colorRed);
AddColumn(Sellstop,"sellstop",1.2,colorRed);
PlotShapes( shapeUpArrow*Buy, colorGreen,0, L, -20);
PlotShapes( shapeDownArrow*Sell, colorRed,0,H, -20) ;

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

SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
//Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
SetChartBkColor(colorBlack) ;
SetBarFillColor( IIf( C >O AND C>MA(C,21) AND C>EMA(C,8),colorBlack, IIf( C <O AND C>MA(C,21) AND C>EMA(C,8),colorBlueGrey,IIf(( C<O AND C<MA(C,21) AND C>EMA(C,8)) OR ( C<O AND C>MA(C,21) AND C<EMA(C,8)) ,colorYellow,IIf(( C>O AND C<MA(C,21) AND C>EMA(C,8)) OR ( C>O AND C>MA(C,21) AND C<EMA(C,8)) ,colorBlack,IIf( C>O AND C<MA(C,21) AND C<EMA(C,8) ,colorBlack,colorRed) )))));
Col=IIf( C<MA(C,21) AND C<EMA(C,8) ,colorRed,IIf( C>MA(C,21) AND C>EMA(C,8),colorBlueGrey,IIf(( C<MA(C,21) AND C>EMA(C,8)) OR ( C>MA(C,21) AND C<EMA(C,8)) ,colorYellow,colorYellow)));
Plot( C, "Close", col, styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
black =  C >O AND C>MA(C,21) AND C>EMA(C,8);
blue = C <O AND C>MA(C,21) AND C>EMA(C,8);
bb = black OR blue;
red =  C <O AND C<MA(C,21) AND C<EMA(C,8);
Sell =  Cross(red,bb);
Buy = Cross(bb,red);
Buyabove = High;
Buystop = Ref(Low,-2);
Sellbelow = Low;
Sellstop = Ref(High,-2);
sig = Buy OR Sell;
Filter = sig;
AddColumn(Sell,"sell");
AddColumn( Buy, "buy");
AddColumn(Buyabove,"buyabove",1.2,colorBlue);
AddColumn(Buystop,"buystop",1.2,colorBlue);
AddColumn(Sellbelow,"sellbelow",1.2,colorRed);
AddColumn(Sellstop,"sellstop",1.2,colorRed);
PlotShapes( shapeUpArrow*Buy, colorGreen,0, L, -20);
PlotShapes( shapeDownArrow*Sell, colorRed,0,H, -20) ;

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

XRAY27

Well-Known Member
Sir and the problem with you is that your system is giving you a short when you should have been long.
Short is below 24127 (spot level) !!!! not activated !!! following as per MY system !!
 
Last edited:

Similar threads