Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Plot Purchase Price for Amibroker (AFL)
limit
over 14 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
amibroker

Simple effective plot of Stock Purchase Price on Graph….for long term investor.
Input price in Parameter Section

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn almost 13 years ago
3_6Day GuaiLiLv
Submitted by motorfly almost 13 years ago
Williams Alligator System
Submitted by durgesh1712 about 13 years ago
Interactive Linear Regression Channel
Submitted by InternetWorm almost 13 years ago
*Level Breakout system*
Submitted by Tinych about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Title");
SetChartBkColor(ParamColor("Outer panel color ",colorBlack)); // color of outer border 
SetChartBkGradientFill( ParamColor("Inner panel color upper half",colorBlack),
	ParamColor("Inner panel color lower half",colorBlack), //color of inner panel
   ParamColor("titleblock",colorBlack ));
Title = EncodeColor(colorYellow)+ "Stock with Purchase Price" + " - " +  Name() + EncodeColor(colorYellow);  
Plot( C, "", IIf(Close > Open, colorGreen, colorRed), styleCandle);
Line1=Param("PurchPrice",0,0,500,1);
Plot(Line1,"0", ParamColor( "Purch_Price_Line_Color", colorYellow),styleDots ); 
GraphXSpace=Param("GraphXSpace",20,0,100,1);	
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back