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

K.I.S.S - 15 or 30 Min Indian Currency Market for Amibroker (AFL)

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

h1. K.I.S.S – 15 / 30 Minutes Currency India
h3. Version 1.0 Final.

Key Features:
1) intraday book 10 PIPS PROFIT OR Hold till call change
2) Excellent Capability to Catch Trends way before they start
3) Little Sensative, Hence False Calls MAy arrive, but Stop Loss is Very Tight AND Small.
4) Contains all – Call, Exits OR Simply book Profit at 10 Pips or Loss at 5 – 8 pips.
5) Usual Stop Loss is Less than 7 pips, you Can exit early if you see previous Candle High/Low break. The Stratergy was designed for Safety and Accuracy in Currency markets

This is a Very Simple yet powerful Trading Stratergy
Developed for Cash/Currency Indian Market

The stratergy is to be used On intraday OR Carryforward. Depends On 15 Minutes OR 30 Minutes Charts.

Trading Tips:
Money MAnagement: Use Only 2 – 10% Of your trading Capital.
Try to Book 80% Of your profits within the FIRst 10 pips for good MoneyManagement.
More tips are given in the Bottom

In case Of any issues/Help needed you MAy Consult me On +91 9167446412 OR nileshnks@yahoo.com

Full Credits AND
Analysis / Programmed by : Nilesh K Shirke
India : Ghatkopar East – Mumbai
Thanks for Family Support AND Amibroker Software

Nothing is proven official without Mathemathic Testing:
Tested On NSECDS/MCXSX USDINR, JPYINR, GBPINR, EURINR with Paper Trading with the Following Stats

Win Streak is calculated considering 2 paisa brokerage.
AnyTrade Greater than 0.02 paisa is considered a Win.
Sometimes Stoploss also gives in Profit, that is included in Win count.
I Consider Break Even and No profit no Loss as “LOSS

Maths Stastic Result
Max Continous Win Streak : 3
Max Continous Loosing Streak : 13
Max Loss Pips Counts : 12 pips (currency 0.12 paisa)
15 Minutes on USDINR / GBPINR / JPYINR Back Testing 4 Trades Per Day till Profit.
Average Loss Pips Counts : 7 pips (currency 0.07 paisa)
Average GrossProfit Pips in 3 months Back data Test : 68 Pips Per Day (Currency 0.60 Paisa)
Average GrossLoss Pips in 3 months Back data Test : 26 Pips Per Day (Currency 0.26 Paisa)
Average Net Position in 3 Months Back Data Test: Profit . 42 Pips per Day (Currency 0.42 Pips per Day)

On an Average Monthly trade can give a return of more than 10% returns with this stratergy, with proper money management.
Kindly invest only 2% of the capital. Do not invest more than 10% of your Account even in highest confident situation.

Example:
for an Account of 2 Lakh, have a Stoploss of 2000 – 5000 Rupees per trade. So accordingly trade with limited lot sizes which enable you to have 2000 – 8000 profit per trade/day trade.
_If you note the Maths of this Strategy, the Loosing Streak is around 13, so you want to divide your Capital in 15 Parts and Trade with that Part by Part. The best part is that you have very h3. little to Loose, while high Profit Gain.
_
Good Luck !!

Screenshots

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
//N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));
Plot( C, "Close", colorDefault, styleNoTitle | GetPriceStyle() ); 

_SECTION_END();

_SECTION_BEGIN("K.I.S.S Settings");
Periods = Param("Call Sensitivity", 3, 2, 40, 1 );
accm = Param("StopLoss Sensitivity", 0.16, 0, 1, 0.001 );
_SECTION_END();

_SECTION_BEGIN("Buy Sell Declaration");
VAL=MA( Close, Periods);
B  = C>Val;
S = C<Val;
B1 = Ref(B,-1);
S1 = Ref(S,-1);

Sell = S AND S1;
Buy  = B AND B1;

