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

Narayan for Amibroker (AFL)

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

Best for daily, and hourly time frame

Screenshots

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
_SECTION_BEGIN("Narayan_Chouhan");
function PercentR( periods )
{
return -100 * ( HHV( H, periods ) - C )/( HHV( H, periods ) - LLV( L, periods ) );
}
WR=PercentR( 50);
M1=MACD(12, 26);
S1=Signal(12,26,9);
SMA=MA(C, 20 );

PlotOHLC(O,H,L,C,"",1,64);
Plot(sma,"",3,1);

bcond1=wr>-80;
bcond2=C>sma;
bcond3=m1>s1;
Buy =(bCond1 AND bCond2 AND bCond3);
scond1 = wr<-20;
scond2=C<sma;
scond3=m1<s1;
Sell =(sCond1 AND sCond2 AND sCond3);
Buy = ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);

PlotShapes(Buy*shapeUpArrow,colorBlue,0,L,-10);
PlotShapes(Sell*shapeDownArrow,colorRed,0,H,-10);

BuyPrice=ValueWhen(Buy,C,1);
SellPrice=ValueWhen(Sell,C,1);
Cover=Buy;
Short=Sell;
Filter=Buy OR Sell;
AddColumn(IIf(Buy,BuyPrice,Null),"Buy", 1.2,1,colorGreen,50);
AddColumn(IIf(Sell,SellPrice,Null),"Sell " ,1.2,1,colorOrange,50);
_SECTION_END();


1 comments

1. bhartiprinters

after a long long time seen a system on easy thoguts seem with beauty of results which work well in intraday as well as eod heartly congratulations for using simple things to make great trading system

Leave Comment

Please login here to leave a comment.

Back