- Joined
- 30 June 2007
- Posts
- 7,200
- Reactions
- 1,231
Hi Elliot --
Each series (price, volume, moving average, whatever) displayed in the pane has a color. The rightmost value of each series is displayed as a number in the right margin of the pane. The color of the number, or usually the small colored area the number is in, is the same as the color of the indicator series it is associated with.
Thanks,
Howard
But, Which one exact means each part, apart from the black which means the current share price.
Thanks.
Each indicator will have a separate colour which corresponds with the different colour values on the y-axis. Right-click on your chart and click "edit formula". The displayed formula will have several "Plot" statements. Each of those represents a different indicator plotted on the chart. Within each of those Plot statements will be a "color" statement. These will correspond to the colours on the y-axis.
http://www.amibroker.com/guide/afl/plot.html
What do the Red, Blue, Grey, Grey colours mean ? Close Price? Sell? Buy?
Hi Elliot --
Each series (price, volume, moving average, whatever) displayed in the pane has a color. The rightmost value of each series is displayed as a number in the right margin of the pane. The color of the number, or usually the small colored area the number is in, is the same as the color of the indicator series it is associated with.
Thanks,
Howard
Each indicator will have a separate colour which corresponds with the different colour values on the y-axis. Right-click on your chart and click "edit formula". The displayed formula will have several "Plot" statements. Each of those represents a different indicator plotted on the chart. Within each of those Plot statements will be a "color" statement. These will correspond to the colours on the y-axis.
http://www.amibroker.com/guide/afl/plot.html
Can someone help me re-write this please?
if ( C > 0.1 )
TGR = C+.005;
else
{
TGR = C;
}
Sorry if this one is basic guys: How do I create a relative strength indicator that determines the strength of the individual stock with the overall market. (I'm not sure if anyone has read the book but one similar to "Stan Weistein's Secrets for Profiting in Bull and Bar Markets that measures on a scale of 6 to -6, or something similar).
Thanks
For whatever reason that does not work.
Use the built-in function relstrength()
I have not read Weinstein but Googling indicates that Weinstein's relative strength is simply the ratio of a stock to another stock or index or stock composite. This is what the RelStrength() function is doing except one has to divide it by 1000 to get the same number. So if you want to duplicate Weinstein use:
weinsteinRS = C / Foreign("Symbol", "Close");
or
weinsteinRS = RelStrength("Symbol") / 1000;
where C is for the currently selected stock and Symbol is the entity being used in the comparison. Plot these two versions of weinsteinRS and you will see that they are identical.
Thanks mate,
How do I get it to show up now? I entered that in the formula editor but it came up blank, do I need to select/add something to it? How do I then plot it?
Also with my previous post do you know how to change that from that bar format to just a straight line.
Apologies if my questions are too basic.
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?