Buy=ExRem(Buy,Sell) ;
Sell=ExRem(Sell,Buy);
PlotShapes( IIf( Buy, shapeUpArrow, shapeNone ), colorBrightGreen ,layer = 0, yposition = C, offset = -45 );
PlotShapes( IIf( Sell, shapeDownArrow, shapeNone ), colorRed ,layer = 0, yposition = C, offset = -45 );
_SECTION_END();

_SECTION_BEGIN("MsgBoards");
Call=IIf(Sell,Sell,IIf(Buy,Buy,0));
BuyPrice=ValueWhen(Buy,H);
SellPrice=ValueWhen(Sell,L);
CP=IIf(Sell,SellPrice,IIf(Buy,BuyPrice,0));
Callprice=ValueWhen(Buy OR Sell,CP);
YC=TimeFrameGetPrice("C",inDaily,-1);
TO=TimeFrameGetPrice("O",inDaily,0);
YH=TimeFrameGetPrice("H",inDaily,-1);
YL=TimeFrameGetPrice("L",inDaily,-1);
MKTRANGE=YH-YL;

//STOPLOSS METHOD 2 INCREMENTAL
acc = 0.15;
VALSAR=SAR(acc,accm);
//draw stoploss line
//stoploss sar continued in if condition

//trying boxes
for(i=BarCount-1;i>1;i--) 
{ 
if(Buy[i]  == 1) 
{
sig = "BUY"; 
entry = BuyPrice[i];
GfxSelectSolidBrush( colorDarkGreen );
GfxSelectPen( colorLime, 1); // broader color 
GfxTextOut("K.I.S.S - 15 / 30 Minutes Currency India", 13 , 360);
GfxTextOut("Version 1.0 Final - 11th April 2015", 13, 390);
GfxTextOut("About Me: nileshnks@yahoo.com/+91 9167446412", 13, 410);
GfxTextOut("Big Thanks: My Family Support & Amibroker Software", 13, 440);
GfxTextOut("Feel Free to Contact me. English/Hindi/Marathi/Gujrathi", 13, 470);
//stoploss calc
stoploss=IIf(Call==Buy AND VALSAR<C,VALSAR,IIf(Call==Sell AND VALSAR>C,VALSAR,0.0));
slcolor=IIf(VALSAR<C,colorRed,colorGrey50);
Plot( VALSAR, "stop line", slcolor , styleStaircase | styleDashed | styleNoTitle);
//stoploss calc ends
i = 0; 
} 
if(Sell[i] == 1) 
{ 
sig = "SELL"; 
entry = SellPrice[i] ;
GfxSelectSolidBrush( colorDarkRed );
GfxSelectPen( colorPink, 1); // broader color
GfxTextOut("K.I.S.S - 15 / 30 Minutes Currency India", 13 , 360);
GfxTextOut("Version 1.0 Final - 11th April 2015", 13, 390);
GfxTextOut("About Me: nileshnks@yahoo.com/+91 9167446412", 13, 410);
GfxTextOut("Big Thanks: My Family Support & Amibroker Software", 13, 440);
GfxTextOut("Feel Free to Contact me. English/Hindi/Marathi/Gujrathi", 13, 470);
//stoploss calc
stoploss=IIf(Call==Buy AND VALSAR<C,VALSAR,IIf(Call==Sell AND VALSAR>C,VALSAR,0.0));
slcolor=IIf(VALSAR>C,colorLime,colorGrey50);
Plot( VALSAR, "stop line", slcolor , styleStaircase| styleDashed | styleNoTitle);
//stoploss calc ends
bars = i; 
i = 0; 
} 
}

GfxRoundRect( 5, 350, 150, 290 , 7, 7 );

GfxSelectFont("Times New Roman", 20, 700, True );
GfxSetBkMode( colorPink );  
GfxSetTextColor (colorDarkRed );
GfxTextOut(" K.I.S.S - 15 - 30 Minutes Currency India", 5 , 14);
GfxSelectFont("Times New Roman", 13, 700, True );
GfxSetTextColor (colorDarkRed );
GfxTextOut(" 15 or 30 Minutes on USD/INR - GBP/INR - JPY/INR - EUR/INR", 5 , 40);

