Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

mk 3-80 Intraday for Nifty for Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
trading system, amibroker

This is 3-80 SMA trading system for Nifty.

Similar Indicators / Formulas

All in One
Submitted by Nahid over 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 almost 10 years ago
Kase CD V2batu
Submitted by batu1453 almost 10 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
Arvind' System
Submitted by akdabc almost 14 years ago
Miftha remix for dse
Submitted by coolpace over 13 years ago

Indicator / Formula

Copy & Paste Friendly
/*PositionSize = MarginDeposit = 1; */
/*i = Optimize ("best volume", 5, 1, 50, 1); */

Buy = 	MA(  Close , 3 ) > MA(  Close , 80 )
	 	AND Volume > Ref( Volume , -5 ) AND Close > SAR( 0.02, 0.2 );
/* AND Volume > Ref (Volume, Optimize ("best volume", 5, 1, 30, 3)) AND Close > SAR( 0.02, 0.2 );*/
       

/* ApplyStop(stopTypeLoss, stopModePercent, Optimize( "max. loss stop level", 10, 2, 30, 1 ), True ); */
/*BuyStop = ApplyStop(stopTypeLoss, stopModePoint, Optimize( "MK max. loss stop level", 10, 2, 30, 1 ), True );*/

Sell = 	 MA(  Close , 3 ) < MA(  Close , 80 )
			AND Volume > Ref( Volume , -5 )AND SAR( 0.02, 0.2 ) > Close; 

/*Sell = SAR( 0.02, 0.2 ) > Close;*/ 
/*AND Volume > Ref (Volume, Optimize ("best volume", -5, -1, -30, -3)) AND SAR( 0.02, 0.2 ) > Close;*/
			

/* Sell= (( Ref( Close , -1 )- Close) < -2); */

Short = 	MA(  Close , 3 ) < MA(  Close , 80 )
			AND Volume > Ref( Volume , -5 ) AND SAR( 0.02, 0.2 ) > Close; 

/*AND Volume > Ref (Volume, Optimize ("best volume", -5, -1, -30, -3)) AND SAR( 0.02, 0.2 ) > Close;*/





Cover = 	 MA(  Close , 3 ) > MA(  Close , 80 )
			AND Volume > Ref( Volume , -5 )AND Close > SAR( 0.02, 0.2 );

/*AND Volume > Ref (Volume, Optimize ("best volume", -5, -1, -30, -3)) AND Close > SAR( 0.02, 0.2 );*/

PlotShapes(IIf(Buy==1, shapeUpArrow , shapeNone), colorGreen, 0,Low, Offset=-20);
PlotShapes(IIf(Sell==1, shapeHollowDownArrow, shapeNone), colorRed, 0,High, Offset=-20);

			

10 comments

1. mrkanitkar

This works very well on Nifty. I checked it from Dec 2007 to May 2012 5 min bars. It’s backtested for around 80,000 bars. It works best with Indian Index Nifty, BankNifty futures and Options as well.

2. tigernifty

Dear sir, am try to install the AFL, but showing blank screen, pls. give me clarification for what is the peroblem ?.. thx ..

3. rajagopal_ctr

Showing blank chart. pl. rectify.

4. nitinraj1000

showing white screen only

5. swot9

insert price along with this afl

Regards,

Paresh

6. hyraj

showing blank screen

7. worldastro

why not send picture ???

8. mrkanitkar

You need to have default chart with sma 3,sma 80 and then apply the formula.
I am not able to post updated formula.
Will post new one.
Here is link for new version.

9. maso01a0

where is the link????

10. maso01a0

http://www.wisestocktrader.com/indicators/3019-mk-3-8
0-intraday-for-nifty-v1

Leave Comment

Please login here to leave a comment.

Back