Skip to main content

Icchi Band


WH=HHV(High,5);
WL=LLV(Low,5);
WBP=(HHV(High,5)+LLV(Low,5)+Close)/3;

RBAND=ValueWhen(Cross(MA(WBP,25),WBP),HHV(WH,25),1);

SBAND=ValueWhen(Cross(WBP,MA(WBP,25)),LLV(WL,25),1);

MSWNG=(RBAND+SBAND)/2;
SetChartOptions(0,chartShowArrows|chartShowDates);
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 

Plot(RBAND,"RES",colorRed,styleLine|styleThick);
Plot(SBAND,"SUPP",colorGreen,styleLine|styleThick);

GfxSelectFont("Tahoma", Status("pxheight")/22 );
GfxSetTextAlign(6.5 );// center alignment
GfxSetTextColor( ColorHSB( 42, 42, 42 ) );
GfxSetBkMode(0); // transparent
GfxTextOut( " " +Close, Status("pxwidth")/2, Status("pxheight")/6 );
GfxTextOut( Name(), Status("pxwidth")/2, Status("pxheight")/12 );

//15minscloud;
SL = ( HHV( H, 78 ) + LLV( L, 78) )/2;
TL = ( HHV( H, 27) + LLV( L,27) )/2;
DL = Ref( C, 78);
Span11 = (( SL + TL )/2);
Span12 = (HHV( H, 156) + LLV(L,156))/2;
PlotOHLC (Span11,Span11,Span12,Span12,"15mCloud",colorLightGrey,styleCloud|styleNoRescale,Null,Null);
//5 MINS CLOUD;
SL = ( HHV( H, 26 ) + LLV( L, 26) )/2;
TL = ( HHV( H, 9 ) + LLV( L, 9 ) )/2;
DL = Ref( C, 26 );
Span1 = (( SL + TL )/2);
Span2 = (HHV( H, 52) + LLV(L, 52))/2;
PlotOHLC (Span1,Span1,Span2,Span2,"5mCloud",colorPaleGreen,styleCloud|styleNoRescale,Null,Null);

Comments

Popular posts from this blog

STAN WEINSTEIN'S STRATEGY - Halan Manoj Kumar

// THIS AFL INCORPORATES MOST OF THE CONCEPTS OF STAN WEINSTEINS TRADING METHODOLOGY. // USE ONLY WEEKLY CHART. // THIS AFL DOES NOT GUARANTEE ANY POSITIVE RETURNS. // USE THIS AFL AT YOUR OWN RISK // THIS AFL WAS DEVELOPED BY HALAN MANOJ KUMAR, MSC,CAIIB,FRM,PRM,CMA,ACMA. HOWEVER IN SOME CASES INDIVIDUAL CODE SNIPPETS ARE FROM DIFFERENT SOURCES AND I THANK THOSE DEVELOPERS. // ANY CONCEPTUAL QUERIES OR COMMENTS CAN BE MAILED TO scorpiomanoj73@gmail.com _SECTION_BEGIN("CHART"); SetChartOptions(0,chartShowArrows|chartShowDates); _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%)", O, H, L, C, SelectedValue( ROC( C, 1 ) ) )); Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); _SECTION_END(); //RELATIVE STRENGTH // IF YOUR NIFTY TRADING SYMBOL IS DIFFERENT, PLEASE USE THAT INSTEAD OF ONE MENTIONED HERE. rsmaPeriod...

Real Relative Strength Tradingview PineScript

  // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © WorkPiece 12.28.21 // @version=5 indicator ( title = "Real Relative Strength" , shorttitle = "RRS" ) comparedWithSecurity = input.symbol ( title = "Compare With" , defval = "SPY" ) length = input ( title = "Length" , defval = 12 ) //##########Rolling Price Change########## comparedClose = request.security ( symbol = comparedWithSecurity , timeframe = "" , expression = close ) comparedRollingMove = comparedClose - comparedClose [ length ] symbolRollingMove = close - close [ length ] //##########Rolling ATR Change########## symbolRollingATR = ta.atr ( length ) [ 1 ] comparedRollingATR = request.security ( symbol = comparedWithSecurity , timeframe = "" , expression = ta.atr ( length ) [ 1 ] ) //##########Calculations########## powerIndex = comparedRollingMove / comparedRolli...

10K AFL FREE INTRADAY TRADING.afl

_SECTION_BEGIN("Price1"); SetChartOptions(0,chartShowArrows|chartShowDates); Plot( C, "Close", ParamColor("Color", colorRed ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); _SECTION_END(); //_SECTION_BEGIN("Pivot")     YH = TimeFrameGetPrice("H", inDaily, -1);        // yesterdays high     YL = TimeFrameGetPrice("L", inDaily, -1);        //                low     YC = TimeFrameGetPrice("C", inDaily, -1);        //                close     YO = TimeFrameGetPrice("O", inDaily);            // current day open     //Normal Pivot     PP = (YH + YL + YC) / 3;     R1 = (2 * PP) - YL;     R2 = PP + (YH - YL); ...