Code Amibroker Indicators

Hệ thống trade SUMI cho Amibroker (AFL)

by admin January 15, 2019 2 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

Hệ thống giao dịch mạnh mẽ

_SECTION_BEGIN(“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”, colorDefault ), styleNoTitle | ParamStyle(“Style”) | GetPriceStyle() );
_SECTION_END();
_SECTION_BEGIN(“Bollinger Bands”);
P = ParamField(“Price field”,-1);
Periods = Param(“Periods”, 15, 2, 300, 1 );
Width = Param(“Width”, 2, 0, 10, 0.05 );
Color = ParamColor(“Color”, colorCycle );
Style = ParamStyle(“Style”);
Plot( BBandTop( P, Periods, Width ), “BBTop” + _PARAM_VALUES(), Color, Style );
Plot( BBandBot( P, Periods, Width ), “BBBot” + _PARAM_VALUES(), Color, Style );
// Downloaded From www.WiseStockTrader.com
//JNSAR – Indicator ideated by Mr Illango
_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();
_SECTION_END();
_SECTION_BEGIN(“MA1”);
P = ParamField(“Price field”,-1);
Periods = Param(“Periods”, 15, 2, 300, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( “Color”, colorCycle ), ParamStyle(“Style”) );
_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