//TXTYESCLO=IIf(TO>YC,colorLime,IIf(TO<YC,colorRed,colorGrey40));
GfxSetTextColor (colorWhite);
GfxSelectFont("Times New Roman", 11, 700, True );
GfxTextOut("Yesterdays Closing : "+ Prec(YC,2), 5 , 55);
GfxTextOut("Todays Open : "+ Prec(TO,2), 5 , 70);
GfxTextOut("YESTERDAY HIGH/LOW :  "+ Prec(YH,2)+ "  /  "+ Prec(YL,2), 5 , 85);
GfxTextOut("YESTERDAYS MARKET RANGE :  "+ Prec(MKTRANGE,2), 5 , 100);

GfxSetTextColor (colorWhite );
GfxSelectFont("Times New Roman", 11, 700, True ); 
GfxSetBkMode( colorBlack );
//print buy or sell on box
GfxSelectFont("Times New Roman", 11, 700, True ); 
GfxSetBkMode( colorBlack );
GfxTextOut(" " + sig + " @ "+ Callprice, 13 , 300);
GfxTextOut("Stop Loss : " + stoploss, 13 , 330);

NoteSet("", "
Stratergy Name :
K.I.S.S - 15 / 30 Minutes Currency India Version 1.0 Final.

Key Features:
1) intraday book 10 PIPS PROFIT OR Hold till call change
2) Excellent Capability to Catch Trends way before they start
3) Little Sensative, Hence False Calls MAy arrive, but Stop Loss is Very Tight AND Small.
4) Contains all - Call, Exits OR
5) Usual Stop Loss is Less than 7 pips, you Can exit early if you see previous Candle High/Low break. The Stratergy was designed for Safety

This is a Very Simple yet powerful Trading Stratergy
Developed for Cash/Currency Indian Market

The stratergy is to be used On intraday OR Carryforward. Depends On 15 Minutes OR 30 Minutes Charts.

Trading Tips:
Money MAnagement: Use Only 2 - 10% Of your trading Capital.
Try to Book 80% Of your profits within the FIRst 10 pips for good MoneyManagement.

In case Of any issues/Help needed you MAy Consult me On +91 9167446412 OR nileshnks@yahoo.com

Full Credits AND 
Analysis / Programmed by : Nilesh K Shirke
India : Ghatkopar East - Mumbai
Thanks for Family Support AND Amibroker Software

Nothing is proven official without Mathemathic Testing:
Tested On NSECDS/MCX USDINR, JPYINR, GBPINR, EURINR with Paper Trading with the Following Stats
Win Streak is calculated considering 2 paisa brokerage.
AnyTrade Greater than 0.02 paisa is considered a Win.
Sometimes Stoploss also gives in Profit, that is included in Win count.

Maths Stastic Result
Max Continous Win Streak : 3
Max Continous Loosing Streak : 13
Max Loss Pips Counts : 12 pips (currency 0.12 paisa)
15 Minutes on USDINR / GBPINR / JPYINR Back Testing 4 Trades Per Day till Profit.
Average Loss Pips Counts : 7 pips (currency 0.07 paisa)
Average GrossProfit Pips in 3 months Back data Test : 68 Pips Per Day (Currency 0.60 Paisa)
Average GrossLoss Pips in 3 months Back data Test : 26 Pips Per Day (Currency 0.26 Paisa)
Average Net Position in 3 Months Back Data Test: Profit . 42 Pips per Day (Currency 0.42 Pips per Day)

On an Average Monthly trade can give a return of more than 10% returns with this stratergy, with proper money management.
Kindly invest only 2% of the capital. Do not invest more than 10% of your Account even in highest confident situation.

