I have several studies that are running and they are confusing when displayed all at once. I would like to suppress their appearance from the study window.
Announcement
Collapse
No announcement yet.
Suppressing Study lines.
Collapse
X
-
Hello jnorton,
If you need a study to be active in the chart and don't want to see the returned data on the chart, you can change the data series to a string. That way the value can still be viewed through the cursor window, but the indicator lines will not be drawn on the chart. You can simply add a null string ( +"" ) to the return value like below.
PHP Code:function main() {
...
return nData+"";
}
Jason K.
Project Manager
eSignal - an Interactive Data company
EFS KnowledgeBase
JavaScript for EFS Video Series
EFS Beginner Tutorial Series
EFS Glossary
Custom EFS Development Policy
New User Orientation
Comment