Can you provide me to get alert about 2% opening breakout(gap up / gap down) in NSE market

Can you provide me to get alert about 2% opening breakout in NSE market

1 Like

Breakouts alerts appear any time there is a print for a higher or lower price than the rest of the day.  Highs and lows are reset once a day at a time determined by the exchange.

When the alerts server sees a new high, it looks for the most recent day before today when the price was higher than it is now.  It reports the day when this happened, and the high for that day as resistance. 

For a new low, the server looks for the most recent day when the price was lower than the current price.  It reports the low for that day as support.  Note:  This is a very simple version of support and resistance based only on daily highs and lows.  Several alerts listed below implement more advanced algorithms for finding support and resistance.

These alerts are related to the Position in Range filters.  Use these filters to make other alert types sensitive to highs and lows.

More options related to stock tips or alerts are provided by MMF Solutions.

Please find the AFL code which explores list of stocks which have opened 2+/- compared to previous close.

Warm Regards,

Vivith

www.neotradeanalytics.com

(Authorized realtime data vendor of NSE/BSE supporting realtime data feeds to Amibroker, Metastock, Ninjatrader and custom programming languages like Python, perl, c,c++, c#, R )

//-----------------------------------------------------------------------------------------------
//
//  Formula Name:    Previous Close Calculation
//  Author/Uploader: Neotrade Analytics Pvt Ltd 
//  E-mail:          [email protected]
//  Website          www.neotradeanalytics.com/algobase.neotradeanalytics.com
//
//-------------------------Summary of AFL-------------------------------------------------------
//This AFL displays results of stocks opened 2% difference compared to previous close
//Please run the exploration in Amibroker with Timeframe set to to Daily Mode to display the results 
//----------------------------------------------------------------------------------------------

_SECTION_BEGIN("Stock Open Strategy");
Plot( C, "Close", colorBlack, styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
Pricediff = 0;

TimeFrameSet(inDaily);

//Get daily open
dailyOpen  = Open;
//Get previous day close
prevclose = Ref(Close,-1);

Pricediff =  dailyOpen - prevclose;

//Calculate the percentage
Percentdiff = (Pricediff/prevclose) * 100;
  
tradingsignal = IIf((Percentdiff>=2), 1, (IIf((Percentdiff<=-2),1,0)));

TimeFrameRestore();

//Filter = (Percentdiff>1) || (Percentdiff<-1) ;
Filter = tradingsignal;

AddColumn(prevclose, "prevclose",1.2); 
AddColumn(dailyOpen, "Open",1.2); 
AddColumn(Percentdiff, "Percentdiff",1.2); 

_SECTION_END(); 

So, Deepshikha, Throught the last statement, are you trying to convince people to BUY your trading tips?.
I guess its kind of promoting Advisory services on Trading qna.
But still, Can you please tell me here about the charges that you have set for these services?.
By the way, Excellent strategy for advertisement.