Example:
for an Account of 2 Lakh, have a Stoploss of 2000 - 5000 Rupees per trade. So accordingly trade with limited lot sizes which enable you to have 2000 - 8000 profit per trade/day trade.

Good Luck !!

");

_SECTION_END();

6 comments

1. nileshnks

A query was asked on my Personal email regarding H3 and target System.

First i would like to Thank you for your Interest in Trying out my stratergy.

This stratergy is about Intraday Currency, It may work on other scripts but i havent tested it on other scripts.

Reply : For Target System
The main goal in this is
“Cut your Losses Short, and Let your Profits Run”
Hence putting a target of 10 Pips would be in accurate assumption for the same.
To observe good Financial Management, i would Recommend booking 80% profit at 10 Pips and wait for further call or let the profits Run.
If i put a 10 Pips graphical view, then many might loose on good Profits to come, Hence its best to keep it to Technique or your strategy/Calculations.

Reply : For H3 – hourly trades
For you see, i have made this for Intraday, Day trading. Hence H3 or hourly i really dought that would work. How ever you may tune the parameters to see if it does.

I would like to ADD
1) This Stratergy is tested on Indian Currency/Cash market on 5 – 15 – 30 MINUTES
2) You can tune according to Your needs in Amibroker>Parameters in case you want to think of different TimeFrame
3) The Variables are very Sensitive, Hence it works best just Before a Breakout or in a sideways market where there is favorable Momentum
4) You may skip the Stoploss presented in Visual representation and continue using it with just
“Previous Candle H/L”as stoploss. *or*
Simply to put 5 – 7 Pips stoploss in 5 minutes chart *or*
MACD Crossover Stoploss
5) The Strategy has an Excellent entry. You will be surprised where other stratergies gave signal late, while this one was very early.

When to Use? How to Use?
1) Use it when you know there is some Big news coming up which will give Big Momentum
2) Use it when market is moving Sideways in a big Range
3) Use it when you know that sideways market is going to Break support/resistance.
4) Use it when you Know Money Management and can Handle multiple Stoplosses in Rows
5) DONT USE IT – when you are searching for super accurate DREAM stratergy
6) DONT USE IT – when you cannot handle more consecutive losses in rows
7) DONT USE IT – when you cannot TRIGGER stoploss on time
8) DONT USE IT – when market is very Low Range in side ways. Very less Moment
9) DONT USE IT – When Market is Just Started and you want to Enter in First few Candles. ie, within first hour of market start.
10) DONT USE IT – when you cannot divide your capital/money in parts and Use it wisely. (Money management is key to WIN)

Further i would like to add a word of Thanks for the Reply of the AFL user.

Thanks.
Nilesh K Shirke
91 67 446412
nileshnks @ yahoo.com

2. SRIKANTH ROYAL

GOOD BRO.THANKS

3. sureshkansara

MENE YEHI AFL CODE KO NIFTY ME CHALAYA / RESULT BAHUT ACHHA AYA

I THANKS MUCH

4. nileshnks

Thank you for your Support !

I have had phone call and email feed back as well. Of course the design was meant for the Currency Market of India. But i have been getting phone calls from people having profits and learning the mechanics who trade in commodity and equity as well.

Regards, And have a profitable journey ahead.!

I will upload few more refined strategies soon, i hope u guys will love them as well.

Comment hidden - Show
6. nileshnks

Thank you very much. ! I have been receiving phone Calls from various People. Dealers, Traders and even People with Automated Setups. This has motivated me to hop back into working on another project which i will upload in a Month.

This New project is basically Aimed from my Current Trading Style. A Pretty Laid back Intraday-Investory fashioned.

I am pretty busy with my Shop work and Handling Customer Desk operation during market hours. So i follow a system just to make it easy to handle my Trades a bit better and simpler.
This system would be loved by people who actually find RESEARCH tedious and spend most time on other things.

Love you for your Motivation. Thank you.

Leave Comment

Please login here to leave a comment.

Back