function preMain()
{
setPriceStudy(true);
setStudyTitle("Woodies Color LSMA");
setCursorLabelName("LSMA");
setDefaultBarThickness(2);
setDefaultBarFgColor(Color.blue);
}
From the above example, how do I make the 'setStudyTitle' appear in the top left corner of my chart or anywhere else on the chart.
This study title shows up in mid-center of my chart and makes it difficult to read the chart, when size of the chart made smaller.
Thanks for reply.
{
setPriceStudy(true);
setStudyTitle("Woodies Color LSMA");
setCursorLabelName("LSMA");
setDefaultBarThickness(2);
setDefaultBarFgColor(Color.blue);
}
From the above example, how do I make the 'setStudyTitle' appear in the top left corner of my chart or anywhere else on the chart.
This study title shows up in mid-center of my chart and makes it difficult to read the chart, when size of the chart made smaller.
Thanks for reply.
Comment