Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Upper Ribbon Template for Amibroker (AFL)
It is not an indicator. Only better look for any afl indicator…
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | _SECTION_BEGIN ( "Background text" ); C11= ParamColor ( "up panel" , colorBlack ); C12= ParamColor ( "dn panel" , colorBlack ); C13= Param ( "fonts" ,20,10,30,1 ); C14= Param ( "left-right" ,2.1,1.0,5.0,0.1 ); C15= Param ( "up-down" ,8,1,30,1 ); Miny = Status ( "axisminy" ); Maxy = Status ( "axismaxy" ); lvb = Status ( "lastvisiblebar" ); fvb = Status ( "firstvisiblebar" ); pxwidth = Status ( "pxwidth" ); pxheight = Status ( "pxheight" ); GfxSetBkMode ( 0 ); GfxSelectFont ( "Tahoma" , 12, 500, False , False , 0); GfxSetTextColor ( colorCustom12 ); GfxSetTextAlign ( 6 ); //GfxTextOut( "ADM (Average Day Moment) "+WriteVal(ADM,1.2), Status("pxwidth")/C14, Status("pxheight")/C15*1.5); GfxSelectFont ( "Tahoma" , 15, 600, False , False , 0); GfxSetTextColor ( colorWhite ); GfxSetTextAlign ( 6 ); GfxTextOut ( "LTP " + WriteVal ( C ,1.2), Status ( "pxwidth" )/C14, Status ( "pxheight" )/C15); GfxSelectFont ( "Tahoma" , 12, 400, False , False , 0); GfxSetTextColor ( colorBrightGreen ); //GfxTextOut(""+Bdc+"", Status("pxwidth")/C14, Status("pxheight")/C15*2.0); GfxSelectFont ( "Tahoma" , 12, 400, False , False , 0); GfxSetTextColor ( colorRed ); //GfxTextOut(""+Sdc+"", Status("pxwidth")/C14, Status("pxheight")/C15*2.0); GfxSelectFont ( "Tahoma" , 12, 400, False , False , 0); GfxSetTextColor ( colorYellow ); //GfxTextOut(""+Ndc+"", Status("pxwidth")/C14, Status("pxheight")/C15*2.0); GfxSelectFont ( "Tahoma" , 12, 400, False , False , 0); GfxSetTextColor ( colorGreen ); //GfxTextOut(""+BTdc+"", Status("pxwidth")/C14, Status("pxheight")/C15*2.5); GfxSelectFont ( "Tahoma" , 12, 400, False , False , 0); GfxSetTextColor ( colorGreen ); //GfxTextOut(""+STdc+"", Status("pxwidth")/C14, Status("pxheight")/C15*2.5); pricechange=( C - Ref ( C ,-1))*100/ Ref ( C ,-1); changeponit= C - Ref ( C ,-1); Vlp= Param ( "Volume lookback period" ,15,10,300,10); Vrg= MA ( V ,Vlp); St = StDev (Vrg,Vlp); Vp3 = Vrg + 3*st; Vp2 = Vrg + 2*st;; Vp1 = Vrg + 1*st;; Vn1 = Vrg -1*st; Vn2 = Vrg -2*st; x= Param ( "xposn" ,1,0,1000,1); y= Param ( "yposn" ,1,0,1000,1); GfxGradientRect ( 1, 1, 1400, 40, colorGrey50 , colorDarkGrey ); GfxSetBkMode (0); GfxSelectFont ( "Georgia" , 18, 800, False ); GfxSetTextColor ( colorWhite ); GfxTextOut ( "YOUR indicator name here " , x+600, y+10 ); GfxSelectFont ( "Tahoma" , 16, 800, False ); GfxSetTextColor ( colorGold ); GfxTextOut ( Name (), x+100, y+10 ); GfxSelectFont ( "Century Gothic" , 15, 100, False ); GfxSetTextColor ( colorWhite ); GfxTextOut ( Date (), x+1000, y+10 ); GfxSelectFont ( "Comic Sans MS" , 15, 500, False ); GfxSetTextColor ( colorYellow ); GfxTextOut ( Interval (2), x+275, y+10 ); //------------------------------------------------------------ H, L, O, C---------------------- GfxGradientRect ( 1, 40, 1400, 55, colorGrey50 , colorDarkGrey ); GfxSetBkMode (0); GfxSelectFont ( "Areal" , 9, 200, False ); GfxSetTextColor ( colorWhite ); GfxTextOut ( "High:" + WriteVal ( H ,1.2), x+100, y+40 ); GfxSelectFont ( "Areal" , 9, 200, False ); GfxSetTextColor ( colorWhite ); GfxTextOut ( "Low:" + WriteVal ( L ,1.2), x+200, y+40 ); GfxSelectFont ( "Areal" , 9, 200, False ); GfxSetTextColor ( colorWhite ); GfxTextOut ( "Open:" + WriteVal ( O ,1.2), x+300, y+40 ); GfxSelectFont ( "Areal" , 9, 200, False ); GfxSetTextColor ( colorWhite ); GfxTextOut ( "Close:" + WriteVal ( C ,1.2), x+400, y+40 ); GfxSelectFont ( "Script MT Bold" , 12, 100, False ); GfxSetTextColor ( colorWhite ); GfxTextOut ( "Created By Murali Krishna " , x+1000, y+39 ); //-----------------------------------------------------------Valume------------------------------- GfxSelectFont ( "Tahoma" , 9, 200, False ); GfxSetTextColor ( colorWhite ); GfxTextOut ( "Volume=" + WriteVal ( V ,1.2), x+500, y+40 ); GfxSelectFont ( "Tahoma" , 9, 200, False ); GfxSetTextColor ( colorLime ); GfxTextOut ( WriteIf ( V >Vp2, "Very High" , "" ), x+600, y+40 ); GfxSelectFont ( "Tahoma" , 9, 200, False ); GfxSetTextColor ( colorLime ); GfxTextOut ( WriteIf ( V >Vp1, " High" , "" ), x+600, y+40 ); GfxSelectFont ( "Tahoma" , 9, 200, False ); GfxSetTextColor ( colorLime ); GfxTextOut ( WriteIf ( V >Vrg, "Above Average" , "" ), x+600, y+40 ); GfxSelectFont ( "Tahoma" , 9, 200, False ); GfxSetTextColor ( colorRed ); GfxTextOut ( WriteIf ( V <Vrg AND V >Vn1, "Less than Average" , "" ), x+600, y+40 ); GfxSelectFont ( "Tahoma" , 9, 200, False ); GfxSetTextColor ( colorRed ); GfxTextOut ( WriteIf ( V <Vn1, "Low" , "" ), x+600, y+40 ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back