Best Nifty Strategy-Must Read

Changing the TimeNum to 152800 sorts the problem. The corrected version is this...


Code:
_SECTION_BEGIN("Price ");

BarsToday = 1 + BarsSince( Day() != Ref(Day(), -1));

StartBar = ValueWhen(TimeNum() == 091500, BarIndex());


Plot(C, "", IIf(C > O, colorBrightGreen, colorRed), ParamStyle("Price Style", styleCandle, maskPrice));

Title = FullName()+" - "+Name()+"\nO:"+O+", H:"+H+", L:"+L+", C:"+C;
_SECTION_END();

_SECTION_BEGIN("EMA");

P = ParamField("Price field",-1);
Periods = Param("Periods", 20, 2, 300, 1, 10 );
Plot( EMA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") ); 

Buy = Cross(C, EMA( P, Periods))  OR C>EMA( P, Periods) OR TimeNum() > 152800  ;
Sell = (Cross(EMA( P, Periods),C))  OR  C<EMA( P, Periods) OR TimeNum() > 152800;

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



PlotShapes(IIf(Buy,shapeUpArrow,shapeNone),colorBlack); 
PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorBlack);

Short=Sell;
Cover=Buy;
PositionSize = MarginDeposit = 1;

_SECTION_END();
Any improvement Dear ?:)
 
hi Nice analysis
If < or = 300 what is the probability in your experience.kindly eloborate more on that.
And how much more should be above 300
:)
the whole point in consideration is whether its >=300 or <300. if its >=300(no matter how much), the month would be great :D and in case its <300 then it would be a cautious month. simple :)

Target 1 achieved :D
 
Hello

today i saw my contract note and found out that my breakeven for nifty is 5 Rs :confused:, this is too high i mean if we make 10 rs the broker + exchange takes away 5 rs

and when i hit a SL then the cost increases further

my brokerage is 0.03 on both sides so it comes to 3 rs in brok + 2 rs other charges stt taxes etc in total cost is 5 rs

please suggest any online broker with good trading terminal and fast order execution where break-even in nifty is 2-3 rs including brok and other charges

Thanks
 
does any broker offers nifty break even at 2 rs... ( brokerage + stt and other charges included )
 

Similar threads