Stocks To Keep A Close Eye On

Status
Not open for further replies.

enygma

Well-Known Member
CNB,

Thanks for the AFL.
All the more reason for me to finally move to Amibroker :)

Hang on, will let you know the results soon ....

Regards,
Enygma.

Hi,

Enygma,

Here is your first afl for your Amibroker, add your "tweak" as per need.


------------------------------------------------

_SECTION_BEGIN ("Price 20EMA");


//-------Plot and explore 20EMA SGS method developed by Enygma afl by CNB------------------

GraphXSpace = 5;

//-------------- price-----------
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );

//---------Indicator -------------------

Plot(EMA(C,20),"EMA C 20", colorRed,styleLine);
Plot(C,"close",ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle());

Buy = Cross(C, EMA(C, 20)); // AND Close > Open AND Avg_vol > 250000;
Sell = Cross(EMA(C, 20), C ); // AND Close < Open AND Avg_vol > 250000;

//-----------SIGNAL--------------//

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(Sell, shapeSquare, shapeNone),colorRed, 0, H, Offset=40);
PlotShapes(IIf(Sell, shapeSquare, shapeNone),colorOrange, 0,H, Offset=50);
PlotShapes(IIf(Sell, shapeDownArrow, shapeNone),colorWhite, 0,H, Offset=-45);

//--------------Explore--------

Filter=Buy OR Sell;

AddColumn(TimeFrameGetPrice( "H", inDaily),"HIGH",1.2,colorDefault,colorDefault,60);
AddColumn(TimeFrameGetPrice( "L", inDaily),"LOW",1.2,colorDefault,colorDefault,60);
AddColumn(TimeFrameGetPrice( "O", inDaily),"OPEN",1.2,colorDefault,colorDefault,60) ;
AddColumn(TimeFrameGetPrice( "C", inDaily),"CLOSE",1.2,colorDefault,colorDefault,60) ;
AddColumn(TimeFrameGetPrice( "V", inDaily),"VOLUME",1.2,colorDefault,colorDefault,60) ;
AddColumn(IIf(Buy,66,IIf(Sell,83,32)),"ACTION REQUIRED", formatChar, colorWhite, bkcolor =IIf(Buy, colorGreen,IIf(Sell,colorRed,colorDefault)));

_SECTION_END();//

//--------------------------TITLE--------------------------//
_SECTION_BEGIN("Title");

Title = EncodeColor(colorBrightGreen)+"TRADING 20EMA SGS METHOD" + "-" + Name()+ "-" + EncodeColor(colorRed)+ Interval(2) + EncodeColor(colorBlack) +
" - " + Date() +" - "+"\n" +EncodeColor(colorBlack) +"Op-"+O+" "+"Hi-"+H+" "+"Lo-"+L+" "+
"Cl-"+C+" "+ "Vol= "+ WriteVal(V);

_SECTION_END();
--------------------------------------------------------------------------


Anant and Ken I will appreciate correction/modification in the afl pl.

Regards,

CNB
 

bunny

Well-Known Member
Folks....

Here Is What I Have Gathered So Far As To Why EU Markets Tanked After Starting In Positive....

Very High Number Of Unemployment Data Both In The Euro Zone & UK.

Now Coming To U.S. Markets

There Was Exellent Numbers Released For ISM Data Due To Which U.S. Market Was Up Quite A Bit & Tanked Because Of Some Chatter Doing The Rounds That Some Banks May Be Going Down...

What To Make Of It...I Don't Know...Need To See This Chatter Unfold....In The Next Few Days...To See What Exactly....Is Happening


Happy & Safer Trading

SavantGarde
Savant Sir,
I am not sure if news is the real reason. I mean, market makers and market operators don't depend upon news for their trades, right? Infact they will be knowing many of those things well in advance before its "BREAKING NEWS" on CNBC.

Or it is just operator play used as a shake-out or supply test? Remember the Monday of Aug 17? China has cracked and so we followed, but if you see the charts then, it turns it was a very short term bottom and since then the NIFTY has gained around 350 pts before the decline since the last two sessions.
 
Guys,
I am just checking the daily charts of UNITECH. I have observed that UNITECH mostly moves with the indices, in not in the same proportion, atleast in the same direction.

From the VSA perspective, seeing its action in the last 2-3 sessions, it looks bullish. So I am drawing a conclusion that perhaps indices are also geared for a bullish action.

VSA:

If you see the action on last few candles, except the last one(today's), it crossing a strong resistance line with great volumes and very wide spreads. This is an typical action of a bullish operator who wants to persuade the locked-in traders to not sell. What we are going through now is probably a test of supply.

Only time will tell how good this analysis holds. Meanwhile, I am long on 1 lot minifty entered around 4636.

@ Ranga
I went through ICSA charts, there is some temporary weakness as reasoned by Chaitanya, but overall, it seems bullish.
Dear friend,

I my opinion, it will come down. A wide range bar at the topr of the up move with high volume gives hint of distribtion. So, probability is that it will retrance for now. Please correct me if I am wrong.

Regards,

Nick
 
I think in the commotion that occured today, these queries got lost so posting them again to solicit replies.

A little off-topic but does anyone know how an Indian citizen can one go about trading on the Colombo stock exchange?

Kumar


Thanks, that explains a lot! Is there anywhere in this forum that can serve as a tutorial for 'Layman's guide to candlesticks' or any other resource you can suggest? Thanks

Kumar

BTW, one explanation I heard for the cause of today's mkt movement is rumours of bank(s) failing in Europe. My take... it is to a large extent discounted for even if it is true, unless it is Austria.

Kumar
 

enygma

Well-Known Member
For candlestick patterns, try out investopedia.com. Use the search there.

Regards,
Enygma.

I think in the commotion that occured today, these queries got lost so posting them again to solicit replies.

A little off-topic but does anyone know how an Indian citizen can one go about trading on the Colombo stock exchange?

Kumar


Thanks, that explains a lot! Is there anywhere in this forum that can serve as a tutorial for 'Layman's guide to candlesticks' or any other resource you can suggest? Thanks

Kumar

BTW, one explanation I heard for the cause of today's mkt movement is rumours of bank(s) failing in Europe. My take... it is to a large extent discounted for even if it is true, unless it is Austria.

Kumar
 
Status
Not open for further replies.

Similar threads