Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
price line code for Amibroker (AFL)
cmp and pclmp price line code
it not a indicator it is code only and paste in any afl..
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 | _SECTION_BEGIN ( "Price Line" ); dp= Param ( "dps" ,3,0,1000,1); PriceLineColor= ParamColor ( "PriceLineColor" , ColorRGB (82,82,82)); PriceLevel = ParamField ( "PriceField" , field = 3 ); PriceLeve2 = ParamField ( "PriceField" , field = dp ); Daysback = Param ( "Bars Back" ,1,10,500,1); FirstBar = BarCount - DaysBack; YY = IIf ( BarIndex () >= Firstbar, EndValue (PriceLevel), Null ); Plot (YY, "Current Price" ,PriceLineColor, ParamStyle ( "LineStyle" , styleLine | styleDashed | styleNoTitle | styleNoLabel | styleThick , maskAll )); PC= TimeFrameGetPrice ( "C" , inDaily , -1 ); Plot (pc, "Current Price" ,PriceLineColor, ParamStyle ( "LineStyle" , styleLine | styleDashed | styleNoTitle | styleNoLabel | styleThick , maskAll )); side = Param ( "side" ,1,0,1000,1); dist = 0; for ( i = 0; i < BarCount ; i++ ) { if (i+side== BarCount ) PlotText ( "\n " + PriceLevel[ i ], i, YY[ i ]-dist[i], colorLightBlue ); if (i+side== BarCount ) PlotText ( "\n " + Pc[ i ], i, pc[ i ]-dist[i], colorLightBlue ); } _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back