Intraday trading system afl for amibroker
The ultimate porfolio management solution.
WiseTrader Toolbox.
Swing Trading System for Amibroker (AFL)
Very simple formula but nice results.
Buy above High and Sell below Low.
Green line is Trailing Stop loss line.
Screenshots.
Similar Indicators / Formulas.
Indicator / Formula.
5 comments.
yes it is simple but, it does alot, thanks dear for sharing.
I’m confused why would you BUY above High and Sell below Low ??
This formula looks really good but the question is what is meant under high and low?
I think buy/sell should be done after appearance of the relevant arrow..
Check crossovers, red line is on top = market is bullish, Red line is on bottom = market is on bearish.
(I’m confused why would you BUY above High and Sell below Low ??)
Quick Profit Trading System AFL for Amibroker.
Quick Profit Trading System is a complete trading system on single panel chart on Amibroker. It gives good Buy Sell Signals with Clear Trending Levels (Trailing Stoploss) and Targets. Best Time Frame for this System is 15 Minutes. Never use this AFL for Positional Trading as the indicators and formulae used in it are for Intraday Trading only.
Use Quick Profit Trading System AFL only for Intraday Trading in MCX Commodity, NCDEX Agriculture Commodity, NSE Equity Cash Stocks, Nifty Future, Bank Nifty Future, Nifty Options, Most Active Stock Futures, Currency Futures & Options, Etc.
_SECTION_BEGIN(“Quick Profit Trading System”);
SetBarFillColor(IIf(C>O, ParamColor(“Candle UP Color”, colorGreen),IIf(C<=O, ParamColor(“Candle Down Color”, colorRed),colorLightGrey)));
Plot(C,”\nPrice”,IIf(C>O, ParamColor(“Wick UP Color”, colorDarkGreen),IIf(C<=O, ParamColor(“Wick Down Color”, colorDarkRed),colorLightGrey)),64,0,0,0,0);
for (i = 1; i <BarCount-1; i++)
if (trend[i-1] == -1) changeOfTrend = 1;
if (trend[i-1] == 1) changeOfTrend = 1;
else if (trend[i-1]==1)
if (changeOfTrend == 1)
if (changeOfTrend == 1)
Title = EncodeColor(colorWhite)+ “Quick Profit Trading System” + ” – ” + Name() + ” – ” + EncodeColor(colorRed)+ Interval(2) + EncodeColor(colorWhite) +
PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorGreen, 0, L, Offset=-40);
PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorLime, 0,L, Offset=-50);
PlotShapes(IIf(Buy, shapeUpArrow, shapeNone),colorWhite, 0,L, Offset=-45);
PlotShapes(IIf(Short, shapeSquare, shapeNone),colorRed, 0, H, Offset=40);
PlotShapes(IIf(Short, shapeSquare, shapeNone),colorOrange, 0,H, Offset=50);
PlotShapes(IIf(Short, shapeDownArrow, shapeNone),colorWhite, 0,H, Offset=-45);
tar1 = entry + (entry * .0050);
tar2 = entry + (entry * .0092);
tar3 = entry + (entry * .0179);
tar1 = entry – (entry * .0050);
tar2 = entry – (entry * .0112);
tar3 = entry – (entry * .0212);
Clr = IIf(sig == “BUY”, colorLime, colorRed);
ssl = IIf(bars == BarCount-1, TrendSL[BarCount-1], Ref(TrendSL, -1));
Plot(LineArray(bars-Offset, tar1, BarCount, tar1,1), “”, Clr, styleLine|styleDots, Null, Null, Offset);
Plot(LineArray(bars-Offset, tar2, BarCount, tar2,1), “”, Clr, styleLine|styleDots, Null, Null, Offset);
Plot(LineArray(bars-Offset, tar3, BarCount, tar3,1), “”, Clr, styleLine|styleDots, Null, Null, Offset);
messageboard = ParamToggle(“Message Board”,”Show|Hide”,1);
if (messageboard == 1 )
GfxSelectFont( “Tahoma”, 13, 100 );
pxHeight = Status( “pxchartheight” ) ;
GfxSelectPen( colorGreen, 1);
GfxRoundRect( x, y – 98, x2, y , 7, 7 ) ;
GfxTextOut( ( “Quick Profit Trading System”),13,y-100);
GfxTextOut( (“Last ” + sig + ” Signal came ” + (BarCount-bars-1) * Interval()/60 + ” mins ago”), 13, y-80) ; // The text format location.
GfxTextOut( (“Current P/L : ” + WriteVal(IIf(sig == “BUY”,(C-entry),(entry-C)),2.2)), 13, y-22);;
GfxSelectFont(“Times New Roman”, FS, 700, True );
GfxSelectFont(“Times New Roman”, 11, 700, True );
Seconds = int( Time % 100 );
Minutes = int( Time / 100 % 100 );
Hours = int( Time / 10000 % 100 );
SecondNum = int( Hours * 60 * 60 + Minutes * 60 + Seconds );
Newperiod = SecNumber % TimeFrame == 0;
SecsLeft = SecNumber – int( SecNumber / TimeFrame ) * TimeFrame;
SecsToGo = TimeFrame – SecsLeft;
GfxSelectSolidBrush( ColorRGB( 230, 230, 230 ) );
GfxSelectPen( ColorRGB( 230, 230, 230 ), 2 );
GfxSelectPen( colorYellow, 2 );
GfxSelectFont( “Arial”, 14, 700, False );
best intraday afl for amibroker.
Best Intraday Buy Sell Signals without AFLs.
Are You Searching for Highly Successful Day Trading Strategies & Techniques / Best Intraday Buy Sell Signal System / Option Trading Strategies / Future Trading…
Nifty Buy Sell Trading System.
Nifty Buy Sell Trading System AFL is specially compiled for Nifty Future Intraday Trading only. This gives better results for Nifty Futre at timeframe of…
Excellent Swing Trading System for Amibroker.
This Swing Trading System AFL for Amibroker is Excellent for positional and Intraday Trading. This gives better results for NSE Futures and MCX Commodity. Recommended…
15 Minute MACD, Stochastic & EMA Swing AFL for Amibroker.
15 Minute Time Frame based Swing AFL made with mix-up of MACD, Stochastic, EMAs & RSIs for better results for Swing Trading (both Intraday and…
Buy Sell System AFL for Amibroker.
This Buy Sell System AFL for Amibroker is very useful for Intraday Trading. This gives better results for NSE Equity Stocks, NSE Futures and MCX…
Multiple Moving Averages Trends with Buy Sell Signals.
This Trading System is primarily based on Moving Averages i. e. Simple Moving Averages, Exponential Moving Averages, Double Exponential Moving Averages & Triple Exponential Moving Averages…
Quick Profit Trading System AFL for Amibroker.
Quick Profit Trading System is a complete trading system on single panel chart on Amibroker. It gives good Buy Sell Signals with Clear Trending Levels…
Earth AFL for Amibroker.
Earth AFL contains 3 Panels i. e. Charts, Trend and Support-Resistence Channel. Charts Panel gives Buy Sell Arrow Signals with Trend Channel. Middle Panel gives Buy…
Supertrend V3.0 AFL code with Buy and Sell Alerts.
Supertrend V3.0 is the upgraded version of Supertrend Indicator. The trading logic remains the same however lot of bugs got removed and few features added…
Intraday trading system afl for amibroker
Today I am posting a Amibroker AFL for Intraday trading can be used for Nifty and also Liquid Stocks. I have got it from a forum from Internet. I really don’t know who is its Author. But it consists of many coding.
Intraday Trading System For Nifty and Stocks:-
It gives Automatic Buy and Sell Signals, Targets and Stoploss are not given. So it can be used like SAR trading System( Stop and Reverse) means you have to reverse the position when opposite signal triggers. I have not tested for many days but it gives good signals in trending and Volatile markets to mint good profit. Recommended time interval:- 5 Min, or 15 Min Heiken Ashi is used, NMA also used in it, Market Profile also used so many codes in one AFL. With this System once signal came doesn’t disappears like many other systems. Always wait for the 5 min candle to complete and you can try to get low price than the signal price.
You Can do your own Customizations. Test before use. Remember there is no holy grail.
Updated 11-Jan-2012:- Magnified Market Price Added.
For Further Reading,
0 comments:
Post a Comment.
Your Comments and Few words helps me in DOING BETTER WORK.
You can also receive Free Updates:
Receive Free Updates.
Categories.
Alexa Rank.
Blog Categories.
Popular Posts.
Latest From TraderAdda.
Man Behind TraderAdda.
SAM, a Graduate in Science is a part time blogger and Full Time Professional Trader from India.
At TraderAdda he writes about Trading Systems, Amibroker Indicators and AFLs, Trading Ebooks, Trading Resources, Nifty Intraday Levels, Nifty Positional View, and many more other Trading Resources.
His area of interest are Technical Analysis, Developing Trading Strategies, Blogging, Gadgets and Reading.
Hope you will find TraderAdda useful. Your comments/Suggestions/Feedback.
is important for us.
Total Pageviews.
Protected Site - Do not Copy.
Trader Adda | Ultimate Trading Resources.
2011-12 Trader Adda | Ultimate Trading Resources. Articles cannot be reproduced without permission from the author.
Комментарии
Отправить комментарий