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

Candlestick in amibroker with metastock style for Amibroker (AFL)

Rating:
4 / 5 (Votes 4)
Tags:
candlestick, amibroker

someone like to use candlestick with metastock’s style can use this code.

Screenshots

Similar Indicators / Formulas

Candlestick Commentary
Submitted by loadmaster_mr about 14 years ago
candle with better color
Submitted by THE LORD KSA almost 14 years ago
Bullish & Bearish Candlesick Patterns
Submitted by expert over 13 years ago
Candle Identification
Submitted by ashokchawla58 almost 14 years ago
Simple Candlestick Pattern Exploration
Submitted by kaiji about 14 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("MetaCandle");
BgColor=ParamColor("BgColor", colorBlack);
SetChartBkGradientFill( BgColor,BgColor,BgColor); 
upcolor=ParamColor("Up color ",colorGreen);
downcolor=ParamColor("Down color ",colorRed);
barcolor=IIf(C>Ref(C,-1),upcolor,downcolor);
Insidecolor=IIf(C<O,barcolor,BgColor);
SetBarFillColor(Insidecolor);
PlotOHLC( Open, High, Low, Close, " " , barcolor, styleCandle | styleThick );
_SECTION_END();

3 comments

1. vaenu999

it shown syntax error in amibroker 5.00

2. administrator

Amibroker 5.00 is a few years old now.

3. chynthia

you can fix it by adding " = ",between words setBarFillColor and (Insidecolor);
These results :

_SECTION_BEGIN(“MetaCandle”);
BgColor=ParamColor(“BgColor”, colorBlack);
SetChartBkGradientFill( BgColor,BgColor,BgColor);
upcolor=ParamColor("Up color “,colorGreen);
downcolor=ParamColor(”Down color ",colorRed);
barcolor=IIf(C>Ref(C,-1),upcolor,downcolor);
Insidecolor=IIf(C<O,barcolor,BgColor);
SetBarFillColor=(Insidecolor);
PlotOHLC( Open, High, Low, Close, " " , barcolor, styleCandle | styleThick );
_SECTION_END();

My regards

Chynthia

Leave Comment

Please login here to leave a comment.

Back