Skip to content

Instantly share code, notes, and snippets.

View reviewnta's full-sized avatar

Nifty Trading Academy Review reviewnta

View GitHub Profile
<pre>_SECTION_BEGIN;
// Code Source: wisestocktrader
SetChartOptions(0,chartShowArrows|chartShowDates);
/*Body Colors*/
whiteBody=C>=O;
blackBody=O>C;
/*Body Size*/
_SECTION_BEGIN("TF Best SuperTrend AFL");
SetChartOptions( 0, chartShowArrows | chartShowDates );
Plot( C, "Close", ParamColor( "Color", colorBlack ), styleNoTitle | ParamStyle( "Style" ) | GetPriceStyle() );
SetBarsRequired( 100000, 0 );
atr2 = Param( "ATR1 Factor", 3, 1, 5, 0.1 );
per2 = Param( "ATR1 Period", 10, 3, 100, 1 );
atr1 = Param( "ATR2 Factor", 5, 1, 20, 0.1 );
@reviewnta
reviewnta / Intraday Trading Indicators and setup2
Last active August 19, 2019 09:54
Intraday Trading Indicators and setup2
//AUTO : RSI : Over Bought & Over Sold
//BY : www.tradingfuel.com
//Date : 18th Aug 2019
_SECTION_BEGIN("RSI");
SetChartOptions(0,0,ChartGrid30|ChartGrid70,0,100);
periods = Param( "Periods", 14, 1, 200, 1 );
z = RSI( periods);
RSILineColor = ParamColor("RSI Line Color",ColorRGB(127,0,83));
RSIOverboughtColor = ParamColor("RSI Overbought Color",ColorRGB(127,0,83));
@reviewnta
reviewnta / Intraday Trading Indicators and setup
Last active October 9, 2021 19:08
Intraday Trading Indicators and setup
//AUTO : MACD Amibroker AFL
//BY : www.tradingfuel.com
//Date : 19th Aug 2019
_SECTION_BEGIN("MACD SIGNAL");
SetChartBkColor(ParamColor("Panel color ",colorBlack));
r1 = Param( "Fast avg", 12, 2, 200, 1 );
r2 = Param( "Slow avg", 26, 2, 200, 1 );
r3 = Param( "Signal avg", 9, 2, 200, 1 );
Plot( ml = MACD(r1, r2), StrFormat(_SECTION_NAME()+"(%g,%g)", r1, r2), ParamColor("MACD color", colorRed ), ParamStyle("MACD style") );
@reviewnta
reviewnta / gist:a27b189d287f694e6971f94621b2cc8f
Last active March 19, 2021 11:54
Amibroker AFL Code : Demand & Supply Zone Trading
//AUTO : DEMAND AND SUPPLY ZONE
//BY : www.tradingfuel.com
//Date : 18th Aug 2019
_SECTION_BEGIN("Demand");
SetChartOptions(0,chartShowArrows|chartShowDates);
bk=ParamColor( "Bk col",ColorRGB(85,90,60));
SetChartBkColor(bk);
amount = Param("Sensitivity", 0.5, 0.1, 2, 0.1 );