Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Horizontal Live Priceline Tool for Amibroker (AFL)
It’s a simple but very useful tool to give you a quick view of the current price of the stock in a horizontal priceline.
I find it particularly useful in live charts with Heikin Ashi Candles. Just add it to any live chart and see the difference.
Similar Indicators / Formulas
Indicator / Formula
_SECTION_BEGIN("Price Line");
PriceLineColor=ParamColor("PriceLineColor",ColorRGB(82,82,82));
PriceLevel = ParamField("PriceField", field = 3 );
Daysback = Param("Bars Back",100,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));
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 );
}
_SECTION_END();
5 comments
Leave Comment
Please login here to leave a comment.
Back
Nice one
AFL NOT WORKING (CANT PLOT IT)
can u please give me your contact number to discuss something else on formula
Very handy tool…just like inn MetaTrader ! Thanks for sharing !
accuracy of price line is nice and logical thanks for nice sharing