Code Amibroker Indicators

JNSAR for Amibroker

by admin December 28, 2018 1 min read 0 comments

Key Takeaways

  • Market conditions and their impact on trading decisions
  • Key levels and price action analysis
  • Risk management strategies for this setup

JNSAR is a number based on market’s strength and weakness as well as the balance of demand and supply. Whatever the number may be, a choppy market could whipsaw the number occasionally to shake off your confidence in them. However, staying with one method brings you consistent winnings.JNSAR is a strategy widely adopted by the master trader Illango (Just Nifty) and most of his Internet followrs.

_SECTION_BEGIN("JNSAR");
 
 
 
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
 
Period = Param("Length",5,5,100,1);
 
// JNSAR = (5 days HEma+5Days CEma+5Days LEma)/15
 
isum = (Sum(ema(High,Period),Period) + Sum(ema(Low,Period),period) + Sum(ema(Close,Period),period));
 
jnsar = round(isum/15);
 
buy = Cross(Close, jnsar);
sell =Cross(jnsar,Close);
 
Short = Sell;
Cover = Buy;
 
color = IIf(C>jnsar,colorGreen,colorRed);
 
Plot(jnsar,"JNSAR",color,styleDots|styleNoLine|stylethick);
 
 
_SECTION_END();

Trading Data Snapshot

Always verify current market conditions before executing any trade. Past performance does not guarantee future results.

A
admin
Trading analyst and market commentator with expertise in technical analysis, price action, and risk management. Dedicated to helping traders make informed decisions.

Leave a Reply