PureBytes Links
Trading Reference Links
|
Could some kind souls out there please put this Amibroker code in
your chart and verify for me that there is no way for you to be able
to have these colored candles on your chart AND have a black body
outline?
Thanks. I have been told numerous times that this functionality
exists and I just cannot get it to work. In the Preferences-
>Charting tab, I was told that "Body outline only" would give me the
black outline I was looking for when using my own candle color
array, but it has no effect.
[of course, this is just canned coloring to show you the effect]
CandleColor[0] = colorRed;
for (i=0; i < BarCount; i++)
{
if (i % 2 == 0)
{
CandleColor[i] = colorRed;
}
else if (i % 3 == 0)
{
CandleColor[i] = colorBlue;
}
else if (i % 4 == 0)
{
CandleColor[i] = colorYellow;
}
else
{
CandleColor[i] = colorGreen;
}
}
Plot(Close, "", CandleColor, styleCandle);
------------------------ Yahoo! Groups Sponsor --------------------~-->
GFT Forex Trading Accounts As low as $250 with up to 400:1 Leverage. Free Demo.
http://us.click.yahoo.com/lpv1TA/jlQNAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|