Hi,
is it possible to define this in the code directly?
Size:
Color:
I guess that the answer is no since even a 'hack' won't do it:
CODE:
Please log in to see this code.
Size:
Color:
I would ask for an override of PlotSeries, where one can specify the label.
Size:
Color:
Look up the DataSeries.Description property.
Size:
Color:
What do you mean with that? The Label that is plotted on the chart s not equal to the series´ description. If it would be the description it would be okay for me.
Size:
Color:
What does it mean "specify the label" then? What for?
What is the "label" then -- is this what is on the right edge of the chart?
Size:
Color:
Just to throw it out there, keep in mind the "Alt" shortcut for the indicator labels, status bars, and fundamental items on charts. Holding the Alt key while clicking one of those buttons changes all of the chart windows.
Size:
Color:
Given the following series:
Dat
CODE:
Please log in to see this code.
When I plot this in its own ChartPane, I can see a label on the left sidde of the pane saying that the indicator is a RSI with parameters of x and z.
What I expected was, that the label
- says "mySeries" instead of RIS()
- that one could remove the label. The point here is that I dont want to show which indicator it is, if someone else uses the strategy. I would like have a option in the code to allow a label or not.
Size:
Color:
QUOTE:
When I plot this in its own ChartPane, I can see a label on the left sidde of the pane saying that the indicator is a RSI with parameters of x and z.
It may sound and feel non-intuitive, but your statement creates a new blank DataSeries object in the variable "ds". This is what the first line of code does. Then, you're assigning a data series i.e. RSISeries, which already exists in the Bars.Cache with its own description "
saying that the indicator is a RSI with parameters of x and z", to the variable "ds".
Use the Description property
after creating a series:
CODE:
Please log in to see this code.
This will let you get rid of the standard description and hence be able to "camouflage" the formula.
QUOTE:
- that one could remove the label.
One couldn't remove the label by design.
Size:
Color:
Ahhh, I think that will make it.
CODE:
Please log in to see this code.
Like you said: non-intuitive.
Size:
Color:
Maybe, but makes great sense once you get familiar with the Bars.Cache modus operandi.
Size:
Color: